text
stringlengths
14
5.22M
embeddings
list
Q: Jest defaults to format currency to "en-US" even when the window navigator language is mocked to be "en-GB" I have a test file and am testing for the formatCurrency function. The problem, even though I've mocked window.navigator.language to be en-GB my function in test doesn't format the currency in £. In the UI it works as expected, but in jest looks like you can't change window.navigator.language. Any suggestions? const languageCurrency = { "en-GB": "GBP", "en-US": "USD", }; const userLanguage = window.navigator.language export const formatCurrency = (value) => Intl.NumberFormat(userLanguage, { style: "currency", currency: languageCurrency[userLanguage], }).format(value); and here is my test file import { formatCurrency } from "./formatCurrency"; describe("given formatCurrency fucntion", () => { let windowSpy; beforeEach(() => { windowSpy = jest.spyOn(window, "window", "get"); }); afterEach(() => { windowSpy.mockRestore(); }); it("should set the user language to `en-GB`", () => { windowSpy.mockImplementation(() => ({ navigator: { language: "en-GB", }, })); expect(window.navigator.language).toBe("en-GB"); //this will pass expect(formatCurrency(1000)).toBe("£1000.00"); // this fails }); }); A: Since the userLanguage variable is assigned in the module scope. You should mock window.navigator.language first, then import the module. So that the userLanguage variable will be assigned with the mock value. Note: The code defined in the module scope will be executed immediately when you import the module. Besides, the formatted currency should be '£1,000.00' Intl.NumberFormat('en-GB', {style: 'currency', currency: 'GBP'}).format(1000) // '£1,000.00' E.g. formatCurrency.ts: const languageCurrency = { 'en-GB': 'GBP', 'en-US': 'USD', }; const userLanguage = window.navigator.language; export const formatCurrency = (value) => { console.debug('languageCurrency[userLanguage]: %s userLanguage: %s', languageCurrency[userLanguage], userLanguage); return Intl.NumberFormat(userLanguage, { style: 'currency', currency: languageCurrency[userLanguage], }).format(value); }; formatCurrency.test.ts: // import { formatCurrency } from './formatCurrency'; describe('given formatCurrency fucntion', () => { let windowSpy; beforeEach(() => { windowSpy = jest.spyOn(window, 'window', 'get'); jest.resetModuleRegistry(); }); afterEach(() => { windowSpy.mockRestore(); }); it('should set the user language to `en-GB`', async () => { windowSpy.mockImplementation(() => ({ navigator: { language: 'en-GB', }, })); const { formatCurrency } = await import('./formatCurrency'); expect(window.navigator.language).toBe('en-GB'); expect(formatCurrency(1000)).toBe('£1,000.00'); }); it('should set the user language to `en-US`', async () => { windowSpy.mockImplementation(() => ({ navigator: { language: 'en-US', }, })); const { formatCurrency } = await import('./formatCurrency'); expect(window.navigator.language).toBe('en-US'); expect(formatCurrency(1000)).toBe('$1,000.00'); }); }); Test result: PASS stackoverflow/75399792/formatCurrency.test.ts (11.303 s) given formatCurrency fucntion ✓ should set the user language to `en-GB` (41 ms) ✓ should set the user language to `en-US` (3 ms) console.debug languageCurrency[userLanguage]: GBP userLanguage: en-GB at formatCurrency (stackoverflow/75399792/formatCurrency.ts:9:11) console.debug languageCurrency[userLanguage]: USD userLanguage: en-US at formatCurrency (stackoverflow/75399792/formatCurrency.ts:9:11) Test Suites: 1 passed, 1 total Tests: 2 passed, 2 total Snapshots: 0 total Time: 12.209 s
[ -0.006599429063498974, -0.02543124556541443, -0.007682850118726492, -0.013894745148718357, -0.03863922134041786, 0.015503776259720325, 0.021071385592222214, -0.0011877712095156312, -0.005396333057433367, 0.04728412255644798, 0.01719263382256031, -0.013079141266644001, 0.011106626130640507, -0.02566123753786087, -0.010071726515889168, 0.008743338286876678, -0.03716496750712395, -0.021779173985123634, -0.03761063143610954, -0.0164566058665514, -0.008775760419666767, 0.011383149772882462, -0.06387823820114136, -0.02785646542906761, -0.04577147215604782, 0.035060737282037735, 0.01590409316122532, -0.01779513992369175, 0.056444767862558365, 0.05489519238471985, 0.007427085191011429, -0.023089563474059105, 0.0016640725079923868, -0.02479897066950798, -0.017738740891218185, -0.04229062795639038, 0.04810312017798424, -0.013723772950470448, -0.013553649187088013, -0.05056944489479065, 0.01171821914613247, -0.03251836448907852, 0.03349827229976654, -0.033922310918569565, -0.05840064212679863, 0.007059399038553238, -0.01664707064628601, -0.02153339795768261, -0.0063354503363370895, -0.033185362815856934, 0.024170156568288803, -0.009805761277675629, -0.005209075752645731, 0.012774301692843437, -0.01947690173983574, -0.0060255518183112144, 0.0004460511263459921, -0.026462877169251442, -0.08083853125572205, 0.021537575870752335, 0.024910056963562965, -0.012742449529469013, 0.028156567364931107, -0.0706518366932869, 0.004671663511544466, 0.001505273045040667, 0.020434563979506493, -0.002725177677348256, -0.004371656570583582, 0.003287087194621563, -0.0263688787817955, 0.018474150449037552, -0.0017793960869312286, -0.01813443936407566, -0.02685653232038021, -0.02039017528295517, -0.012880314141511917, 0.029401326552033424, -0.030037079006433487, 0.013548843562602997, 0.01347202155739069, 0.02760203182697296, 0.004543642979115248, 0.024606121703982353, -0.052866656333208084, -0.014317466877400875, -0.008368583396077156, -0.008036399260163307, -0.023779770359396935, 0.00620820140466094, -0.013367067091166973, 0.053241878747940063, -0.03554151579737663, -0.007125983014702797, 0.06485525518655777, 0.07263247668743134, 0.010198958218097687, 0.020432868972420692, -0.0013036741875112057, -0.0027078180573880672, 0.09051597863435745, 0.055962271988391876, -0.02120242826640606, 0.060673587024211884, -0.033054087311029434, 0.011085092090070248, -0.005318002309650183, 0.018912430852651596, -0.04736771434545517, -0.01475716382265091, -0.004007414449006319, -0.003454840276390314, 0.038997191935777664, 0.01111842505633831, -0.039771419018507004, 0.04801381751894951, -0.019998276606202126, 0.00857086107134819, -0.05967432260513306, -0.004609918221831322, 0.007670118007808924, -0.018071673810482025, 0.03019334189593792, -0.037090763449668884, 0.020266184583306313, 0.006580887828022242, -0.030169155448675156, 0.01750132441520691, -0.0064923809841275215, -0.038238342851400375, 0.029042784124612808, -0.0043151224963366985, 0.018076537176966667, 0.03020193986594677, -0.0063741267658770084, 0.02567753754556179, -0.008633701130747795, 0.025392502546310425, -0.03169111907482147, -0.06123615428805351, 0.04154375195503235, 0.01893826760351658, 0.00047506290138699114, 0.08737057447433472, 0.00333132385276258, 0.00470489589497447, 0.026165567338466644, -0.009693838655948639, -0.017430314794182777, 0.03828182443976402, -0.034366924315690994, 0.013770286925137043, 0.02931162156164646, 0.0028942604549229145, -0.03665454313158989, -0.026101643219590187, -0.014442059211432934, 0.01338864304125309, 0.016227679327130318, 0.01375817134976387, -0.030196554958820343, 0.021768620237708092, -0.02909388206899166, 0.020632976666092873, -0.008473742753267288, 0.045600250363349915, -0.043300267308950424, -0.02509036473929882, 0.003341066651046276, -0.026051178574562073, 0.005785253830254078, 0.0028221337124705315, -0.014487241394817829, 0.019270259886980057, 0.04402121156454086, 0.04933992028236389, 0.030214950442314148, -0.00858471728861332, 0.01707899011671543, 0.02973208948969841, -0.023129241541028023, 0.025426751002669334, -0.0063231210224330425, 0.04700535908341408, 0.027121977880597115, -0.00251402473077178, 0.01944851316511631, 0.0030917685944586992, -0.03790535777807236, -0.021429723128676414, -0.0013459123438224196, 0.04364367201924324, -0.03993893787264824, 0.0323171392083168, -0.01662457548081875, 0.030542129650712013, -0.02508462779223919, 0.028103919699788094, -0.002497557085007429, -0.07563835382461548, -0.04043254256248474, 0.04960142448544502, -0.049792565405368805, 0.04056921601295471, 0.018118686974048615, -0.0270086657255888, 0.015048373490571976, 0.03359346091747284, -0.036579299718141556, 0.005841193720698357, 0.03135642781853676, 0.004008403513580561, -0.03508400171995163, 0.006049401592463255, 0.021038927137851715, -0.023187730461359024, -0.02380462735891342, 0.03749299421906471, 0.003826846368610859, 0.0026574907824397087, 0.026971597224473953, 0.017083877697587013, 0.04833545908331871, 0.045208659023046494, 0.007761405315250158, 0.0009111553081311285, 0.018310021609067917, 0.06301254034042358, 0.024025266990065575, 0.0006890959921292961, -0.0027136248536407948, 0.0569223053753376, 0.015889227390289307, 0.06546967476606369, 0.02695891074836254, 0.004377430770546198, 0.0857580155134201, 0.03714492544531822, -0.008218523114919662, 0.002933104755356908, -0.010164526291191578, 0.026407282799482346, 0.02452307939529419, 0.05442625656723976, -0.00027072892407886684, -0.010684567503631115, -0.012714248150587082, 0.0059044817462563515, -0.030399199575185776, 0.043192896991968155, -0.011458360590040684, 0.05404011160135269, 0.04688796028494835, 0.04354912415146828, -0.02764960378408432, -0.0164093766361475, 0.030625998973846436, 0.047457873821258545, -0.029944172129034996, -0.005060227587819099, 0.004650370683521032, -0.009289355017244816, -0.005258818622678518, -0.015897592529654503, 0.008508207276463509, 0.023274658247828484, 0.0035236794501543045, 0.023416956886649132, 0.0183618925511837, -0.06495465338230133, -0.03312394767999649, -0.06982766836881638, -0.0479249432682991, -0.02685953490436077, -0.04798697307705879, -0.007524306420236826, 0.015264957211911678, -0.05338907614350319, 0.03913159295916557, 0.001533545320853591, -0.003025499638170004, -0.03851114958524704, -0.004204246215522289, 0.06940305233001709, 0.023543881252408028, 0.03668573126196861, -0.031141670420765877, 0.02110699936747551, -0.009072629734873772, 0.03128853440284729, -0.04527327045798302, -0.0017157829133793712, 0.007014955393970013, -0.027532681822776794, 0.04507382586598396, 0.022057699039578438, -0.006921735592186451, 0.029782598838210106, -0.04427339881658554, -0.04735727980732918, -0.009905763901770115, 0.009755524806678295, 0.00568206375464797, 0.017153145745396614, -0.019725508987903595, 0.05410346761345863, 0.03645522892475128, -0.02487296424806118, 0.04701768234372139, 0.03284275904297829, -0.05393511429429054, 0.019063644111156464, 0.01962428353726864, -0.022105006501078606, -0.031049318611621857, 0.05409117043018341, 0.04078500717878342, -0.012297684326767921, -0.031717699021101, -0.010217009112238884, -0.03573696315288544, 0.006614358630031347, 0.017010409384965897, -0.008287039585411549, -0.015129389241337776, 0.06814537942409515, -0.015169006772339344, -0.07472293823957443, 0.029335031285881996, -0.029315335676074028, -0.04575998708605766, -0.037000492215156555, -0.028779901564121246, 0.05568681284785271, 0.010933507233858109, 0.0018876957474276423, -0.03176911175251007, 0.007315994240343571, 0.02362360991537571, -0.0069578574039042, 0.05595271661877632, -0.02975003607571125, 0.005528688430786133, 0.03029877506196499, 0.014574446715414524, 0.02287611924111843, 0.00984941516071558, -0.04336070269346237, -0.0024340536911040545, -0.029507944360375404, 0.029476817697286606, -0.0033248718827962875, 0.005379137117415667, 0.023329107090830803, -0.001600713818334043, 0.05763177201151848, -0.03166184574365616, -0.010434342548251152, 0.04227031022310257, 0.025176964700222015, 0.00736604817211628, 0.048121266067028046, 0.008099852129817009, -0.011453254148364067, -0.03850918635725975, -0.04004239663481712, 0.01223648153245449, 0.0356018990278244, 0.05801491066813469, -0.033295080065727234, 0.05497979000210762, -0.03949291631579399, -0.022936563938856125, 0.011100566945970058, -0.04537583887577057, 0.010012425482273102, 0.01752338744699955, 0.014883761294186115, 0.05192785710096359, -0.06169073283672333, -0.016780396923422813, -0.02256844937801361, -0.02168709971010685, 0.018350651487708092, 0.032058198004961014, 0.01994873210787773, -0.0013992342865094543, -0.002189961727708578, -0.008338280022144318, -0.03271181136369705, -0.0005015772767364979, -0.020198922604322433, 0.033813413232564926, -0.010530684143304825, -0.03900297358632088, -0.040830571204423904, 0.01082131452858448, 0.027910878881812096, 0.034391093999147415, 0.002275722799822688, 0.03655342385172844, -0.016364416107535362, 0.004936181474477053, 0.027079634368419647, -0.02755335345864296, 0.018155446276068687, -0.020647818222641945, 0.039064738899469376, -0.007108750287443399, 0.0039032832719385624, -0.028156796470284462, -0.017170701175928116, -0.030968284234404564, 0.01619839109480381, 0.029637016355991364, -0.019607476890087128, -0.04046926274895668, 0.029555678367614746, 0.03408053144812584, 0.01194669771939516, -0.03522114455699921, -0.011311613954603672, -0.008822745643556118, 0.028847020119428635, 0.04893438518047333, -0.043111398816108704, -0.015335374511778355, -0.011637861840426922, 0.01855277083814144, 0.07321678847074509, 0.0026591860223561525, -0.043998025357723236, -0.031033692881464958, -0.03288321569561958, -0.03739423304796219, 0.023882895708084106, 0.05643688514828682, -0.03578130155801773, 0.00801907479763031, -0.0369734913110733, 0.02894173376262188, 0.04671335592865944, 0.0047128708101809025, 0.011359479278326035, 0.014960824511945248, 0.004168681800365448, 0.009309771470725536, 0.035776011645793915, -0.024672092869877815, -0.017912698909640312, 0.039842527359724045, -0.06307779252529144, 0.018847975879907608, -0.021989597007632256, 0.029917128384113312, -0.01869286224246025, 0.017675835639238358, -0.004232984036207199, 0.05366774648427963, -0.02114376798272133, -0.007612355053424835, -0.007896903902292252, 0.023503366857767105, -0.04313351586461067, -0.02982424944639206, 0.0432756170630455, 0.012019248679280281, -0.00008796001202426851, 0.032405540347099304, 0.027127986773848534, 0.005897912196815014, 0.018703626468777657, -0.013626602478325367, -0.025411123409867287, 0.02060597762465477, -0.01874113269150257, 0.014611969701945782, -0.02880135551095009, -0.029355039820075035, 0.00020188666530884802, -0.06654422730207443, 0.024542124941945076, 0.02274535596370697, -0.03923977166414261, -0.025268493220210075, -0.05871483311057091, -0.033808205276727676, -0.01905713602900505, -0.02776644378900528, 0.018017664551734924, -0.017683863639831543, 0.025888288393616676, 0.025303399190306664, -0.012019108049571514, -0.023834267631173134, -0.019202375784516335, -0.015005702152848244, -0.000219468362047337, -0.021063154563307762, 0.026577336713671684, 0.005504174157977104, -0.03431364893913269, -0.05003654584288597, 0.02897593006491661, 0.0058176699094474316, -0.026504196226596832, -0.031108897179365158, -0.00610125670209527, -0.002425437793135643, -0.023944510146975517, -0.0170093085616827, 0.020685330033302307, -0.0035049819853156805, 0.01224394142627716, 0.007848916575312614, -0.004775828216224909, -0.0048415143974125385, -0.0233032014220953, -0.05475654825568199, 0.04218903183937073, 0.005838451441377401, -0.06820467114448547, -0.004085157997906208, 0.02603180892765522, -0.014783462509512901, 0.07595404982566833, -0.0027398280799388885, -0.033722784370183945, -0.05366963893175125, -0.033444274216890335, -0.003575211623683572, -0.025609998032450676, -0.005508131347596645, -0.06021083891391754, -0.026697253808379173, -0.028533481061458588, 0.03792683407664299, -0.010438719764351845, -0.015119855292141438, 0.0045577241107821465, -0.03674910217523575, 0.01982998102903366, -0.036254532635211945, -0.007560426369309425, 0.003212020266801119, -0.006239394657313824, -0.025457195937633514, 0.061533473432064056, -0.012854927219450474, 0.02402031607925892, 0.0007200901745818555, -0.0017464071279391646, 0.02724343165755272, -0.010644136928021908, -0.048660680651664734, -0.053537942469120026, 0.026739301159977913, 0.02136387676000595, -0.012773116119205952, -0.018508315086364746, -0.014954295940697193, 0.07054812461137772, -0.0841260701417923, 0.017513811588287354, -0.02659195475280285, -0.024392694234848022, -0.013509237207472324, 0.021323682740330696, 0.027495527639985085, -0.0353379063308239, 0.01209194865077734, -0.03746941685676575, 0.06401769816875458, 0.022623607888817787, -0.009952522814273834, -0.00838460959494114, -0.025118738412857056, -0.050118666142225266, -0.05255443602800369, 0.05567126348614693, -0.03702150657773018, -0.006322308909147978, -0.038096748292446136, -0.024304063990712166, 0.08235295116901398, -0.002325958339497447, 0.012901130132377148, 0.06608117371797562, 0.019395552575588226, 0.001318794209510088, -0.018017176538705826, 0.04454115033149719, 0.020255550742149353, -0.025474905967712402, 0.016796762123703957, -0.009788298048079014, -0.001294057467021048, 0.0028048143722116947, -0.019257787615060806, -0.01973816193640232, -0.03938208892941475, -0.0019933024886995554, 0.06317479908466339, 0.011143325828015804, 0.037810102105140686, 0.003557381918653846, -0.07838783413171768, -0.04232246056199074, 0.024923333898186684, 0.0265533197671175, 0.014696615748107433, 0.040956269949674606, 0.03193343058228493, 0.014718453399837017, 0.0328403115272522, -0.0027743340469896793, -0.02276092767715454, -0.018159152939915657, 0.07247762382030487, -0.011901398189365864, -0.03496745973825455, 0.03004525415599346, 0.04506320133805275, -0.05889091640710831, -0.061890337616205215, -0.023203078657388687, -0.021810241043567657, -0.008416860364377499, -0.04766916483640671, -0.018512804061174393, 0.0028693433851003647, -0.00907055102288723, 0.023205658420920372, 0.021201906725764275, -0.016885332763195038, 0.03723706305027008, -0.015188103541731834, 0.016513807699084282, -0.018763089552521706, -0.0014132505748420954, 0.05874042585492134, -0.04036698862910271, 0.011058463715016842, -0.029325496405363083, -0.03752121329307556, 0.003220204496756196, -0.01604609750211239, 0.06766228377819061, -0.003283535595983267, 0.006839549168944359, 0.03910984471440315, -0.008688087575137615, 0.05092063173651695, 0.024372374638915062, 0.0034477838780730963, 0.02260866016149521, -0.052689529955387115, -0.0708150640130043, -0.0407247357070446, 0.029008828103542328, -0.022587016224861145, 0.031202970072627068, -0.046486202627420425, 0.009142476134002209, 0.029134146869182587, -0.006077984813600779, 0.01125903520733118, -0.08416035026311874, -0.01646539568901062, -0.05294908210635185, -0.03691645711660385, -0.011304394342005253, 0.004546766169369221, -0.018136298283934593, 0.02356509119272232, -0.010496246628463268, -0.0703146904706955, -0.01750377006828785, 0.0170926321297884, 0.0007957174093462527, -0.0018790378235280514, -0.03432701528072357, 0.03610020875930786, -0.03368661180138588, -0.03722909837961197, -0.05567437782883644, -0.00709195202216506, -0.025799380615353584, 0.01743696816265583, -0.025219712406396866, 0.016364261507987976, -0.023714084178209305, 0.026851937174797058, -0.006270037032663822, 0.0007524217362515628, -0.03342726081609726, -0.034686896950006485, 0.009145940653979778, 0.002768794074654579, -0.015629742294549942, 0.046618182212114334, 0.034637197852134705, 0.00034936293377541006, -0.00387013191357255, -0.005000907927751541, -0.025533394888043404, -0.020349565893411636, 0.03332472965121269, -0.002080589532852173, -0.00583589356392622, -0.024969907477498055, -0.005028894171118736, 0.008604370057582855, -0.04902172461152077, 0.029682811349630356, -0.03379126265645027, 0.007028217893093824, 0.032827772200107574, -0.020238658413290977, 0.02010275423526764, 0.05450060963630676, 0.03001542203128338, 0.060119278728961945, -0.02717345766723156, 0.007718213368207216, 0.02748233452439308, -0.015934646129608154, 0.012268449179828167, -0.000007545379503426375, -0.011351353488862514, 0.00614025117829442, 0.004238022491335869, 0.008740956895053387, -0.01432020589709282, 0.028043527156114578, -0.04314348101615906, -0.021112848073244095, -0.037891410291194916, 0.007450186647474766, -0.019261863082647324, 0.05561694875359535, 0.04564395546913147, -0.02420017309486866, 0.020479867234826088, -0.02659675106406212, -0.03479226306080818, 0.04133502021431923, -0.060440149158239365, -0.035520706325769424, 0.02577008120715618, -0.033826202154159546, 0.0031969433184713125, -0.01521713100373745, -0.04637962207198143, -0.004615145269781351, -0.01408043596893549, -0.029442083090543747, 0.005909907165914774, 0.03514845669269562, 0.015907512977719307, 0.02719743549823761, 0.012783212587237358, -0.017755679786205292, 0.01091831922531128, 0.016415592283010483, -0.04007004573941231, -0.03388497978448868, 0.00003945281423511915, 0.027011390775442123, 0.05052507296204567, -0.00926619116216898, -0.03029673919081688, -0.0013326819753274322, -0.04177045449614525, 0.026973294094204903, 0.0051892707124352455, 0.009698625653982162, -0.012897768057882786, 0.019769398495554924, -0.02882407419383526, 0.01655447855591774, -0.028713766485452652, 0.040047984570264816, 0.009869208559393883, -0.008492954075336456, 0.012494237162172794, 0.05358223617076874, 0.01814117282629013, -0.01856434904038906, 0.04660610482096672, 0.013142053037881851, 0.03462451696395874, -0.014883785508573055, 0.0312664695084095, -0.01457944605499506, 0.0445224791765213, 0.030883120372891426, 0.06206364557147026, 0.020571552217006683, 0.015485717914998531, 0.0376715324819088, -0.01898297294974327, -0.014651727862656116, 0.03562840074300766, 0.05139407888054848, -0.0061614192090928555, 0.02839890494942665, -0.02701689302921295, -0.015607821755111217, 0.008097866550087929, -0.009318383410573006, -0.004155496135354042, -0.02871759608387947, -0.008340141735970974, -0.02803824655711651, -0.027283521369099617, 0.04849321022629738, -0.014648189768195152, -0.015108092688024044, -0.019977835938334465, 0.010289502330124378, 0.04485233873128891, 0.043243832886219025, 0.007090236060321331, 0.02110792137682438, 0.03412012383341789, 0.006627244409173727, -0.015425553545355797, 0.03809712454676628, 0.024298518896102905, 0.01246648095548153, -0.041380077600479126, -0.001806940301321447, 0.0008744345395825803, 0.008387988433241844, -0.027381936088204384, -0.025903649628162384, -0.06230924651026726, 0.035231586545705795, -0.011052225716412067, 0.03150123357772827, 0.015342293307185173, -0.04692713916301727, 0.02719707041978836, -0.06103550270199776, 0.031500328332185745, -0.029278840869665146, -0.006675301119685173, 0.007021143101155758, -0.019723983481526375, -0.03269262984395027, 0.04236160218715668, 0.0013297031400725245, 0.01788799650967121, -0.0038813611026853323, 0.08347345888614655, 0.023267770186066628, 0.04927373304963112, 0.026521136984229088, -0.01667415350675583, -0.019596761092543602, 0.020403845235705376, -0.01509309746325016, -0.02550770901143551, -0.01789923943579197, -0.04747362434864044, 0.017751334235072136, -0.01804184727370739, -0.042783498764038086, -0.0030955523252487183, 0.03576824441552162, 0.0010636774823069572, -0.058068010956048965, -0.0030479426495730877, 0.037518784403800964, -0.06336014717817307, 0.035542599856853485, 0.038638778030872345, 0.061603154987096786, 0.027507668361067772, -0.012711134739220142, -0.020370258018374443, -0.022281505167484283, -0.006363641005009413, -0.049939755350351334, 0.01160886324942112, -0.019507063552737236, -0.02650943584740162, -0.03348606452345848, -0.04183579236268997, -0.024394283071160316, 0.014784066006541252, -0.023313594982028008, -0.06316456943750381, 0.05288062244653702, 0.026749808341264725, 0.04808760806918144, 0.012581992894411087, -0.019457366317510605, 0.016958924010396004, 0.03274673968553543, 0.05560848489403725, 0.020428532734513283, 0.04514176771044731, 0.030896497890353203, -0.04970157518982887, 0.008841387927532196, -0.04107148200273514, 0.03996986895799637, 0.02469616010785103, -0.023093383759260178, -0.01057038176804781, 0.03580935299396515, -0.011545415036380291, -0.022496985271573067, 0.0016801421297714114, 0.03448988497257233, -0.008105923421680927, -0.0024626627564430237, -0.08144735544919968, -0.03792553395032883, -0.04260832443833351, -0.03246686980128288, -0.033203911036252975, 0.015714498236775398, -0.026685908436775208, 0.012310304678976536, 0.02058882638812065, -0.06971226632595062, 0.13792966306209564, 0.04052950069308281, 0.047375258058309555, 0.011811776086688042, 0.045239999890327454, 0.03804405778646469, 0.019223550334572792, -0.03794337809085846, -0.0021953624673187733, -0.038809072226285934, 0.016560977324843407, -0.019044479355216026, 0.004260416608303785, 0.005169817712157965, 0.024496009573340416, 0.048681870102882385, -0.047248680144548416, -0.003380685579031706, 0.020283570513129234, -0.02730858139693737, -0.02712887153029442, 0.013125910423696041, 0.020068325102329254, 0.03748130798339844, 0.01305566169321537, 0.0028032679110765457, 0.015432226471602917, -0.06698042899370193, -0.017516225576400757, -0.056377530097961426, 0.01245124451816082, -0.02910906821489334, 0.016465602442622185, 0.010667546652257442, -0.006364021450281143, 0.036464300006628036, -0.027120521292090416, -0.008479011245071888, -0.00745468121021986, 0.04154708981513977, -0.013491518795490265, -0.028815947473049164, 0.056060753762722015, -0.0198112353682518, -0.008909614756703377, 0.021837200969457626, -0.03711502626538277, 0.025714512914419174, 0.04109753668308258, -0.016176780685782433, 0.06546387076377869, -0.034174516797065735, 0.04260171577334404, -0.011093005537986755, -0.04714255407452583, 0.029114561155438423, 0.0016111810691654682, -0.04623572155833244, 0.0035443990491330624, 0.009792603552341461, 0.007991267368197441, -0.005669927690178156, -0.019540075212717056, -0.014785727486014366, -0.03551120311021805, -0.006811788305640221, 0.021301116794347763, 0.02507033757865429, 0.004761707037687302, -0.0221728328615427, -0.039403036236763, -0.021465903148055077, -0.010762350633740425, -0.02666168287396431, 0.026765575632452965, 0.029982376843690872, -0.018967505544424057, 0.0457875095307827, 0.0200047604739666, -0.04361746832728386, -0.012480105273425579, -0.026967961341142654, 0.0036135183181613684, -0.0019312681397423148, 0.034587446600198746, 0.06299490481615067, -0.03566434234380722, -0.040100112557411194, -0.01872948743402958, 0.032079096883535385, 0.04261152446269989, 0.02970700152218342, -0.0053586168214678764, -0.03577704355120659, -0.002553387079387903 ]
The Call is the eighth of eight Spiritual Songs by Kenneth Jennings. All eight are published separately. The text is written by George Herbert (1593-1633) who wrote devotional poetry throughout his life. Herbert used simple and common words, conversational speech rhythms, musical imagery, and witty, unexpected metaphors. In the 18th century, Methodists and Moravians adapted a number of the poems as hymns, several of which remain today in hymnals of many denominations. The eight pieces in the series are: S-133a - Discipline, S-133b - Love, S-133c - Prayer, S-133d - The Pulley, S-133e - Virtue, S-133f - Praise, S-133g Antiphon, and S-133h The Call.
[ -0.03381941094994545, -0.008866725489497185, -0.013496467843651772, 0.01897696778178215, 0.013677134178578854, 0.00019504733791109174, -0.013440928421914577, 0.011647298000752926, 0.014906695112586021, 0.01658821664750576, 0.03353474661707878, 0.005469668190926313, -0.01807563565671444, -0.045428644865751266, -0.017780782654881477, -0.030896861106157303, -0.008015140891075134, -0.023458946496248245, 0.004800599999725819, 0.002076891716569662, -0.003867228515446186, -0.007884511724114418, -0.062929667532444, -0.04863174259662628, -0.023756394162774086, 0.026956843212246895, -0.003370941849425435, 0.019063619896769524, 0.017398349940776825, 0.051277149468660355, -0.010638237930834293, -0.02228519320487976, 0.03224584832787514, -0.0468970462679863, -0.02878863923251629, -0.027465002611279488, 0.05151405557990074, -0.016415996477007866, 0.000618119491264224, -0.04363050311803818, -0.008237853646278381, -0.008980359882116318, 0.056555792689323425, -0.00016904275980778039, -0.04352577030658722, -0.016226427629590034, -0.003058713162317872, -0.029453707858920097, 0.021549498662352562, -0.021177778020501137, -0.00008090907067526132, -0.03298220410943031, 0.012540893629193306, 0.002392134629189968, 0.015129156410694122, -0.013093635439872742, 0.002607453614473343, -0.004197808913886547, -0.01694491133093834, 0.022917967289686203, -0.010508491657674313, -0.013302474282681942, 0.03861907497048378, -0.05071112886071205, -0.0014559980481863022, -0.0016618674853816628, 0.021684259176254272, 0.004600446205586195, 0.018318140879273415, -0.048997022211551666, -0.012241488322615623, 0.01780359074473381, -0.018734898418188095, -0.002198008354753256, 0.008529840037226677, 0.010659769177436829, -0.015575463883578777, -0.011473795399069786, -0.0066284597851336, -0.0021222203504294157, 0.01828446239233017, 0.059932805597782135, -0.008417400531470776, 0.03447563573718071, -0.06583217531442642, -0.03338627144694328, -0.0005467237206175923, 0.011233553290367126, -0.0023542025592178106, -0.011329123750329018, -0.010316467843949795, 0.05615955591201782, 0.014634273014962673, -0.029690630733966827, 0.03343591094017029, 0.03759818896651268, -0.03125489875674248, 0.03898985683917999, -0.0009649394196458161, 0.019930189475417137, 0.04196798428893089, 0.03351680934429169, 0.0030078706331551075, 0.006506076082587242, -0.042886652052402496, -0.008277284912765026, 0.03334605693817139, -0.010210120119154453, -0.016144482418894768, -0.05588745325803757, 0.007640213239938021, -0.01789199188351631, 0.028194207698106766, -0.014467986300587654, -0.004673878662288189, 0.044455260038375854, -0.001815963420085609, 0.03139761835336685, -0.03618084639310837, 0.04021733999252319, 0.008448191918432713, 0.04630280286073685, 0.034966278821229935, -0.005050327628850937, -0.0075195287354290485, -0.057898711413145065, -0.029182875528931618, 0.023823095485568047, -0.03406025096774101, 0.0037292593624442816, 0.004772154614329338, -0.04223516583442688, -0.007358916103839874, 0.018672117963433266, -0.012903903611004353, -0.016552438959479332, -0.011873333714902401, 0.01712699793279171, 0.015435378067195415, -0.04857032746076584, 0.029787003993988037, 0.0013386490754783154, 0.001212465693242848, 0.10500732064247131, -0.005820822902023792, 0.002808851655572653, 0.002736518392339349, 0.03644782677292824, -0.04015767201781273, 0.009302259422838688, 0.00007463956717401743, 0.03270651027560234, -0.0230192169547081, 0.023473568260669708, -0.018795350566506386, -0.017699819058179855, -0.02191295102238655, -0.009020006284117699, 0.008136202581226826, 0.02379823848605156, -0.020601782947778702, 0.009004396386444569, 0.020377280190587044, 0.03629446402192116, 0.005658252164721489, 0.04677523672580719, -0.006201080046594143, -0.008365616202354431, -0.010035849176347256, -0.03911002725362778, 0.025492846965789795, -0.0011061019031330943, -0.04047166556119919, 0.03652056306600571, 0.021715568378567696, 0.04049026966094971, 0.03924030438065529, 0.003244052641093731, 0.02300010435283184, 0.03633960336446762, -0.012401719577610493, 0.002589532407000661, -0.006755691487342119, 0.04922304302453995, 0.009691404178738594, 0.005759474355727434, 0.0003612615109886974, -0.0028459990862756968, -0.054857287555933, -0.03802710399031639, -0.03529856726527214, 0.037363193929195404, -0.015722187235951424, 0.028119899332523346, 0.01382345799356699, -0.0017554961377754807, -0.005239387508481741, -0.029273614287376404, -0.026080111041665077, -0.0554555281996727, -0.007654972840100527, 0.06632380932569504, -0.01608634926378727, 0.026982223615050316, -0.012144952081143856, -0.004630973096936941, 0.028466586023569107, 0.05846986919641495, -0.0033669995609670877, 0.0027699493803083897, 0.04127512872219086, 0.014862357638776302, -0.013356728479266167, 0.00008193009125534445, -0.00527083408087492, 0.0031631947495043278, -0.02827681414783001, 0.012137392535805702, -0.008177949115633965, -0.025193627923727036, 0.0023547126911580563, 0.03161758929491043, 0.03673451021313667, 0.04269134998321533, -0.01815558783710003, -0.06194046512246132, 0.024114400148391724, 0.041004572063684464, -0.04423993080854416, -0.012209571897983551, 0.0035705682821571827, 0.0337684266269207, 0.05381502956151962, 0.04646944999694824, 0.010807681828737259, 0.03729858249425888, 0.03219211474061012, 0.06511116027832031, -0.017542673274874687, 0.02390999346971512, 0.002884350949898362, -0.00834466703236103, 0.05880735442042351, 0.02163521759212017, -0.028600377961993217, 0.03210010007023811, -0.011335809715092182, 0.0021933249663561583, -0.010489444248378277, 0.03328491002321243, -0.0026451717130839825, 0.03727932646870613, 0.04207366332411766, 0.03297891467809677, -0.04097221419215202, 0.017971202731132507, 0.03359366953372955, 0.01938091404736042, -0.023013396188616753, -0.021717164665460587, 0.027724551036953926, 0.019009307026863098, 0.009577498771250248, 0.025256967172026634, 0.03367892652750015, -0.004467271268367767, 0.012328343465924263, 0.004969305358827114, 0.016576211899518967, -0.05104825645685196, 0.006764670833945274, -0.07289537787437439, -0.035339295864105225, 0.006830996833741665, -0.05490900203585625, 0.058179378509521484, 0.04146263003349304, -0.02227635867893696, 0.02947896160185337, -0.0024456570390611887, -0.0077486238442361355, -0.04647168144583702, -0.03789671137928963, 0.019086139276623726, 0.031202910467982292, 0.019510487094521523, -0.011751249432563782, 0.043655265122652054, -0.019132552668452263, 0.020260030403733253, -0.02626827359199524, -0.031519219279289246, 0.017114948481321335, -0.005994813982397318, 0.03485003113746643, -0.028910692781209946, -0.03950073942542076, -0.030438223853707314, -0.05721471086144447, -0.0630708560347557, 0.017528068274259567, -0.025668520480394363, -0.013178542256355286, 0.007086384575814009, -0.04079240560531616, 0.036001719534397125, 0.025131123140454292, -0.05911340191960335, 0.06053023785352707, 0.019081633538007736, -0.032169975340366364, 0.03404165059328079, 0.007225339766591787, -0.0003967065713368356, -0.03723970055580139, 0.04334152117371559, 0.0738409161567688, 0.0006136883166618645, -0.026443470269441605, -0.028985952958464622, -0.02587226964533329, 0.0013201558031141758, 0.027513504028320312, 0.018724964931607246, -0.05670842528343201, 0.04637948423624039, 0.02524345926940441, -0.06674618273973465, 0.038868341594934464, -0.039282672107219696, -0.0258620772510767, -0.02993622049689293, -0.009313403628766537, -0.008138463832437992, 0.029768232256174088, 0.024075394496321678, -0.002771429717540741, -0.021332699805498123, -0.0031817888375371695, 0.010313748382031918, 0.06555983424186707, -0.04118518903851509, -0.031015856191515923, 0.030798986554145813, -0.0014875356573611498, -0.005512886215001345, 0.05643394961953163, -0.0039816307835280895, 0.00685541145503521, 0.029313817620277405, -0.0008471881737932563, -0.001880937721580267, 0.022212471812963486, -0.01790478080511093, 0.03029763139784336, 0.04320994019508362, 0.01684064418077469, -0.02226847968995571, 0.0037415316328406334, 0.029280219227075577, 0.014468809589743614, 0.022791117429733276, 0.05488511919975281, -0.03471384942531586, -0.02246304601430893, -0.038629308342933655, 0.015704059973359108, -0.00081033626338467, 0.07034249603748322, -0.04979611188173294, 0.05405654385685921, 0.0024319568183273077, -0.0329500287771225, 0.01872432231903076, -0.02856508456170559, 0.022528866305947304, 0.048425644636154175, -0.023843590170145035, 0.00629931828007102, -0.019598601385951042, 0.029426641762256622, -0.010943102650344372, 0.013385066762566566, 0.040073931217193604, 0.02236662246286869, 0.00975943636149168, -0.04480414465069771, 0.00014445948181673884, -0.028736844658851624, -0.0014126806054264307, -0.02789943851530552, -0.01333432924002409, 0.03219541162252426, -0.03948817774653435, -0.037677742540836334, -0.06572040170431137, 0.02010772004723549, 0.007346547208726406, 0.025035548955202103, -0.007403689436614513, 0.027424024417996407, 0.014354480430483818, 0.023096181452274323, 0.0446089506149292, -0.030505061149597168, 0.0023947996087372303, -0.06824877113103867, 0.04396067187190056, 0.017919370904564857, -0.03523621708154678, -0.029055848717689514, -0.029763000085949898, -0.024108152836561203, 0.03745967522263527, 0.029151899740099907, -0.012205895036458969, -0.03082524985074997, 0.035502273589372635, 0.03886250779032707, 0.023764068260788918, -0.019644098356366158, -0.008272964507341385, -0.011447753757238388, 0.018530728295445442, 0.02306940220296383, -0.030633844435214996, 0.018324675038456917, -0.03728286176919937, 0.0279503483325243, 0.048075154423713684, -0.014267857186496258, -0.05195681378245354, -0.0036990875378251076, -0.03539961576461792, -0.014879402704536915, -0.004255369771271944, 0.06086242198944092, -0.01983773149549961, 0.016625219956040382, -0.05443523824214935, 0.039340440183877945, 0.032305166125297546, 0.006459183059632778, -0.005866858176887035, 0.010842664167284966, 0.021449150517582893, 0.00731957983225584, 0.025082863867282867, -0.040607597678899765, -0.026337530463933945, 0.01848074607551098, -0.07065723091363907, 0.020202841609716415, -0.005428300239145756, -0.007031506393104792, 0.04879124090075493, 0.01864316128194332, 0.009881042875349522, 0.019579775631427765, 0.005232374649494886, 0.011681252159178257, -0.007360559888184071, 0.039743680506944656, -0.03220449388027191, -0.04439336061477661, 0.05706336349248886, 0.0009237600024789572, -0.00793688464909792, 0.04511100426316261, 0.013094278983771801, 0.0028410565573722124, 0.036278847604990005, 0.03136046975851059, -0.04034137725830078, 0.03219687566161156, -0.04372299835085869, 0.023440225049853325, -0.044944871217012405, -0.036757420748472214, -0.012467369437217712, -0.021559013053774834, 0.034538280218839645, -0.014910788275301456, -0.00042208677041344345, -0.02794489450752735, -0.03672602027654648, -0.02092815935611725, -0.004378031007945538, -0.0239975918084383, -0.02472005784511566, -0.010559060610830784, -0.012768309563398361, -0.016832558438181877, -0.04171467199921608, 0.0023333586286753416, -0.019962580874562263, -0.012847715988755226, 0.019045274704694748, -0.01218724437057972, 0.03221128135919571, 0.03962027654051781, -0.016324792057275772, -0.04097051918506622, 0.02839747443795204, -0.007792678661644459, -0.00776250334456563, -0.02092360146343708, -0.00024619928444735706, -0.010817250236868858, -0.003569436725229025, 0.002508757635951042, 0.003976916894316673, 0.012567107565701008, 0.00925660040229559, 0.016020264476537704, 0.013655314221978188, 0.005674379412084818, 0.025109754875302315, -0.04129335284233093, 0.038697581738233566, 0.026867946609854698, -0.06137679144740105, 0.0003058497968595475, 0.022388745099306107, -0.0026207834016531706, 0.039252810180187225, 0.012961453758180141, 0.0007212745840661228, -0.06822488456964493, -0.06317833811044693, 0.005966700613498688, -0.018494220450520515, -0.0261777862906456, -0.04012983664870262, -0.0407232791185379, -0.013403233140707016, 0.041046664118766785, -0.005272538401186466, 0.0023483573459088802, -0.022090891376137733, -0.03321002051234245, 0.009746513329446316, -0.036689598113298416, 0.0033951604273170233, -0.03727021440863609, -0.003856330644339323, -0.03746255114674568, 0.06352110952138901, 0.018825430423021317, 0.00998175423592329, 0.007593249436467886, 0.004256892018020153, 0.030037574470043182, -0.02009403333067894, -0.04948185011744499, -0.027732929214835167, 0.0014721154002472758, -0.007738642394542694, 0.02902977541089058, 0.02038242295384407, 0.007352552842348814, 0.03296946361660957, -0.043528176844120026, 0.006938259582966566, -0.0606212355196476, -0.024181729182600975, 0.010844475589692593, -0.005231486167758703, 0.060790710151195526, -0.025684187188744545, -0.005266227759420872, 0.008118735626339912, 0.04212125018239021, 0.07622027397155762, -0.012142505496740341, -0.038810089230537415, -0.03614598140120506, -0.0323396660387516, -0.03104601800441742, -0.011136367917060852, -0.04880868270993233, -0.025071190670132637, -0.04153313487768173, -0.011722405441105366, 0.04109402745962143, -0.013739163987338543, 0.02227644808590412, 0.0480574369430542, -0.033769022673368454, -0.02343028597533703, -0.03508453816175461, 0.028672782704234123, 0.04738496243953705, -0.03986296057701111, -0.012282053008675575, -0.0526580810546875, -0.03218340873718262, 0.008194305934011936, -0.03205703943967819, -0.04549078643321991, -0.036594636738300323, -0.026935016736388206, 0.05871971324086189, 0.01402021199464798, 0.03978836536407471, 0.00988578237593174, -0.028089838102459908, -0.06767287105321884, 0.04946238547563553, 0.011072183027863503, 0.023295611143112183, 0.02833988331258297, -0.0022653790656477213, -0.016935523599386215, -0.013551939278841019, 0.002253227634355426, -0.0064688134007155895, -0.04718375578522682, 0.06012693792581558, -0.01133454218506813, -0.038144081830978394, 0.001971585676074028, 0.04873355105519295, -0.07623026520013809, -0.021089179441332817, -0.02230323851108551, 0.03800206258893013, 0.001456706551834941, -0.03690202534198761, -0.0036230715923011303, -0.022273847833275795, 0.028306184336543083, 0.00752356369048357, 0.04712563753128052, -0.020953752100467682, 0.0686546340584755, -0.00855284184217453, 0.024919725954532623, -0.048934128135442734, 0.025007545948028564, 0.010187088511884212, -0.0036907666362822056, -0.028591953217983246, -0.053687822073698044, -0.013893264345824718, 0.006833246443420649, 0.005807010922580957, 0.0536237433552742, -0.018593553453683853, 0.023872332647442818, 0.04706466570496559, -0.003058146219700575, 0.05421362444758415, 0.0014101658016443253, -0.012519548647105694, 0.009826491586863995, -0.007360660471022129, -0.041112400591373444, -0.030326582491397858, 0.039638452231884, -0.002669009380042553, 0.020169856026768684, -0.04774147644639015, -0.0053658513352274895, 0.05253969877958298, 0.023293159902095795, -0.000049902595492312685, -0.05503307655453682, -0.051764264702796936, -0.03257569670677185, -0.05126293748617172, -0.03456046059727669, -0.00574006512761116, -0.00010836668661795557, 0.04417060315608978, -0.014782730489969254, -0.037490908056497574, 0.011504099704325199, 0.008210905827581882, -0.04638981819152832, 0.015978824347257614, -0.04199247807264328, 0.03539983928203583, -0.06024175137281418, -0.03175856173038483, -0.03952403739094734, 0.008070780895650387, -0.0007363914046436548, -0.015833323821425438, -0.015975626185536385, 0.06353319436311722, -0.021864991635084152, 0.025133216753602028, 0.013564596883952618, 0.018320344388484955, 0.007560689002275467, -0.0262801144272089, 0.010741579346358776, 0.031038830056786537, -0.01629049889743328, 0.054876893758773804, 0.01837208680808544, -0.020997975021600723, 0.02572941593825817, 0.025548012927174568, -0.05984478071331978, -0.02110089547932148, 0.01082855835556984, 0.007126234471797943, -0.026703529059886932, -0.03967238590121269, -0.047723446041345596, 0.010987726040184498, -0.05352142080664635, 0.014649273827672005, -0.0036359229125082493, -0.021600790321826935, 0.0040710992179811, -0.004579485394060612, -0.008424673229455948, 0.06989651918411255, 0.00032745528733357787, 0.007121620699763298, 0.031152814626693726, 0.01508796215057373, 0.018019158393144608, -0.00032049440778791904, 0.021704068407416344, 0.026084832847118378, 0.03855898231267929, -0.040406882762908936, -0.009356800466775894, 0.04595715552568436, -0.023255031555891037, 0.02640528976917267, -0.028670240193605423, -0.0371767096221447, -0.04915454611182213, -0.03785998374223709, 0.009235319681465626, 0.03310809284448624, 0.005850879475474358, -0.032958514988422394, 0.019594421610236168, -0.0361778549849987, -0.030322201550006866, -0.0020078448578715324, -0.054130956530570984, -0.03159033879637718, 0.019286686554551125, 0.03106292337179184, 0.0051838792860507965, -0.0065388609655201435, -0.04241052642464638, 0.00230058073066175, -0.01663266122341156, -0.009277504868805408, -0.029347090050578117, 0.04803137481212616, -0.015335138887166977, 0.04757842794060707, -0.018332589417696, 0.027390966191887856, -0.011951560154557228, 0.03878172114491463, -0.04043077677488327, -0.05118133872747421, 0.018300587311387062, 0.004755039233714342, 0.040872689336538315, 0.019993474707007408, 0.003586227772757411, -0.005529254209250212, -0.008274083957076073, -0.013157260604202747, -0.013728240504860878, -0.0008928460301831365, -0.0008150343201123178, 0.020045384764671326, 0.0021493062376976013, -0.02870376966893673, -0.01668434403836727, 0.026021907106041908, 0.015118374489247799, -0.0171506367623806, -0.008266238495707512, 0.05195004865527153, 0.045605696737766266, -0.013967989012598991, 0.03623228147625923, 0.011594726704061031, 0.06509744375944138, 0.003079627873376012, -0.021250825375318527, -0.007373196538537741, 0.018997395411133766, 0.047231774777173996, 0.04360773041844368, -0.015569894574582577, 0.015288228169083595, 0.033910974860191345, -0.010561070404946804, 0.02143431082367897, 0.016189999878406525, 0.0445651076734066, -0.011436018161475658, 0.006462554447352886, -0.03174782916903496, 0.011051247827708721, 0.03908492624759674, -0.03215869888663292, 0.018322963267564774, -0.016808755695819855, 0.00014755605661775917, -0.043738868087530136, -0.00494298106059432, 0.05393470078706741, 0.0011638449504971504, -0.005754959303885698, -0.004124925937503576, -0.022389942780137062, -0.0026242618914693594, 0.052113812416791916, 0.00459632184356451, 0.02172207646071911, 0.04509657621383667, 0.04020387679338455, 0.00791179109364748, 0.024305300787091255, 0.0380399152636528, 0.011727755889296532, -0.05943657457828522, 0.01244567334651947, 0.008740004152059555, -0.023766912519931793, -0.015141206793487072, 0.01073798444122076, -0.032721906900405884, 0.022681552916765213, -0.0289141908288002, -0.036007415503263474, 0.05498366802930832, -0.015346786938607693, -0.014103731140494347, -0.03868836909532547, 0.008617970161139965, -0.002435884438455105, 0.013487233780324459, 0.03439817577600479, 0.020632704719901085, -0.04825465753674507, 0.036499641835689545, -0.02301788330078125, 0.04492970183491707, 0.014306451193988323, 0.04328948259353638, -0.004433149471879005, 0.02937461994588375, 0.05385490506887436, -0.03241715952754021, -0.06079394742846489, 0.010466980747878551, -0.003398842876777053, -0.04005119577050209, 0.010545440018177032, -0.02532789669930935, -0.00902596116065979, -0.0240247193723917, -0.00824826117604971, -0.01089314091950655, 0.043686240911483765, -0.026192061603069305, -0.03413735702633858, -0.001634508720599115, 0.01943335495889187, -0.06339715421199799, 0.02614487148821354, -0.0058199879713356495, 0.06071958318352699, 0.0006216379697434604, -0.017461784183979034, -0.030113674700260162, -0.07364130765199661, -0.00426329392939806, -0.02590341307222843, 0.05691567063331604, -0.006680054124444723, -0.03798576444387436, -0.044144682586193085, -0.05440478026866913, -0.02934402972459793, 0.011550579220056534, -0.025129664689302444, -0.049517180770635605, 0.03415011987090111, 0.059147827327251434, 0.0007315966067835689, -0.004263393115252256, -0.04312102124094963, 0.011169010773301125, 0.05712917074561119, 0.0498184859752655, 0.005699063651263714, 0.06636569648981094, 0.050002455711364746, -0.03621095418930054, 0.004138210788369179, -0.03323530778288841, 0.015961701050400734, -0.04497243091464043, -0.008160472847521305, -0.021839933469891548, 0.012325381860136986, -0.028736839070916176, -0.07048919796943665, 0.010899440385401249, 0.013401249423623085, 0.02362739108502865, -0.02148202620446682, -0.09199123084545135, 0.010333770886063576, -0.045183215290308, -0.04627753421664238, -0.03333250433206558, 0.05435630679130554, 0.0006323599955067039, -0.0162062868475914, -0.022594887763261795, -0.09229970723390579, 0.16806672513484955, 0.03955885395407677, 0.016194229945540428, -0.009430363774299622, 0.014311468228697777, 0.05284519121050835, 0.028231274336576462, -0.010831753723323345, 0.009989499114453793, -0.02409694716334343, 0.018949007615447044, 0.009579864330589771, 0.017814813181757927, 0.01784375123679638, 0.018172290176153183, 0.06726875901222229, -0.051015689969062805, 0.006630503106862307, 0.021498337388038635, -0.0651412308216095, -0.05796833336353302, 0.020300080999732018, -0.0006806632736697793, 0.031061045825481415, -0.022738516330718994, 0.04024306312203407, 0.0432782843708992, -0.045719124376773834, -0.025493301451206207, -0.03506690636277199, 0.020754804834723473, -0.03525620698928833, 0.02779971994459629, -0.011719435453414917, -0.02841702476143837, 0.06004510447382927, -0.014355374500155449, 0.0016361887101083994, 0.016130132600665092, -0.0004715128452517092, -0.02303929440677166, 0.014588684774935246, 0.03549527749419212, -0.04719684645533562, 0.010906040668487549, 0.037666045129299164, -0.024419594556093216, 0.029183268547058105, 0.022645866498351097, -0.02769041806459427, 0.07624363899230957, -0.03141895681619644, 0.03412683680653572, -0.009227253496646881, -0.021601911634206772, 0.005981713067740202, 0.03825130686163902, -0.05153590440750122, -0.02751312404870987, -0.025907687842845917, 0.029033157974481583, 0.008241761475801468, 0.011370183899998665, 0.011141050606966019, -0.028871726244688034, 0.015554037876427174, 0.028919177129864693, -0.02139705792069435, -0.01422079000622034, 0.0027786761056631804, -0.030819261446595192, 0.008592814207077026, -0.022637847810983658, -0.04958989843726158, 0.013021474704146385, 0.05388499051332474, -0.005354630295187235, 0.058588773012161255, 0.006279198918491602, -0.02735067903995514, -0.027026984840631485, -0.0144685423001647, -0.005934424232691526, -0.01764567755162716, 0.057259462773799896, 0.04782034084200859, -0.03809939697384834, -0.028767535462975502, -0.03296033665537834, 0.04825770854949951, 0.02764890342950821, 0.02155587635934353, -0.006867821328341961, -0.03940054774284363, -0.029753323644399643 ]
Newborn Baby Deaths hit critical levels for 2nd time in 7 Months; is Pfizer's Covid Jab to blame? Posted byrightsfreedoms May 8, 2022 May 7, 2022 Posted inUncategorizedTags:baby, coronavirus, covid, death, newborn, pandemic, plandemic, vaccine BY THE EXPOSÉ ON MAY 6, 2022 The number of newborn babies sadly dying has surpassed critical levels for the 2nd time in 7 months in Scotland according to the Public Health Scotland database. The discovery of these record-breaking deaths comes after it was revealed both Pfizer and Medicine Regulators hid the dangers of Covid-19 vaccination during pregnancy because the only study conducted found it increases the risk of birth defects & infertility. The Exposé is now censored by Facebook & Twitter. Let's not lose touch, subscribe today to receive the latest news from The Exposé in your inbox Follow The Exposé on Telegram Join The Exposé's Telegram Discussion Group Public Health Scotland (PHS) has a full dashboard on Covid-19 wider impacts on the health care system, found here, and it includes a whole range of data from mental health statistics to pregnancies, cardiovascular disorders data, and cancer. Official figures reveal that the rate of neonatal deaths increased to 4.6 per 1000 live births in March 2022, a 119% increase on the expected rate of deaths. This means the neonatal mortality rate breached an upper warning threshold known as the 'control limit' for the second time in at least four years. The last time it breached was in September 2021, when neonatal deaths per 1000 live births climbed to 5.1. Although the rate fluctuates month to month, the figure for both September 2021 and March 2022 is on a par with levels that were last typically seen in the late 1980s. Public Health Scotland (PHS) has not formally announced they have launched an investigation, but this is what they are supposed to do when the upper warning threshold is reached, and they did so back in 2021. At the time, PHS said the fact that the upper control limit has been exceeded "indicates there is a higher likelihood that there are factors beyond random variation that may have contributed to the number of deaths that occurred". Whilst the Covid-19 injections may not be to blame there is now plenty of evidence suggesting that they could well be. At the end of April 2021, the Joint Committee on Vaccination and Immunisation (JCVI) formally recommended that all pregnant women should be offered the Pfizer Covid-19 injection, despite the fact no studies had been performed to prove the safety of administering the injection during pregnancy. However, despite the JCVI not officially advising the jab be offered to pregnant women until the end of April 2021, we know that they were being given it prior to this due to the number of miscarriages reported to the UK Medicine Regulator as of April 5th 2021. This was also despite the fact the UK Government had clearly stated in the official 'REG 174 INFORMATION FOR UK HEALTHCARE PROFESSIONALS' document prepared upon emergency authorisation of the Pfizer mRNA Covid-19 injection in December 2020, that the Pfizer jab was not recommended for use during pregnancy, pregnancy should be ruled out prior to vaccination, and women of childbearing age should avoid pregnancy for at least 2 months after their second dose. But we now know that even this official advice withheld the true information, with Medicine Regulators around the world working in tandem with Pfizer to cover up the fact the only limited animal study performed to test the safety of the Pfizer vaccine in pregnancy found an increased rate of birth defects and infertility. The full investigation of this fraud and deception can be read here, But to summarise: a 'Freedom of Information' request alongside an in-depth dive into the only pregnancy/fertility study performed on the Pfizer Covid-19 injection revealed that Medicine Regulators and Pfizer chose to publicly cover-up alarming abnormalities of the developing foetus and falsely downgraded the actual risk of Covid-19 vaccination during pregnancy by suppressing documented findings of the clinical data. These decisions led to medical professionals, who are far too trusting of Medicine Regulators, to wrongly inform pregnant women that the Covid-19 injections are perfectly safe during pregnancy, leading to many pregnant women feeling pressured to get vaccinated. https://dailyexpose.uk/2022/05/05/pfizer-hid-dangers-covid-vaccination-pregnancy/embed/#?secret=cB3i87DI4C#?secret=9UeaSR04G0 Another alarming real-world study also found that the rate of Miscarriage is 82% following Covid-19 Vaccination. In July 2021, we exclusively revealed how data had been manipulated by scientists carrying out a real-world study for the CDC to show that Covid-19 vaccines were safe for use during pregnancy. The authors claimed that the number of people to suffer a spontaneous abortion (miscarriage) during the study was 104 out of 827 completed pregnancies, equating the risk of miscarriage at 12.6%; 7 – 12% lower than the risk of miscarriage in the general population. However, our analysis proved that these numbers were extremely misleading due to the fact that of the 827 completed pregnancies, 700 / 86% of the women had received a dose of either the Pfizer or Moderna Covid-19 vaccine during the third trimester of pregnancy, meaning it was impossible for them to suffer a miscarriage due to the fact they can only occur prior to week 20 of pregnancy. This meant that just 127 women received either the Pfizer or Moderna Covid-19 vaccine during the first/second trimester, with 104 of the woman sadly losing their baby. Therefore the rate of incidence of miscarriage was 82%, not 12.6% as presented in the findings of the study, and the authors of the study have since admitted that they made a mistake, issuing a correction six months too late because the study has been used to justify Covid-19 vaccination of pregnant women and new mothers around the world. Another study conducted in Japan on behalf of Pfizer, which is contained in the confidential documents the U.S. Food and Drug Administration has been forced to publish by court order, also shows that a high concentration of the Covid-19 injection accumulates in the ovaries for a minimum of 48 hours. It's not known whether it continues to accumulate after 48 hours due to observations being halted at this point. In the first 15 minutes following injection of the Pfizer jab, researchers found that the total lipid concentration in the ovaries measured 0.104ml. This then increased to 1.34ml after 1 hour, 2.34ml after 4 hours, and then 12.3ml after 48 hours. This may also explain why further Public Health Scotland data contained in their Covid-19 Wider Impacts dashboard shows the rate of ovarian cancer across Scotland has been significantly higher than the expected average since March 2021. It is of course impossible to definitively conclude that the Covid-19 injections are responsible for a rise in neonatal deaths in Scotland. But with – studies showing that the Covid-19 vaccine accumulates in the ovaries over time, real-world data showing the rate of miscarriage is as high as 82% following vaccination, and evidence proving Medicine Regulators and Pfizer hid the dangers of Covid-19 vaccination during pregnancy because the only study conducted found it increases the risk of birth defects & infertility, It's quite clear that the Covid-19 injections interfere with the reproductive system and further studies and investigations should be carried out with immediate effect. https://dailyexpose.uk/2022/05/06/newborn-baby-deaths-hit-critical-levels-2nd-time/ UNITED NATIONS ANNOUNCES KLAUS SCHWAB OF THE WORLD ECONOMIC FORUM Bill Gates' New Book Is More Worthy of Study By A Student Of Abnormal Psychology Than A Public Health Official
[ -0.025103427469730377, 0.004437302704900503, 0.017436042428016663, 0.011716486886143684, 0.012646427378058434, -0.019397594034671783, 0.013942204415798187, 0.010440977290272713, -0.002199862850829959, 0.028239071369171143, 0.03574999049305916, -0.0013666560407727957, 0.029660223051905632, 0.013494221493601799, -0.015997231006622314, 0.00580930057913065, -0.01499113067984581, -0.03157990798354149, 0.0166790671646595, -0.00009266342385672033, -0.006045774556696415, 0.02584156207740307, -0.07294737547636032, -0.04074171558022499, -0.008406373672187328, 0.029765386134386063, 0.01906883344054222, -0.016858184710144997, 0.07685592770576477, 0.06766602396965027, -0.023524941876530647, -0.03781270235776901, 0.03444164618849754, -0.03952221944928169, -0.009951811283826828, -0.009709355421364307, 0.02613053284585476, -0.012810546904802322, 0.01564958319067955, -0.0454249307513237, 0.03386807441711426, -0.006215087603777647, 0.0486275888979435, -0.015716305002570152, -0.018207263201475143, -0.012465711683034897, -0.019152505323290825, 0.009324740618467331, -0.001711923978291452, 0.020995723083615303, 0.013932065106928349, -0.013930943794548512, 0.03735101968050003, -0.025920862331986427, 0.010775289498269558, 0.008847278542816639, 0.019884830340743065, -0.013495699502527714, -0.03604597970843315, 0.03879813104867935, -0.017539620399475098, -0.018283100798726082, 0.02672683075070381, -0.044928696006536484, 0.03737080469727516, 0.018796944990754128, -0.02001703530550003, -0.04118834808468819, 0.02276504598557949, -0.032318226993083954, 0.02804196998476982, 0.02378327026963234, -0.04882023483514786, -0.0004570700111798942, 0.007037321571260691, -0.013307439163327217, -0.03378395736217499, -0.02667848952114582, -0.018772032111883163, -0.019065961241722107, -0.012269694358110428, 0.02211473323404789, 0.026986921206116676, 0.008519160561263561, -0.08345538377761841, 0.0005614058463834226, -0.0043255933560431, 0.02524738572537899, 0.014855566434562206, 0.02037115953862667, 0.028374720364809036, 0.04436017572879791, 0.005793553777039051, -0.008497740142047405, 0.035422857850790024, 0.06185590475797653, -0.04858863353729248, 0.009585753083229065, -0.02393174171447754, -0.008502182550728321, 0.05949858948588371, 0.011114922352135181, 0.016606681048870087, 0.058043643832206726, -0.045828092843294144, -0.001742875319905579, 0.016812527552247047, -0.004863939248025417, -0.009895320050418377, -0.013142266310751438, -0.0023430651053786278, -0.012622104026377201, 0.002954293740913272, -0.003002509707584977, 0.03106129728257656, 0.026583638042211533, 0.0013519498752430081, 0.06325118243694305, -0.04572329670190811, 0.031110083684325218, -0.012728019617497921, 0.020635830238461494, 0.04830605164170265, -0.020109012722969055, 0.0278396587818861, -0.02915681153535843, 0.00573450094088912, 0.05244671180844307, -0.04228892922401428, -0.011066406965255737, 0.0026743856724351645, -0.06572633236646652, -0.020520970225334167, 0.028803791850805283, 0.005550410598516464, 0.0020572454668581486, 0.026663651689887047, 0.021925192326307297, 0.04624587669968605, -0.04801471531391144, 0.015116800554096699, 0.016697313636541367, -0.00325165968388319, 0.07698243111371994, -0.038204681128263474, 0.02574080415070057, 0.0034398576244711876, -0.00568279018625617, -0.03985148295760155, -0.01673147641122341, -0.02300868183374405, 0.04574839398264885, 0.007862715050578117, 0.013579034246504307, -0.0016472265124320984, -0.016976049169898033, -0.021770276129245758, 0.020750511437654495, 0.00614039646461606, 0.038301751017570496, -0.030267685651779175, 0.01564955897629261, 0.007533661555498838, 0.023438172414898872, -0.025140156969428062, 0.014260424301028252, -0.028744107112288475, -0.0019516433821991086, 0.008539887145161629, -0.053239211440086365, 0.04441802576184273, 0.009747927077114582, -0.028758704662322998, 0.01926719769835472, 0.053666625171899796, 0.05877958610653877, 0.01532851904630661, -0.0075217317789793015, 0.05107240751385689, 0.07613851875066757, -0.026777302846312523, -0.008708321489393711, 0.013442346826195717, 0.05671912059187889, 0.002766618737950921, -0.0072289141826331615, 0.005496188998222351, -0.038198791444301605, -0.029877042397856712, -0.04470798745751381, -0.015246499329805374, 0.042492013424634933, -0.037223827093839645, 0.019212424755096436, 0.02327045053243637, 0.000866628484800458, -0.02670721709728241, -0.0029211402870714664, 0.018219012767076492, -0.024121223017573357, -0.0372123159468174, 0.07360082864761353, -0.039231158792972565, 0.043803926557302475, 0.0017229416407644749, -0.006047620438039303, 0.018199274316430092, 0.028416134417057037, -0.035401273518800735, -0.02168506570160389, 0.05528640002012253, 0.0030767181888222694, -0.040571264922618866, -0.016859587281942368, 0.020535022020339966, -0.02393745258450508, -0.05846146494150162, 0.04317430406808853, -0.006390532944351435, 0.013632015325129032, -0.005408731754869223, 0.010453243739902973, 0.060296982526779175, 0.036461636424064636, 0.017791250720620155, -0.005761584732681513, 0.016711154952645302, 0.03580290824174881, -0.0456063486635685, 0.0006114407442510128, 0.006094340234994888, 0.05924251303076744, 0.02630639262497425, 0.036705680191516876, 0.05223056301474571, 0.006167235784232616, 0.02188604138791561, 0.03018701821565628, -0.021125826984643936, 0.035713549703359604, -0.009493878111243248, 0.04876375570893288, 0.028155120089650154, 0.03015931136906147, -0.016465043649077415, 0.04176287725567818, -0.01491127721965313, -0.008670172654092312, -0.02287740632891655, 0.0765308141708374, 0.028019150719046593, 0.04350876808166504, 0.027712222188711166, 0.04750819876790047, -0.06931354850530624, 0.006793258711695671, 0.02430625818669796, 0.03447556123137474, -0.04097164049744606, -0.002121787052601576, -0.020507359877228737, 0.026236681267619133, -0.0337534174323082, -0.009691103361546993, 0.03867967054247856, 0.054570332169532776, -0.013959433883428574, 0.025856224820017815, 0.0044570500031113625, -0.033257581293582916, -0.02560397982597351, -0.04996764659881592, -0.03944599628448486, -0.039865076541900635, -0.07443268597126007, -0.00681920163333416, 0.03262154385447502, -0.029789140447974205, 0.017613936215639114, -0.006500112824141979, -0.016312774270772934, 0.013739489950239658, -0.005019995383918285, 0.03882073238492012, 0.027700524777173996, 0.030083559453487396, -0.07956866919994354, 0.035791393369436264, -0.020650425925850868, 0.03019896149635315, -0.03339692950248718, 0.019767550751566887, -0.014670729637145996, -0.017526114359498024, 0.04704884812235832, -0.010351929813623428, 0.0014239908196032047, -0.009333756752312183, -0.03614050894975662, -0.04088761657476425, 0.021528104320168495, 0.007895555347204208, -0.01337997242808342, 0.00828168448060751, -0.05219710245728493, 0.05255235731601715, 0.01569657400250435, -0.011148577556014061, 0.03581487014889717, 0.031787920743227005, -0.04297218471765518, 0.02394936792552471, -0.009684689342975616, 0.02691957913339138, -0.05798615515232086, 0.021401742473244667, 0.04158148169517517, -0.02286270260810852, 0.012075400911271572, 0.007729211822152138, -0.04749501496553421, 0.02211073786020279, 0.019842058420181274, -0.028407983481884003, -0.05451866239309311, 0.026955589652061462, 0.02923593856394291, -0.06303331255912781, 0.01928373984992504, -0.05599796772003174, -0.02180623449385166, -0.005647677928209305, -0.013703936710953712, 0.016570990905165672, 0.03070315159857273, 0.012824781239032745, -0.021726923063397408, -0.02960999868810177, 0.0015092195244506001, 0.033732712268829346, 0.05278831720352173, -0.009943089447915554, -0.019052769988775253, 0.022752581164240837, -0.03795762360095978, -0.00038273396785371006, 0.05712773650884628, -0.018706701695919037, -0.005542995408177376, 0.017022766172885895, 0.015967242419719696, 0.021383272483944893, 0.05360312759876251, 0.0072839874774217606, -0.021366596221923828, 0.0571625791490078, -0.010768764652311802, -0.0012684047687798738, 0.013774769380688667, 0.002265235176309943, 0.023311898112297058, -0.0031134989112615585, -0.006361609324812889, 0.01157420314848423, -0.06453192979097366, -0.0567442961037159, 0.028109600767493248, -0.012536292895674706, 0.05211653560400009, -0.04006711021065712, 0.04561825096607208, -0.006363789085298777, -0.02691948227584362, 0.054435767233371735, -0.06202661246061325, 0.023211874067783356, 0.05701405555009842, -0.0012336944928392768, 0.04031556099653244, -0.021712321788072586, 0.030994778499007225, -0.03252287581562996, 0.009901048615574837, 0.05464653670787811, -0.006877343636006117, 0.04250219091773033, 0.004111083690077066, -0.010978520847856998, -0.012852164916694164, -0.010286967270076275, -0.004580754786729813, -0.038363613188266754, -0.012509736232459545, -0.00965858343988657, -0.03896140679717064, -0.06014684960246086, 0.02559955231845379, 0.04837854951620102, 0.050637952983379364, 0.011145330034196377, 0.06526722759008408, 0.002247859723865986, -0.003984265029430389, 0.05113738402724266, 0.007055111229419708, 0.01690046116709709, -0.03466101735830307, 0.05259180814027786, 0.011709935963153839, -0.037592850625514984, -0.03429630771279335, -0.006264893338084221, -0.027229467406868935, 0.014428626745939255, 0.0011208514915779233, -0.03369605541229248, -0.04589161276817322, -0.025416115298867226, -0.023185357451438904, 0.01808028668165207, -0.03832017257809639, -0.011417183093726635, 0.006035888101905584, 0.005803854204714298, -0.00825540442019701, -0.07163088023662567, 0.029723742976784706, -0.02936175838112831, 0.02097320556640625, 0.03864924982190132, 0.013876988552510738, -0.04052796587347984, -0.05377453938126564, -0.029286885634064674, -0.024370502680540085, -0.006110840477049351, 0.05944134294986725, 0.0187874436378479, 0.02551640383899212, -0.057946112006902695, 0.018711403012275696, 0.0050842310301959515, 0.012218429706990719, -0.013071085326373577, -0.004888757597655058, 0.009547671303153038, 0.003010548185557127, 0.031044352799654007, -0.006009546108543873, -0.05236119404435158, 0.011039919219911098, -0.05727153271436691, 0.009156059473752975, -0.028458960354328156, -0.03942747041583061, -0.01568545401096344, 0.011241424828767776, 0.03840861842036247, 0.035103678703308105, -0.006762246135622263, 0.00006399806443369016, -0.01096287090331316, 0.04274895787239075, -0.03471158444881439, -0.02726123109459877, 0.06345371901988983, 0.022125964984297752, -0.020972905680537224, 0.04412493854761124, 0.0013180396053940058, -0.024198999628424644, 0.02184103988111019, 0.007690012454986572, -0.05753472447395325, 0.04756149277091026, -0.013691387139260769, 0.0545567125082016, -0.02216941863298416, -0.04842700436711311, 0.014824267476797104, -0.023387931287288666, 0.03066098317503929, -0.02983637899160385, -0.020955819636583328, -0.041243940591812134, -0.05366205424070358, -0.013217524625360966, -0.010800548829138279, -0.0048934537917375565, 0.04717269912362099, 0.0023990634363144636, 0.016827570274472237, -0.02911352925002575, 0.002348587615415454, -0.008760359138250351, 0.006154349073767662, -0.02082321047782898, -0.014878423884510994, -0.012829366140067577, -0.005334618501365185, 0.016197161749005318, -0.005850646179169416, -0.03510596975684166, -0.003152891993522644, 0.012166461907327175, -0.04707590118050575, -0.05048832669854164, -0.022995520383119583, -0.03052053414285183, -0.008016927167773247, -0.0427728071808815, 0.002950611524283886, -0.019075855612754822, -0.0038782455958426, -0.0033723157830536366, -0.015599316917359829, 0.03594306483864784, 0.007544641382992268, -0.023367024958133698, 0.03753838315606117, 0.03298286721110344, -0.040785837918519974, -0.02070840820670128, 0.03934155032038689, -0.014779645018279552, 0.02145368419587612, -0.03696606308221817, -0.024376841261982918, -0.05899694189429283, -0.0394124835729599, -0.02638270892202854, -0.031236322596669197, 0.014799741096794605, -0.03279288485646248, -0.044639069586992264, -0.0028004576452076435, 0.03848188742995262, 0.010114611126482487, -0.00334086618386209, 0.012223288416862488, -0.022735346108675003, 0.014932162128388882, -0.013173894956707954, -0.007225594948977232, -0.018822114914655685, -0.05152104049921036, -0.00770141277462244, 0.06011664867401123, 0.01827351562678814, 0.018523145467042923, 0.0027587073855102062, 0.007779782637953758, -0.0061170016415417194, 0.019783133640885353, -0.043581582605838776, -0.043558791279792786, 0.0019598400685936213, -0.00311155803501606, -0.009022419340908527, -0.01342491339892149, -0.04118330404162407, 0.061381593346595764, -0.045996516942977905, -0.0007357887225225568, -0.02202305570244789, -0.02849455550312996, -0.010225003585219383, -0.0006125683430582285, 0.07130435854196548, -0.027307584881782532, 0.04132815822958946, 0.006567168515175581, 0.03242668882012367, 0.047707974910736084, 0.021844500675797462, -0.009305471554398537, -0.007339407689869404, -0.05333426594734192, -0.0600382424890995, 0.03681573644280434, -0.019325293600559235, -0.010245352983474731, -0.01925664395093918, -0.003240752499550581, 0.021706998348236084, -0.008925599046051502, 0.06613917648792267, 0.032272662967443466, -0.04039636254310608, -0.026724878698587418, -0.03377287834882736, 0.03537068888545036, 0.027119845151901245, 0.006371994502842426, 0.005876809358596802, -0.016195101663470268, -0.0184808187186718, -0.01198247168213129, -0.035135965794324875, -0.04268553853034973, -0.080309197306633, -0.031427979469299316, 0.08324596285820007, 0.0017860603984445333, 0.050238918513059616, -0.029209649190306664, -0.029978090897202492, -0.06954466551542282, 0.027242494747042656, -0.005437786225229502, 0.05822001025080681, 0.051579125225543976, -0.018206914886832237, -0.03148893266916275, 0.0081632724031806, -0.010633924044668674, -0.00981694646179676, -0.05892099440097809, 0.06447228044271469, -0.001948558259755373, -0.05611410364508629, 0.030235502868890762, 0.04481793940067291, -0.04209659621119499, -0.0353095717728138, -0.007748750504106283, -0.030107861384749413, 0.01675950363278389, -0.041151780635118484, 0.01114573236554861, -0.01589009538292885, 0.01159676630049944, -0.008876768872141838, 0.016161883249878883, 0.007204179186373949, 0.057658638805150986, 0.02524881437420845, 0.04905220493674278, -0.0011019663652405143, -0.014283162541687489, -0.005553219933062792, -0.01794528029859066, -0.02792656235396862, -0.03382724151015282, -0.00794220995157957, 0.016184968873858452, 0.006751082371920347, 0.04346597567200661, -0.002683393657207489, 0.02212722785770893, 0.030466532334685326, -0.029573919251561165, 0.04360552132129669, -0.02989557757973671, -0.03314026817679405, 0.040648203343153, -0.019678357988595963, -0.0457327626645565, -0.03592078015208244, 0.016093453392386436, 0.016840051859617233, 0.04920889437198639, -0.03311152756214142, -0.0025274171493947506, 0.025314124301075935, 0.005839046090841293, 0.0024931635707616806, -0.029260974377393723, -0.027865197509527206, -0.023939989507198334, -0.040343403816223145, 0.0016199155943468213, -0.03695765137672424, -0.011007674038410187, 0.011280084028840065, -0.0028378982096910477, -0.013908600434660912, 0.011339862830936909, 0.0006237702909857035, -0.02708936110138893, -0.023269038647413254, -0.0436478890478611, 0.013058912940323353, -0.034228429198265076, -0.04125100374221802, -0.021354680880904198, -0.019400853663682938, -0.010235268622636795, 0.011962946504354477, -0.008516356348991394, 0.02376580610871315, 0.007918503135442734, 0.03676074743270874, 0.005926179699599743, 0.002328046364709735, -0.03674214333295822, -0.04978936165571213, 0.00956017803400755, 0.03318140655755997, -0.004720260854810476, 0.040737684816122055, 0.04024259001016617, -0.03138527646660805, 0.03295936435461044, 0.030221447348594666, -0.018357418477535248, -0.009772888384759426, -0.00003173919321852736, -0.0006020041764713824, -0.007125725969672203, -0.04707954823970795, -0.030801095068454742, 0.0030793072655797005, -0.033915821462869644, 0.006202877964824438, -0.03948258236050606, -0.00018392287893220782, 0.0020320178009569645, -0.006080489605665207, -0.007810922805219889, 0.0436469130218029, -0.005572851747274399, 0.044067900627851486, 0.0024628201499581337, 0.031601712107658386, 0.02457938715815544, 0.018561815842986107, 0.045180339366197586, 0.01893433928489685, 0.018148446455597878, -0.039636172354221344, -0.0140027841553092, 0.04470175877213478, 0.01605607569217682, 0.037031643092632294, -0.03752369061112404, -0.024083368480205536, -0.026855524629354477, -0.007171305827796459, -0.01345265656709671, 0.06086334213614464, 0.01619243063032627, 0.025607921183109283, -0.008978959172964096, -0.02388443611562252, -0.043636538088321686, -0.008470561355352402, -0.0643400251865387, -0.028292899951338768, 0.042121224105358124, 0.0022219314705580473, -0.023628676310181618, -0.020643753930926323, -0.06805828213691711, -0.013360685668885708, -0.009883303195238113, -0.012827682308852673, -0.009000388905405998, 0.07994485646486282, -0.010074758902192116, 0.0461135171353817, -0.003657024120911956, 0.018108008429408073, 0.030235953629016876, 0.021457800641655922, -0.035413920879364014, -0.04212627187371254, -0.016293805092573166, 0.03149564191699028, -0.0019596891943365335, -0.0002595309924799949, 0.010805897414684296, 0.02425677515566349, -0.012200377881526947, -0.0031596748158335686, 0.0011080792173743248, 0.014570062048733234, -0.02144569903612137, 0.014973110519349575, -0.01159022655338049, 0.012956680729985237, -0.045887138694524765, 0.07235423475503922, -0.0022936996538192034, -0.0547071173787117, -0.027226969599723816, 0.03969329595565796, 0.0408138670027256, -0.01631891168653965, 0.02407122775912285, 0.022642746567726135, 0.03371324762701988, -0.010513709858059883, 0.030833426862955093, 0.00023658254940528423, 0.06412328034639359, 0.027435222640633583, 0.031218530610203743, -0.008998306468129158, 0.008843103423714638, 0.03323744609951973, -0.017922356724739075, -0.014228002168238163, 0.028658462688326836, 0.021486589685082436, -0.02568560466170311, 0.007233608979731798, -0.05577266961336136, 0.005352881737053394, 0.019698835909366608, -0.01627189852297306, -0.008363451808691025, -0.02239183709025383, 0.018657438457012177, -0.03328801319003105, -0.027586083859205246, 0.04931012913584709, -0.021796656772494316, -0.012403472326695919, 0.005388658028095961, 0.0057788812555372715, 0.012352044694125652, 0.06990811228752136, 0.013214252889156342, 0.02429008297622204, 0.04764837026596069, 0.022172903642058372, -0.022311458364129066, 0.03632185235619545, 0.010101363062858582, 0.017504964023828506, -0.003070880426093936, 0.020437095314264297, -0.007276703137904406, -0.022877423092722893, -0.038080643862485886, -0.001620949013158679, -0.0439055860042572, 0.04907040297985077, -0.026486419141292572, -0.020274458453059196, 0.04133827984333038, -0.03690793365240097, -0.0021250436548143625, -0.05025742948055267, 0.04774731025099754, -0.024635547772049904, -0.011883426457643509, 0.03832292556762695, -0.014080778695642948, 0.003360207425430417, 0.03168061375617981, 0.005356882698833942, 0.04696449264883995, 0.012137949466705322, 0.04358580708503723, -0.013897036202251911, -0.01041710190474987, 0.05671074986457825, -0.005235392600297928, -0.009594262577593327, 0.008433208800852299, -0.022372758015990257, -0.03340385481715202, -0.02150130458176136, -0.011783890426158905, -0.01950184628367424, 0.022744070738554, -0.05875462666153908, 0.0037869876250624657, 0.01373447384685278, 0.003591710003092885, -0.05797984451055527, -0.02255414053797722, 0.009203173220157623, -0.05382141098380089, -0.015822332352399826, 0.014783518388867378, 0.029325861483812332, 0.01377893052995205, -0.007872194983065128, -0.026547573506832123, -0.029758477583527565, 0.005350948311388493, -0.0400732085108757, 0.031502868980169296, 0.004002251662313938, -0.0657815933227539, -0.023112602531909943, -0.05476008355617523, -0.02591291442513466, 0.003709789365530014, -0.027730029076337814, -0.0397951565682888, 0.021636158227920532, 0.03549584001302719, 0.036253221333026886, 0.04152664169669151, -0.029645847156643867, 0.005452187731862068, 0.03152446076273918, 0.06389735639095306, -0.011543527245521545, 0.007635787129402161, 0.01867031119763851, -0.004262946080416441, 0.029866265133023262, -0.02964722365140915, 0.04434279724955559, -0.006182940676808357, -0.04977525398135185, -0.04140687361359596, 0.029345637187361717, -0.030538829043507576, -0.07566029578447342, 0.03792881965637207, 0.03796732425689697, -0.019484903663396835, -0.040964171290397644, -0.09472673386335373, 0.009548733942210674, -0.06199970096349716, -0.001969642471522093, -0.04063677415251732, -0.002536209300160408, 0.00311335944570601, 0.006273601204156876, 0.006561757531017065, -0.07348816841840744, 0.13609634339809418, 0.039820097386837006, 0.04806456342339516, -0.026683367788791656, 0.0459258034825325, 0.03518621623516083, 0.0011402368545532227, -0.021827487275004387, 0.018683742731809616, -0.04710935801267624, -0.010577846318483353, -0.003722559427842498, 0.014318468049168587, 0.007940187118947506, 0.04056726396083832, 0.042739614844322205, -0.028070369735360146, 0.013166763819754124, -0.005490090232342482, -0.0774974599480629, -0.05537039414048195, 0.025320591405034065, 0.0029907715506851673, 0.020956750959157944, -0.01601497270166874, 0.0077295671217143536, 0.03946935757994652, -0.07322017103433609, 0.009942629374563694, -0.013871848583221436, 0.02306525968015194, -0.03363857418298721, 0.03185183182358742, -0.021359266713261604, -0.027404068037867546, 0.032009854912757874, -0.00665650749579072, -0.02612445130944252, 0.01713583618402481, 0.020040426403284073, -0.021014152094721794, 0.012569896876811981, 0.039458002895116806, -0.0406901091337204, 0.01175870094448328, 0.028819631785154343, -0.023859500885009766, 0.008240625262260437, 0.01575593277812004, -0.021521244198083878, 0.04286612942814827, -0.03677450492978096, 0.044704508036375046, -0.024889472872018814, -0.039709292352199554, -0.0005242324550636113, 0.012785294093191624, -0.02890457957983017, -0.013066708110272884, 0.014515913091599941, 0.020311955362558365, 0.010559966787695885, 0.003996392711997032, 0.02632657252252102, -0.020458607003092766, 0.022329745814204216, 0.007350477389991283, 0.015346461907029152, -0.0021312946919351816, 0.02079503796994686, -0.007806296460330486, 0.0181024931371212, -0.0030811126343905926, -0.0334952250123024, 0.042640622705221176, 0.022736135870218277, -0.024476494640111923, 0.0213711429387331, -0.008508228696882725, -0.016615217551589012, -0.021196044981479645, -0.035013552755117416, 0.006074275355786085, -0.026966962963342667, 0.012036582455039024, 0.0393134206533432, -0.0536256767809391, -0.04756065458059311, -0.008087320253252983, 0.043956492096185684, 0.03898923099040985, 0.02345089800655842, -0.014578381553292274, -0.0006834238884039223, -0.017758144065737724 ]
Andrea Cima (* um 1580 in Mailand; † nach 1627 ebenda) war ein italienischer Organist und Komponist des Frühbarock. Leben Andrea Cima war der Bruder von Giovanni Paolo Cima. Von 1614 bis mindestens 1627 war Cima Organist an verschiedenen Mailänder Kirchen, darunter Santa Maria della Rosa, die Kathedrale Santa Maria Maggiore. Ab 1627 versah er zusätzlich ein Organistenamt an Santa Marie delle Grazie. Das Amt des Kapellmeisters, das er lautJohann Georg Walthers Lexikon von 1732 an S. Maria Maggiore in Bergamo gehabt haben soll, konnte bislang in keinem Dokument nachgewiesen werden. Werke (Auswahl) Mehrere Werke Cimas finden sich in Sammeldrucken aus der Zeit zwischen 1606 und 1626. Cappricio 1 und 6 in der Sammlung concerti ecclesiastici von Giovanni Paolo Cima (Mailand, 1610) 1 Werk in Parnassus musicus Ferdinandaeus, in quo musici nobilissimi, qua suavitate .... (Venedig, 1614) 4 Canzone a 4 in der Sammlung Seconda aggiunta alli Concerti raccolti dal molto reverendo Francesco Lucino (Mailand, 1617) Concerto XIII a tres voci, Concerto XXV a quattro voci, Missa a quattro, in Flores praestantissimorum virorum a Philippo Lomatio bibliopola delibati unica, binis, ternis, quaternisque vocibus decantandi, quibus adduntur Missa, Magnificatque duo, Cantiones item, ut vocant, alla francese duobus, tribus quattuorque instrumentis, tum partitio pro organo, nuper in lucem editi, ad nobilissimam Constantiam Czirenbergiam gedanensem, der Danziger Sängerin Constantia Czirenberg gewidmet (Mailand, Filippo Lomazzo, 1626) Il primo libro delli concerti für 2 bis 4 Stimmen (Mailand, 1614) Il secondo libro delli concerti für 2 bis 4 Stimmen (Mailand, 1627) Literatur Weblinks Alberto Iesuè: Cima, Gian Paolo im Dizionario Biografico degli Italiani, Bd. 25 (1981) (italienisch) Einzelnachweise Komponist (Barock) Komponist (Italien) Komponist (Kirchenmusik) Organist (Kirchenmusik) Musiker (Mailand) Person (Religion, Mailand) Historische Person (Italien) Geboren im 16. Jahrhundert Gestorben im 17. Jahrhundert Mann
[ -0.0343121737241745, 0.01202298142015934, 0.03222593665122986, -0.020085375756025314, 0.009810537099838257, 0.012363564223051071, -0.03355512022972107, -0.005285106133669615, 0.0055541968904435635, 0.02001279778778553, 0.05132404342293739, 0.012775857001543045, -0.008118124678730965, -0.04178480803966522, -0.009648000821471214, -0.012384502217173576, -0.02685834839940071, -0.017784660682082176, 0.0004445896192919463, 0.010763249360024929, 0.016041813418269157, 0.004503009840846062, -0.07547233253717422, -0.01225101388990879, -0.02793343923985958, 0.04592646285891533, 0.04166364669799805, 0.012310492806136608, 0.03754520043730736, 0.06654093414545059, 0.00820571556687355, -0.034086912870407104, 0.05111358314752579, -0.05573367327451706, -0.03824794664978981, -0.015783190727233887, 0.02963646501302719, -0.05634629353880882, 0.017502522096037865, -0.10883520543575287, 0.005137544125318527, -0.017256779596209526, 0.0018377561355009675, -0.017803164198994637, -0.00979827530682087, 0.006581510417163372, 0.0084504634141922, 0.010253231972455978, 0.009449486620724201, -0.037047840654850006, 0.02129477635025978, -0.021137617528438568, 0.03071798011660576, 0.004145913291722536, 0.013989509083330631, -0.003251155838370323, 0.015356403775513172, -0.03964182734489441, -0.002814629813656211, 0.027623683214187622, 0.00530158681795001, -0.030993247404694557, 0.029022064059972763, -0.07100268453359604, 0.002463659504428506, -0.009736759588122368, 0.023256292566657066, -0.02217124029994011, 0.02514226920902729, -0.032414454966783524, 0.008325470611453056, 0.0008293555583804846, 0.01512875221669674, -0.03385159745812416, -0.010448605753481388, 0.0090468879789114, -0.026405274868011475, 0.015928765758872032, 0.021216358989477158, 0.001059263595379889, 0.01778406649827957, 0.044889431446790695, 0.015881024301052094, 0.022160375490784645, -0.01644204743206501, -0.015098169445991516, -0.017740806564688683, -0.0011006570421159267, -0.0001875941379694268, 0.003876594826579094, 0.041973505169153214, 0.0552404411137104, 0.007918722927570343, -0.014174210838973522, 0.058838557451963425, 0.07502007484436035, -0.03261028230190277, 0.07634765654802322, -0.004866805858910084, 0.0026932437904179096, 0.05425787344574928, 0.03695821389555931, -0.04041600227355957, 0.05233347415924072, -0.04294683039188385, -0.016084030270576477, -0.0360763780772686, 0.0118079399690032, 0.0041212826035916805, -0.07695899903774261, 0.019767047837376595, 0.008082490414381027, 0.0024615442380309105, -0.011699098162353039, 0.019689058884978294, 0.050418805330991745, -0.019530288875102997, 0.061838261783123016, -0.007685324177145958, 0.0036545260809361935, -0.014084521681070328, 0.021656040102243423, 0.0008300277404487133, -0.022500766441226006, 0.0025045103393495083, -0.021376442164182663, -0.07137716561555862, 0.092900849878788, -0.042540181428194046, -0.00867419596761465, -0.028442181646823883, -0.06143840774893761, -0.023340506479144096, 0.01865345425903797, 0.0011543036671355367, 0.005333517678081989, -0.0015192984137684107, 0.026027696207165718, 0.019407285377383232, -0.034575313329696655, 0.054331712424755096, 0.025677049532532692, 0.004286872688680887, 0.09714948385953903, -0.014322233386337757, 0.047234803438186646, 0.015158004127442837, 0.00211365707218647, -0.01838282309472561, -0.009727636352181435, -0.022840501740574837, 0.010115258395671844, -0.01954767480492592, 0.017902817577123642, 0.01429001521319151, 0.035713519901037216, -0.0064116232097148895, 0.0025053222198039293, -0.008343231864273548, 0.04558439552783966, -0.03764396533370018, 0.038324981927871704, -0.013109150342643261, 0.01604975014925003, 0.002798301400616765, 0.04665827751159668, -0.004637971520423889, -0.002730076899752021, 0.011643330566585064, -0.0447254478931427, 0.004207078833132982, 0.0005010826280340552, -0.011735420674085617, 0.02347898669540882, 0.007946359924972057, 0.021474512293934822, 0.000569308118429035, -0.001931469072587788, 0.03103996440768242, 0.027586577460169792, -0.014078252948820591, 0.02104196697473526, 0.02122352086007595, 0.03933173790574074, 0.02603384293615818, -0.015441459603607655, -0.008819196373224258, -0.008001884445548058, 0.011987810954451561, -0.033794041723012924, -0.015479697845876217, 0.03365268185734749, 0.012187862768769264, 0.035780467092990875, 0.010519026778638363, 0.00520311901345849, -0.023335427045822144, -0.017451580613851547, 0.010781485587358475, -0.04623301327228546, -0.0156083470210433, 0.06253820657730103, -0.027472129091620445, 0.04804423823952675, 0.0023409866262227297, -0.025186995044350624, 0.049539051949977875, 0.03460373729467392, -0.022420130670070648, -0.01050386019051075, 0.0391668826341629, 0.005384325515478849, -0.02360505983233452, 0.023555411025881767, -0.00840424932539463, -0.0010828389786183834, -0.024265067651867867, 0.054848939180374146, -0.034353844821453094, -0.007147866301238537, -0.025530759245157242, 0.022540684789419174, 0.03345590457320213, -0.003711713245138526, -0.011712550185620785, 0.0328432060778141, 0.014419663697481155, 0.04755216836929321, -0.025859929621219635, -0.01694376766681671, -0.04423730820417404, 0.0157171543687582, 0.03046587109565735, 0.0434468537569046, 0.040269289165735245, 0.007887691259384155, 0.03928231820464134, 0.01132278610020876, -0.015325741842389107, 0.023312482982873917, -0.0238677766174078, 0.007617536932229996, 0.056679219007492065, 0.03791312873363495, -0.019464826211333275, 0.03428633511066437, 0.02071370556950569, 0.026351874694228172, -0.009392224252223969, 0.01641550101339817, -0.04549543559551239, 0.029097363352775574, 0.03347846493124962, 0.023395422846078873, -0.02175465226173401, -0.008384225890040398, 0.011263813823461533, 0.051985111087560654, -0.04644168168306351, 0.008526514284312725, -0.012103602290153503, 0.008294631727039814, 0.005642268806695938, 0.004298906307667494, 0.02386023849248886, 0.02905101887881756, 0.04967048764228821, -0.005749735981225967, -0.021464968100190163, -0.048908837139606476, -0.04736565798521042, -0.04115352779626846, -0.03192702680826187, -0.04253140836954117, -0.0335703007876873, 0.023384591564536095, 0.031773146241903305, -0.013517336919903755, 0.005133049096912146, 0.03229914978146553, -0.02072315663099289, -0.017613600939512253, -0.050139494240283966, 0.039228830486536026, 0.016921985894441605, 0.05572240427136421, -0.034671247005462646, 0.03455168008804321, -0.006260080728679895, 0.03464028984308243, -0.018030734732747078, -0.024169262498617172, -0.007893512025475502, -0.0069963266141712666, 0.009906280785799026, -0.01376635953783989, -0.01941118761897087, -0.028415439650416374, -0.02745535969734192, -0.05232256278395653, -0.017616815865039825, 0.019054709002375603, -0.0038250621873885393, -0.01332243625074625, -0.0015105288475751877, 0.04104761406779289, -0.0032390463165938854, -0.051597677171230316, 0.043623484671115875, 0.0033737639896571636, -0.02073284238576889, 0.04461480304598808, 0.018752625212073326, -0.03495291620492935, -0.042565345764160156, 0.049136288464069366, 0.059969231486320496, -0.000563449168112129, -0.04967136308550835, -0.01766149513423443, -0.03266027569770813, 0.021723346784710884, 0.024625979363918304, -0.023561960086226463, -0.035189006477594376, 0.053934186697006226, 0.003352285362780094, -0.08157271891832352, 0.036955397576093674, -0.0411522313952446, -0.04193207621574402, -0.04018362611532211, 0.0005884421989321709, -0.003371758619323373, 0.034255266189575195, 0.035413552075624466, -0.02367444522678852, 0.020161565393209457, -0.0111837862059474, -0.006483966950327158, 0.02354009822010994, -0.020184116438031197, 0.006780616473406553, 0.030728094279766083, -0.026149118319153786, -0.0029386559035629034, 0.03429938480257988, -0.012874123640358448, -0.014505651779472828, 0.058249592781066895, 0.020886296406388283, 0.012407392263412476, 0.0107193011790514, -0.012370803393423557, -0.00475717056542635, 0.055755093693733215, -0.021848326548933983, 0.0063398005440831184, 0.02485012821853161, 0.027969755232334137, 0.026277871802449226, 0.00031832142849452794, 0.017154298722743988, -0.029176881536841393, -0.02352357655763626, -0.03901023045182228, -0.0022124084644019604, 0.042993996292352676, 0.020147470757365227, -0.0683140903711319, 0.039449505507946014, 0.03846009448170662, -0.05993274599313736, 0.046121153980493546, -0.07601772248744965, 0.015416513197124004, 0.07085143029689789, -0.015875354409217834, 0.05231468752026558, -0.01586451753973961, 0.017639845609664917, -0.02560577355325222, 0.006805764511227608, 0.03161194920539856, 0.024756180122494698, 0.02770191617310047, -0.024694139137864113, -0.04463498666882515, 0.011693987064063549, -0.047483086585998535, -0.019896773621439934, -0.028677158057689667, 0.02620754763484001, -0.00897542666643858, -0.0220367219299078, -0.044709790498018265, 0.009534395299851894, 0.011036936193704605, 0.016697518527507782, -0.012241455726325512, 0.05000607296824455, 0.010816572234034538, 0.05725426971912384, 0.03866983950138092, -0.04052305966615677, 0.028360147029161453, -0.03127829730510712, 0.06872731447219849, -0.0005007156869396567, -0.0016308967024087906, 0.010655993595719337, -0.006045511923730373, -0.007594539783895016, 0.03329227864742279, 0.010282274335622787, -0.016523035243153572, -0.04365956783294678, -0.007150073070079088, -0.021658504381775856, 0.01726018823683262, -0.02610785700380802, -0.028245294466614723, -0.007065810728818178, 0.0520063117146492, 0.04447444900870323, -0.06912577897310257, 0.00018260444630868733, -0.025066347792744637, 0.039730679243803024, 0.053881458938121796, -0.004777946975082159, -0.024119947105646133, -0.019590210169553757, -0.04492522031068802, 0.009944617748260498, -0.015230217017233372, 0.04555273801088333, -0.02976345270872116, 0.004716039169579744, -0.021093793213367462, 0.03805188834667206, 0.01864810101687908, -0.015558870509266853, -0.010639514774084091, 0.005205173045396805, 0.01124791894108057, 0.02524428814649582, 0.03446957468986511, -0.006304267328232527, -0.03978772461414337, -0.0018649930134415627, -0.08384842425584793, 0.027498098090291023, -0.00045539363054558635, -0.0018107297364622355, 0.005083797499537468, 0.018856078386306763, -0.012193592265248299, 0.02239760383963585, 0.0002195214037783444, -0.0032802633941173553, -0.029518483206629753, 0.011024968698620796, -0.06846363842487335, -0.019528251141309738, 0.0218756552785635, -0.026868760585784912, -0.008853327482938766, 0.02893897145986557, 0.02046888694167137, -0.016066009178757668, -0.007159702014178038, -0.01393322367221117, -0.03829580545425415, 0.046955808997154236, -0.016315074637532234, -0.021123386919498444, -0.011223160661756992, -0.042982328683137894, 0.026627710089087486, -0.022533077746629715, 0.0037765761371701956, 0.033893026411533356, -0.03406752273440361, -0.016825156286358833, -0.05459778010845184, -0.05606425553560257, -0.002457856433466077, -0.041786111891269684, -0.01236277911812067, 0.020617468282580376, -0.03839470073580742, 0.012911293655633926, 0.0013289762428030372, -0.004965848755091429, -0.004042192827910185, -0.034027308225631714, -0.001671429956331849, -0.001162526779808104, 0.03771757706999779, 0.042824894189834595, 0.000917766010388732, -0.04399565979838371, 0.010254579596221447, 0.0031714048236608505, -0.030375363305211067, -0.029881391674280167, 0.0012650946155190468, -0.010323522612452507, -0.014652512967586517, -0.01811486855149269, -0.025539256632328033, -0.01375408936291933, 0.007597714196890593, 0.005835056770592928, -0.014639807865023613, 0.02431921288371086, 0.009048143401741982, -0.029728561639785767, 0.0571613535284996, 0.05700401961803436, -0.05394486337900162, -0.007598135620355606, 0.04650476202368736, -0.017717260867357254, 0.07114828377962112, 0.01106108445674181, -0.018059957772493362, -0.0395202711224556, -0.04606737568974495, 0.015432479791343212, -0.04872715473175049, -0.01647559180855751, -0.05376027897000313, -0.009235911071300507, -0.020174570381641388, 0.023786911740899086, 0.0002908525930251926, -0.025519313290715218, 0.007116983644664288, -0.042696546763181686, 0.006222070194780827, -0.030410796403884888, -0.015514547005295753, -0.04315187409520149, 0.020785722881555557, -0.0038366829976439476, 0.06135716289281845, 0.028825003653764725, 0.015571490861475468, 0.017845753580331802, 0.003937591798603535, 0.02922390028834343, -0.016720997169613838, -0.06289844959974289, -0.04617686942219734, -0.030929449945688248, 0.013224177993834019, 0.023251689970493317, 0.0102952029556036, -0.024679576978087425, 0.0615522637963295, -0.03176895156502724, -0.013790467754006386, -0.02444613166153431, -0.03486207500100136, -0.016082998365163803, 0.005788094364106655, 0.0737309679389, -0.011887671425938606, 0.01050710678100586, 0.009029388427734375, 0.03610842302441597, 0.039151690900325775, 0.0011086665326729417, -0.04164787754416466, -0.052986711263656616, -0.05186622217297554, -0.042485594749450684, 0.026034662500023842, -0.056295499205589294, -0.029841510578989983, -0.03229755908250809, 0.024837730452418327, 0.044326312839984894, 0.017558563500642776, 0.02699815295636654, 0.05288560315966606, -0.0046317847445607185, -0.0023795822635293007, -0.0316418781876564, 0.04293117672204971, 0.03386320546269417, -0.007004077546298504, 0.002295375568792224, -0.007112020626664162, -0.03374575451016426, 0.023784663528203964, -0.024673914536833763, -0.036691781133413315, -0.04012814536690712, -0.008444434963166714, 0.06420321017503738, -0.0004238123947288841, 0.04293382912874222, 0.0004966961569152772, -0.0173052791506052, -0.0724879801273346, 0.06546934694051743, 0.0074419076554477215, -0.001065089600160718, 0.041228678077459335, -0.028180211782455444, -0.009240556508302689, 0.024730272591114044, -0.009373381733894348, -0.03192095085978508, -0.04501640051603317, 0.03987943008542061, 0.002565647941082716, -0.03790530189871788, 0.0190260149538517, 0.04484328627586365, -0.0542607307434082, -0.035665661096572876, -0.0014983186265453696, 0.011174002662301064, -0.03898615390062332, -0.029170231893658638, 0.010068511590361595, -0.0007223135326057673, -0.02795751765370369, -0.010688857175409794, 0.02488390915095806, -0.02896285057067871, 0.05276462063193321, -0.009819014929234982, 0.035289790481328964, -0.021795282140374184, 0.01773723214864731, 0.02406216785311699, -0.03000636026263237, 0.009494923986494541, -0.049466878175735474, -0.053725339472293854, 0.007214169949293137, 0.0016266590682789683, 0.0462072379887104, -0.01021095272153616, 0.030899561941623688, 0.030614210292696953, -0.00007203945278888568, 0.02223491109907627, 0.010807521641254425, -0.03292897343635559, 0.015820620581507683, -0.030213337391614914, -0.055030182003974915, -0.03177651762962341, 0.03863741084933281, 0.007560227531939745, 0.038865555077791214, -0.03732386231422424, 0.0018901018192991614, 0.06506766378879547, 0.015577560290694237, 0.0024561749305576086, -0.048102330416440964, -0.04277613013982773, -0.07578571885824203, -0.0626104399561882, -0.04403608292341232, -0.03539920598268509, -0.016714567318558693, 0.016065681353211403, -0.021289056167006493, -0.049835462123155594, 0.015984026715159416, 0.0028467371594160795, -0.021764477714896202, 0.005590647924691439, -0.020195437595248222, 0.048781055957078934, -0.057474780827760696, -0.044074639678001404, -0.04601258039474487, -0.00643305154517293, -0.016544159501791, 0.001887558144517243, -0.013330567628145218, 0.029391037300229073, 0.0012916653649881482, 0.0009557058801874518, -0.0022004367783665657, 0.015906542539596558, -0.009532355703413486, -0.022097736597061157, -0.013243932276964188, 0.0160572100430727, -0.0012768026208505034, 0.04724954068660736, 0.02526768296957016, -0.03251422569155693, 0.029470402747392654, 0.0067269885912537575, 0.00009005261381389573, -0.0030966370832175016, -0.012911409139633179, 0.024363182485103607, -0.016212375834584236, -0.04626011103391647, -0.04610941931605339, -0.007320335600525141, -0.02168501727283001, -0.00281495600938797, -0.025291986763477325, 0.005671729799360037, -0.018482118844985962, -0.020640559494495392, -0.02068869210779667, 0.029081108048558235, 0.010999149642884731, 0.044906534254550934, 0.004166736733168364, -0.0022620437666773796, -0.016938170418143272, -0.020627140998840332, 0.03584813326597214, 0.029978139325976372, 0.01969267427921295, -0.012840256094932556, -0.013307659886777401, 0.025418929755687714, -0.029326602816581726, 0.024438370019197464, -0.017681963741779327, -0.023633446544408798, -0.060898035764694214, -0.0213521346449852, 0.02846294827759266, 0.04662533849477768, 0.01715676859021187, -0.00876698363572359, 0.023722175508737564, -0.04269973188638687, -0.05183209478855133, -0.017765769734978676, -0.08477971702814102, -0.04129595309495926, 0.026628291234374046, -0.015994397923350334, -0.003869996638968587, -0.00014401733642444015, -0.034426137804985046, 0.00864125695079565, -0.006843870971351862, -0.016004066914319992, -0.002532530575990677, 0.01701013371348381, 0.0032952409237623215, 0.03036682866513729, 0.005723774433135986, -0.03579999879002571, 0.04012737423181534, 0.05526234209537506, -0.05889870971441269, -0.03592196851968765, 0.030585890635848045, 0.023138878867030144, 0.007932313717901707, -0.00744089437648654, 0.024769235402345657, 0.0194432083517313, 0.016330476850271225, 0.01704554259777069, -0.01791544258594513, 0.034889087080955505, 0.02126099169254303, 0.047863706946372986, 0.010501161217689514, -0.0019383280305191875, -0.009493447840213776, 0.041817087680101395, 0.016379976645112038, -0.01723291724920273, -0.033441152423620224, 0.06261465698480606, 0.019264740869402885, -0.053951650857925415, 0.026156455278396606, 0.019559022039175034, 0.055170152336359024, -0.031043222174048424, 0.008836773224174976, 0.006962495855987072, 0.029826335608959198, 0.0055532497353851795, 0.02270316332578659, -0.0076621584594249725, 0.021789109334349632, 0.036957886070013046, 0.010182985104620457, 0.006206101272255182, 0.03260153904557228, 0.02337367832660675, -0.014394902624189854, -0.013603083789348602, -0.02578730322420597, 0.03853452578186989, 0.03592495247721672, -0.006340960506349802, 0.03080899268388748, -0.04736357927322388, -0.00257538678124547, -0.035208310931921005, 0.01543136965483427, 0.045733965933322906, -0.04422573745250702, 0.014461436308920383, -0.001252308371476829, 0.004949875175952911, 0.008195353671908379, 0.014846117235720158, 0.013364885933697224, 0.006114915944635868, 0.037376608699560165, 0.04385809227824211, -0.025989918038249016, 0.03699706867337227, 0.02528281696140766, 0.005663756746798754, -0.02793455310165882, -0.011970354244112968, 0.021809058263897896, -0.01946265622973442, -0.027325624600052834, -0.007071438245475292, -0.028756603598594666, 0.016822177916765213, -0.03161361441016197, -0.01857416331768036, 0.020311910659074783, -0.025425879284739494, -0.007021946366876364, -0.04216529428958893, 0.019486699253320694, -0.022703615948557854, 0.05214189365506172, 0.03840366378426552, 0.008058980107307434, -0.021193470805883408, 0.04265250265598297, -0.012127768248319626, 0.03391432762145996, 0.014148404821753502, 0.044480882585048676, 0.015370704233646393, 0.005592803470790386, 0.027326729148626328, -0.054309237748384476, -0.036031946539878845, 0.03965996205806732, 0.0009128581150434911, -0.05437549948692322, -0.008821160532534122, -0.0396590419113636, -0.0019110596040263772, -0.0015009531052783132, -0.005080570001155138, -0.010765393264591694, 0.048289328813552856, -0.008576538413763046, -0.01938764378428459, 0.006496455054730177, 0.02564631961286068, -0.06643035262823105, 0.025321997702121735, 0.011061939410865307, 0.04756179451942444, 0.010526054538786411, -0.013259675353765488, -0.005984968040138483, -0.03857904300093651, -0.024300668388605118, -0.07353712618350983, 0.04860074445605278, -0.02751152403652668, 0.01751384511590004, -0.08499301970005035, -0.040303539484739304, -0.031397219747304916, 0.012019147165119648, -0.01578684151172638, -0.0522150844335556, 0.03492959216237068, 0.04236118495464325, -0.007481005042791367, 0.0334305465221405, -0.015452715568244457, 0.019249165430665016, 0.03818826004862785, 0.08097511529922485, -0.0042906031012535095, 0.02290496602654457, 0.036058906465768814, -0.003095064079388976, 0.039230912923812866, -0.03368481993675232, 0.02819502353668213, -0.015000458806753159, -0.026169754564762115, -0.00955565832555294, 0.02100468799471855, -0.02296769805252552, -0.062181174755096436, 0.02391551062464714, 0.007494491524994373, 0.011988338083028793, -0.03380754217505455, -0.06204385310411453, 0.019092567265033722, -0.07044971734285355, 0.010122799314558506, -0.029472677037119865, 0.0265493243932724, 0.018961898982524872, 0.005851611960679293, -0.006061949301511049, -0.04925677925348282, 0.14858569204807281, 0.045769594609737396, 0.07161284983158112, 0.009350946173071861, 0.02480338141322136, 0.04226210340857506, -0.024121509864926338, -0.04351923614740372, -0.015374022535979748, -0.04089256376028061, 0.050189945846796036, 0.022081708535552025, 0.01837862655520439, -0.012012382037937641, 0.013240079395473003, 0.05504809692502022, -0.025837508961558342, 0.024737456813454628, 0.017641864717006683, -0.057809509336948395, -0.07043644785881042, 0.016765765845775604, -0.029227005317807198, 0.0017474339110776782, -0.03205915167927742, 0.017742618918418884, 0.007457698695361614, -0.021057788282632828, -0.012428423389792442, -0.04177425056695938, -0.005613270215690136, -0.0189357940107584, 0.03186061605811119, -0.02677798643708229, -0.017319899052381516, 0.029049452394247055, -0.0004893196746706963, 0.009316067211329937, -0.0060173277743160725, 0.03228053078055382, -0.02198905684053898, 0.019486820325255394, 0.05250690504908562, -0.02924007549881935, 0.03294489532709122, 0.029325366020202637, -0.03876368701457977, 0.010753929615020752, 0.030714578926563263, -0.017341284081339836, 0.0591505765914917, -0.03040989488363266, 0.011104559525847435, -0.025220634415745735, -0.057689763605594635, 0.02294839732348919, 0.02218683250248432, -0.04096430540084839, -0.008284399285912514, -0.010731462389230728, 0.01396134588867426, 0.0035976090002804995, -0.007867724634706974, -0.003514753421768546, -0.051363106817007065, 0.011268224567174911, -0.0058151776902377605, 0.01646735705435276, -0.020802900195121765, -0.0036227782256901264, -0.03099336288869381, -0.02043108083307743, 0.005691313650459051, -0.01515939924865961, 0.02082737348973751, 0.035519927740097046, 0.007989911362528801, 0.02296406775712967, -0.0016614255728200078, -0.02229110151529312, -0.01993863470852375, -0.01265296433120966, 0.022779522463679314, 0.0019402741454541683, 0.01998046040534973, 0.03687295690178871, -0.04947425425052643, -0.03304644674062729, -0.028267912566661835, 0.06382399797439575, 0.05299330875277519, -0.009531445801258087, -0.010120172053575516, -0.011253049597144127, -0.010762721300125122 ]
An elective placement with St George's offers you the opportunity to explore a particular area of medicine, learn about yourself and sample life in London. St George's welcomes elective students from all over the world. If you are from outside the European Economic Area and Switzerland, and do not already hold immigration permission which permits study in the UK, you should apply for the Short Term Study Visa to undertake the medical elective at St George's. More about Short Term Study Visas.
[ -0.000788570789154619, 0.006493616849184036, -0.03427497297525406, 0.00751281064003706, -0.0475764125585556, 0.017709316685795784, 0.003116372972726822, 0.05931529402732849, -0.006318387109786272, 0.03127562254667282, 0.03425121679902077, -0.0009028814383782446, 0.01807735674083233, -0.05703578144311905, 0.00872645154595375, 0.011899841018021107, -0.03324749320745468, -0.047366924583911896, -0.020334811881184578, -0.016261421144008636, -0.02250177226960659, 0.034970588982105255, -0.05528773367404938, -0.019886130467057228, -0.013479886576533318, 0.027933869510889053, 0.006340120919048786, -0.0016945167444646358, 0.061522141098976135, 0.04221590235829353, -0.029463376849889755, -0.006470328196883202, 0.024744778871536255, -0.04489605501294136, -0.0362674854695797, -0.011458086781203747, 0.04692487046122551, -0.04307427629828453, 0.008424172177910805, -0.038948677480220795, 0.039249487221241, 0.006340955849736929, 0.004211250692605972, -0.017056485638022423, -0.02405536361038685, -0.0164764653891325, -0.028765320777893066, -0.021440736949443817, 0.0026000356301665306, -0.026914367452263832, 0.016249775886535645, -0.0028739578556269407, -0.0006878077401779592, -0.008446441031992435, -0.003578703850507736, -0.006403087172657251, -0.00675958814099431, 0.0007075978210195899, -0.006616216152906418, 0.03202071040868759, -0.006714138202369213, -0.005618884228169918, 0.024219287559390068, -0.06359566748142242, 0.011276304721832275, 0.03116014041006565, 0.013089647516608238, 0.010122956708073616, 0.007868055254220963, -0.007184453308582306, -0.002199761336669326, -0.003359544789418578, 0.013957815244793892, -0.022753234952688217, 0.001642142073251307, 0.003663633018732071, 0.002490437589585781, -0.012762927450239658, -0.012394209392368793, -0.0012493525864556432, 0.045329928398132324, 0.033647701144218445, -0.01240903977304697, -0.00043104542419314384, -0.052437882870435715, 0.011776262894272804, -0.008188193663954735, 0.034498076885938644, 0.010021413676440716, 0.0004121587844565511, -0.0044510564766824245, 0.06039448082447052, 0.0035412563011050224, -0.04288337379693985, 0.0017247606301680207, 0.042195506393909454, -0.042052604258060455, 0.01600974053144455, 0.0236614178866148, 0.007410417776554823, 0.0407337062060833, 0.04033342003822327, -0.017265334725379944, 0.030253207311034203, -0.033345192670822144, -0.008802864700555801, -0.017201559618115425, -0.030173640698194504, -0.012463425286114216, -0.04244856536388397, -0.010494193993508816, 0.00023833112209104002, 0.008788427338004112, -0.03785238415002823, -0.027849139645695686, 0.04403786361217499, -0.03520757332444191, 0.05110029876232147, -0.06679067015647888, 0.017315708100795746, -0.017100954428315163, 0.021747799590229988, 0.054532136768102646, 0.0033605913631618023, 0.023422949016094208, -0.033007264137268066, -0.05684078112244606, 0.019372014328837395, -0.026964588090777397, -0.037609513849020004, -0.01290005911141634, -0.05438733100891113, -0.02246287651360035, 0.036473680287599564, -0.015749596059322357, 0.04215981066226959, 0.005184992682188749, 0.04596317932009697, 0.02067195065319538, -0.03866574540734291, 0.025179777294397354, 0.036196596920490265, 0.009034854359924793, 0.08637464046478271, -0.004237937740981579, 0.006794423330575228, 0.018434088677167892, -0.051651496440172195, -0.057867858558893204, 0.024927014485001564, 0.0017666324274614453, 0.004107058048248291, -0.02481052093207836, 0.017619837075471878, 0.014061173424124718, -0.01669352501630783, 0.0012310739839449525, 0.02498244121670723, 0.019446711987257004, 0.024953432381153107, -0.04836498200893402, 0.014787171967327595, -0.004161178600043058, 0.060682352632284164, 0.008095194585621357, 0.021652493625879288, -0.02724257856607437, 0.021050967276096344, -0.006367649417370558, -0.01994835026562214, 0.000507972901687026, 0.008154152892529964, -0.004432910121977329, 0.02698434330523014, 0.01279067900031805, 0.05665087327361107, 0.03754875436425209, -0.01785796880722046, 0.03464888781309128, 0.0355454757809639, -0.060240909457206726, 0.015382901765406132, 0.007440686691552401, 0.02489807829260826, 0.050581350922584534, 0.014937696978449821, -0.018323425203561783, -0.004065935034304857, -0.005583126563578844, -0.027276717126369476, -0.0122723039239645, 0.039202332496643066, -0.033358193933963776, 0.02571512944996357, 0.017537914216518402, 0.024687614291906357, -0.027292786166071892, -0.02184840478003025, -0.0190141499042511, -0.03493903577327728, -0.035937946289777756, 0.07377570867538452, -0.015414664521813393, 0.05322115495800972, 0.009564410895109177, 0.004453684668987989, 0.0010083215311169624, 0.06473318487405777, -0.021362246945500374, -0.005481590982526541, 0.06182097643613815, 0.02153339795768261, -0.03513500466942787, -0.02141626738011837, 0.036622244864702225, -0.011898644268512726, -0.040562041103839874, 0.03579277545213699, -0.006961422972381115, -0.006160067394375801, 0.010156828910112381, 0.001613898784853518, 0.032854072749614716, 0.04714996740221977, -0.0022851848043501377, 0.014377279207110405, -0.007578746415674686, 0.06558762490749359, -0.03190008923411369, 0.0015156313311308622, -0.005370485130697489, 0.04375011473894119, 0.03370854631066322, 0.07930169254541397, 0.05208452418446541, 0.012607526034116745, 0.039739008992910385, 0.07847185432910919, -0.022680040448904037, 0.025665156543254852, 0.014148917980492115, 0.04804923012852669, 0.05077003687620163, 0.023254524916410446, -0.00528771011158824, 0.043700046837329865, -0.05243415758013725, 0.014936166815459728, -0.016879115253686905, 0.01747085712850094, 0.015808308497071266, 0.03678610548377037, 0.023339174687862396, 0.0386321097612381, -0.011505435220897198, -0.01875218190252781, 0.05664964020252228, 0.036340728402137756, -0.049591515213251114, 0.008806630037724972, 0.008558139204978943, 0.03206339105963707, -0.026959918439388275, 0.01290773507207632, 0.025136608630418777, 0.014768696390092373, 0.006952099036425352, -0.014169515110552311, 0.014729182235896587, -0.04198237508535385, -0.04333946108818054, -0.05028515309095383, -0.027192847803235054, -0.058902572840452194, -0.03902200236916542, -0.017792070284485817, 0.024167917668819427, -0.06006921827793121, 0.03312569111585617, -0.027788838371634483, 0.007638455834239721, -0.037812739610672, -0.01429701317101717, 0.05835063382983208, 0.006477153394371271, 0.007250486873090267, -0.0539189875125885, 0.0428549125790596, -0.02335367165505886, 0.02250988781452179, -0.06458856910467148, -0.005040791351348162, 0.005391125101596117, -0.01088733971118927, 0.046021707355976105, -0.02199378050863743, -0.019047586247324944, -0.01391352154314518, -0.04069675877690315, -0.044235218316316605, 0.0340161994099617, 0.02042444795370102, 0.03973407298326492, 0.02286268211901188, -0.001193586620502174, 0.03913967311382294, 0.03911275789141655, -0.04423404857516289, 0.059555038809776306, 0.013244797475636005, -0.049610063433647156, 0.0180516354739666, 0.01824350282549858, -0.006866235751658678, -0.05466865748167038, 0.009879467077553272, 0.052124664187431335, -0.0017301763873547316, -0.010083263739943504, -0.023002836853265762, -0.014209610410034657, 0.003171357326209545, 0.018088843673467636, 0.011512981727719307, -0.01790921948850155, 0.05114373564720154, 0.016224103048443794, -0.07872533798217773, 0.0244844201952219, -0.048996083438396454, -0.0036344127729535103, -0.061546701937913895, -0.03579732030630112, 0.007392538245767355, 0.028958206996321678, 0.039201635867357254, -0.017516285181045532, -0.01630321517586708, 0.01906660757958889, 0.0037958070170134306, 0.038104042410850525, -0.056143052875995636, 0.0006252465536817908, 0.03379945456981659, 0.008775877766311169, 0.03526386246085167, 0.021154411137104034, -0.029988327994942665, -0.0023628871422261, 0.012576570734381676, -0.008849422447383404, 0.02093336172401905, 0.044183049350976944, 0.026282859966158867, 0.01084266696125269, 0.07561349123716354, -0.03623098507523537, 0.004645364824682474, 0.00458836555480957, 0.028741678223013878, -0.008244471624493599, -0.007773473393172026, 0.015575356781482697, -0.012418036349117756, -0.04898038133978844, -0.06197137013077736, 0.02425907924771309, 0.027321524918079376, 0.0799466222524643, -0.07889189571142197, 0.08138389885425568, -0.06507585942745209, -0.01522043440490961, 0.03283445164561272, -0.04813558608293533, -0.0054780556820333, 0.040861453860998154, -0.0129380002617836, 0.03974594548344612, -0.033573929220438004, -0.0008378737256862223, -0.032934077084064484, 0.007411642000079155, 0.04386929050087929, -0.013296111486852169, 0.0498337522149086, -0.02766617015004158, -0.01660430245101452, 0.0023375037126243114, -0.01771438680589199, -0.014639143832027912, -0.013834788464009762, 0.014879063703119755, -0.0166457612067461, -0.041970208287239075, -0.05387192592024803, 0.018125955015420914, 0.020247047767043114, 0.03101755864918232, 0.002606458030641079, 0.05395374447107315, 0.034202348440885544, 0.016972659155726433, 0.029233844950795174, -0.031150586903095245, 0.005152659956365824, -0.029268871992826462, 0.020372064784169197, -0.0003667499404400587, 0.007908446714282036, -0.03537764772772789, -0.0012544472701847553, -0.048276398330926895, 0.018851935863494873, 0.007894479669630527, -0.002115491311997175, -0.03293009102344513, 0.01454844418913126, -0.003941864240914583, 0.0056986031122505665, -0.02614179253578186, -0.019054090604186058, -0.04242469370365143, 0.04931066930294037, 0.002145620295777917, -0.0245954729616642, -0.021072115749120712, -0.04782572388648987, 0.05309214070439339, 0.04308479279279709, -0.0013941333163529634, -0.06167884171009064, -0.022847896441817284, -0.004951114300638437, -0.011394178494811058, -0.029954947531223297, 0.034387730062007904, 0.0066540134139359, 0.007933003827929497, -0.03528495132923126, 0.004716787952929735, -0.003661255119368434, 0.008168310858309269, -0.011629301123321056, -0.007022396195679903, 0.025792233645915985, 0.013343584723770618, 0.04073936492204666, -0.03060632199048996, -0.004838881082832813, 0.04815772548317909, -0.044875796884298325, 0.021337008103728294, -0.014244697988033295, -0.012014346197247505, -0.0026781479828059673, -0.02712567150592804, -0.001871264073997736, 0.03510797396302223, -0.011584023013710976, 0.00001723673995002173, -0.005671312566846609, 0.031776171177625656, -0.03176603838801384, -0.036476314067840576, 0.03338250517845154, -0.03293681889772415, -0.04101255536079407, 0.04309765249490738, 0.03311529383063316, -0.01805206574499607, -0.0014020107919350266, 0.028186004608869553, -0.035932403057813644, 0.042911551892757416, -0.05728950724005699, -0.00608892273157835, 0.012031515128910542, -0.05673755705356598, -0.015366778708994389, -0.05045619234442711, 0.022864893078804016, 0.007531692273914814, 0.00019483138748910278, -0.037401799112558365, -0.04534422233700752, -0.02921275421977043, -0.0046794782392680645, -0.04026060923933983, 0.01765161193907261, -0.016467606648802757, -0.023409076035022736, -0.0086512491106987, -0.007704166229814291, -0.0077027506195008755, 0.01959354616701603, 0.015270301140844822, 0.0038300869055092335, -0.024480065330863, 0.00805715937167406, -0.0024507895577698946, -0.011586243286728859, -0.043578341603279114, 0.009768815711140633, -0.008133436553180218, -0.04520915821194649, -0.06730212271213531, -0.005852230358868837, -0.037485457956790924, -0.02046346105635166, -0.04917490854859352, -0.01333492249250412, -0.0159787405282259, 0.02379373461008072, 0.043065134435892105, 0.0010648095048964024, 0.005670138169080019, -0.006726615130901337, -0.04007023572921753, 0.030722737312316895, 0.021224897354841232, -0.025154221802949905, -0.03494207188487053, 0.03108678199350834, -0.023677565157413483, 0.020785251632332802, -0.009529571048915386, -0.01782974973320961, -0.022329194471240044, -0.07044678181409836, 0.007550238631665707, -0.03583631291985512, 0.015833783894777298, -0.021443821489810944, -0.009941952303051949, -0.036511220037937164, 0.030657444149255753, 0.02763957716524601, -0.0062027620151638985, -0.029851332306861877, -0.05168141424655914, 0.03320397809147835, -0.04138723015785217, -0.0178296510130167, -0.0021011761855334044, -0.027169302105903625, 0.0009234129101969302, 0.05698525533080101, 0.01946452260017395, 0.02227681316435337, 0.013158543966710567, 0.007127225399017334, 0.013160981237888336, -0.03565464913845062, -0.04702985659241676, -0.05249069631099701, 0.022434180602431297, 0.034601226449012756, -0.017525799572467804, -0.0040053571574389935, -0.04034979268908501, 0.0774460956454277, -0.05369870364665985, 0.020239416509866714, -0.023486359044909477, -0.023282833397388458, 0.036475587636232376, -0.022358601912856102, 0.04942448064684868, -0.004318725783377886, 0.017050694674253464, 0.001345756696537137, 0.03488393500447273, 0.06283977627754211, -0.02011820673942566, -0.04770273342728615, -0.003688190830871463, -0.023212764412164688, -0.03723989427089691, 0.03335612639784813, -0.032942745834589005, -0.010284367017447948, -0.01733870431780815, -0.013448629528284073, 0.0405673012137413, -0.006703385151922703, -0.001244863960891962, 0.04180658236145973, -0.022883305326104164, -0.005917682778090239, -0.004438488278537989, 0.028243878856301308, 0.035508591681718826, -0.004490189254283905, 0.012954141944646835, -0.037221167236566544, 0.006151427514851093, 0.019564546644687653, -0.027851708233356476, -0.017065567895770073, -0.05139242112636566, -0.004375902004539967, 0.07810025662183762, -0.009190600365400314, 0.02548348717391491, -0.005882021505385637, -0.028256624937057495, -0.038880590349435806, 0.04163067042827606, -0.009474936872720718, 0.00042130626388825476, 0.07061386108398438, -0.0031269872561097145, -0.0076612005941569805, -0.012227254919707775, -0.016828158870339394, -0.009413249790668488, -0.014432326890528202, 0.04405616223812103, 0.014125624671578407, -0.07956504821777344, 0.01160703506320715, 0.06565311551094055, -0.07545369118452072, -0.04655235633254051, 0.02975357323884964, -0.03462110459804535, 0.016976501792669296, -0.029901713132858276, 0.0155965406447649, -0.002593189710751176, 0.03063993901014328, 0.03150308504700661, 0.03187530115246773, -0.006247603800147772, 0.06526745110750198, 0.033592063933610916, 0.022948816418647766, -0.04343024268746376, 0.016218362376093864, 0.014380982145667076, -0.00939103588461876, -0.02381550706923008, 0.0032388356048613787, 0.008145608007907867, 0.016735946759581566, -0.0007027415558695793, 0.03694052994251251, -0.0018155365251004696, 0.030924471095204353, 0.04643579199910164, 0.021898280829191208, 0.03624419495463371, 0.008612443692982197, -0.021823041141033173, 0.017717646434903145, -0.044547051191329956, -0.029056917876005173, -0.017978103831410408, 0.024070901796221733, 0.0007022420759312809, 0.02082342654466629, -0.03650755435228348, 0.004479689057916403, 0.044517360627651215, 0.04133792594075203, -0.010569050908088684, -0.04653265327215195, -0.06431485712528229, -0.04028397426009178, -0.03266860917210579, -0.021976836025714874, -0.02244722843170166, -0.007858681492507458, 0.03123309276998043, -0.0008726964588277042, -0.06438925862312317, -0.004853921476751566, 0.023994753137230873, -0.030203280970454216, 0.0215600673109293, -0.03557116538286209, 0.03962082415819168, -0.02926063910126686, -0.032588545233011246, -0.04992754012346268, -0.020700886845588684, -0.017341934144496918, 0.014033307321369648, -0.04192277416586876, 0.052405551075935364, -0.016401996836066246, 0.015430924482643604, -0.002735256450250745, 0.025860924273729324, -0.04909824579954147, -0.04912196099758148, -0.02454882301390171, 0.05027938634157181, -0.0006201564683578908, 0.061166439205408096, 0.02175399847328663, -0.009559031575918198, 0.01584799401462078, 0.0006746723665855825, -0.013909302651882172, -0.019393440335989, 0.021106470376253128, 0.007180535234510899, -0.004482770338654518, -0.033815860748291016, -0.0249161534011364, 0.0011057441588491201, -0.019184760749340057, 0.0284128338098526, -0.0256991907954216, -0.01621371880173683, 0.013729250989854336, -0.02251526154577732, -0.00130090257152915, 0.04995951056480408, 0.03732096031308174, 0.01550436019897461, 0.034518953412771225, 0.04910547658801079, 0.020996522158384323, -0.026283303275704384, 0.005393723491579294, 0.02976103499531746, 0.006347477901726961, -0.01966985873878002, -0.027325091883540154, 0.0034848253708332777, -0.0406176820397377, 0.007632346358150244, -0.024075351655483246, -0.002848532982170582, -0.03757340461015701, -0.0077160256914794445, 0.010539408773183823, 0.056706782430410385, 0.04002552479505539, -0.01254474837332964, 0.04954512417316437, -0.057158295065164566, -0.027108673006296158, -0.0010058025363832712, -0.07248853147029877, -0.04742209613323212, -0.010850820690393448, -0.013984392397105694, -0.042908504605293274, -0.017892399802803993, -0.059574201703071594, -0.012973668985068798, -0.00250718230381608, -0.010691730305552483, -0.03283381089568138, 0.024882283061742783, 0.02573700249195099, 0.03285283222794533, 0.005618818569928408, 0.000406840059440583, 0.010188784450292587, 0.03744082152843475, -0.042532291263341904, -0.04694953188300133, 0.03247179090976715, -0.0029811908025294542, 0.006041320506483316, -0.007240690290927887, 0.004118825774639845, 0.027273036539554596, -0.03506597504019737, -0.02061985805630684, 0.004849534947425127, 0.017582546919584274, -0.017434466630220413, 0.012262622825801373, -0.004338729660958052, 0.007635423447936773, -0.041631244122982025, 0.06432822346687317, 0.0198620967566967, -0.04435163736343384, -0.05221574380993843, 0.010460445657372475, 0.041816696524620056, -0.021927861496806145, 0.020230360329151154, 0.008993622846901417, 0.071177177131176, -0.02104264870285988, 0.003151519922539592, 0.029864557087421417, 0.01787637546658516, 0.042468633502721786, 0.03475205972790718, 0.02296975813806057, 0.05572747066617012, 0.033184826374053955, -0.006865976843982935, -0.010503381490707397, 0.04766695946455002, 0.05670541152358055, -0.01698528602719307, 0.0030685681849718094, 0.0007241134881041944, 0.025266442447900772, 0.003858122741803527, -0.03845958411693573, 0.03215644881129265, -0.062051307410001755, 0.005336698144674301, -0.024909624829888344, -0.017064983025193214, 0.05545434355735779, -0.011507636867463589, 0.048241712152957916, -0.0017034446354955435, -0.019476260989904404, -0.013493523001670837, 0.041122954338788986, -0.02346937172114849, 0.0025664654094725847, 0.010266485624015331, 0.018887052312493324, 0.018270131200551987, 0.03865978866815567, 0.01779588870704174, 0.016061963513493538, -0.015884211286902428, 0.021860482171177864, 0.004402711521834135, -0.011642917059361935, -0.059630800038576126, -0.0024193001445382833, -0.038575541228055954, 0.039442501962184906, -0.031583450734615326, -0.01569850742816925, 0.02823026105761528, -0.04535707086324692, -0.0037268002051860094, -0.041054245084524155, 0.028587067499756813, -0.03198881074786186, 0.020207609981298447, 0.03886415809392929, -0.016327504068613052, -0.04205993562936783, 0.021410036832094193, -0.020227933302521706, 0.05441410094499588, 0.019017135724425316, 0.04207420349121094, 0.009079057723283768, 0.009087623097002506, 0.05048464238643646, -0.0035373454447835684, -0.008651649579405785, 0.00744684599339962, 0.016434382647275925, -0.006018757354468107, -0.012226500548422337, -0.030177218839526176, -0.018242690712213516, -0.017972314730286598, -0.028961174190044403, 0.006919275037944317, 0.036346178501844406, 0.0021805500146001577, -0.04938406124711037, -0.013779295608401299, 0.020370522513985634, -0.03256143257021904, 0.02715255878865719, 0.026418868452310562, 0.031107543036341667, -0.015790386125445366, -0.007983793504536152, -0.03561713173985481, 0.002132466994225979, 0.004875474609434605, -0.055055178701877594, 0.03686176612973213, -0.021502863615751266, -0.011435243301093578, -0.032293111085891724, -0.024493610486388206, -0.014362530782818794, 0.023266781121492386, -0.036636415868997574, -0.041253942996263504, 0.050318170338869095, 0.03408088907599449, 0.008421399630606174, 0.004175834357738495, -0.02902054786682129, 0.012434087693691254, 0.013517276383936405, 0.04619849473237991, 0.010060503147542477, 0.032991617918014526, -0.019680196419358253, -0.02230384387075901, 0.01928240805864334, -0.03372732922434807, 0.019801398739218712, -0.030956430360674858, -0.022316856309771538, 0.006077134516090155, 0.01635620929300785, -0.011205965653061867, -0.03898678347468376, -0.0021056600380688906, 0.026031076908111572, -0.003130367724224925, -0.01620342582464218, -0.05648132786154747, -0.0107492720708251, -0.06346506625413895, -0.00898166373372078, -0.03567352518439293, 0.029815837740898132, 0.009875076822936535, -0.0021888003684580326, -0.00018643798830453306, -0.046865493059158325, 0.1491539627313614, 0.06860776245594025, 0.03190162032842636, -0.028881678357720375, 0.0255049467086792, 0.07450485229492188, 0.024921122938394547, -0.009854855015873909, 0.02039116621017456, -0.04804765805602074, 0.008718669414520264, 0.0061919731087982655, 0.024182531982660294, -0.006275392137467861, 0.014574314467608929, 0.06355862319469452, -0.026573091745376587, -0.005595745053142309, 0.030740704387426376, -0.03413086012005806, -0.06538910418748856, 0.01301150768995285, 0.008571693673729897, 0.02450469508767128, -0.013867425732314587, 0.05281679704785347, 0.015446510165929794, -0.07697160542011261, -0.014258617535233498, -0.02764051966369152, 0.033878374844789505, -0.03817161172628403, 0.025356750935316086, -0.030406529083848, -0.041140876710414886, 0.02134457416832447, 0.015189883299171925, -0.012964540161192417, -0.012573753483593464, 0.0382874459028244, -0.021239953115582466, 0.008121918886899948, 0.029015924781560898, -0.026125360280275345, 0.0063576288521289825, 0.04876002296805382, -0.05945008248090744, 0.004137703683227301, 0.04010476917028427, -0.0011456945212557912, 0.0634908676147461, -0.040783416479825974, 0.021459022536873817, -0.026979822665452957, -0.05387081205844879, -0.009093526750802994, 0.004520104732364416, -0.02936760149896145, -0.007089158985763788, -0.014100809581577778, 0.0236191563308239, -0.0029731537215411663, -0.021596284583210945, 0.004573107231408358, -0.023136314004659653, 0.017338188365101814, 0.03751252591609955, 0.027149463072419167, -0.02371075749397278, -0.014052306301891804, -0.023263907060027122, -0.011474672704935074, 0.006218981463462114, -0.019023623317480087, 0.033880386501550674, 0.027250630781054497, -0.021222690120339394, 0.03920487314462662, -0.0021736265625804663, -0.02087307907640934, -0.03965340182185173, -0.008626505732536316, 0.010034726932644844, 0.011677122674882412, 0.02267620712518692, 0.046741269528865814, -0.0561467781662941, -0.04899848252534866, -0.03698922321200371, 0.04448527470231056, 0.04542095214128494, 0.013647266663610935, -0.025811346247792244, -0.015644961968064308, -0.008733456954360008 ]
52355 Düren, NRW, Deutschland [email protected] Busanmietung | Bus anmieten | Bus mieten Mietomnibusse | Bus suchen | Bussuche Busunternehmen | Busreisen | Busvermittlung Driving times and breaks A coach driver is not allowed to drive longer than 4 ½ hour straight, then has to take a break. A break of journey is regulated as "a period during which the driver must not carry out any driving activities or any other work and which is solely to be used for relaxation…". These breaks have to take at least 45 minutes and the driver is not even allowed to e.g. make coffee for his guests. In a multi-driver crew (see below), the break of journey can take place in the front passenger seat. But the same counts: No work. The described break may be split, in which the first half has to take at least 15 minutes and the other half at least 30 minutes. The 30-minute break has to take place no later than 4 ½ hours. When exactly the 15-minute break takes place doesn't matter, as long as it's before the 30-minute break. Theoretically, the driver could take his first break after 10 minutes. The second part then has to take place after 4 ½ hours at the most. A violation of the drive and break times can result in considerable fines! It is also important to point out that once the 45-minute break has taken place, a new driving block begins and the driver can again drive for 4 ½ hours. One bus driver may not drive more than 9 hours a day although twice a week, the travel time can be increased to 10 hours. The term 'week' is defined as "… the period between 00.00 on Monday and 24.00 on Sunday…". The maximum weekly travel time is restricted to 56 hours. In two consecutive weeks, the maximum travel time is 90 hours. Daily rest periods Regulated daily rest periods The regulation defines that a bus driver's work shift cannot exceed 13 hours after which he then has to take a break of at least 11 hours. Split daily rest periods The daily rest period may be taken in two parts, in which the first part has to be at least 3 hours long and the second part at least 9 hours. The maximum shift time of the driver is then 15 hours, in which a 3-hour rest period has to occur. Shortened daily rest periods As an exception, the daily shift time can also be extended to 15 hours and the subsequent rest period may be reduced to 9 hours, without a 3-hour rest period in between. However this is only allowed on three days between two weekly rest periods (see below). "Ferry rule" The "Ferry rule" governs a situation that is more common in freight than in passenger transport. For completeness, it is nevertheless mentioned briefly. If a coach is transported by train or ferry, the driver my interrupt his daily rest period up to two times for a total of no more than an hour (e.g. to manoeuvre the vehicle). This is only possible, if the interruption occurs during a rest period of at least 11 hours. Multi-driver crew A multi-driver crew is according to the regulations given, if there are at least two drivers in one vehicle. This even applies if the trip begins with only one driver, and the second driver boards within a maximum of one hour after departure. In a multi-driver crew, the day is considered to be not 24-hours, but 30-hours long. At the end of this period, the driver must take a 9-hour rest period. Accordingly, the maximum shift length is 21 hours. Weekly rest period Over a period of two weeks, a driver must take two weekly rest periods. This weekly rest period must take place no later than 6 working days into the two-week period (see exception below). To get normal ("regular") weekly rest periods, a daily rest period is extended to 45 hours. Every second weekly rest period may be reduced to up to 24 hours however the difference must be made up in the following three weeks. Rule of thumb for practice (no night driving!) A day of driving is roughly equivalent of a rest period of about 32 to 36 hours, so it must be made up in about 9-13 hours. Two days off work correspond to a rest period of about 56-60 hours. Within these days off, they can be made up within 11-15 hours. Weekly alternating patterns of one, then two days off a week can thus allow a good balance. Exceptions for cross-border travel Before EU regulation 561 came into effect, drivers were allowed to work for up to 12 consecutive days and had to subsequently add two rest days. Apparently, the associations were asleep during the hearings, because since regulation 561, this was suddenly not the case anymore. Foreign travel that went longer than six days now had to include an entire rest day or the driver had to be replaced. Therefore, the organisations were up in arms against the new regime of weekly rest periods – with success. Since December 4, 2011, drivers that are used in cross-border-travel, are now allowed to work 12 consecutive days, if the following conditions are met: the journey must go abroad for at least 24 hours the driver must have a minimum 45-hour rest period before driving the driver has to take two weekly rest periods after the journey (one of which may be shortened) From January 1, 2014, the following additional requirements apply to the application of the exception regulation: the bus must be equipped with a digital tachograph for night time travel (between 22:00 – 06:00), the allowable continuous driving time for the driver can be no more than 3 hours (does not apply to multi-driver crews) Rest periods on the bus If the bus is equipped with a sleeper cabin, daily rest periods and reduced weekly periods may be taken on the bus. However, the bus may not move. Take-over trips If a driver takes his own car to the take-over point (or back from there), it counts as additional work time, but not driving time. If the take-over driver is taken there by another person, it counts as willingness to work and also counts as shift time. Only if the driver has a bed (or sleeper) on a train, the time on the train counts as rest time. If the driver gets caught in e.g. a traffic jam and thus exceeds his tolerable driving- or shift time, he cannot simply leave the bus on the highway. In this case, the driver may continue until he reaches a suitable stopping place; if this is necessary to guarantee the safety of the passengers and security of the vehicle; as long as the overall safety is not compromised. Immediately after reaching the stopping place, the driver must write a handwritten reason for the deviation from the rules on the record sheet or on a printout of the recording sheet © 2019 Mietomnibusse GmbH | Bus, Omnibusse, Busreisen, Mietomnibusse und Bus mieten für Düren, Köln, Aachen, Deutschland und Europa
[ 0.004578768741339445, 0.0076506962068378925, -0.010179340839385986, 0.011335961520671844, 0.0006953126867301762, -0.0037524220533668995, -0.012190443463623524, 0.007861272431910038, -0.0014616517582908273, 0.04064341261982918, 0.025659743696451187, 0.011722991243004799, 0.015466369688510895, -0.0441504642367363, -0.006468338891863823, -0.0004875518789049238, -0.029967280104756355, -0.029079627245664597, -0.005117031279951334, -0.001251619658432901, 0.003714866004884243, 0.01699783280491829, -0.04650070145726204, -0.016047783195972443, -0.03112128935754299, 0.03400253504514694, 0.023355303332209587, -0.0017086577136069536, 0.04204770177602768, 0.05083101987838745, -0.01439951453357935, -0.06283406168222427, 0.04749377816915512, -0.03428565710783005, -0.015109182335436344, -0.025887111201882362, 0.036315497010946274, -0.020125582814216614, -0.00023411051370203495, -0.051334623247385025, 0.03831922635436058, 0.0023429538123309612, 0.020134372636675835, -0.031504034996032715, -0.006558637600392103, -0.027204621583223343, -0.027414120733737946, -0.010673821903765202, 0.01483017299324274, -0.02952735312283039, 0.029220201075077057, 0.012608056887984276, -0.000594465178437531, -0.017184892669320107, 0.0011815029429271817, 0.0012683076784014702, 0.01907080039381981, -0.010421869345009327, -0.03023439459502697, 0.038706254214048386, 0.01825299672782421, -0.00958577636629343, 0.02112170308828354, -0.0668298676609993, 0.033794283866882324, 0.014921292662620544, 0.0007611603941768408, -0.000037036530557088554, -0.013226708397269249, -0.024941295385360718, -0.010489678010344505, 0.017445547506213188, 0.0067254118621349335, -0.015988366678357124, -0.01010737195611, 0.023504745215177536, 0.005511439871042967, 0.010887937620282173, -0.008759350515902042, 0.02358892187476158, 0.012146243825554848, 0.017200585454702377, 0.028254523873329163, -0.005112864077091217, -0.04667649045586586, -0.011945283971726894, -0.01854879781603813, 0.02118920162320137, -0.006813959218561649, -0.0024820128455758095, 0.002148444764316082, 0.04688999801874161, -0.00012611325655598193, -0.011677620001137257, 0.05054765194654465, 0.031139681115746498, -0.04929645359516144, 0.02931889146566391, -0.009569437243044376, -0.006932966876775026, 0.056994739919900894, 0.030029192566871643, 0.0003105969517491758, 0.0401645228266716, -0.05389833450317383, -0.004157204646617174, -0.008691488765180111, 0.000027249565391684882, 0.004112445283681154, -0.008736802265048027, 0.014683928340673447, -0.0047271717339754105, 0.02670378051698208, -0.017712373286485672, 0.030478497967123985, 0.04432862251996994, -0.010702692903578281, 0.06233079731464386, -0.013152099214494228, 0.03416891023516655, 0.05184488743543625, 0.01691729947924614, 0.03182801231741905, 0.011249587871134281, 0.01927105337381363, -0.060182977467775345, -0.051809247583150864, 0.06239531934261322, -0.029758185148239136, -0.04609161615371704, -0.017087459564208984, -0.0357414111495018, -0.0057889483869075775, 0.020460685715079308, 0.021151375025510788, 0.03913929685950279, 0.013743305578827858, 0.03099513053894043, 0.018491609022021294, -0.03814929351210594, 0.05388648808002472, 0.022175593301653862, 0.009155021980404854, 0.09620329737663269, 0.007897171191871166, 0.013155491091310978, 0.011327358894050121, 0.01089125033468008, -0.03834475576877594, 0.018252521753311157, -0.06405159831047058, 0.01213853619992733, -0.0012595574371516705, 0.02000284381210804, -0.01339648850262165, -0.027992144227027893, -0.006794920191168785, 0.035536542534828186, 0.008606051094830036, 0.035477835685014725, -0.01920190081000328, 0.027570446953177452, 0.008889533579349518, 0.054347120225429535, 0.015384137630462646, 0.014602971263229847, -0.01706484518945217, -0.00510189775377512, 0.018127920106053352, -0.04044090211391449, -0.009538142941892147, -0.015492202714085579, 0.0005826358683407307, 0.02677183225750923, 0.010838055051863194, 0.03309696540236473, 0.03791172429919243, 0.010563535615801811, 0.06029854714870453, 0.04254382476210594, -0.06438719481229782, 0.010699168778955936, 0.019365334883332253, 0.06364607810974121, 0.027818961068987846, -0.021488744765520096, -0.006099352613091469, -0.020546261221170425, -0.05794987827539444, -0.041839759796857834, 0.011949801817536354, 0.02341625839471817, -0.01736358366906643, 0.021849388256669044, -0.0011987530160695314, 0.004467052407562733, -0.02187935635447502, -0.0037008002400398254, -0.002835215302184224, -0.05311068147420883, -0.02391023188829422, 0.04134174436330795, -0.02950693480670452, 0.05778571218252182, 0.0006254160543903708, -0.01051165722310543, 0.018756721168756485, 0.05690065026283264, -0.018625028431415558, 0.015087894164025784, 0.04652459919452667, 0.018752818927168846, -0.021087713539600372, -0.009089679457247257, 0.009150514379143715, -0.014653369784355164, -0.002710643457248807, 0.052198827266693115, -0.03256484121084213, -0.016548261046409607, 0.03936103358864784, -0.005442305468022823, 0.02529885433614254, -0.0018877617549151182, 0.0017566626193001866, -0.0028275372460484505, -0.010314091108739376, 0.02391773648560047, -0.0011510767508298159, 0.015046846121549606, -0.016767600551247597, 0.048909321427345276, 0.03696420043706894, 0.0639190748333931, 0.032959211617708206, 0.012639614753425121, 0.04800577461719513, 0.031495045870542526, 0.0055876257829368114, 0.02242896892130375, 0.021822288632392883, 0.010256825014948845, 0.0500817634165287, 0.022317321971058846, -0.008405319415032864, 0.03144596517086029, -0.026869036257267, -0.02582015097141266, 0.0005297367461025715, 0.027614759281277657, -0.016444534063339233, 0.030394788831472397, 0.021611148491501808, 0.027759723365306854, -0.03128553926944733, 0.0035197711549699306, 0.019784631207585335, 0.051795054227113724, -0.04498440399765968, -0.009182610549032688, 0.01242549903690815, 0.03291574865579605, 0.017380164936184883, 0.021630819886922836, 0.02087942138314247, 0.02505880780518055, 0.015376865863800049, 0.037078987807035446, -0.0013604731066152453, -0.047567691653966904, -0.022528372704982758, -0.05225679650902748, -0.046442095190286636, -0.04051603749394417, -0.08501493185758591, -0.019534246996045113, 0.06630067527294159, -0.04049853980541229, 0.055228181183338165, -0.022367851808667183, -0.014536568894982338, -0.03446892648935318, -0.03890358656644821, 0.06634332239627838, 0.02350686304271221, 0.05134911462664604, -0.03783079609274864, 0.011338883079588413, 0.01646048203110695, 0.0025451353285461664, -0.021308215335011482, -0.022377442568540573, -0.0025368493515998125, -0.0017477789660915732, 0.016075506806373596, 0.00728990463539958, 0.00780832301825285, 0.039984337985515594, -0.06189531832933426, -0.04700291529297829, 0.036674872040748596, -0.010818448849022388, -0.02048216573894024, 0.03736511617898941, -0.030316824093461037, 0.04611830785870552, -0.002489133970811963, -0.013575080782175064, 0.05149611458182335, 0.04341300204396248, -0.0383368581533432, 0.019281338900327682, 0.03316837176680565, 0.02030353434383869, -0.04591305926442146, 0.052987463772296906, 0.06179243326187134, 0.007228016387671232, -0.01616717502474785, -0.015901820734143257, -0.013830415904521942, 0.029949689283967018, 0.032631877809762955, -0.004556656815111637, -0.0408029668033123, 0.03421974927186966, 0.01451458316296339, -0.0733332484960556, 0.048988331109285355, -0.04578755795955658, -0.024329856038093567, -0.01630382053554058, -0.04248737543821335, 0.03546604514122009, 0.009188641794025898, -0.00759486760944128, 0.004244589246809483, -0.03452111780643463, 0.01265689916908741, 0.015800736844539642, 0.04347274824976921, -0.02828827314078808, 0.012241581454873085, 0.047731105238199234, 0.0029039133805781603, -0.014713711105287075, 0.04496677592396736, -0.006561740301549435, 0.005370148457586765, 0.0015733855543658137, 0.012676279991865158, 0.011818318627774715, 0.02997804805636406, 0.025137057527899742, 0.0010704423766583204, 0.04271579906344414, -0.022443225607275963, -0.030929675325751305, -0.014084450900554657, -0.002885089721530676, 0.04040495306253433, -0.013268440961837769, -0.012742848135530949, 0.014311733655631542, -0.037044331431388855, -0.030921174213290215, 0.027581213042140007, 0.041849952191114426, 0.059744417667388916, -0.0757414847612381, 0.058591049164533615, -0.01382850669324398, -0.02721857652068138, 0.06715457141399384, -0.05140405893325806, -0.024013783782720566, 0.05946037173271179, -0.004319746047258377, 0.045294176787137985, -0.037156157195568085, 0.02795107662677765, -0.016574183478951454, -0.012391308322548866, 0.02137496881186962, 0.007935727015137672, 0.04045465588569641, -0.024574533104896545, -0.018785398453474045, -0.004424676764756441, -0.042590606957674026, -0.0021343445405364037, -0.037412915378808975, -0.01140611618757248, -0.01971801556646824, -0.03980402648448944, -0.06437042355537415, 0.02192707359790802, 0.04618962109088898, 0.03451080247759819, 0.0013500743079930544, 0.02177698351442814, 0.0031854379922151566, 0.009332573041319847, 0.031044863164424896, 0.006548176985234022, -0.001777309225872159, -0.031827084720134735, 0.0640370175242424, 0.036386020481586456, -0.020874470472335815, -0.032977476716041565, -0.037281252443790436, -0.02869640849530697, 0.02838139981031418, -0.011993338353931904, -0.030242564156651497, -0.025751737877726555, -0.00450159003958106, -0.03626977652311325, 0.013173299841582775, -0.02150251716375351, -0.02252531610429287, -0.007739183492958546, 0.026907723397016525, 0.04562555253505707, -0.05700236186385155, 0.0005135700339451432, -0.026394972577691078, 0.06809163093566895, 0.026772476732730865, 0.004655324853956699, -0.05031672120094299, -0.03195863589644432, -0.043754976242780685, -0.02316840924322605, -0.031222475692629814, 0.04537946730852127, -0.03363572806119919, -0.011335570365190506, -0.033027976751327515, 0.03720684349536896, 0.027339722961187363, -0.02674861066043377, -0.001184732187539339, 0.0005712521378882229, 0.02854994125664234, -0.006721060257405043, 0.007872465066611767, 0.0012833328219130635, -0.046200692653656006, 0.019471894949674606, -0.0586591474711895, 0.027984850108623505, 0.0011668625520542264, -0.026652026921510696, -0.012757699005305767, 0.015725933015346527, 0.045982517302036285, 0.03826000913977623, -0.013563207350671291, 0.015369698405265808, -0.011806978844106197, 0.020093902945518494, -0.03375925123691559, -0.03016568347811699, 0.05033493414521217, 0.0046771434135735035, -0.02999085746705532, 0.03304498270153999, 0.04324080049991608, -0.02657688781619072, -0.008702822029590607, 0.031262412667274475, -0.03269069269299507, 0.047425128519535065, -0.013530056923627853, 0.0022353471722453833, -0.045005593448877335, -0.024452809244394302, 0.02412259392440319, -0.06054851412773132, -0.00040394163806922734, -0.0006967760273255408, -0.039041582494974136, -0.019806167110800743, -0.06411223858594894, -0.01985897310078144, -0.0039041589479893446, -0.011614369228482246, 0.016194267198443413, 0.02721451036632061, -0.006352417636662722, -0.020039929077029228, -0.019761154428124428, -0.05449587479233742, 0.0072963726706802845, -0.024950284510850906, 0.014284835197031498, 0.01239605899900198, 0.009978371672332287, 0.00407387176528573, 0.0068700676783919334, -0.038738641887903214, -0.0010767846833914518, -0.01721031218767166, -0.019300881773233414, -0.038074493408203125, -0.017647363245487213, -0.014906424097716808, -0.0064178709872066975, -0.0320214182138443, 0.013028419576585293, -0.004293255973607302, 0.04257911816239357, 0.028337210416793823, 0.0063705360516905785, -0.0188643429428339, 0.014904182404279709, -0.032017625868320465, 0.02544284053146839, 0.03552023693919182, -0.05174090713262558, -0.001874105422757566, 0.00979905016720295, -0.02995147556066513, 0.041287437081336975, -0.008089509792625904, -0.019518867135047913, -0.07143893092870712, -0.07281960546970367, 0.012983003631234169, -0.06467423588037491, -0.007455751765519381, -0.04864120855927467, -0.035760894417762756, -0.03109193779528141, 0.036381419748067856, -0.008930590935051441, -0.04628491774201393, 0.006214556749910116, -0.045232173055410385, 0.034183673560619354, -0.022487856447696686, -0.029483722522854805, -0.008261099457740784, 0.009548097848892212, -0.030828604474663734, 0.04317889362573624, 0.01775609701871872, 0.010058939456939697, 0.03013002686202526, 0.007709246128797531, 0.030830223113298416, -0.030707113444805145, -0.04272504150867462, -0.052759140729904175, -0.008949452079832554, 0.008882567286491394, 0.006788890343159437, 0.00003780791666940786, -0.024936947971582413, 0.06390352547168732, -0.05427747219800949, 0.016125274822115898, -0.01972629688680172, -0.012118954211473465, -0.03624662011861801, 0.0013159529771655798, 0.04689572751522064, -0.01216951571404934, 0.005697785411030054, -0.011739552021026611, 0.023730473592877388, 0.039084356278181076, -0.009034493006765842, -0.034855809062719345, -0.01838313229382038, -0.05391184240579605, -0.06330691277980804, 0.02742958813905716, -0.042880285531282425, -0.030118048191070557, -0.04594430327415466, 0.006425850559026003, 0.03802291303873062, 0.011407554149627686, 0.03321344405412674, 0.06960620731115341, -0.0018540130695328116, -0.00664103776216507, 0.011906037107110023, 0.02352873422205448, 0.019713683053851128, -0.00709525728598237, 0.03095044195652008, -0.0139600969851017, 0.0071630640886723995, 0.014162587001919746, -0.027592875063419342, -0.03431478515267372, -0.051817722618579865, 0.003360184608027339, 0.0195635836571455, -0.011629651300609112, 0.038596101105213165, -0.024392854422330856, -0.07046934962272644, -0.055891185998916626, 0.04788161814212799, 0.004567420110106468, 0.0011981670977547765, 0.03317399322986603, -0.03886596858501434, -0.0028804014436900616, 0.0007334803813137114, -0.009165802039206028, -0.012251763604581356, -0.061093591153621674, 0.06411153823137283, 0.030135711655020714, -0.05124746263027191, -0.0006713186157867312, 0.06023167073726654, -0.0548119843006134, -0.029457304626703262, -0.0036809199955314398, 0.028464797884225845, -0.011193981394171715, -0.03321148455142975, -0.00919893104583025, -0.03292427957057953, 0.019484946504235268, -0.014234793372452259, 0.014213849790394306, -0.005970014724880457, 0.042850472033023834, 0.01674945466220379, 0.04350351169705391, -0.0178309828042984, 0.0036251707933843136, 0.024614740163087845, -0.010902601294219494, -0.004637580364942551, -0.06344083696603775, -0.019671397283673286, 0.0019410696113482118, -0.005262802820652723, 0.05664309114217758, -0.02860444039106369, 0.016845226287841797, 0.029292607679963112, 0.011489378288388252, 0.050367921590805054, -0.028493404388427734, -0.016170073300600052, 0.03837631270289421, -0.02978331968188286, -0.06265374273061752, -0.021611448377370834, 0.02656383067369461, -0.007214149925857782, 0.0333712063729763, -0.0458223782479763, -0.008467349223792553, 0.021653154864907265, -0.00946897454559803, 0.005486583802849054, -0.055450692772865295, -0.05136021226644516, -0.045063089579343796, -0.029466116800904274, -0.04243016615509987, -0.005729737225919962, 0.0011758501641452312, 0.0412009097635746, 0.01831989549100399, -0.050648510456085205, 0.0028586199041455984, -0.02882649190723896, 0.0025485814549028873, -0.011976786889135838, -0.0332782156765461, 0.044201143085956573, -0.025049300864338875, -0.05469312518835068, -0.05354023352265358, -0.005091086030006409, -0.01608520746231079, 0.0255542304366827, -0.02653989940881729, 0.006806843914091587, 0.018830863758921623, 0.02590753883123398, 0.003313641296699643, 0.04562360793352127, -0.0038976038340479136, -0.03128938004374504, 0.01812303066253662, 0.0018420059932395816, -0.01566554419696331, 0.02836218848824501, 0.0381878986954689, -0.012539908289909363, 0.029209300875663757, -0.03018391691148281, -0.007745353505015373, -0.027596469968557358, -0.0013006648514419794, 0.014674823731184006, 0.018619295209646225, -0.06304682046175003, -0.012295144610106945, -0.01906483806669712, -0.05245396867394447, 0.020909767597913742, -0.039898764342069626, 0.021323416382074356, 0.014280260540544987, -0.022548707202076912, -0.010576787404716015, 0.04648824408650398, -0.0113877197727561, 0.02036958746612072, -0.00700462656095624, 0.017270740121603012, -0.0006396963726729155, 0.0002551106736063957, 0.01059635914862156, 0.02568434178829193, 0.02110423892736435, -0.015978043898940086, 0.004414490424096584, -0.008929676376283169, -0.03370703011751175, 0.024813173338770866, -0.04328785836696625, -0.03519294038414955, -0.02673611417412758, -0.024184465408325195, 0.015061141923069954, 0.04066846892237663, 0.02693132869899273, 0.015495328232645988, 0.021926190704107285, -0.027848541736602783, -0.056801650673151016, -0.042086485773324966, -0.05670224875211716, -0.02829115279018879, 0.037207428365945816, -0.030410761013627052, 0.009397759102284908, -0.0003657676570583135, -0.05430135875940323, 0.03512425720691681, -0.01644287258386612, 0.0037176755722612143, -0.008061457425355911, 0.005549948196858168, -0.009483831003308296, 0.028297800570726395, -0.0167680773884058, 0.011155381798744202, 0.03007875569164753, 0.03762722760438919, -0.04635288566350937, -0.06027130037546158, -0.004176249727606773, 0.02397334575653076, -0.013816555961966515, 0.004423951264470816, -0.007207407616078854, 0.016582349315285683, -0.008828585967421532, 0.00983799435198307, 0.020343102514743805, -0.01454171072691679, 0.014170193113386631, 0.031547240912914276, -0.014899040572345257, -0.022682715207338333, -0.035185303539037704, 0.02472016029059887, -0.009838152676820755, -0.007627031300216913, -0.03234707936644554, 0.0509524904191494, 0.02902160957455635, -0.02308439277112484, 0.051777757704257965, 0.02315395697951317, 0.041402485221624374, -0.021298615261912346, 0.021894605830311775, -0.019110649824142456, 0.04544958844780922, 0.03344624489545822, 0.014513599686324596, -0.01421483512967825, 0.006037378683686256, 0.06785157322883606, 0.007824593223631382, -0.03232387825846672, 0.06310183554887772, 0.011164623312652111, -0.033490948379039764, 0.015444847755134106, -0.015184924937784672, 0.027889246121048927, 0.009069867432117462, -0.012837070040404797, 0.032376378774642944, -0.02215813845396042, 0.013190845027565956, 0.009844359010457993, -0.01063676830381155, 0.05171382054686546, -0.011030204594135284, 0.012288189493119717, -0.0030219994951039553, -0.020646916702389717, -0.00964828860014677, 0.025381652638316154, -0.012393033131957054, -0.00904028583317995, 0.01345406100153923, 0.005586389452219009, -0.01723693311214447, 0.06472010910511017, 0.012871924787759781, 0.02210199274122715, -0.03404133766889572, 0.040750350803136826, -0.0006960436585359275, -0.014297408983111382, -0.03319436311721802, 0.0041318549774587154, -0.03699528053402901, 0.03802184388041496, -0.0726318284869194, -0.012433882802724838, 0.04295646399259567, -0.05835302919149399, -0.001433254568837583, -0.0410870686173439, 0.020860472694039345, -0.026982881128787994, 0.01263135951012373, 0.02893855795264244, -0.0042009735479950905, -0.05970286577939987, 0.06664830446243286, -0.027892831712961197, 0.03279687091708183, 0.017914535477757454, 0.04336324334144592, 0.02249748259782791, 0.0467008538544178, 0.05256800726056099, -0.04275517538189888, -0.04150403290987015, 0.02361263707280159, -0.01807117462158203, -0.027408506721258163, -0.02047475427389145, -0.04800359904766083, -0.03345373272895813, -0.011973214335739613, -0.019744545221328735, -0.006442887242883444, 0.05835101380944252, -0.026125794276595116, -0.020357782021164894, -0.011696082539856434, 0.015863731503486633, -0.04176359623670578, 0.02893715724349022, 0.008581691421568394, 0.05096665397286415, 0.021359406411647797, -0.03243526816368103, -0.04622803255915642, -0.00031284362194128335, -0.013008445501327515, -0.04660194367170334, 0.027886927127838135, -0.024833083152770996, 0.00033220931072719395, -0.05134629085659981, -0.03948875889182091, -0.039899855852127075, -0.013768247328698635, -0.04898180440068245, -0.052087441086769104, 0.0409824401140213, 0.019689716398715973, 0.0011194092221558094, 0.017937323078513145, -0.04657181352376938, 0.023286709561944008, 0.05478501319885254, 0.05758430063724518, -0.005807357840240002, 0.04574904963374138, 0.00667337141931057, -0.0035491848830133677, 0.01986701972782612, -0.03165818750858307, 0.021752087399363518, -0.009473264217376709, -0.018905727192759514, 0.010634970851242542, 0.0025935042649507523, -0.019952550530433655, -0.0503864586353302, 0.0017795610474422574, 0.006391283590346575, 0.030203858390450478, 0.000804829818662256, -0.07950298488140106, 0.005295916460454464, -0.0790826752781868, 0.015811575576663017, -0.04174860939383507, 0.042605314403772354, 0.027704309672117233, -0.034274596720933914, 0.002591200638562441, -0.06188863888382912, 0.1487714797258377, 0.051029983907938004, 0.04032524302601814, 0.0017139294650405645, -0.0005507190362550318, 0.06418661773204803, -0.018666161224246025, -0.033084433525800705, 0.011013263836503029, -0.04092569649219513, 0.03751605376601219, 0.0008596204570494592, 0.03075685165822506, -0.008507351391017437, 0.05423745885491371, 0.0726073607802391, -0.030073022469878197, 0.03282228112220764, 0.038783907890319824, -0.05998528003692627, -0.01876056008040905, 0.019449125975370407, 0.028444722294807434, 0.01350466813892126, -0.021101338788866997, 0.039592813700437546, 0.02563633769750595, -0.04899820685386658, -0.009243560023605824, -0.022897742688655853, -0.001481993356719613, -0.04932302236557007, 0.015238089486956596, 0.023514684289693832, -0.05265488848090172, 0.05483228340744972, -0.020523997023701668, -0.028800420463085175, -0.015236251056194305, -0.006574469618499279, -0.005849304609000683, -0.002033707918599248, 0.04619462788105011, -0.043059103190898895, 0.017536282539367676, 0.02272489108145237, -0.02227780967950821, 0.009474554099142551, 0.04542477801442146, -0.038072213530540466, 0.0617484524846077, -0.017706865444779396, 0.03916235640645027, -0.013333695940673351, -0.03599380701780319, -0.0071717845275998116, -0.006228859070688486, -0.026405788958072662, -0.008141748607158661, 0.0102211469784379, 0.0391143262386322, 0.003079186426475644, -0.0059676100499928, 0.010388704016804695, -0.045193783938884735, 0.012055277824401855, 0.007747924420982599, 0.014473672024905682, -0.012627796269953251, 0.006310346536338329, -0.005320551339536905, -0.017177637666463852, 0.0017187820049002767, -0.005758631508797407, 0.03978273645043373, 0.04676102474331856, -0.022013435140252113, 0.02463974431157112, 0.018436625599861145, -0.015917740762233734, 0.003155763726681471, -0.05385444313287735, 0.03644708916544914, -0.012685783207416534, -0.0015590841649100184, 0.05015989765524864, -0.041665781289339066, -0.01854599267244339, -0.02589709684252739, 0.04677819460630417, 0.02691999077796936, 0.0009951879037544131, -0.006787921767681837, -0.049298226833343506, -0.0040524909272789955 ]
FIME Becomes Global Reseller of JCB Contactless IC Terminal Type Approval Test Tool and is the first and only laboratory accredited to provide functional testing services for JCB's new generation of contactless terminals. Advanced secure-chip testing provider, FIME, has announced that it is the first and only laboratory accredited to provide functional testing services for JCB's new generation of contactless terminals. In addition to offering testing services to the marketplace on behalf of an international payment brand based in Japan, the JCB-approved EVAL test tool developed by FIME is also available for purchase from its network of international offices as an off-the-shelf product for in-house testing. "We are delighted to have advanced our integration testing capabilities for JCB," comments Alex Chen, Sales Director of FIME Asia. "Becoming the first laboratory accredited to qualify products to JCB Contactless IC Terminal Type Approval specification is a testament to the knowledge that exists at FIME Asia and across the FIME network." FIME has been working with JCB as an accredited integration testing laboratory since the launch of JCB J/Smart, JCB's EMV Programme in 2005. Alex adds: "Japan is one of the leading markets for the development and manufacture of secure chip products globally which is why we recently launched an office in Tokyo, Japan. With the region currently gearing up for the roll out of mobile payment services, it is an exciting time to be operating in the area. We look forward to supporting ecosystem stakeholders with our global expertise in order to achieve quicker time to market, reduced financial risk and overall costs."
[ -0.019419310614466667, -0.007156662177294493, -0.018361490219831467, 0.017399262636899948, -0.013677419163286686, 0.010833615437150002, 0.005481510888785124, -0.008844643831253052, 0.016401510685682297, 0.04536681994795799, 0.008359688334167004, 0.018829157575964928, 0.015804223716259003, -0.06728530675172806, -0.04256856068968773, 0.00691472552716732, -0.0010919178603217006, -0.00741147343069315, 0.011457277461886406, -0.02181192860007286, 0.005805442109704018, 0.01865551993250847, -0.04615405201911926, -0.012585228309035301, -0.05315806344151497, 0.04196213185787201, 0.025709396228194237, -0.010596079751849174, 0.0669955238699913, 0.06782960146665573, -0.03286369889974594, -0.043090738356113434, 0.02688283659517765, -0.06263937056064606, -0.02454707771539688, -0.02433713898062706, 0.03914938494563103, -0.035209182649850845, -0.015495175495743752, -0.04435400292277336, 0.0021094747353345156, 0.009948843158781528, 0.052064962685108185, -0.029548227787017822, -0.048702698200941086, -0.006502070464193821, -0.02031916379928589, -0.015133126638829708, -0.026622293516993523, -0.03419524058699608, -0.010768812149763107, 0.00981159694492817, 0.020125271752476692, 0.02295386977493763, -0.006372597999870777, 0.0035893088206648827, -0.002815916435793042, -0.04116422310471535, -0.03475940600037575, 0.03911210596561432, 0.021646646782755852, -0.01983724907040596, 0.02981487289071083, -0.06464787572622299, 0.03693784773349762, 0.024637633934617043, -0.011610511690378189, -0.007362768519669771, 0.004890813492238522, -0.006505066528916359, 0.014812878333032131, -0.009455375373363495, -0.027410224080085754, -0.03659792244434357, 0.010440864600241184, 0.0004288053896743804, -0.00424089003354311, -0.008888189680874348, -0.02823655679821968, -0.030687633901834488, 0.005012932699173689, 0.03540210798382759, -0.009621777571737766, 0.008272453211247921, -0.0703694149851799, -0.006512133404612541, -0.0022278607357293367, -0.001603045267984271, 0.014968610368669033, 0.007577108684927225, -0.002302507869899273, 0.06514367461204529, -0.020771976560354233, -0.002055572113022208, 0.02616257593035698, 0.021261515095829964, -0.027432434260845184, 0.03376669064164162, 0.0052619436755776405, 0.009358104318380356, 0.028938237577676773, 0.030270341783761978, -0.019564557820558548, 0.06832455098628998, -0.020813079550862312, -0.01021911483258009, -0.02561892755329609, 0.01690450869500637, -0.024349242448806763, -0.04052212834358215, 0.014632606878876686, -0.037846386432647705, -0.03045707382261753, -0.022474179044365883, -0.012712928466498852, 0.03307410329580307, 0.003567189211025834, 0.05166682228446007, -0.05199717730283737, -0.0005604106117971241, -0.0005219507147558033, -0.004947198089212179, 0.04300743341445923, -0.006010736338794231, -0.004065863788127899, -0.017572298645973206, -0.006185721140354872, 0.04023528844118118, -0.015153681859374046, -0.017174359411001205, 0.00003859516073134728, -0.038496166467666626, -0.025355316698551178, 0.04023417457938194, -0.020248282700777054, -0.0001414850412402302, 0.010366474278271198, 0.045519113540649414, 0.03898930549621582, -0.025430066511034966, 0.03585846722126007, 0.019309109076857567, 0.007394102867692709, 0.10052541643381119, -0.00759889418259263, 0.023293642327189445, -0.013671268709003925, -0.031585000455379486, -0.023090939968824387, 0.03591866418719292, -0.02930908277630806, -0.010389873757958412, -0.010100651532411575, 0.024536218494176865, 0.008001365698873997, 0.024365350604057312, -0.010835960507392883, 0.023566950112581253, 0.022233078256249428, 0.030641302466392517, -0.036578062921762466, 0.033690351992845535, 0.005732015240937471, 0.026772091165184975, -0.042406585067510605, 0.029580816626548767, -0.03176957741379738, -0.011802936904132366, 0.01864233985543251, -0.0283453818410635, -0.002152986591681838, 0.013788602314889431, -0.014112087897956371, 0.017487211152911186, 0.010010416619479656, 0.05979812517762184, 0.05441518872976303, 0.03241198509931564, 0.04449579864740372, 0.034528397023677826, -0.036480341106653214, -0.0057556224055588245, -0.003074723295867443, 0.08637354522943497, 0.010667004622519016, 0.02132207155227661, 0.026477547362446785, -0.03718293458223343, -0.008689919486641884, -0.01676688902080059, -0.0015128086088225245, 0.019352402538061142, -0.057406578212976456, 0.016845624893903732, -0.0355960913002491, 0.03157443180680275, -0.0004605931171681732, 0.006834222469478846, 0.015274714678525925, -0.046284958720207214, -0.0597587451338768, 0.05560487136244774, -0.03182833641767502, 0.021507628262043, -0.003432939760386944, -0.025647545233368874, 0.025872712954878807, 0.05738552659749985, -0.03648298606276512, 0.01036608312278986, 0.027170231565833092, 0.004831068217754364, -0.03108597919344902, -0.01260589063167572, 0.00461337948217988, -0.03177209943532944, -0.009278513491153717, 0.04279191419482231, 0.015849551185965538, 0.019660713151097298, 0.01452034991234541, 0.008025962859392166, 0.031606804579496384, 0.006232130341231823, -0.00645956676453352, 0.013934409245848656, -0.02410690300166607, 0.0796009749174118, -0.008290236815810204, -0.03984783962368965, -0.016854725778102875, 0.04653060808777809, 0.017738575115799904, 0.061021044850349426, 0.05004376545548439, 0.004249766003340483, 0.05014694109559059, 0.028118452057242393, -0.01713399589061737, 0.033515963703393936, -0.007553893141448498, 0.020323527976870537, 0.05413408204913139, 0.022043628618121147, -0.01654953323304653, -0.0027049165219068527, -0.016414856538176537, -0.013815677724778652, -0.026395760476589203, 0.04903005436062813, -0.009054649621248245, 0.06279505044221878, 0.028930731117725372, 0.040723852813243866, -0.03007102757692337, -0.013743496499955654, 0.028870413079857826, 0.06392262876033783, -0.04754551500082016, 0.010931038297712803, 0.014751659706234932, 0.02919703908264637, -0.027595344930887222, 0.005195681005716324, 0.03958479315042496, 0.030874520540237427, -0.007597881369292736, -0.008786536753177643, 0.00223443447612226, -0.04115617647767067, -0.05620089918375015, -0.05709465593099594, -0.05740829184651375, -0.04359523206949234, -0.040843673050403595, -0.0138870133087039, 0.019819002598524094, -0.012407753616571426, 0.03825531527400017, -0.02142290771007538, -0.010180161334574223, -0.031030690297484398, -0.029276492074131966, 0.05558732897043228, 0.014443662017583847, 0.04921269789338112, -0.053980328142642975, 0.03856014087796211, 0.01261539850383997, 0.04684952646493912, -0.036376215517520905, 0.008231926709413528, -0.009393340907990932, -0.034113094210624695, 0.038241080939769745, -0.007954069413244724, 0.007499987259507179, 0.013265383429825306, -0.038137003779411316, -0.02520514652132988, -0.024696456268429756, -0.02093327045440674, -0.02809535712003708, -0.03085462376475334, -0.04568355903029442, 0.05103914812207222, 0.022687962278723717, -0.03375079110264778, 0.06173444911837578, 0.041938066482543945, -0.03616960346698761, 0.026540368795394897, 0.008172021247446537, -0.004945516120642424, -0.06178922578692436, 0.03453146666288376, 0.062260717153549194, -0.020597252994775772, 0.018621832132339478, -0.007639333140105009, -0.029405778273940086, 0.02922658808529377, 0.020150834694504738, -0.009797791950404644, -0.02228996530175209, 0.05144727975130081, 0.029955314472317696, -0.06167123094201088, 0.03419511020183563, -0.01586396060883999, -0.018493402749300003, -0.017517469823360443, -0.029787449166178703, 0.020650558173656464, 0.014657287858426571, 0.023387175053358078, -0.012521929107606411, -0.009216261096298695, 0.01334507018327713, 0.02485443651676178, 0.06301810592412949, -0.03235648199915886, 0.013407536782324314, 0.03267832472920418, 0.01810458116233349, 0.011315143667161465, 0.013243262656033039, -0.03400129824876785, -0.006484738551080227, -0.021012036129832268, 0.002669499721378088, -0.003215394215658307, 0.023581692948937416, 0.0063235037960112095, -0.012982982210814953, 0.07064753770828247, -0.0089606624096632, -0.010855436325073242, 0.026361076161265373, 0.024048171937465668, 0.03673212602734566, -0.011147337034344673, 0.019234493374824524, 0.0130277955904603, -0.03413562476634979, -0.0679863765835762, 0.005545827094465494, 0.035239361226558685, 0.026845693588256836, -0.08345993608236313, 0.04491867870092392, -0.02993728592991829, -0.032329391688108444, 0.06479652225971222, -0.04230598360300064, -0.009834541007876396, 0.04988761618733406, -0.014408361166715622, 0.07932509481906891, -0.05892548710107803, 0.025629395619034767, -0.01157629769295454, -0.0014950316399335861, 0.041675981134176254, 0.021249396726489067, 0.013681745156645775, 0.006767716724425554, -0.01713591068983078, -0.022140808403491974, -0.034852903336286545, -0.005320607218891382, -0.014996952377259731, -0.003403486916795373, 0.006501087453216314, -0.04122689366340637, -0.03692543879151344, 0.041221000254154205, 0.034778494387865067, 0.032749373465776443, -0.014498106203973293, 0.039215315133333206, 0.022557834163308144, 0.01603670045733452, 0.03919048607349396, -0.026417581364512444, 0.011190995573997498, -0.027533993124961853, 0.04149683937430382, 0.004379197023808956, -0.014493653550744057, -0.024605652317404747, -0.042459603399038315, -0.03997602313756943, -0.01028656866401434, -0.011521742679178715, -0.016072308644652367, -0.004660214297473431, 0.00714819086715579, -0.022047042846679688, 0.034901466220617294, -0.046791885048151016, -0.030267391353845596, -0.024846937507390976, 0.01985754631459713, 0.04678940400481224, -0.0430685319006443, -0.0013759881258010864, -0.016774438321590424, 0.047871675342321396, 0.04392470046877861, -0.03573363646864891, -0.057542625814676285, -0.03616632521152496, -0.03498900681734085, -0.013379254378378391, 0.023417236283421516, 0.036739666014909744, -0.013544447720050812, 0.0029520089738070965, 0.014509125612676144, 0.01962186209857464, 0.011209012009203434, -0.0180027037858963, -0.015065064653754234, 0.000432953325798735, 0.01579776406288147, 0.0313841886818409, 0.0445355549454689, -0.00830643717199564, -0.023006632924079895, 0.02633119560778141, -0.0578472763299942, 0.028021588921546936, -0.01997465267777443, -0.02227826789021492, -0.0035065654665231705, -0.006738211959600449, 0.015208122320473194, 0.024389924481511116, -0.025890780612826347, -0.013328267261385918, 0.005045393016189337, 0.03127486631274223, -0.05586526542901993, -0.036531537771224976, 0.046170447021722794, 0.03207238391041756, -0.014768058434128761, 0.011491769924759865, 0.021179620176553726, -0.029058268293738365, -0.008294655941426754, 0.00006685927655780688, -0.04126375541090965, 0.03802725300192833, -0.03629186004400253, 0.011588762514293194, 0.0010895334417000413, -0.05867766961455345, -0.006763149984180927, -0.04410077631473541, 0.011961928568780422, 0.028868207708001137, -0.0036500561982393265, -0.021198555827140808, -0.042766571044921875, 0.0010078096529468894, -0.022419916465878487, -0.01730172708630562, 0.0469246432185173, -0.0026387316174805164, -0.00033182487823069096, -0.006419004872441292, 0.017383374273777008, -0.01384697388857603, -0.005012644920498133, -0.011012513190507889, -0.01439747866243124, 0.018475206568837166, 0.004025923553854227, 0.03339328244328499, -0.041457876563072205, -0.036083612591028214, 0.021626397967338562, -0.004038806073367596, -0.028795864433050156, -0.06035345420241356, 0.055311817675828934, -0.041121747344732285, -0.002055804943665862, -0.03084375523030758, 0.0007720428402535617, -0.009994073770940304, 0.007450980134308338, 0.022197896614670753, -0.009547716937959194, 0.009170184843242168, 0.025886833667755127, -0.06582440435886383, 0.042313799262046814, 0.030187509953975677, -0.031534843146800995, -0.025073448196053505, 0.03783397004008293, -0.01386445201933384, 0.05571765825152397, -0.0021212445572018623, -0.006938796024769545, -0.022473083809018135, -0.05386071279644966, 0.022058449685573578, -0.035337843000888824, -0.01417448278516531, -0.041695162653923035, -0.018154533579945564, -0.005965042859315872, 0.03662065789103508, 0.011271276511251926, -0.019305327907204628, -0.02483941987156868, -0.030117500573396683, -0.008942184038460255, -0.029662778601050377, -0.02500397525727749, -0.028236024081707, -0.006840163376182318, -0.014349923469126225, 0.05157732591032982, -0.02023477293550968, 0.024881454184651375, 0.01859229803085327, 0.029049506410956383, 0.006732871290296316, -0.00074206996941939, -0.04881185293197632, -0.06576787680387497, 0.011062565259635448, 0.01313228439539671, -0.005883369594812393, -0.010277635417878628, -0.05120506137609482, 0.07547800242900848, -0.040937390178442, 0.02284294180572033, -0.026482397690415382, -0.022670116275548935, -0.02226782776415348, -0.0016795335104689002, 0.05836851894855499, -0.02086377702653408, 0.0004476287285797298, -0.01385082583874464, 0.05628402531147003, 0.0684824287891388, 0.03176841139793396, -0.052305158227682114, -0.030003303661942482, -0.018150486052036285, -0.057716093957424164, 0.05051713064312935, -0.04697735235095024, -0.03552611917257309, -0.015005337074398994, 0.0035782812628895044, 0.021577466279268265, -0.00498388335108757, 0.020303456112742424, 0.05255793035030365, -0.015448104590177536, 0.003417445346713066, -0.008882977068424225, 0.027641693130135536, 0.030613398179411888, -0.03447597101330757, 0.01747075468301773, -0.02760743908584118, 0.00156382005661726, 0.0041588987223804, -0.026032088324427605, -0.07883833348751068, -0.03400222584605217, -0.03026428632438183, 0.04068845510482788, -0.017048845067620277, 0.03678335249423981, -0.028108039870858192, -0.04785125330090523, -0.03986420854926109, 0.029527846723794937, -0.022387169301509857, -0.0030199065804481506, 0.05358630046248436, 0.013017233461141586, -0.004852304235100746, 0.01196579821407795, -0.012882177717983723, 0.019146423786878586, -0.029357651248574257, 0.0561378076672554, 0.024647178128361702, -0.0721956342458725, 0.03551045432686806, 0.05850740149617195, -0.05209221690893173, -0.04523356631398201, 0.017135130241513252, 0.007730019278824329, -0.016114694997668266, -0.0311589278280735, -0.0027405191212892532, -0.0025636248756200075, 0.01278608851134777, -0.019977349787950516, 0.04250352829694748, -0.010595504194498062, 0.04623929783701897, -0.01385746244341135, 0.03676135838031769, -0.02971929870545864, -0.029948903247714043, 0.044330038130283356, -0.03205682709813118, -0.022096099331974983, -0.037776630371809006, -0.031756602227687836, 0.008818842470645905, 0.004242889117449522, 0.031226323917508125, -0.009379183873534203, -0.0027796775102615356, 0.07028301060199738, -0.028120318427681923, 0.07952580600976944, 0.022265056148171425, -0.014295508153736591, 0.058501310646533966, -0.03279285132884979, -0.06157589331269264, -0.04401755705475807, 0.015506795607507229, 0.00729282945394516, 0.018672635778784752, -0.04574482887983322, 0.018085749819874763, 0.03617590665817261, 0.01727660372853279, 0.0032674316316843033, -0.06833145022392273, -0.04354008287191391, -0.03996829688549042, -0.023822477087378502, -0.03632420301437378, 0.013537275604903698, -0.01605849526822567, 0.021406423300504684, 0.005454100202769041, -0.04602377489209175, -0.007961966097354889, 0.01118547935038805, 0.010621387511491776, -0.010693100281059742, -0.04773101583123207, 0.010300962254405022, 0.0031239972449839115, -0.0629240944981575, -0.03341119363903999, 0.009256315417587757, -0.04661205783486366, 0.002046251203864813, -0.0409545823931694, -0.017410065978765488, 0.013305464759469032, 0.030846714973449707, -0.008516579866409302, 0.02887122519314289, -0.01353297010064125, -0.02523154951632023, -0.008346772752702236, 0.011901206336915493, 0.005793318152427673, 0.04368911311030388, 0.02913742884993553, -0.009841026738286018, 0.043128274381160736, -0.012010731734335423, -0.004419314209371805, -0.012100502848625183, 0.02465992420911789, 0.00986491423100233, -0.006125797983258963, -0.039762068539857864, -0.02352548949420452, -0.00044129492016509175, -0.028587285429239273, 0.027081696316599846, -0.02421177737414837, 0.008751548826694489, 0.009793131612241268, -0.001674553961493075, -0.019748952239751816, 0.04613853991031647, -0.010601014830172062, 0.04034021496772766, 0.013048048131167889, 0.04293753206729889, 0.038879118859767914, -0.0013219623360782862, 0.02732413448393345, 0.021464576944708824, 0.014598611742258072, -0.03263290226459503, 0.005144600290805101, -0.006918247789144516, -0.021176686510443687, 0.05547643452882767, -0.04095914214849472, -0.009368790313601494, -0.03906380385160446, -0.016088901087641716, 0.01740625500679016, 0.019854865968227386, 0.0020588620100170374, 0.002494814805686474, 0.03889288380742073, -0.015610010363161564, -0.0424911230802536, -0.003291055327281356, -0.06913904845714569, -0.047446537762880325, 0.04459455609321594, -0.011783191934227943, -0.011215641163289547, -0.0017956907395273447, -0.04316854476928711, 0.004866334144026041, -0.015233609825372696, -0.009622029028832912, -0.024948865175247192, 0.03471602126955986, 0.011288982816040516, 0.04385144263505936, -0.010903138667345047, 0.0008623279863968492, 0.018055731430649757, 0.053151194006204605, -0.053788211196660995, -0.034654948860406876, -0.02075718529522419, 0.030174927785992622, 0.008113516494631767, -0.022593917325139046, -0.0044143106788396835, 0.014316068030893803, 0.008496197871863842, -0.022353269159793854, 0.004023322369903326, 0.012740216217935085, -0.05495643988251686, 0.05186217650771141, -0.005530491005629301, 0.00636573089286685, -0.0042212591506540775, 0.05047228932380676, -0.005619400646537542, -0.005817154422402382, -0.048173557966947556, 0.02909638173878193, 0.044142063707113266, 0.0013575461925938725, 0.02276887744665146, 0.002430518390610814, 0.055479228496551514, -0.019015146419405937, 0.03676372766494751, -0.013833032920956612, 0.034637778997421265, 0.02945697493851185, 0.060196489095687866, 0.008026016876101494, 0.056185927242040634, 0.04419757425785065, -0.027124177664518356, -0.019693300127983093, 0.023718897253274918, 0.020629646256566048, -0.048710066825151443, -0.004385970067232847, -0.038824211806058884, 0.05141063407063484, -0.0007666213205084205, -0.008885410614311695, -0.007683611940592527, -0.055800944566726685, 0.0009423400042578578, 0.006383704487234354, 0.0009029142674989998, 0.037548184394836426, -0.05322761461138725, 0.010891653597354889, -0.013932108879089355, -0.003491021692752838, 0.019264454022049904, 0.016568483784794807, -0.005733382422477007, -0.017641089856624603, 0.0409492664039135, 0.042770497500896454, -0.017444534227252007, 0.05715916305780411, 0.03353824093937874, -0.015223401598632336, -0.025396691635251045, 0.02061537094414234, -0.007106522098183632, -0.010901732370257378, -0.008781570009887218, -0.010032106190919876, -0.05678439885377884, 0.03006952442228794, -0.032969266176223755, -0.0207873173058033, 0.03497672453522682, -0.049729153513908386, -0.020107170566916466, -0.06665351986885071, 0.04226473346352577, -0.06772232800722122, -0.016919342800974846, 0.02375820279121399, -0.015862509608268738, -0.022809214890003204, 0.04790552705526352, -0.018890362232923508, 0.021620431914925575, 0.04209348186850548, 0.056870222091674805, 0.016813181340694427, 0.05106717720627785, 0.022053934633731842, -0.042844709008932114, -0.0019978268537670374, 0.004478752613067627, -0.03825497254729271, -0.024166131392121315, -0.015292933210730553, -0.03491232544183731, -0.01874140091240406, -0.013424113392829895, -0.015265228226780891, 0.008768695406615734, 0.026189014315605164, 0.0011211404344066978, -0.04520232230424881, 0.008430490270256996, 0.02552352100610733, -0.036533549427986145, 0.024460745975375175, 0.039460182189941406, 0.05699540302157402, 0.019756969064474106, -0.018355075269937515, -0.050257157534360886, -0.026436500251293182, -0.019241081550717354, -0.05289260670542717, 0.024795904755592346, 0.01302114874124527, -0.01398727111518383, -0.024778908118605614, -0.03560885787010193, -0.03638368844985962, -0.017926037311553955, -0.06740919500589371, -0.0598800964653492, 0.02446785196661949, 0.022902214899659157, 0.020257120952010155, -0.003023028140887618, -0.014611613005399704, -0.009146555326879025, 0.030436646193265915, 0.06820979714393616, 0.005952482111752033, 0.05975380539894104, 0.03351467847824097, -0.0018490625079721212, 0.040567681193351746, -0.016335293650627136, 0.03800665959715843, 0.002683532191440463, -0.01606888137757778, -0.002887482987716794, 0.028496718034148216, -0.012827165424823761, -0.05402018874883652, 0.010909237898886204, 0.03126068413257599, -0.0027608724776655436, -0.01863502338528633, -0.051695920526981354, -0.01948900893330574, -0.053269434720277786, -0.0059907687827944756, -0.029543619602918625, 0.03355251997709274, 0.00863042101264, 0.003469499759376049, 0.003194020362570882, -0.04803479462862015, 0.15013109147548676, 0.05584472045302391, 0.03105941042304039, 0.039232950657606125, 0.03383224084973335, 0.024499934166669846, -0.0018031494691967964, -0.03630569577217102, 0.003099929541349411, -0.020691588521003723, 0.028500579297542572, -0.01033600140362978, 0.03849530220031738, 0.02765713818371296, 0.01996339112520218, 0.03759337589144707, -0.026911640539765358, -0.0037428070791065693, 0.02301640808582306, -0.03946802765130997, -0.04300175979733467, 0.012527018785476685, -0.008517875336110592, -0.00422841077670455, 0.01195754949003458, 0.018309233710169792, 0.023143546655774117, -0.022773656994104385, -0.017121247947216034, -0.039494436234235764, 0.029854552820324898, -0.030026482418179512, 0.023860111832618713, 0.007385450415313244, -0.03468801826238632, 0.030817361548542976, 0.012861859053373337, -0.008548273704946041, -0.011738551780581474, 0.026117954403162003, -0.00025177327916026115, 0.0032562545966356993, 0.03473875671625137, -0.012250171042978764, 0.0024328690487891436, 0.013015861622989178, -0.04113691672682762, 0.022281711921095848, 0.02292511612176895, -0.04394535720348358, 0.05251845344901085, -0.038566481322050095, 0.04531189426779747, -0.010146171785891056, -0.03516150265932083, 0.012648297473788261, -0.008524804376065731, -0.0351950041949749, 0.003958210349082947, 0.015744337812066078, 0.032279327511787415, 0.025264957919716835, -0.04737647995352745, -0.004692560527473688, -0.028119349852204323, 0.00042947137262672186, 0.011902445927262306, 0.013774384744465351, 0.007933221757411957, -0.006095902994275093, 0.0011161565780639648, 0.017150433734059334, -0.00435814680531621, -0.030584516003727913, 0.02061629481613636, 0.04259125888347626, -0.009754294529557228, 0.0207869540899992, 0.014845856465399265, -0.0545528419315815, -0.010744395665824413, -0.03504030033946037, -0.003065642202273011, -0.013626920990645885, 0.03835463896393776, 0.05255720764398575, -0.03208769112825394, -0.030619369819760323, -0.035932447761297226, 0.05118481442332268, 0.06564333289861679, 0.022411426529288292, -0.031772010028362274, -0.009107556194067001, -0.005444602575153112 ]
I have always wanted to have a patio with my home, but the one I bought didn't have one. I thought it would be too expensive to do and something I wouldn't be able to do on my own, until I started looking around on http://deckingx.co.uk/. I found several ideas for patio projects there and thought it looked fairly simple to do. I looked at the articles to read about how it was done and what materials were used. I found that it could easily be completed with gravel to level everything out and using deck tiles over that. I thought I could take this project on. I started searching around for deck tiles that were what I wanted. I wanted to make sure it was something I would like and that would last. Deck tiles aren't cheap and I wanted to read the reviews before purchasing just anything, especially since this would be an outdoor patio with nothing to cover it. I found deckingx deck tiles I wanted and the reviews were great on them. The price was decent and I was able to use a coupon to get an additional discount on them. I went ahead and bought the ones I wanted to get so I could have them when I start the project. I haven't gotten around to it yet, but the next weekend it is nice outside, I am going to get started and hopefully be able to finish the project. I don't want to hire anyone to help me, but I may ask a friend of mine if she wants to help me with it. I think it will get done faster with two of us working on it instead of just me doing it on my own.
[ -0.025313111022114754, 0.03164052590727806, -0.024249307811260223, -0.029144100844860077, -0.02997865155339241, -0.010591914877295494, 0.00026247865753248334, 0.051345184445381165, 0.038876164704561234, 0.021067697554826736, 0.05235324800014496, 0.001526854233816266, 0.013647027313709259, -0.03345354646444321, 0.00855143554508686, -0.008384816348552704, -0.04819066822528839, -0.032324522733688354, -0.031382907181978226, 0.01637284830212593, -0.020069098100066185, 0.023393988609313965, -0.06138896197080612, -0.03699474781751633, -0.0016191040631383657, 0.03198458254337311, 0.01737191528081894, -0.024746863171458244, 0.08110598474740982, 0.0729602500796318, -0.0121078472584486, -0.022205429151654243, 0.03863328695297241, -0.03061681054532528, -0.04405305162072182, -0.016143077984452248, 0.013964848592877388, -0.03239918872714043, -0.025841889902949333, -0.04168959707021713, 0.026874883100390434, -0.009948762133717537, 0.026405923068523407, -0.033508822321891785, -0.011114202439785004, -0.0015856556128710508, -0.011819052509963512, -0.046604108065366745, 0.006047480273991823, -0.031901877373456955, 0.027949601411819458, 0.016623906791210175, 0.012701562605798244, -0.013621808029711246, 0.0077292174100875854, 0.007841191254556179, -0.004632543306797743, 0.005867541301995516, -0.03933729603886604, 0.0211903378367424, 0.012912893667817116, -0.009439779445528984, 0.0034084715880453587, -0.07300452142953873, 0.04420888051390648, 0.025552595034241676, -0.017283333465456963, -0.015280385501682758, 0.01724216155707836, -0.022318029776215553, -0.02384292148053646, 0.010487310588359833, -0.002535770880058408, -0.027252154424786568, 0.015484650619328022, 0.01820536144077778, -0.007757606450468302, -0.012587749399244785, -0.034031014889478683, -0.005655721761286259, 0.020187996327877045, 0.06398782134056091, 0.0020069084130227566, 0.008937126956880093, -0.04503583535552025, -0.02987266704440117, 0.001480909064412117, 0.02627892605960369, 0.03299815580248833, -0.001754922908730805, 0.010381711646914482, 0.05675487220287323, 0.036091260612010956, 0.0007314049289561808, 0.041181497275829315, 0.022115832194685936, -0.04442761465907097, 0.06089401990175247, 0.04594743251800537, -0.015025661326944828, 0.05037476494908333, -0.000780135509558022, 0.005630623549222946, 0.04127964749932289, -0.03169330209493637, -0.006101478356868029, 0.0018619407201185822, -0.018770389258861542, -0.001695552607998252, -0.02460555173456669, 0.004791805986315012, -0.00894006434828043, 0.046200722455978394, 0.008587861433625221, -0.019552795216441154, 0.047878164798021317, -0.007144512142986059, 0.04648994654417038, -0.05040915310382843, -0.0020268920343369246, -0.011469150893390179, 0.023014377802610397, 0.009632308036088943, -0.03749517351388931, -0.011511530727148056, -0.06374453008174896, -0.023207513615489006, 0.042182113975286484, -0.03569268062710762, -0.021067634224891663, 0.021266359835863113, -0.05338643118739128, -0.008946302346885204, 0.029085414484143257, 0.0007635928341187537, -0.009714119136333466, -0.0021446815226227045, 0.061292555183172226, 0.000014121555068413727, -0.07874896377325058, 0.048364706337451935, 0.01715189591050148, 0.01999500021338463, 0.07381929457187653, 0.017764702439308167, 0.03178510442376137, 0.02447890117764473, -0.017607413232326508, -0.05159901827573776, 0.019152449443936348, -0.018326610326766968, 0.018174126744270325, 0.018398262560367584, 0.020242473110556602, 0.018511055037379265, 0.016992254182696342, 0.009675412438809872, 0.023180363699793816, 0.039755042642354965, 0.027849949896335602, -0.01567091979086399, 0.036810725927352905, 0.00315008033066988, 0.02863023802638054, -0.008479375392198563, -0.003765729023143649, -0.038271114230155945, -0.004181768279522657, -0.005107551347464323, -0.035673413425683975, 0.020959412679076195, -0.016139082610607147, -0.014155475422739983, 0.00437499862164259, 0.03674342483282089, 0.03680140897631645, 0.052807245403528214, 0.024426499381661415, 0.051948558539152145, 0.0471617691218853, -0.03539140149950981, -0.02233101800084114, 0.008055096492171288, 0.10876927524805069, 0.009326974861323833, -0.015458779409527779, 0.00256953202188015, -0.026074731722474098, -0.010212152265012264, -0.03896978124976158, 0.0021391483023762703, 0.016554828733205795, -0.02343026176095009, 0.028109027072787285, 0.022242257371544838, -0.0018223400693386793, -0.019785048440098763, -0.010117496363818645, -0.016392888501286507, -0.06427756696939468, -0.045304398983716965, 0.03258417174220085, -0.02616138570010662, 0.018758408725261688, 0.02898351475596428, -0.04568033292889595, -0.005967365112155676, 0.03958319127559662, -0.05569060891866684, -0.00007421189366141334, 0.049208879470825195, 0.04480680823326111, -0.03313565254211426, -0.034426894038915634, 0.02104874886572361, -0.009786557406187057, -0.027480794116854668, 0.02212533727288246, -0.021351106464862823, -0.012344550341367722, -0.0038283111061900854, 0.011532092466950417, 0.03009295091032982, 0.03441310301423073, -0.009832849726080894, 0.02306683547794819, 0.0031642743851989508, 0.05284253507852554, -0.0059097278863191605, -0.006085542030632496, -0.03450855240225792, 0.04244014248251915, 0.027445415034890175, 0.06802774965763092, 0.0708131194114685, 0.050410814583301544, 0.036476705223321915, 0.05392633378505707, -0.026774602010846138, 0.016558410599827766, 0.006924234796315432, 0.020275212824344635, 0.018242252990603447, 0.008190415799617767, 0.004466681275516748, 0.03833211213350296, -0.008387629874050617, 0.0057929279282689095, 0.01580052077770233, -0.0025525307282805443, -0.01807207241654396, 0.02694949507713318, 0.015225598588585854, 0.016195978969335556, -0.01810813881456852, 0.0006470290245488286, 0.04672237113118172, 0.06823728233575821, -0.025358133018016815, -0.003354983404278755, 0.0016351348021999002, 0.030781742185354233, -0.027812331914901733, -0.0019498845795169473, 0.04887305572628975, 0.03480391949415207, 0.0047753602266311646, 0.006072964984923601, -0.03352860361337662, -0.020009413361549377, -0.04720650985836983, -0.06283817440271378, -0.058144461363554, -0.031508393585681915, -0.04558377340435982, 0.01710226573050022, 0.023388242349028587, -0.028878793120384216, 0.022260021418333054, -0.030894670635461807, -0.010766436345875263, -0.044144708663225174, -0.02364160493016243, 0.03146088868379593, 0.01659812591969967, 0.021920792758464813, 0.010071431286633015, 0.03596024587750435, 0.010067630559206009, 0.017791995778679848, -0.03486155346035957, -0.015562654472887516, 0.013294259086251259, 0.006462478544563055, 0.02027822472155094, -0.01603071391582489, 0.0035699321888387203, -0.01465105451643467, -0.03296315297484398, -0.04513305053114891, -0.03444609045982361, 0.004725863225758076, 0.007288748864084482, 0.025100531056523323, -0.03178071230649948, 0.024394333362579346, 0.04049050062894821, -0.02645510621368885, 0.02587703801691532, 0.05355265364050865, -0.01910724863409996, 0.04373934864997864, 0.024767976254224777, 0.01654701679944992, -0.05854320153594017, 0.03772026672959328, 0.03275129199028015, 0.010164650157094002, 0.0011170711368322372, -0.020352795720100403, -0.02111756056547165, -0.014974093995988369, 0.02082553505897522, -0.0026116077788174152, -0.03209817036986351, 0.0318031944334507, 0.01060798391699791, -0.06910377740859985, -0.0005869013257324696, -0.023585449904203415, -0.035662125796079636, -0.03693757206201553, -0.05935584381222725, 0.03607259318232536, 0.018965091556310654, 0.036228254437446594, 0.02082463726401329, -0.024116775020956993, -0.0056109377183020115, 0.0008998107514344156, 0.03286641836166382, -0.0423801988363266, 0.023406684398651123, 0.05881793797016144, -0.009770217351615429, 0.026275962591171265, -0.021593773737549782, -0.03273458033800125, -0.02662273868918419, 0.0047661010175943375, -0.0052201212383806705, 0.03528865799307823, 0.01008695363998413, 0.006238337140530348, 0.023007653653621674, 0.060727134346961975, -0.05296346917748451, -0.006331767421215773, 0.0046195401810109615, 0.008380284532904625, 0.030242497101426125, 0.01590941846370697, 0.029808318242430687, -0.034714214503765106, -0.0147548271343112, -0.0563652478158474, 0.04511861503124237, 0.008243494667112827, 0.042831581085920334, -0.04090183600783348, 0.06066305935382843, 0.0035951435565948486, -0.039545848965644836, 0.0340125635266304, -0.034890156239271164, -0.0399947389960289, 0.039655398577451706, -0.03304658830165863, 0.026731977239251137, -0.035833243280649185, 0.020456776022911072, -0.016360031440854073, 0.022321810945868492, 0.03939318656921387, -0.017125815153121948, 0.04478239640593529, -0.03292100876569748, -0.04589138552546501, -0.017230356112122536, -0.011397182010114193, -0.0069994842633605, -0.02376623824238777, 0.056210070848464966, -0.012892019934952259, -0.04539789259433746, -0.046936921775341034, 0.02481166645884514, 0.04303786903619766, 0.03705473989248276, -0.011390040628612041, 0.025788066908717155, 0.022592032328248024, -0.02300979010760784, 0.025976501405239105, -0.02928864397108555, 0.006766111124306917, -0.037886179983615875, 0.022657360881567, 0.027447432279586792, -0.03643306344747543, -0.0366847962141037, -0.018170354887843132, -0.028992122039198875, 0.029583098366856575, -0.011826335452497005, 0.003422472858801484, -0.03143463656306267, 0.042561791837215424, -0.014307189732789993, 0.028242776170372963, -0.0525498166680336, -0.05074061080813408, -0.033876679837703705, 0.05117983743548393, 0.03652072325348854, -0.04328177496790886, 0.01176534779369831, -0.04453260079026222, 0.046143900603055954, 0.019117319956421852, 0.004445910919457674, -0.06646325439214706, 0.0034671274479478598, -0.03696992248296738, -0.01782996580004692, 0.013895269483327866, 0.055601757019758224, -0.015440523624420166, -0.02181207947432995, -0.04427747428417206, 0.0025498708710074425, 0.01544491108506918, 0.0012707301648333669, -0.016695929691195488, 0.0012916263658553362, 0.012942436151206493, 0.02644922211766243, 0.03251378983259201, 0.03666010871529579, -0.04128532111644745, 0.017902815714478493, -0.051375482231378555, 0.018963046371936798, 0.002034331439062953, 0.01214066706597805, -0.003414600156247616, 0.01427468191832304, -0.01630217581987381, 0.023561134934425354, -0.05298992991447449, 0.03751280903816223, 0.016299501061439514, 0.02376285381615162, -0.01597410812973976, -0.01853770948946476, 0.031234530732035637, -0.027333632111549377, -0.02243085391819477, 0.01129127200692892, 0.06432071328163147, -0.021147027611732483, -0.004790079314261675, 0.03695250302553177, -0.05829615518450737, 0.027700550854206085, -0.04793470352888107, 0.04402491822838783, -0.025281395763158798, -0.03897435590624809, 0.02064610831439495, -0.03804020956158638, 0.022930245846509933, 0.018106061965227127, 0.0021685962565243244, -0.046092595905065536, -0.060390226542949677, 0.0015530057717114687, 0.0016907780664041638, -0.03751373291015625, 0.00945456512272358, 0.014679498039186, -0.023601308465003967, -0.002180280862376094, -0.04381208494305611, 0.02035278081893921, 0.01405502948909998, -0.025538990274071693, 0.0005867326981388032, 0.02170036919414997, 0.019335489720106125, 0.015773680061101913, 0.015344229526817799, -0.01809382438659668, -0.019093500450253487, -0.01194080151617527, -0.030463213101029396, -0.06271307170391083, 0.008845407515764236, -0.012134477496147156, -0.006607788614928722, -0.022777333855628967, 0.0057868571020662785, -0.02424546331167221, 0.004135450813919306, 0.03258218988776207, 0.01782783307135105, 0.0263526551425457, -0.00734355952590704, -0.05969402939081192, 0.05076225847005844, 0.014007908292114735, -0.048479631543159485, -0.07591751962900162, 0.023121284320950508, 0.02001320756971836, 0.05076644569635391, 0.0035678716376423836, -0.014108757488429546, -0.06745701283216476, -0.04259851202368736, -0.01400451734662056, -0.050763797014951706, -0.016898278146982193, -0.03502705320715904, -0.054000165313482285, -0.01739899441599846, 0.02104334719479084, 0.020336991176009178, -0.011117915622889996, -0.00841598305851221, -0.0400635302066803, -0.005193387158215046, -0.014971735887229443, -0.006319805514067411, -0.03526381775736809, 0.014847220852971077, -0.013902992010116577, 0.025665273889899254, 0.021760907024145126, 0.03647954761981964, -0.017091521993279457, 0.01920316182076931, 0.040779128670692444, 0.012507774867117405, -0.02488434873521328, -0.04804384335875511, -0.007539605721831322, -0.019108468666672707, 0.0020142439752817154, 0.010778982192277908, -0.04131873697042465, 0.06296359747648239, -0.04627276211977005, 0.001152234268374741, -0.02328338474035263, 0.0032131653279066086, -0.026223473250865936, 0.0022886027581989765, 0.03608901426196098, -0.005392858758568764, -0.0028901523910462856, -0.009783362969756126, 0.028786322101950645, 0.029699940234422684, -0.02577138878405094, -0.03804221376776695, -0.06179654598236084, -0.04810898005962372, -0.04350537061691284, 0.025384390726685524, -0.053395286202430725, -0.024432236328721046, -0.07797086983919144, -0.011529003269970417, 0.03526283800601959, 0.001858049537986517, 0.041242074221372604, 0.0807284340262413, -0.018070675432682037, -0.004043911583721638, -0.055517569184303284, -0.004958529025316238, 0.051951054483652115, -0.03780128061771393, -0.006491132080554962, -0.015784889459609985, -0.04404291883111, -0.01261177659034729, -0.04198703542351723, -0.05254180729389191, -0.05825396999716759, -0.010044846683740616, 0.061248306185007095, -0.040218956768512726, 0.0519188791513443, -0.01093466579914093, -0.020366540178656578, -0.09967121481895447, 0.04913480207324028, 0.021527476608753204, 0.021877238526940346, 0.020188158378005028, -0.015108102932572365, -0.0033172708936035633, 0.0031048280652612448, -0.012010613456368446, 0.010761725716292858, -0.059486452490091324, 0.05977441370487213, 0.00013710794155485928, -0.01568889617919922, 0.018227197229862213, 0.04939587414264679, -0.05587184801697731, -0.048606280237436295, -0.016276001930236816, 0.003032232169061899, -0.014854264445602894, -0.03964227810502052, 0.004575298633426428, -0.014977323822677135, 0.02977365255355835, 0.048669956624507904, 0.04772694781422615, -0.021011877804994583, 0.007981609553098679, 0.01999278925359249, 0.03270949795842171, -0.037327248603105545, 0.01967785879969597, 0.026970721781253815, -0.007641843520104885, -0.06435206532478333, -0.011661470867693424, 0.0033840625546872616, 0.025903798639774323, 0.009129209443926811, 0.02732643485069275, -0.029044881463050842, 0.02926151640713215, 0.010340593755245209, 0.005910583306103945, 0.0508570671081543, -0.014423553831875324, -0.03351021558046341, 0.022665852680802345, -0.04464235529303551, -0.045928530395030975, -0.04568285122513771, 0.02248965948820114, 0.010864697396755219, 0.015615264885127544, -0.05369294434785843, 0.037098295986652374, 0.014807235449552536, 0.021952832117676735, -0.019339226186275482, -0.020514782518148422, -0.024178579449653625, -0.029504938051104546, -0.034285254776477814, -0.019706083461642265, -0.02661868743598461, -0.024892620742321014, -0.013520578853785992, 0.001389222452417016, -0.023651733994483948, 0.02245221845805645, 0.009280840866267681, -0.0031835928093641996, 0.04227456822991371, -0.036102473735809326, 0.07021836191415787, -0.06212728098034859, -0.05495612323284149, -0.023106470704078674, 0.022880975157022476, 0.005515239201486111, -0.0037835862021893263, -0.02207738533616066, 0.020191319286823273, -0.011933533474802971, 0.037656087428331375, 0.015280414372682571, 0.02902127616107464, -0.002393448492512107, -0.051036734133958817, -0.019892815500497818, 0.023717671632766724, -0.02971033938229084, 0.029751427471637726, 0.006808467675000429, -0.02684362232685089, 0.04555226117372513, 0.0019773144740611315, -0.021142499521374702, -0.027039894834160805, -0.027761051431298256, 0.026813512668013573, 0.01054302230477333, -0.033889029175043106, -0.014094937592744827, -0.014191593043506145, -0.035925254225730896, 0.008203300647437572, 0.022732051089406013, -0.008491233922541142, -0.009296043775975704, -0.003849273081868887, -0.010992295108735561, 0.0623018704354763, -0.0042710197158157825, 0.02986358292400837, 0.008167318999767303, 0.025834694504737854, 0.012192185036838055, 0.01130254752933979, 0.0033727705013006926, 0.003595608053728938, 0.004254037979990244, -0.0035756719298660755, 0.032359153032302856, 0.01445524301379919, -0.022612225264310837, 0.028270119801163673, -0.018491016700863838, -0.010832613334059715, -0.03958582878112793, 0.024122096598148346, -0.014360439032316208, 0.035117946565151215, 0.004976561758667231, -0.0076385787688195705, 0.01836993359029293, -0.04864850267767906, -0.03804575651884079, 0.01969989761710167, -0.07001722604036331, -0.035066332668066025, 0.03889275714755058, 0.01759055070579052, -0.022667264565825462, 0.012328999117016792, -0.03695446997880936, 0.010036644525825977, -0.007952959276735783, -0.009349515661597252, -0.017198627814650536, 0.02407853491604328, -0.011371728964149952, 0.048469167202711105, -0.0045705875381827354, 0.008445142768323421, 0.02255341038107872, 0.02276574820280075, -0.04238501563668251, -0.0435282438993454, 0.015722231939435005, 0.021684663370251656, -0.0019089189590886235, -0.015707915648818016, 0.015767697244882584, 0.012277821078896523, 0.037521686404943466, -0.0018441188149154186, 0.0231345035135746, 0.02170068398118019, -0.019582124426960945, 0.06331395357847214, -0.0063238367438316345, -0.019752448424696922, -0.0259295292198658, 0.014163723215460777, 0.008637424558401108, -0.011877965182065964, -0.042997393757104874, 0.05088186636567116, 0.038624685257673264, -0.005140807945281267, 0.03681633993983269, 0.00972229614853859, 0.05866048485040665, -0.01903577707707882, 0.02334926649928093, -0.018221359699964523, 0.026749197393655777, 0.048078857362270355, 0.043731752783060074, 0.016080372035503387, 0.034488145262002945, 0.03461609408259392, 0.016909869387745857, 0.017232835292816162, 0.02805422618985176, 0.019829487428069115, -0.004462623968720436, -0.007296986877918243, -0.01992116868495941, 0.02614147588610649, -0.010811078362166882, 0.023112162947654724, -0.02221888303756714, -0.04024714604020119, -0.028721820563077927, -0.007531388197094202, -0.006796207278966904, 0.046944744884967804, -0.004969864152371883, 0.028303388506174088, 0.0016174550401046872, -0.019891364499926567, -0.002495719585567713, 0.0315430648624897, -0.03462102264165878, 0.0002277344319736585, 0.012038486078381538, 0.02790730819106102, -0.006643205881118774, 0.03516489267349243, 0.018386103212833405, 0.014667510986328125, -0.04765389859676361, 0.015709394589066505, 0.025175955146551132, 0.008098922669887543, -0.03041907399892807, 0.0035182295832782984, -0.05227060243487358, 0.03758829087018967, -0.02767929434776306, -0.043775346130132675, 0.02675287239253521, -0.05465821921825409, -0.0315476730465889, -0.033276911824941635, 0.024240385740995407, -0.03329898789525032, -0.004990850575268269, 0.03352329134941101, 0.01318360771983862, -0.016161281615495682, 0.031793080270290375, 0.020825721323490143, 0.04306238144636154, 0.03012659214437008, 0.07246869057416916, -0.01531703770160675, 0.07023874670267105, 0.06824345886707306, -0.025380587205290794, 0.012894961051642895, 0.047014329582452774, -0.0039086719043552876, -0.032072149217128754, 0.007665244396775961, -0.046206746250391006, -0.01815473474562168, -0.01269247755408287, -0.003373142797499895, -0.008841720409691334, 0.0408211350440979, 0.0006865356117486954, -0.016427472233772278, -0.03203519433736801, 0.023713555186986923, -0.025036945939064026, 0.018088391050696373, -0.021539045497775078, 0.027571141719818115, -0.005285776220262051, -0.024158930405974388, -0.015793463215231895, -0.0240595992654562, 0.011863046325743198, -0.05524296313524246, 0.03356918320059776, -0.009253750555217266, -0.02358538657426834, -0.0043035042472183704, 0.0017339007463306189, -0.0171726793050766, -0.01654856652021408, -0.02968093752861023, -0.022568538784980774, 0.026259709149599075, 0.009113595820963383, 0.018769415095448494, 0.021386882290244102, -0.018245451152324677, -0.008653595112264156, 0.051637232303619385, 0.04641547054052353, -0.02880292758345604, 0.049545127898454666, 0.049521468579769135, 0.006409991066902876, 0.029431533068418503, -0.008807684294879436, 0.030326496809720993, -0.011263908818364143, -0.020229710265994072, -0.019119810312986374, 0.018205244094133377, -0.016755670309066772, -0.056153297424316406, 0.015112994238734245, 0.037727709859609604, 0.030824758112430573, -0.031596604734659195, -0.04082133620977402, 0.003505678614601493, -0.03879058361053467, -0.04728131368756294, -0.052653104066848755, -0.011298895813524723, 0.027351824566721916, -0.012404857203364372, -0.009492653422057629, -0.07018303126096725, 0.14011728763580322, 0.029593873769044876, 0.013580177910625935, 0.016773132607340813, 0.00936811976134777, 0.018363939598202705, 0.01650712639093399, -0.01910334639251232, -0.009974302724003792, -0.03278558328747749, 0.011739669367671013, -0.014809462241828442, 0.0005937597015872598, 0.019442152231931686, 0.03430783003568649, 0.04283645749092102, -0.04269677773118019, 0.031576674431562424, 0.032070890069007874, -0.03645413741469383, -0.024887971580028534, 0.035238541662693024, 0.015427671372890472, 0.0384356789290905, -0.017284709960222244, 0.0037439391016960144, -0.000435404188465327, -0.06228552386164665, -0.008384008891880512, -0.0024398835375905037, 0.036668941378593445, -0.04979442432522774, 0.0358043871819973, -0.018607817590236664, -0.03843875974416733, 0.047523558139801025, -0.007505915127694607, -0.01756150834262371, 0.005050604231655598, 0.017980923876166344, -0.010730385780334473, 0.02007756382226944, 0.03239082545042038, -0.02510382980108261, 0.0169916283339262, 0.0362718366086483, -0.05850068852305412, 0.01275523193180561, 0.0001594110217411071, -0.04393544793128967, 0.03461286425590515, -0.02841094881296158, 0.05783460661768913, -0.01435013860464096, -0.04546504467725754, -0.008451759815216064, 0.013262390159070492, -0.038522928953170776, 0.0016607614234089851, 0.025204891338944435, 0.0009866388281807303, 0.010643074288964272, -0.053258322179317474, 0.03788106516003609, -0.049759719520807266, -0.022971339523792267, 0.0012340060202404857, -0.015192270278930664, 0.026702186092734337, -0.01592027023434639, 0.006152432411909103, 0.011423858813941479, 0.01394013874232769, -0.028454184532165527, 0.037919893860816956, 0.04816523939371109, -0.015266954898834229, 0.036561623215675354, 0.052780017256736755, -0.018014803528785706, -0.03656621277332306, -0.07817897200584412, -0.02052329294383526, 0.02291540987789631, 0.021173924207687378, 0.023287031799554825, -0.06297022849321365, -0.027064047753810883, -0.024278439581394196, 0.062031932175159454, 0.03730879724025726, 0.027073223143815994, -0.0004072547017131001, -0.01611223630607128, -0.018193360418081284 ]
Q: Android Swipe Tabs without Action Bar By Using Vertical Layout On Screen Here is my code in onCreate() function; this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT); getSupportActionBar().setDisplayShowHomeEnabled(false); getSupportActionBar().setDisplayShowTitleEnabled(false); The problem is that, When I write and compiler this code, I cannot get the result which I wanna see on the screen. I just want to see the swipe tabs without action bar. Here is the result by image; enter image description here A: Remove your ActionBar and use TabLayout. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:padding="4dip" android:gravity="center_horizontal" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.TabLayout android:id="@+id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" app:tabMode="fixed" app:tabGravity="fill" /> <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="net.voidynullness.android.tabitytabs.TabLayoutActivity"> </android.support.v4.view.ViewPager> A: Edit your styles.xml under res - > values - > styles.xml and set parent to parent="Theme.AppCompat.Light.NoActionBar" <resources xmlns:tools="http://schemas.android.com/tools"> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> </style> </resources> and remove getSupportActionBar().setDisplayShowHomeEnabled(false); getSupportActionBar().setDisplayShowTitleEnabled(false); from onCreate() of Activity
[ -0.004912803415209055, 0.007766215596348047, -0.019518671557307243, 0.008065512403845787, -0.028184380382299423, -0.0076748947612941265, 0.005710042081773281, 0.02218610607087612, 0.03765903785824776, 0.05121424421668053, -0.0018268125131726265, 0.031776588410139084, 0.005282222758978605, -0.01837468147277832, -0.013931549154222012, 0.013629944995045662, -0.022612614557147026, -0.02822732925415039, -0.015334595926105976, 0.029615109786391258, -0.005893300753086805, 0.029316900297999382, -0.06874926388263702, -0.04650261253118515, -0.021030526608228683, 0.017053566873073578, 0.046661991626024246, -0.00033269726554863155, 0.03439430892467499, 0.09237638115882874, 0.0010302203008905053, -0.025881389155983925, 0.04023164138197899, -0.005968428682535887, -0.027835436165332794, -0.018410488963127136, 0.023163428530097008, -0.037712372839450836, 0.011363977566361427, -0.03219040483236313, 0.040608037263154984, -0.031113456934690475, 0.050405219197273254, -0.04456077143549919, -0.051217854022979736, 0.003647211706265807, -0.00774722034111619, -0.03839368000626564, -0.0008956564124673605, -0.04617887735366821, -0.0036071338690817356, 0.0016396682476624846, -0.01243731752038002, 0.01205018162727356, -0.023029617965221405, -0.012231361120939255, 0.01945602335035801, -0.018827546387910843, -0.029148897156119347, 0.05779961496591568, -0.0032025398686528206, -0.00028083889628760517, 0.01197608932852745, -0.05619338899850845, 0.0112551124766469, 0.005110894329845905, -0.011574345640838146, -0.0067365579307079315, 0.04270704835653305, -0.016756875440478325, -0.034357886761426926, 0.016541145741939545, -0.01494530774652958, -0.039859574288129807, -0.022310789674520493, 0.009790442883968353, -0.005853266920894384, 0.015755383297801018, 0.030192971229553223, 0.047975681722164154, 0.015170546248555183, 0.06925366073846817, 0.0017494987696409225, 0.035770904272794724, -0.06722468882799149, -0.02821553684771061, -0.002807319164276123, -0.010235367342829704, 0.004140014760196209, 0.0046799760311841965, 0.004970131907612085, 0.0758158266544342, 0.009636144153773785, -0.02360932156443596, 0.0315418504178524, 0.053119007498025894, -0.03803310543298721, 0.060175634920597076, 0.04029862582683563, -0.006127723027020693, 0.0649186223745346, 0.013636622577905655, -0.005707497708499432, 0.03177092596888542, -0.03247594088315964, -0.013214873149991035, 0.019000472500920296, -0.0183201152831316, 0.01813657209277153, -0.05875803530216217, -0.022733256220817566, 0.008548151701688766, 0.03269420191645622, -0.00031787523766979575, 0.0021867668256163597, 0.031158646568655968, -0.014654580503702164, 0.028678370639681816, -0.04142315313220024, 0.012911595404148102, -0.013500340282917023, -0.006178239360451698, 0.029292283579707146, -0.0005816849879920483, -0.010330568067729473, 0.006809256970882416, -0.022364763543009758, 0.056598227471113205, -0.032289985567331314, -0.013186756521463394, -0.012402460910379887, -0.014915483072400093, -0.0015676278853788972, 0.0224640853703022, -0.04800787568092346, -0.009612737223505974, -0.025681084021925926, 0.022329147905111313, 0.017977938055992126, -0.05160919204354286, 0.027204113081097603, -0.02869509905576706, 0.017272409051656723, 0.09015215188264847, 0.03046271950006485, 0.022981541231274605, 0.02023562602698803, 0.002503705443814397, -0.027028320357203484, -0.009176596999168396, -0.010975074954330921, 0.03953515738248825, 0.0069101364351809025, 0.04205187410116196, -0.005379990208894014, -0.011955399066209793, 0.006810440216213465, 0.012543863616883755, 0.02734236977994442, 0.016700714826583862, 0.0021766056306660175, -0.0024309742730110884, -0.0402928926050663, 0.0475645549595356, 0.027965964749455452, 0.08902940899133682, -0.07365421950817108, -0.033793605864048004, 0.025130778551101685, -0.025432830676436424, -0.0001392085978295654, 0.011118978261947632, -0.026643667370080948, 0.009608415886759758, 0.014994801953434944, 0.06639055162668228, 0.044873833656311035, -0.017378173768520355, 0.02841724082827568, 0.06124091520905495, -0.018863806501030922, -0.007136395201086998, -0.01094148587435484, 0.062295228242874146, 0.0207058172672987, -0.0004093388270121068, 0.02106010727584362, -0.00013897208555135876, -0.016969554126262665, -0.027985746040940285, 0.010440929792821407, 0.01759972982108593, -0.024667315185070038, 0.006614654324948788, -0.002126640873029828, -0.0038045323453843594, -0.03340215981006622, -0.014767160639166832, -0.005938390735536814, -0.06007453426718712, -0.03773823752999306, 0.038265127688646317, -0.02420482225716114, -0.007594989612698555, 0.014253420755267143, -0.024285893887281418, 0.010327205061912537, 0.07919477671384811, -0.055524785071611404, 0.005328081082552671, 0.016331806778907776, 0.011405269615352154, -0.050959184765815735, -0.01286295335739851, 0.019009729847311974, -0.02810887061059475, -0.02941521257162094, 0.0005507883615791798, -0.013151616789400578, 0.004297421779483557, -0.008872573263943195, 0.012757978402078152, 0.038397789001464844, 0.0281401127576828, -0.017163651064038277, 0.029903482645750046, 0.047078341245651245, 0.0361749641597271, -0.036999739706516266, 0.011927152052521706, -0.004836892243474722, 0.03438042849302292, 0.004157843068242073, 0.0490037202835083, 0.037554752081632614, 0.034702472388744354, -0.023500749841332436, -0.007730100303888321, -0.0001164061322924681, 0.01993858627974987, 0.007169786840677261, 0.04092296212911606, 0.02860860899090767, 0.021714044734835625, -0.005384807009249926, 0.03603046387434006, -0.009420924820005894, 0.004432096146047115, -0.0470474474132061, -0.007584914565086365, -0.008997106924653053, 0.03051106072962284, 0.016769615933299065, 0.02479558065533638, -0.0035341253969818354, 0.011393467895686626, 0.04092216491699219, 0.04866817966103554, -0.0122095737606287, -0.012099622748792171, 0.0174108874052763, 0.026439594104886055, -0.027256077155470848, -0.0035811616107821465, 0.01633422076702118, 0.015535269863903522, -0.004225077573210001, 0.0005810849252156913, -0.024403216317296028, -0.06936196982860565, -0.05312463268637657, -0.067337267100811, -0.06276799738407135, -0.0006122624618001282, -0.06610570102930069, -0.01795601099729538, 0.053794849663972855, -0.05236005783081055, 0.05841994285583496, -0.005433013197034597, 0.012337281368672848, -0.03611307591199875, 0.0007190479664131999, 0.05426434427499771, 0.00993233360350132, 0.05803178250789642, -0.006291350349783897, 0.04917730763554573, 0.013051088899374008, 0.029832523316144943, -0.052212588489055634, -0.029191389679908752, 0.012818509712815285, 0.0019057797035202384, 0.019427640363574028, -0.02882886677980423, -0.005117598921060562, 0.011164440773427486, -0.021279115229845047, -0.07996117323637009, -0.019079232588410378, 0.006465692538768053, -0.04156259447336197, 0.02077018842101097, -0.047683581709861755, 0.05601678788661957, 0.028442369773983955, -0.03927409276366234, 0.043530404567718506, 0.028959067538380623, -0.03699374571442604, 0.03781583532691002, 0.014095681719481945, -0.014024149626493454, -0.034109100699424744, 0.032558172941207886, 0.00739630963653326, -0.004348610527813435, -0.04267892241477966, -0.005052903201431036, -0.028318829834461212, -0.005359816364943981, 0.013680098578333855, -0.01674245484173298, -0.009096644818782806, 0.01705559715628624, -0.012127887457609177, -0.047696731984615326, 0.023621713742613792, -0.028289997950196266, 0.009258398786187172, -0.055386342108249664, -0.05920834094285965, 0.03895755857229233, 0.02248278260231018, 0.03640785068273544, 0.03677766025066376, -0.002710152417421341, 0.04254409670829773, -0.013711594045162201, 0.04556773602962494, -0.016558336094021797, 0.014169251546263695, 0.04481424391269684, 0.009804842062294483, -0.015109719708561897, 0.026088448241353035, -0.027608809992671013, 0.006950983311980963, 0.018107401207089424, -0.03452112525701523, 0.01308454480022192, 0.016040891408920288, 0.013232875615358353, 0.0425838865339756, 0.07617457956075668, -0.059077050536870956, -0.02588898129761219, -0.0057753282599151134, -0.010106900706887245, 0.015028094872832298, 0.015023197047412395, 0.006522465497255325, -0.02800031192600727, -0.02851059101521969, -0.051689814776182175, 0.019974151626229286, 0.05450958013534546, 0.060817185789346695, -0.034350719302892685, 0.054262515157461166, 0.008410749956965446, -0.025472359731793404, 0.04353773966431618, -0.059151798486709595, 0.018760696053504944, 0.061090003699064255, -0.008314980193972588, 0.04564863070845604, -0.03551286831498146, -0.011422480456531048, -0.0146660590544343, 0.0060844942927360535, 0.049255698919296265, 0.005146679002791643, 0.024203766137361526, -0.00893470924347639, 0.0023135060910135508, -0.009770670905709267, 0.002819531597197056, -0.031809575855731964, -0.011169147677719593, 0.012499972246587276, -0.02654680795967579, -0.039337098598480225, -0.03726564347743988, 0.027784084901213646, 0.0462007001042366, 0.0645747259259224, 0.01640625111758709, 0.02436698041856289, -0.004816669970750809, 0.02250082977116108, 0.031168978661298752, -0.06902015209197998, 0.004896241240203381, -0.020123887807130814, 0.011516078375279903, -0.01234835758805275, -0.038373589515686035, -0.02963968552649021, -0.04101617634296417, -0.038047000765800476, 0.04051382467150688, 0.026143105700612068, 0.0156268198043108, -0.04323730245232582, 0.0034346850588917732, -0.005396309308707714, 0.03447837010025978, -0.025532735511660576, -0.025871584191918373, -0.0342535637319088, 0.026443000882864, 0.03828282654285431, -0.04566872864961624, -0.022652318701148033, -0.040905263274908066, 0.029958540573716164, 0.04474814236164093, -0.00975167565047741, -0.06795591861009598, -0.03153200447559357, -0.04126286134123802, -0.03787867724895477, 0.030997181311249733, 0.047771796584129333, -0.0025153106544166803, 0.022225137799978256, -0.04270876199007034, 0.026135321706533432, 0.041239939630031586, -0.03388054296374321, 0.00885038636624813, 0.005863506812602282, 0.03671545535326004, 0.000552492740098387, 0.01855454035103321, -0.03575148060917854, 0.010397898964583874, 0.038352303206920624, -0.03946991637349129, 0.0001973066246137023, 0.009006691165268421, -0.005737952888011932, -0.030222181230783463, 0.007647666614502668, 0.00034593790769577026, 0.027937907725572586, -0.026323756203055382, 0.008408036082983017, -0.021214023232460022, -0.011523939669132233, -0.024024445563554764, -0.028769925236701965, 0.06426146626472473, -0.03290106728672981, -0.0015076333656907082, -0.0013020719634369016, 0.0408959686756134, -0.02345097064971924, 0.028963603079319, 0.015533856116235256, -0.027428248897194862, 0.013632970862090588, -0.026136737316846848, 0.042018648236989975, -0.01532213669270277, -0.028314979746937752, 0.012204534374177456, -0.024898530915379524, 0.05064726993441582, 0.025339137762784958, -0.03308436647057533, -0.024513423442840576, -0.059532105922698975, -0.0412120558321476, -0.014337358996272087, -0.025857899338006973, 0.024163609370589256, -0.004526795819401741, -0.02689589187502861, 0.029970629140734673, -0.009537406265735626, 0.02617001347243786, -0.05185356363654137, -0.021000230684876442, -0.003755573881790042, -0.004558631218969822, -0.003833644324913621, 0.02409566566348076, 0.008433077484369278, -0.07004844397306442, 0.013611767441034317, 0.013972725719213486, -0.014834575355052948, -0.057281430810689926, 0.017560778185725212, 0.0020010846201330423, -0.02356664091348648, -0.02870071306824684, 0.05280115082859993, -0.0434952974319458, 0.014576906338334084, 0.04555641859769821, 0.000365899148164317, 0.025782227516174316, -0.0036080407444387674, -0.04680996388196945, 0.04831311106681824, 0.024625811725854874, -0.031994372606277466, -0.0356222465634346, 0.014518814161419868, -0.007514519151300192, 0.005968805868178606, 0.010830610059201717, -0.006239577196538448, -0.055534105747938156, -0.010826618410646915, -0.004877154715359211, -0.0214431993663311, -0.030780531466007233, -0.04254243150353432, -0.052417077124118805, -0.012802730314433575, 0.001306801801547408, -0.0067166476510465145, 0.008996130898594856, -0.0024789709132164717, -0.03618727996945381, -0.019503407180309296, -0.042406246066093445, -0.003702247980982065, -0.020829400047659874, -0.00909436959773302, 0.000053193252824712545, 0.05522799491882324, 0.021962925791740417, 0.017293358221650124, 0.011452796868979931, 0.02336311899125576, 0.012986205518245697, -0.01183860283344984, -0.024574896320700645, -0.02303558960556984, -0.005409902427345514, -0.0014744015643373132, -0.026405245065689087, 0.03838009387254715, -0.03940969705581665, 0.04195091500878334, -0.04627053067088127, 0.019798727706074715, 0.007500483188778162, 0.015695994719862938, -0.000640982121694833, -0.00882376916706562, 0.05029263719916344, 0.0006403999286703765, -0.0003588024992495775, -0.0019269107142463326, 0.05435236915946007, 0.00043039157753810287, -0.02081359177827835, -0.03614487126469612, -0.035783641040325165, -0.020803024992346764, -0.04542335122823715, 0.031801581382751465, -0.05660880357027054, -0.0007997687789611518, -0.046579405665397644, -0.011300629936158657, 0.03575689345598221, -0.029552409425377846, 0.025587672367691994, 0.06136353686451912, 0.022970765829086304, -0.008869961835443974, 0.0022087746765464544, 0.005607824772596359, 0.04886087402701378, -0.018155427649617195, -0.005849572829902172, -0.012683388777077198, -0.03632521256804466, -0.016567789018154144, -0.033134911209344864, -0.0390508770942688, -0.04847089573740959, -0.007164507173001766, 0.0314515046775341, -0.04976562410593033, 0.032252442091703415, 0.01541623380035162, -0.07293930649757385, -0.04555077850818634, 0.052290692925453186, -0.014493915252387524, 0.028658652678132057, 0.05684909224510193, -0.007713892962783575, 0.02918437123298645, 0.048708226531744, -0.007697574328631163, 0.01097238902002573, -0.014790504239499569, 0.08101274073123932, -0.000777318375185132, -0.01560312882065773, 0.036581024527549744, 0.04717634245753288, -0.058614496141672134, -0.022442597895860672, 0.0019272807985544205, -0.0163438580930233, -0.014046473428606987, -0.006553192622959614, 0.0033774313051253557, -0.019348716363310814, -0.009539267979562283, 0.010970324277877808, 0.030927572399377823, 0.009561579674482346, 0.012605481781065464, -0.0074936142191290855, 0.02636704035103321, -0.044375646859407425, 0.013439059257507324, 0.03760993108153343, 0.016945792362093925, -0.024207191541790962, -0.030879011377692223, -0.010451249778270721, -0.006158581003546715, -0.02242736704647541, 0.06219366937875748, -0.01973666623234749, 0.02564154379069805, 0.023676689714193344, 0.017708230763673782, 0.03329302743077278, 0.00017908868903759867, -0.020109063014388084, -0.005289245396852493, -0.03480230271816254, -0.05946776643395424, -0.027934687212109566, 0.02661232091486454, 0.022296052426099777, 0.03166980668902397, -0.0627814307808876, 0.01684093102812767, 0.019457804039120674, 0.01628931425511837, -0.016159331426024437, -0.04094686359167099, -0.04115447774529457, -0.02993723563849926, -0.03198758512735367, -0.0351257361471653, -0.03800249844789505, -0.000881924934219569, 0.02381613664329052, 0.02715933695435524, -0.03574751690030098, 0.006679398473352194, 0.02699558064341545, -0.006661629304289818, 0.013631591573357582, -0.019244123250246048, 0.034898560494184494, -0.020997216925024986, -0.047577906399965286, -0.03852074220776558, 0.024596627801656723, -0.036517802625894547, -0.01900911144912243, -0.007532298564910889, 0.0048662638291716576, 0.004032847471535206, 0.04140728712081909, 0.0031367328483611345, 0.020321393385529518, -0.03144469112157822, -0.007115241140127182, -0.033339355140924454, 0.020090430974960327, -0.017655765637755394, 0.044961050152778625, 0.04296530783176422, 0.00313785788603127, 0.02882959134876728, -0.012028615921735764, -0.030996358022093773, -0.02735809050500393, 0.0073034618981182575, -0.009844713844358921, 0.0015850401250645518, -0.021990790963172913, -0.022500410676002502, -0.027558166533708572, -0.034786030650138855, 0.008167354390025139, -0.04806816950440407, -0.003914029337465763, -0.006503570359200239, 0.03584933280944824, -0.014653789810836315, 0.034631241112947464, 0.001955235842615366, 0.04001316428184509, -0.0022374580148607492, 0.010995759628713131, 0.030794501304626465, 0.0029114943463355303, 0.03806965798139572, 0.014167528599500656, 0.012466263957321644, 0.0013901932397857308, -0.0025694631040096283, 0.04538576677441597, 0.000848133466206491, 0.04287717491388321, -0.011242177337408066, 0.005328189581632614, -0.008236236870288849, 0.05052359029650688, -0.006217184942215681, 0.046312056481838226, -0.0124250128865242, -0.0380534790456295, 0.0031258610542863607, -0.01944931037724018, -0.024094924330711365, 0.023087330162525177, -0.07761893421411514, -0.036425523459911346, 0.014070332981646061, -0.04343997314572334, -0.05263200402259827, -0.017631227150559425, -0.020083988085389137, -0.03041752241551876, -0.0015234170714393258, -0.02913367561995983, -0.007035180926322937, 0.039795733988285065, 0.005634574685245752, 0.03869035094976425, -0.023781919851899147, 0.009015122428536415, 0.004874700680375099, 0.02452596090734005, -0.024976853281259537, -0.08714282512664795, 0.027397457510232925, 0.022517578676342964, -0.0005834958283230662, -0.04374243691563606, -0.01654369942843914, -0.02055979147553444, -0.00782008096575737, 0.0220072939991951, 0.0019209827296435833, 0.029300637543201447, -0.05140030011534691, 0.023293839767575264, 0.00030611600959673524, -0.004881244618445635, -0.025301573798060417, 0.025734832510352135, 0.0016363579779863358, -0.03415664657950401, -0.011563032865524292, 0.045008089393377304, 0.06290183961391449, -0.006789450068026781, 0.04175041615962982, -0.008315174840390682, 0.04006745293736458, -0.009874525479972363, -0.01787291280925274, 0.000281732325674966, 0.0516517348587513, 0.03674749657511711, 0.030844690278172493, -0.0026177894324064255, -0.007289412431418896, 0.02314641885459423, -0.004776905756443739, 0.0029812047723680735, 0.012411481700837612, -0.0052773235365748405, -0.03646264225244522, 0.02385997585952282, 0.0008270134567283094, 0.026153799146413803, 0.03306001052260399, -0.020926306024193764, -0.05292993783950806, -0.048891860991716385, -0.02931811660528183, -0.015246556140482426, -0.021823825314641, 0.047276079654693604, -0.04356558620929718, -0.0018481833394616842, -0.0020801702048629522, -0.008033430203795433, -0.021920114755630493, 0.027321845293045044, -0.029591554775834084, -0.019569678232073784, 0.02220802754163742, 0.023711510002613068, 0.00506873894482851, 0.03757074102759361, 0.006898101884871721, 0.009385520592331886, -0.013162218034267426, 0.0032560518011450768, 0.04102461412549019, 0.00899487268179655, -0.022484177723526955, 0.0008028327138163149, -0.042763203382492065, 0.03531360253691673, -0.023843493312597275, -0.022311387583613396, 0.06741336733102798, -0.06556925922632217, -0.03869268670678139, -0.04413532093167305, 0.006715870928019285, -0.023046085610985756, -0.037347275763750076, 0.04566599428653717, -0.0011293514398857951, -0.024196453392505646, 0.03826560825109482, -0.012545124627649784, 0.028252005577087402, -0.010761016979813576, 0.05125294253230095, -0.020533837378025055, 0.06623431295156479, 0.019299903884530067, -0.024957649409770966, -0.049225516617298126, 0.01112811453640461, 0.02248920500278473, -0.049738526344299316, -0.008308271877467632, -0.008865010924637318, 0.009844056330621243, -0.013486223295331001, -0.029963206499814987, 0.008008863776922226, 0.040455784648656845, -0.01954394392669201, -0.040899209678173065, 0.009299607016146183, 0.039535682648420334, -0.0594501793384552, 0.010271004401147366, 0.0006217177724465728, 0.011599241755902767, -0.02146485634148121, -0.019451972097158432, -0.012971082702279091, -0.019568072631955147, -0.019975032657384872, -0.024068597704172134, 0.02234186977148056, -0.011652398854494095, -0.03870903700590134, -0.0373874269425869, -0.005312955938279629, -0.017744215205311775, 0.00877067819237709, -0.006743157748132944, -0.05736605450510979, 0.00896487943828106, 0.06138776242733002, 0.006931582000106573, 0.013322480022907257, -0.024523694068193436, -0.0031098141334950924, 0.02146323025226593, 0.060946039855480194, 0.024940868839621544, 0.049499139189720154, 0.045734453946352005, -0.004653480369597673, 0.022716259583830833, -0.00756812235340476, 0.028105366975069046, -0.012790555134415627, -0.004272608086466789, 0.003884428646415472, 0.041195306926965714, -0.020713631063699722, -0.03478047996759415, -0.013350165449082851, 0.016292745247483253, -0.01781555823981762, 0.007388054393231869, -0.056824613362550735, -0.010316438972949982, -0.06747347861528397, 0.021537775173783302, -0.0556560754776001, -0.007124796509742737, 0.0008748690015636384, -0.011799564585089684, 0.004975134506821632, -0.0753280445933342, 0.1645997166633606, 0.05661527439951897, 0.031397219747304916, 0.041868191212415695, 0.0062963692471385, 0.06338640302419662, 0.034971095621585846, -0.02632911130785942, -0.015537988394498825, -0.04093291610479355, 0.042624332010746, -0.008864477276802063, 0.016139620915055275, 0.03574228286743164, -0.007689295336604118, 0.03410721197724342, -0.046033166348934174, 0.015985891222953796, 0.04286399856209755, -0.020527450367808342, -0.025861715897917747, 0.03627948835492134, -0.007941136136651039, 0.010461441241204739, 0.00013798153668176383, 0.03842243179678917, 0.0005120349815115333, -0.046944160014390945, -0.03719432279467583, -0.020667998120188713, 0.036641307175159454, -0.024337252601981163, 0.033206433057785034, -0.018138563260436058, -0.03384953364729881, 0.05500929802656174, 0.011683261953294277, -0.03868979960680008, 0.0018033472588285804, -0.007385181728750467, -0.02945551462471485, -0.015332688577473164, 0.038878437131643295, -0.013953709043562412, 0.040448158979415894, 0.005939812399446964, -0.01602259650826454, -0.01474582776427269, 0.03928684443235397, -0.07389982789754868, 0.02088112011551857, -0.05974307283759117, 0.021813923493027687, -0.011409599334001541, -0.047305528074502945, -0.005496591795235872, 0.010632519610226154, -0.02064189501106739, 0.05250157043337822, -0.010010895319283009, 0.01680552214384079, -0.026938049122691154, -0.0030905159655958414, -0.0022353697568178177, -0.059805501252412796, -0.007246868219226599, 0.02033197693526745, 0.04633765667676926, 0.02029184065759182, 0.013498124666512012, -0.002629936905577779, -0.03819724917411804, 0.008831223472952843, -0.022252066060900688, 0.038749951869249344, 0.06863435357809067, 0.03210331127047539, 0.021487608551979065, 0.015947040170431137, -0.030049575492739677, -0.0032013030722737312, -0.023654963821172714, -0.008417312987148762, 0.013374225236475468, 0.052693553268909454, 0.06547888368368149, -0.05485247075557709, -0.010585670359432697, -0.02453927882015705, 0.03070124424993992, 0.060745496302843094, 0.024367183446884155, -0.0071640913374722, -0.03009886108338833, -0.013994025997817516 ]
This American-based company is one of the world's leading manufacturers and distributors of pulp and various paper products, packaging, building products, and related chemicals. The company employs over 30,000 people and operates in more than 200 locations in North America, South America, and Europe. The client has a mill with two linerboard paper machines with a combined annual capacity of one million tons. Two new fiber lines have been commissioned in 2016 and will be able to produce enough pulp to meet this capacity, while also improving paper quality and reducing the amount of natural resources to produce the end product. This will be accomplished by the enhanced ability to remove pulp rejects, improving fiber formation and strength. Heavy equipment operator courses require training on these new lines. The client needed a partner that could design and develop customized training materials for this purpose. These Interactive Electronic Training Manuals are designed to request information from the user, and based on that input, determine what information to display next. They have the ability to guide a user through different procedures in a way a paper manual cannot, creating a more robust learning experience. Interactive Electronic Training Manuals are taking training materials to the next level. Paper-based manuals have become increasingly costly to produce, and when using them, it is difficult to manage and track the progress of the training process. GP Strategies' design of the Interactive Electronic Training Manuals is based on the GPM PRO training model. This task-based, multi-tiered approach provides all employees, with varying degrees of experience, the core skills and competencies they need to develop into qualified technicians and operators. The model comprises four levels. To progress through the different levels, employees must demonstrate their knowledge and skills at the completion of each level. In addition to creating the Interactive Electronic Training Manuals, GP Strategies is also developing Standard Operating Procedures (SOPs) to enhance training consistency, operator accuracy, and a platform for continuous improvement. An eLearning overview module has been created as well to assist in the onboarding of new hires. A blended training model is used to incorporate classroom instruction, hands-on training, and online learning. By partnering with GP Strategies, the customer gained the necessary training materials and SOPs they required to complete their operator training prior to the new fiber lines being installed and commissioned. What was initially a customized e-learning solution transforms into a turnkey solution going forward. The client owns the Interactive Electronic Training Manuals and other training materials, so they can continue to use these tools when onboarding new operators. This way, each operator is trained in the same manner every time, thus creating an environment where training program sustainability can be achieved.
[ 0.0028552787844091654, -0.001644438598304987, -0.022420624271035194, 0.014702527783811092, -0.022896846756339073, -0.016363315284252167, -0.00174525601323694, 0.004660066217184067, 0.025851482525467873, 0.023151185363531113, 0.005436762236058712, 0.03615875542163849, 0.0034232090692967176, -0.01960032619535923, -0.008645176887512207, 0.0022873396519571543, -0.029022393748164177, -0.017374074086546898, -0.01749460957944393, 0.011256108060479164, 0.01723031885921955, 0.005597600247710943, -0.055812619626522064, -0.05579361319541931, -0.046906620264053345, 0.02647537924349308, -0.03033280558884144, -0.015579132363200188, 0.07573671638965607, 0.04407201707363129, -0.01917378045618534, -0.005674534942954779, 0.01679179258644581, -0.04119427502155304, -0.01870633475482464, -0.029805026948451996, 0.0053530107252299786, -0.029428528621792793, -0.045679397881031036, -0.05139772221446037, 0.012898290529847145, 0.00013954730820842087, 0.04704541340470314, -0.06596875190734863, -0.06478593498468399, -0.0007505180547013879, 0.007608320098370314, -0.031111177057027817, -0.013860705308616161, -0.040703412145376205, 0.026225125417113304, -0.0022119306959211826, 0.01655646599829197, -0.03357798233628273, 0.005586606450378895, 0.01469345297664404, 0.0029167376924306154, -0.027630871161818504, -0.04403054341673851, 0.07367008179426193, 0.04932736977934837, 0.0007046328973956406, 0.036908965557813644, -0.05570220947265625, 0.025572320446372032, 0.016706503927707672, -0.014963259920477867, -0.014519155956804752, 0.012226372957229614, -0.011018701829016209, -0.050586260855197906, -0.019385965541005135, -0.0023186819162219763, -0.001254391623660922, -0.004808484576642513, 0.0004881773784290999, -0.006137997377663851, -0.019009171053767204, -0.03473629429936409, 0.01590397208929062, 0.016205763444304466, 0.04651167616248131, 0.004274066537618637, 0.01620972342789173, -0.06332674622535706, -0.037639863789081573, 0.012192804366350174, 0.019329475238919258, 0.007442506030201912, 0.01744810864329338, 0.0071360282599925995, 0.0543987900018692, -0.007175244390964508, -0.004717199131846428, 0.012819666415452957, 0.040791045874357224, -0.03403090685606003, 0.03282719478011131, -0.008877658285200596, 0.018873922526836395, 0.04096019268035889, 0.052106309682130814, 0.011597489938139915, 0.04801536723971367, -0.04934341832995415, -0.031106658279895782, 0.028809934854507446, -0.031239375472068787, -0.023687487468123436, -0.04067324846982956, -0.0008119347621686757, -0.019466903060674667, 0.003689255565404892, -0.03492342308163643, -0.009609801694750786, 0.041122790426015854, 0.03869883716106415, 0.01459190808236599, -0.0466381311416626, 0.03387016803026199, -0.0025302066933363676, -0.008200304582715034, 0.024497944861650467, -0.030298801138997078, 0.01115901954472065, -0.03209447115659714, -0.02168497070670128, 0.04379938915371895, -0.043152932077646255, -0.02512711100280285, -0.0018073804676532745, -0.024030065163969994, -0.012402265332639217, 0.014807027764618397, 0.016751663759350777, 0.016114532947540283, 0.022400809451937675, 0.03835213556885719, 0.011926129460334778, -0.034088216722011566, 0.03097555786371231, 0.053779687732458115, -0.013153132051229477, 0.10611890256404877, 0.0044765956699848175, 0.008659251034259796, -0.006202122196555138, 0.004999017342925072, -0.04873654618859291, 0.029795430600643158, -0.03752434253692627, 0.028405578806996346, -0.010384860448539257, 0.005472616292536259, -0.002516817534342408, -0.014754127711057663, -0.0029115176293998957, 0.028741033747792244, 0.02832806669175625, 0.017354605719447136, -0.0033447695896029472, 0.040410008281469345, -0.008001785725355148, 0.04168931767344475, -0.015163910575211048, 0.05873820185661316, -0.044660117477178574, -0.030396543443202972, -0.02376319281756878, -0.025319354608654976, -0.00573756406083703, -0.011796141974627972, -0.015251493081450462, -0.006050632335245609, 0.04805454984307289, 0.040831610560417175, 0.03981408476829529, 0.004965226631611586, 0.04646938294172287, 0.05025428161025047, -0.029825080186128616, -0.014390881173312664, 0.0054939184337854385, 0.05258374661207199, 0.014995384030044079, 0.025835182517766953, 0.003306800965219736, -0.005345326382666826, -0.029860829934477806, -0.01690714992582798, 0.009959076531231403, 0.033251646906137466, -0.01856199838221073, 0.01158567238599062, 0.005842884071171284, -0.011874240823090076, -0.0272532906383276, 0.011995777487754822, -0.008721621707081795, -0.036722332239151, -0.019398214295506477, 0.029397713020443916, -0.03642323240637779, 0.028312379494309425, 0.01264192070811987, -0.0004935980541631579, -0.009075559675693512, 0.058856330811977386, -0.0644645094871521, 0.005209609400480986, 0.042746931314468384, 0.036723315715789795, -0.0421588271856308, -0.027204133570194244, 0.008696205914020538, -0.01722310297191143, -0.059202250093221664, 0.010745257139205933, 0.025117190554738045, -0.0032169250771403313, -0.00045121516450308263, -0.000660038786008954, 0.0196223184466362, 0.020737841725349426, -0.0001208597095683217, 0.02013203129172325, 0.006812633480876684, 0.05363835394382477, -0.035121459513902664, 0.02441059798002243, 0.0002878670347854495, 0.0547640398144722, 0.037787556648254395, 0.06846709549427032, 0.01313132792711258, 0.020454851910471916, 0.050964780151844025, 0.022320155054330826, 0.019173167645931244, 0.017629917711019516, 0.024830849841237068, -0.01520018745213747, 0.03032355196774006, 0.0310825128108263, 0.004135357681661844, 0.03414551913738251, -0.03825361654162407, -0.0026802506763488054, -0.024992672726511955, 0.012974908575415611, -0.03230474889278412, 0.03721507266163826, 0.002259158296510577, 0.015894275158643723, -0.01665402203798294, 0.01704336330294609, 0.0403568334877491, 0.04430383816361427, -0.020749341696500778, -0.01375900860875845, 0.013009708374738693, 0.006793444510549307, -0.02620510570704937, 0.013787217438220978, 0.012549645267426968, -0.00820316281169653, -0.01561794150620699, 0.012726112268865108, 0.0014798515476286411, -0.0436604879796505, -0.032709069550037384, -0.07461774349212646, -0.06283768266439438, -0.019424360245466232, -0.05818704143166542, 0.009759638458490372, 0.01929512619972229, -0.022745437920093536, -0.013564659282565117, -0.014186996035277843, -0.01044666487723589, -0.033512745052576065, -0.017204606905579567, 0.03091585263609886, 0.025986503809690475, 0.034394484013319016, -0.026054196059703827, 0.016618655994534492, -0.020780017599463463, 0.03916022926568985, -0.01812867820262909, 0.008365610614418983, -0.0050388663075864315, -0.02434002235531807, 0.04204773157835007, -0.009230723604559898, 0.021908270195126534, 0.0024884804151952267, -0.06431794911623001, -0.04843886196613312, -0.017882732674479485, -0.0015550149837508798, 0.016441337764263153, -0.006114164367318153, -0.042072661221027374, 0.05836760252714157, 0.013611197471618652, -0.030289622023701668, 0.03644375503063202, 0.037191107869148254, -0.04347813501954079, 0.05345930904150009, 0.016697125509381294, 0.005196623969823122, -0.06956399232149124, 0.03555698320269585, 0.04156295955181122, -0.006785258650779724, -0.025918813422322273, -0.024428123608231544, -0.026941543444991112, 0.03226904943585396, 0.012991153635084629, -0.008150147274136543, -0.01765424758195877, 0.052429359406232834, 0.01508933026343584, -0.08845145255327225, 0.046988796442747116, -0.030638203024864197, -0.04623481258749962, -0.05002587288618088, -0.037077564746141434, 0.022557588294148445, 0.014350096695125103, 0.014678999781608582, -0.0015326953725889325, -0.01741400919854641, 0.025103474035859108, -0.0023213806562125683, 0.04065287113189697, -0.026122264564037323, 0.01822773925960064, 0.03899521753191948, -0.015765417367219925, -0.0020364606752991676, 0.016015389934182167, -0.010923309251666069, 0.010554604232311249, 0.016027789562940598, 0.006242443807423115, -0.009818159975111485, 0.06881233304738998, -0.018722927197813988, 0.02534366585314274, 0.02697278931736946, -0.04339434579014778, 0.005991756916046143, -0.00601049093529582, 0.010683342814445496, 0.01648716628551483, 0.013534821569919586, 0.02435467764735222, 0.010488754138350487, -0.04566001892089844, -0.0518852174282074, 0.014736485667526722, 0.03874237462878227, 0.05713187903165817, -0.05616059526801109, 0.05143066868185997, -0.015507830306887627, -0.03393629565834999, 0.05101272091269493, -0.02835184521973133, -0.006113352254033089, 0.05742745101451874, -0.014753388240933418, 0.05541887506842613, -0.04729287698864937, 0.026991352438926697, -0.005071165040135384, 0.027294112369418144, 0.002551058307290077, -0.00911443680524826, 0.03450611233711243, -0.00018582900520414114, 0.0070948293432593346, -0.030135106295347214, -0.02467288263142109, -0.01820710487663746, -0.0303459744900465, -0.007189283613115549, 0.028067316859960556, -0.04457724839448929, -0.036501672118902206, 0.04836118221282959, 0.05908435955643654, 0.023513231426477432, -0.008215640671551228, 0.04415443539619446, -0.012101796455681324, 0.014751986600458622, 0.03434925526380539, 0.00902431271970272, -0.004511718172580004, -0.049478910863399506, 0.019064854830503464, 0.017907332628965378, -0.006303257774561644, -0.008369497023522854, -0.03196224197745323, -0.0460306853055954, 0.035724617540836334, 0.000010742522135842592, -0.03747282922267914, -0.02637212537229061, 0.015018751844763756, 0.022881949320435524, 0.03667804226279259, -0.025153206661343575, -0.029080744832754135, -0.04140308126807213, 0.0606876015663147, 0.02858767844736576, -0.039669036865234375, -0.03501637652516365, -0.030548058450222015, 0.03864071145653725, 0.025061508640646935, -0.03044913336634636, -0.0331115759909153, -0.03407905250787735, -0.04650215432047844, -0.04426207020878792, 0.028901351615786552, 0.02762201614677906, 0.0073992968536913395, 0.010931686498224735, -0.04086535423994064, 0.026100335642695427, 0.01221874263137579, -0.010026995092630386, -0.002595896366983652, 0.0362587608397007, 0.010697170160710812, 0.0029836196918040514, 0.04241621494293213, 0.010069994255900383, -0.03833320364356041, 0.0011952403001487255, -0.042788032442331314, 0.03157643601298332, -0.016073618084192276, -0.004134449176490307, -0.009770248085260391, 0.02678302302956581, 0.014265745878219604, 0.028675558045506477, -0.009794269688427448, -0.010079908184707165, 0.011673239059746265, 0.032967161387205124, -0.027654023841023445, -0.02249523065984249, 0.04663117602467537, 0.01215510256588459, -0.07162553071975708, 0.03329481929540634, 0.0402042493224144, -0.04444634169340134, 0.015109319239854813, 0.01533125713467598, -0.04997379332780838, 0.02676985412836075, -0.07467322051525116, 0.015377807430922985, -0.014833108521997929, -0.04511569067835808, 0.025326229631900787, -0.02822418138384819, 0.04311203211545944, -0.0181279294192791, -0.027599137276411057, -0.02392641082406044, -0.05509034916758537, -0.019878335297107697, -0.0002498866233509034, -0.03284725174307823, 0.01889847032725811, 0.023712733760476112, -0.020259559154510498, 0.008037705905735493, -0.025684209540486336, -0.003649709979072213, 0.01622241735458374, -0.004281402099877596, 0.007905913516879082, 0.033584173768758774, 0.014865211211144924, -0.008695617318153381, -0.052786700427532196, -0.04888125881552696, 0.007014372386038303, -0.019704682752490044, -0.006292233243584633, -0.0322609469294548, 0.029055390506982803, -0.03378809615969658, 0.022925611585378647, -0.02661365270614624, 0.02299940213561058, -0.003934725187718868, 0.028899885714054108, 0.036178190261125565, 0.001067273784428835, 0.0010344148613512516, -0.027126209810376167, -0.046986762434244156, 0.06659629195928574, 0.022791558876633644, -0.04293707013130188, -0.05156544968485832, 0.060831617563962936, -0.0031328038312494755, 0.052401214838027954, -0.0031839944422245026, -0.0169050469994545, -0.04368222504854202, -0.05141846463084221, 0.020347977057099342, -0.01752036064863205, -0.027321796864271164, -0.03517289087176323, -0.01056500244885683, 0.004238583147525787, 0.023811353370547295, 0.026931898668408394, -0.019650274887681007, 0.005405731499195099, -0.05480057746171951, 0.01642863266170025, -0.033787801861763, -0.005759525112807751, -0.02767200954258442, -0.011173873208463192, -0.018475478515028954, 0.0363195538520813, 0.013744568452239037, 0.0003802559804171324, -0.025927672162652016, 0.028324536979198456, 0.032759346067905426, 0.0026671516243368387, -0.0457354411482811, -0.03512922674417496, -0.00002233050145150628, -0.01422462984919548, -0.004542889539152384, -0.015641160309314728, -0.019538337364792824, 0.03726750239729881, -0.03805823624134064, 0.020960282534360886, -0.0031372879166156054, -0.01031402125954628, -0.03594451770186424, -0.0059335604310035706, 0.04624589905142784, -0.02044781483709812, 0.0011738806497305632, -0.04372718557715416, 0.02492990903556347, 0.06937944889068604, 0.012982622720301151, -0.03688142076134682, 0.0073295701295137405, -0.032494526356458664, -0.057437244802713394, 0.016613027080893517, -0.03656981140375137, -0.03035649284720421, -0.026255425065755844, -0.04299495369195938, 0.02647436037659645, -0.018292037770152092, 0.05933113023638725, 0.07046868652105331, -0.027924738824367523, 0.0008695378783158958, -0.020671004429459572, 0.013254174031317234, 0.020388612523674965, -0.009535676799714565, 0.026432091370224953, -0.02333027496933937, -0.017898276448249817, 0.00718327984213829, -0.05180975794792175, -0.02816077508032322, -0.030867870897054672, -0.0053783562034368515, 0.05858457088470459, -0.035221874713897705, 0.04467904195189476, -0.005369124002754688, -0.03650474548339844, -0.04090839996933937, 0.031713735312223434, -0.02930898778140545, 0.016286907717585564, 0.039828699082136154, -0.006831630133092403, -0.010903428308665752, 0.01797712780535221, -0.026217609643936157, 0.011594612151384354, -0.026475971564650536, 0.09504763036966324, -0.01784776896238327, -0.03181620314717293, 0.02492203377187252, 0.056191254407167435, -0.035870492458343506, -0.03547210991382599, 0.004662966355681419, 0.012073838151991367, 0.009571200236678123, -0.02939540706574917, 0.01883910596370697, -0.00179775629658252, 0.019502811133861542, 0.011081739328801632, 0.03560134023427963, -0.045474179089069366, 0.06191198527812958, 0.0103854825720191, 0.03533906489610672, -0.050218433141708374, -0.006464544218033552, 0.016292519867420197, -0.005806040950119495, -0.0007076687179505825, -0.037250492721796036, -0.019626611843705177, 0.0007306340266950428, -0.012055103667080402, 0.05079485848546028, 0.017121629789471626, -0.008111988194286823, 0.022688833996653557, 0.008427774533629417, 0.06585318595170975, 0.010076572187244892, -0.04077994078397751, 0.010434563271701336, -0.060984548181295395, -0.02459455467760563, -0.03596872836351395, 0.011891912668943405, -0.00019648890884127468, 0.04424948990345001, -0.04121836647391319, 0.013369324617087841, 0.03667844086885452, 0.03914599120616913, 0.02523873932659626, -0.07807005941867828, -0.04816451668739319, -0.04568817466497421, -0.028475459665060043, -0.012975596822798252, -0.01806671917438507, -0.00894882157444954, 0.018672576174139977, 0.014752398245036602, -0.02682078257203102, 0.012325290590524673, 0.006925911642611027, -0.029149441048502922, 0.00037157931365072727, -0.043780192732810974, 0.06909023225307465, -0.030607346445322037, -0.02440185472369194, -0.057991135865449905, 0.027870992198586464, -0.0006996843731030822, 0.014372340403497219, -0.008823400363326073, 0.02934199385344982, 0.023943165317177773, 0.026539107784628868, 0.011166743002831936, -0.007893485017120838, -0.019426662474870682, -0.04947088286280632, -0.03014046885073185, 0.03005298413336277, -0.04410133883357048, 0.02509697526693344, 0.04547852277755737, -0.023130832239985466, 0.04128891974687576, 0.01396864466369152, -0.025418879464268684, -0.06301619857549667, 0.00016353129467461258, 0.032986946403980255, 0.021587947383522987, -0.04439414292573929, -0.026437420397996902, 0.00348118063993752, -0.031016970053315163, 0.016352007165551186, 0.0032385149970650673, 0.011855767108500004, -0.0045640552416443825, 0.008265205658972263, -0.021378032863140106, 0.053477078676223755, -0.00320067023858428, 0.045515745878219604, 0.028246315196156502, 0.04488690569996834, 0.01704147458076477, -0.013673217967152596, 0.016222286969423294, 0.01921786367893219, 0.005083560943603516, -0.03899816796183586, 0.027855589985847473, 0.009379561059176922, -0.003787653986364603, 0.0351545475423336, -0.016941694542765617, -0.014140496961772442, -0.03844070807099342, -0.024637455120682716, 0.01306648924946785, 0.044542133808135986, -0.02233491651713848, -0.034344952553510666, 0.021934686228632927, -0.016123119741678238, -0.01454276405274868, 0.00842046458274126, -0.053651195019483566, -0.04231011122465134, 0.001932055689394474, -0.006353532895445824, -0.007941793650388718, 0.006529728416353464, -0.02865210548043251, -0.009152090176939964, -0.023326687514781952, 0.021403007209300995, -0.048470981419086456, 0.04364871233701706, -0.012482057325541973, 0.06339726597070694, -0.02344811148941517, -0.0025286413729190826, 0.009175296872854233, 0.055687449872493744, -0.03684689477086067, -0.04356001317501068, 0.012582870200276375, 0.01729913428425789, 0.025651438161730766, -0.008750027045607567, 0.01127947960048914, 0.003394712693989277, -0.02174052968621254, 0.0004955681506544352, 0.015765761956572533, 0.015988823026418686, 0.006163196638226509, 0.0019743044394999743, 0.017156606540083885, 0.014317060820758343, -0.04153938218951225, 0.06742551922798157, 0.0023106711450964212, -0.04882275313138962, -0.04490263760089874, 0.037624381482601166, 0.06252091377973557, -0.043446432799100876, 0.015411460772156715, -0.007422653492540121, 0.0613151490688324, -0.02705741487443447, 0.009150381200015545, 0.008654425852000713, 0.03117082454264164, 0.027475712820887566, 0.06253504008054733, -0.011899285949766636, 0.042352963238954544, 0.056579940021038055, -0.03331273794174194, -0.008260601200163364, 0.010825111530721188, -0.003842609701678157, -0.02562592923641205, 0.0064382110722362995, -0.055226147174835205, -0.0007270192727446556, -0.00006127370579633862, -0.005520394537597895, 0.023110996931791306, -0.05919710174202919, -0.00880166795104742, -0.004029924049973488, -0.01998533494770527, 0.05233849585056305, 0.0017744647338986397, -0.04066894203424454, 0.024859493598341942, -0.050545938313007355, 0.021326374262571335, 0.042420752346515656, 0.008342473767697811, 0.01828107424080372, 0.02897179313004017, 0.03676808252930641, -0.013442914001643658, 0.02715996652841568, 0.04166651889681816, 0.007247223984450102, -0.04225864261388779, 0.010615871287882328, -0.0035287642385810614, -0.006650435738265514, -0.054472483694553375, -0.011884092353284359, -0.0401531383395195, 0.02475796453654766, -0.013477482832968235, -0.0249585323035717, 0.01052433904260397, -0.038079530000686646, -0.02681376039981842, -0.042006660252809525, 0.029897460713982582, -0.040450043976306915, -0.0012733368203043938, 0.04781057685613632, -0.022614939138293266, -0.015845537185668945, 0.04120781645178795, -0.0072121387347579, 0.031630974262952805, 0.03688100725412369, 0.05952247604727745, 0.004686370957642794, 0.0456726998090744, 0.030825089663267136, -0.02277536131441593, 0.005276803392916918, 0.0366411991417408, -0.03528541326522827, -0.01179790310561657, -0.032457150518894196, -0.033960532397031784, -0.05593349412083626, -0.021173862740397453, -0.047057442367076874, -0.0031817439012229443, 0.04447300732135773, 0.004740116186439991, -0.005436905659735203, -0.002528197830542922, 0.03559533506631851, -0.04709826782345772, -0.040184374898672104, 0.04993226379156113, 0.05535502731800079, 0.009065602906048298, -0.007175590377300978, -0.006492449901998043, -0.01789218559861183, -0.001167506561614573, -0.05912896618247032, 0.03709174320101738, -0.010697107762098312, -0.023182399570941925, -0.024678675457835197, -0.07067736238241196, -0.03306404501199722, -0.005337845999747515, -0.03248506411910057, -0.044949792325496674, 0.053411830216646194, 0.012210363522171974, 0.05018587410449982, -0.00847808737307787, -0.00844199862331152, -0.024835187941789627, 0.04220398887991905, 0.06190279871225357, 0.010125219821929932, 0.04678221791982651, 0.06336603313684464, -0.005170253571122885, 0.004837470129132271, -0.05999114736914635, 0.03955012187361717, -0.022493695840239525, -0.00773253571242094, -0.023994460701942444, 0.0204330924898386, 0.010917846113443375, -0.0663226917386055, -0.006316053681075573, 0.01375986821949482, -0.003938815090805292, -0.009630648419260979, -0.0648743212223053, -0.012572710402309895, -0.05022066459059715, 0.008253131061792374, -0.023371318355202675, 0.032522574067115784, 0.010191422887146473, 0.00031647543073631823, 0.007493515964597464, -0.034952834248542786, 0.1580962985754013, 0.044903989881277084, -0.010548717342317104, 0.01922883279621601, 0.023052774369716644, 0.04138696938753128, 0.03757992759346962, -0.00635506073012948, 0.015904592350125313, -0.023728955537080765, 0.03461598604917526, 0.003939166199415922, 0.024881631135940552, 0.004956947639584541, 0.029000382870435715, 0.03856924921274185, -0.051826220005750656, -0.00996154174208641, 0.004812026862055063, -0.04080500453710556, -0.05973714590072632, 0.023384181782603264, -0.009772909805178642, 0.02225266583263874, -0.020518401637673378, 0.0035131298936903477, 0.007775620557367802, -0.04607230797410011, 0.02109968662261963, -0.017228899523615837, 0.006905789952725172, -0.03634371608495712, 0.015758486464619637, -0.027947627007961273, -0.01815337873995304, 0.041719816625118256, 0.009471268393099308, -0.029589325189590454, -0.03231477364897728, 0.024355733767151833, -0.019758231937885284, -0.0005146218463778496, 0.019054124131798744, -0.021172286942601204, 0.025574680417776108, 0.025278832763433456, -0.02012687921524048, 0.026786712929606438, 0.02208036743104458, -0.04844816401600838, 0.05761978402733803, -0.04263213276863098, 0.02452143281698227, 0.009495582431554794, -0.01719314232468605, 0.002931809052824974, -0.008363042958080769, -0.014121434651315212, -0.021619709208607674, 0.045930322259664536, 0.03794873505830765, 0.010402771644294262, 0.00819292664527893, 0.02722228690981865, -0.0392417386174202, 0.008581992238759995, 0.045914534479379654, 0.006169120781123638, -0.010034576058387756, -0.012999646365642548, 0.017367703840136528, 0.0017701825127005577, -0.030388491228222847, -0.038449373096227646, 0.046977698802948, 0.04582320153713226, -0.009978443384170532, 0.028011741116642952, 0.018187766894698143, -0.04146094247698784, -0.0050259120762348175, -0.04569711908698082, 0.013125868514180183, -0.002156708389520645, 0.013572601601481438, 0.056969720870256424, -0.04261109605431557, -0.024209346622228622, -0.017202170565724373, 0.06128481775522232, 0.02373579703271389, 0.0070447763428092, 0.00007305380131583661, 0.00035647794720716774, 0.01681591011583805 ]
The common pond scum Spirogyra, sea lettuce (Ulva), and Volvox are just some of the 7,000 species of green algae that make up the phylum Chlorophyta. The close resemblance of green algae and true plants is no coincidence. Scientists have little doubt that the first plants evolved from green algae. As evidence, green algae and plants use identical photosynthetic pigments—chlorophylls a and b, which produce their characteristic green color, as well as red, orange, and yellow carotenoids. Like plants, all green algae store their food as starch, and many have plantlike cell walls made of cellulose. Most green algae grow in freshwater—typically as slime on submerged rocks and scum on the water's surface. These scums and slimes are actually colonies of thousands to millions of microscopic algae such as Spirogyra. Spirogyra is an example of a filamentous green algae. Each organism consists of a single, very long cell, or filament. Each colony consists of a mass of these intertwined unicellular organisms. Other green algae, such as sea lettuce, or Ulva, grow in salt water. This green seaweed forms delicate, leaflike blades just two cells thick. It is most often seen growing in shallow water along the seashore, where it anchors itself to pilings and rocks. Still others have made their way onto land, where they survive in wet places, from damp soil and leaves to the melting surface of snow. Several species of green algae have forged symbiotic (mutually beneficial) relationships with fungi to form lichens. A few even grow on the damp parts of animals, such as the fur of tree sloths, or cover the shells of turtles. The sloths and turtles benefit from the green camouflage! A great many green algae are seldom seen. They are one-celled organisms that lead solitary lives. Some swim through the water like microscopic tadpoles. Others form spinning colonies made of tightly connected individuals. The classic example of a one-celled green algae is Chlamydomonas, found in stagnant ponds and lakes the world over. Although small, it can move rapidly, darting through the water by beating its two whiplike flagella, or "tails." A single chloroplast fills most of Chlamydomonas' body. Near the chloroplast is a red eyespot, or stigma. Chlamydomonas reproduces both sexually and asexually. During asexual reproduction, its nucleus divides twice, producing four identical daughter cells. Sexual reproduction involves the fusion of two individuals belonging to different mating strains. Volvox is an example of colonial green algae. Each colony is a hollow ball made up of 500 to 50,000 one-celled individuals. The cells share nutrients through openings in their cell walls. Together, the cells spin their colony through the water by each beating its flagella. The brown algae (phylum Phaeophyta) are multicellular organisms, many of them growing to more than 300 feet (90 meters) in length. Their characteristic color comes from fucoxanthin, a carotenoid pigment. This pigment absorbs light in the green range of the spectrum—namely the wavelengths that are most abundant below the water's surface. (In contrast, chlorophyll reflects green light, giving plants and green algae their color.) Brown algae store their food as an unusual sugar called laminarin. Their cell walls are a mixture of cellulose and complex sugars. The best-known brown algae are the mineral-rich kelps so common in northern oceans. Some form enormous floating forests many miles wide and more than 200 feet (60 meters) deep. Many kelp have distinct parts such as holdfast (a rootlike anchor), stipe (a ropelike stem), and blade (a leaflike sheet). The blades and stipes can have air-filled bladders that act as floats. Dense forests of kelp provide lush habitats for many marine animals. Red algae are the most common seaweed in tropical seas, and also occur in colder waters. Their distinctive colors come from their unique combination of pigments: chlorophyll a, carotenoids, and phycobilins. These pigments are similar to those found in primitive cyanobacteria (blue-green algae), which may be a distant relative. Red algae always grow attached to rocks and other objects. Unlike other seaweeds, they cannot survive floating freely in the water. This is because they need the tug of tides and currents to move gases in and out of their tissues. Red algae such as dulse (Rhodymenia palmata) and nori (Porphyra species) are important foods. Red seaweeds are also processed into extracts used as gelatin substitutes in puddings, ice cream, and other food products.
[ -0.012234988622367382, -0.016863197088241577, -0.007558910176157951, -0.0002728948020376265, -0.012407585978507996, -0.0027488854248076677, 0.01215849258005619, 0.014217299409210682, 0.04043451324105263, 0.03881609067320824, 0.044097308069467545, -0.011367028579115868, 0.0004158344818279147, -0.03085930272936821, 0.00343270949088037, -0.015348738059401512, -0.005705749616026878, -0.03354885056614876, -0.04895145818591118, 0.009228577837347984, 0.014456009492278099, 0.020485876128077507, -0.038157347589731216, -0.008741895668208599, 0.0010294202947989106, 0.06025576964020729, 0.04381971061229706, 0.024074112996459007, 0.06783376634120941, 0.02532791905105114, -0.035492606461048126, -0.011609755456447601, 0.04283342882990837, -0.06381338834762573, -0.037300702184438705, -0.01760314404964447, -0.0036584690678864717, -0.029530752450227737, -0.03244205191731453, -0.07427400350570679, 0.02120112255215645, -0.033221010118722916, 0.04736550524830818, -0.00020556006347760558, -0.009082820266485214, 0.028218531981110573, -0.012371490709483624, -0.0005454577039927244, 0.012041948735713959, -0.018745066598057747, 0.02105201967060566, 0.014006816782057285, 0.0038244244642555714, -0.011831490322947502, 0.00719979265704751, -0.016582723706960678, 0.0008011511527001858, 0.0018282935488969088, -0.013446005992591381, 0.03589058294892311, -0.008729474619030952, -0.005622535012662411, 0.03319019079208374, -0.06444574892520905, 0.0423654243350029, 0.044542599469423294, -0.007334516849368811, -0.003161467844620347, 0.036373723298311234, -0.0231586005538702, -0.023668203502893448, -0.003818103112280369, 0.01861136220395565, -0.025480499491095543, -0.0006604077061638236, 0.012186719104647636, 0.01691235974431038, 0.0035010273568332195, 0.00611245259642601, -0.01368734985589981, 0.01573324203491211, 0.07029861211776733, 0.001547912135720253, 0.014361293986439705, -0.07630450278520584, -0.04717889055609703, -0.04391743242740631, 0.056948885321617126, 0.03359208256006241, -0.006617920007556677, 0.0006502352189272642, 0.0801907554268837, 0.008714500814676285, -0.03484486788511276, 0.02260328270494938, 0.02345752716064453, -0.056661710143089294, 0.05636630952358246, 0.012816186994314194, 0.005384684074670076, 0.035844385623931885, -0.0007218364626169205, -0.025152061134576797, 0.05608167126774788, -0.04304129257798195, 0.003669449593871832, 0.008670332841575146, 0.013502819463610649, -0.017135409638285637, -0.02769462950527668, 0.003379334229975939, -0.009323745965957642, 0.04830125719308853, -0.005880637094378471, 0.00612132903188467, 0.03704848885536194, -0.02771795354783535, 0.04520009458065033, -0.05183358117938042, 0.027440274134278297, 0.018200591206550598, -0.006712604779750109, 0.02489478513598442, -0.01607144996523857, -0.010737936943769455, -0.011924327351152897, -0.04421678185462952, 0.04742437228560448, -0.04734061658382416, 0.03657125309109688, 0.009897492825984955, -0.09039345383644104, -0.004060540813952684, 0.020350053906440735, -0.00756384152919054, 0.02431119978427887, -0.03873949497938156, 0.05464354529976845, 0.03323373943567276, -0.06504794210195541, 0.06577057391405106, 0.025484034791588783, -0.018753645941615105, 0.07797644287347794, 0.025017647072672844, 0.05220665782690048, 0.0299821849912405, 0.009318164549767971, -0.013814766891300678, 0.03319830447435379, -0.030690554529428482, -0.005543180275708437, 0.004163914825767279, 0.008518757298588753, 0.009296832606196404, 0.023679589852690697, -0.015327760949730873, 0.0013771327212452888, 0.013936941511929035, 0.021130746230483055, -0.008162061683833599, 0.02118295431137085, 0.026347409933805466, 0.002449022140353918, -0.028870800510048866, 0.04710308462381363, -0.03528273478150368, -0.04277573898434639, -0.018100842833518982, -0.03136661648750305, 0.035053551197052, -0.021184464916586876, -0.01728144660592079, 0.04674561694264412, 0.015832029283046722, 0.031656667590141296, 0.04931114614009857, 0.005966037977486849, 0.02154451794922352, 0.03468133881688118, -0.02130003273487091, -0.011673574335873127, -0.004526366479694843, 0.05067460983991623, -0.003577012801542878, 0.007859542965888977, -0.007111588027328253, -0.03143173083662987, -0.02525773085653782, -0.03771518915891647, -0.008990528993308544, 0.03775131702423096, -0.019261853769421577, 0.023433679714798927, 0.0015872698277235031, 0.04016438126564026, 0.020753923803567886, 0.01593349315226078, -0.032492972910404205, -0.059565987437963486, -0.03598076477646828, 0.04643300920724869, -0.017049772664904594, 0.000590151350479573, 0.014379003085196018, -0.03834761306643486, 0.020237766206264496, 0.07386986166238785, -0.0604226291179657, 0.03489161655306816, 0.06278112530708313, -0.0245515126734972, -0.012601073831319809, -0.013639424927532673, -0.0016410440439358354, -0.032512351870536804, -0.027640115469694138, 0.04345228150486946, -0.02406737580895424, -0.01197957992553711, 0.015666985884308815, 0.004915640223771334, 0.01641024649143219, 0.050923243165016174, 0.011490845121443272, 0.0014407227281481028, 0.002955322852358222, 0.0424855500459671, -0.016294138506054878, 0.012430720962584019, -0.011767858639359474, 0.057718511670827866, 0.04038522392511368, 0.06425224989652634, 0.014572514221072197, 0.0090005062520504, 0.02324385568499565, 0.05033294856548309, -0.007866150699555874, 0.01453668437898159, -0.014943470247089863, 0.021197663620114326, 0.03453725948929787, 0.012665794230997562, 0.0151410773396492, 0.04832438379526138, -0.00876701157540083, 0.005816824268549681, -0.041609205305576324, 0.04400806501507759, -0.040445540100336075, 0.04162919893860817, 0.05990861356258392, 0.0178994107991457, -0.006745505146682262, -0.006122925318777561, 0.020902879536151886, 0.02836441621184349, -0.05027763545513153, -0.014263409189879894, -0.021554522216320038, 0.0035320103634148836, 0.008401220664381981, -0.007770885713398457, 0.00760548934340477, 0.011609622277319431, -0.01950928010046482, 0.018316177651286125, -0.013497890904545784, -0.04938255250453949, -0.0257753636687994, -0.047350648790597916, -0.06199517846107483, -0.041062477976083755, -0.0536731518805027, 0.017819279804825783, 0.01225445605814457, -0.029477350413799286, 0.024636482819914818, -0.0030577718280255795, -0.012644951231777668, -0.022402778267860413, -0.023195408284664154, 0.012915090657770634, 0.012784254737198353, 0.01219303160905838, -0.0395604744553566, 0.048110783100128174, -0.02369079552590847, 0.015585106797516346, -0.026511339470744133, 0.014373261481523514, -0.004119517281651497, 0.008469593711197376, 0.02882046438753605, 0.007349158637225628, 0.005251858849078417, -0.018909888342022896, -0.04502610117197037, -0.0470564104616642, 0.013493981212377548, 0.0046182116493582726, 0.010596703737974167, -0.0038083246909081936, -0.03660637140274048, 0.050194308161735535, 0.029504576697945595, -0.03248179703950882, 0.029475823044776917, 0.030956389382481575, -0.008227328769862652, 0.045865174382925034, 0.004672985523939133, 0.014887205325067043, -0.04340285807847977, 0.04672322794795036, 0.03650161996483803, 0.01679912582039833, -0.0038019802886992693, -0.0073233600705862045, -0.03168291226029396, -0.008855958469212055, 0.01709607243537903, -0.005353807006031275, -0.05389583110809326, 0.04862159490585327, 0.011349122039973736, -0.07409118860960007, 0.029385417699813843, -0.02140248380601406, -0.05986127629876137, -0.03166402876377106, -0.018598822876811028, 0.0070305150002241135, 0.03723553940653801, 0.01578105427324772, -0.0073997993022203445, -0.03200618177652359, -0.017931582406163216, 0.03552846983075142, 0.03885532543063164, -0.0472085140645504, 0.016552770510315895, 0.02992197312414646, -0.003174223005771637, 0.02895968221127987, 0.052419520914554596, 0.013770878314971924, 0.013594573363661766, -0.018527062609791756, 0.0050188773311674595, 0.05045704171061516, 0.021165188401937485, 0.016891131177544594, 0.013646669685840607, 0.057466503232717514, -0.03180096298456192, -0.008218047209084034, 0.011430855840444565, -0.004023278597742319, 0.02129475027322769, 0.027282321825623512, 0.0318920873105526, 0.0015527476789429784, -0.034625839442014694, -0.051937393844127655, 0.020475154742598534, -0.00094749522395432, 0.04646949842572212, -0.032081183046102524, 0.06871721893548965, -0.0005625631893053651, -0.03640837222337723, 0.03276421129703522, -0.04226372390985489, -0.013894445262849331, 0.043532222509384155, -0.015637774020433426, 0.03400479629635811, -0.0537123940885067, 0.01309804618358612, 0.00666740583255887, -0.023893998935818672, 0.046806659549474716, -0.009531318210065365, 0.04727441817522049, -0.021121276542544365, -0.052587538957595825, -0.01605755276978016, -0.03208475559949875, -0.014683961868286133, -0.039960891008377075, -0.012377738021314144, -0.011082648299634457, -0.055304352194070816, -0.01042143814265728, 0.012789557687938213, 0.03730149567127228, 0.021846141666173935, 0.022506680339574814, 0.0389154776930809, 0.006014893762767315, 0.031156739220023155, 0.04095956310629845, 0.005000964272767305, 0.00032387449755333364, -0.05612137168645859, 0.03735356405377388, 0.03933063894510269, -0.011539062485098839, -0.036957643926143646, -0.01077164988964796, -0.010482095181941986, 0.04609091207385063, -0.012467551976442337, -0.02982335165143013, -0.04226357489824295, 0.01907218061387539, 0.02128579281270504, 0.0009340652031823993, -0.06385336071252823, -0.020736537873744965, -0.017186515033245087, 0.05661442130804062, 0.0138009674847126, -0.03231876343488693, 0.01738310232758522, -0.02294725552201271, 0.04174977168440819, 0.04118076711893082, 0.003630215534940362, -0.03647486865520477, -0.0305772852152586, -0.025942649692296982, -0.0160862747579813, 0.00801320280879736, 0.02319193072617054, -0.009605108760297298, -0.016879914328455925, -0.019332412630319595, 0.02505193091928959, 0.021370064467191696, 0.004910830873996019, -0.01271197758615017, -0.017874738201498985, 0.02087501436471939, 0.038455646485090256, 0.020557072013616562, -0.035777587443590164, -0.03907598555088043, 0.004806068260222673, -0.04361018165946007, -0.013984006829559803, -0.024914976209402084, 0.012565040960907936, 0.009184879250824451, 0.018423715606331825, 0.00038276976556517184, 0.019381273537874222, -0.015098114497959614, -0.004836217034608126, -0.02182825468480587, 0.031835854053497314, -0.019779475405812263, -0.04638688266277313, 0.0564604289829731, -0.014030924066901207, -0.042673442512750626, 0.042454518377780914, 0.05422452092170715, -0.02457481622695923, 0.01401438470929861, 0.016498690471053123, -0.06302470713853836, 0.05716864392161369, -0.05157078057527542, 0.013872208073735237, 0.0006338672828860581, -0.025256209075450897, 0.01398619543761015, -0.024641593918204308, 0.013627537526190281, -0.006753387860953808, -0.005851426161825657, -0.05202155560255051, -0.06302375346422195, -0.016876092180609703, 0.012537471018731594, -0.029583223164081573, -0.013405156321823597, 0.0081928176805377, -0.02311522699892521, 0.0037403034511953592, -0.02005823515355587, 0.029205704107880592, 0.004595906473696232, -0.006593572441488504, -0.0473579466342926, 0.004585936199873686, -0.023289501667022705, 0.04382101818919182, 0.0177597776055336, -0.023984959349036217, 0.031349167227745056, -0.024363961070775986, -0.0011378196068108082, -0.04386892169713974, 0.022505395114421844, -0.037278059870004654, 0.014234255999326706, -0.028337256982922554, -0.002726407954469323, 0.0008393858443014324, 0.017848022282123566, 0.05634383112192154, 0.006364917382597923, 0.017603768035769463, -0.020402079448103905, -0.015870483592152596, 0.031324904412031174, 0.03060992993414402, -0.019962791353464127, -0.011015350930392742, 0.05858727917075157, 0.02565571665763855, 0.048782359808683395, -0.007659983355551958, -0.05139738693833351, -0.03804933279752731, -0.048077601939439774, 0.0010693644871935248, -0.04668191075325012, -0.03668752685189247, -0.04484974592924118, -0.0102017717435956, -0.04618377611041069, 0.03177383914589882, 0.03329767286777496, -0.053188521414995193, -0.006265402305871248, -0.029143715277314186, -0.01342182606458664, -0.00850965827703476, -0.012690307572484016, -0.03141780570149422, -0.019083861261606216, -0.03269954398274422, 0.048110660165548325, -0.008908409625291824, 0.02547735534608364, -0.013211218640208244, 0.02098429575562477, 0.0002059159887721762, -0.0047647664323449135, -0.03603827953338623, -0.041863441467285156, -0.032313816249370575, -0.005078320391476154, 0.0031763652805238962, 0.018413497135043144, -0.05769481509923935, 0.040459997951984406, -0.05373690277338028, -0.014400935731828213, -0.028228821232914925, 0.012049025855958462, -0.019285524263978004, 0.01402239315211773, 0.06380042433738708, -0.00006272563769016415, 0.025032373145222664, -0.01585111767053604, 0.06573334336280823, 0.012020551599562168, -0.01352704782038927, -0.032387953251600266, -0.04879782348871231, -0.04786458984017372, -0.06236361339688301, 0.044897448271512985, -0.03557136282324791, -0.041703201830387115, -0.0232233889400959, -0.002736052731052041, 0.012325070798397064, -0.009004750289022923, 0.03821539506316185, 0.06419609487056732, -0.0036027871537953615, -0.0019467838574200869, -0.024367662146687508, 0.030266370624303818, 0.04877517372369766, -0.03549949452280998, -0.008026289753615856, -0.008164169266819954, -0.04979149252176285, 0.005248971749097109, -0.040726251900196075, -0.04302239045500755, -0.046227484941482544, 0.003507845336571336, 0.060478270053863525, 0.0053399535827338696, 0.032752636820077896, 0.008864778093993664, -0.02908683568239212, -0.035410430282354355, 0.04337689280509949, -0.003731649136170745, 0.02569541335105896, 0.03572247922420502, 0.0008848251891322434, -0.014959853142499924, 0.016392536461353302, 0.006658321712166071, -0.006342042703181505, -0.04721648246049881, 0.06047159060835838, -0.016349656507372856, -0.043879184871912, 0.02947339229285717, 0.040150415152311325, -0.07500061392784119, -0.010776340961456299, -0.025283174589276314, -0.0007301386212930083, 0.02219359762966633, -0.01946975849568844, 0.015218110755085945, -0.019257627427577972, -0.013668403029441833, 0.0008591781952418387, 0.04151465371251106, -0.015393154695630074, 0.05788995325565338, 0.0035987659357488155, 0.03444967791438103, -0.01714422181248665, 0.039824679493904114, 0.02063766121864319, -0.0017298141028732061, -0.05090008303523064, -0.025034191086888313, 0.009348513558506966, 0.026361262425780296, 0.011173462495207787, 0.04219043627381325, -0.030856475234031677, 0.005570408888161182, 0.0038993540219962597, 0.0398864708840847, 0.0013990350998938084, 0.006740218494087458, -0.02394820749759674, 0.019005635753273964, -0.018341219052672386, -0.041865866631269455, -0.06853354722261429, 0.03180054947733879, 0.02993817813694477, 0.017071858048439026, -0.03678252920508385, -0.003065794939175248, 0.06294812262058258, 0.009026526473462582, -0.02644610032439232, -0.07567057013511658, -0.052061282098293304, -0.04742595925927162, -0.047973886132240295, -0.047046467661857605, -0.023290887475013733, -0.008992137387394905, 0.013924886472523212, -0.003206379944458604, -0.0006831297650933266, -0.02084795944392681, 0.008331885561347008, -0.00415587006136775, 0.026381822302937508, -0.035960327833890915, 0.046586859971284866, -0.04706213250756264, -0.04426103085279465, -0.031963977962732315, 0.010860429145395756, -0.03015231154859066, -0.0073793502524495125, -0.04490400105714798, 0.03511284291744232, 0.0018269598949700594, 0.019659144803881645, -0.005339351948350668, 0.015736162662506104, -0.02413666620850563, -0.02123885788023472, -0.05319284647703171, 0.034473665058612823, 0.0065267812460660934, 0.047410108149051666, 0.038358911871910095, -0.05198543518781662, 0.010146317072212696, 0.008594011887907982, -0.010359114035964012, -0.026890981942415237, -0.001176541205495596, 0.035077475011348724, 0.01954503357410431, -0.020008480176329613, -0.01932467706501484, 0.01217599492520094, -0.06251931190490723, 0.01352894026786089, 0.003506397595629096, -0.007918931543827057, 0.00883353129029274, -0.006825136486440897, 0.005141579546034336, 0.0326407253742218, 0.017977531999349594, 0.010313371196389198, -0.00007057108450680971, 0.00590854836627841, 0.001201801234856248, -0.004123172722756863, 0.008919031359255314, 0.01711384579539299, -0.010061774402856827, -0.040783099830150604, 0.026734063401818275, 0.033222801983356476, -0.014290430583059788, 0.0035226924810558558, -0.011129036545753479, -0.01650930754840374, -0.04952043667435646, -0.034608859568834305, -0.026686476543545723, 0.0497954823076725, 0.019083768129348755, -0.017149535939097404, 0.011023047380149364, -0.03433922678232193, -0.048111673444509506, 0.008216149173676968, -0.08111728727817535, -0.017454395070672035, 0.027006568387150764, -0.0018892089137807488, -0.034501813352108, -0.01432114839553833, -0.044080186635255814, -0.007690370548516512, -0.022190215066075325, -0.00017249728261958808, -0.022109847515821457, 0.020124269649386406, -0.012496178038418293, 0.017821382731199265, 0.014265857636928558, -0.0008774769958108664, 0.020427566021680832, 0.015190194360911846, -0.03314877673983574, -0.05145060271024704, 0.002443489618599415, -0.008905138820409775, -0.006235419772565365, -0.01675395667552948, 0.006824609823524952, 0.002022112486883998, -0.0028839209116995335, 0.021836355328559875, -0.00981393363326788, 0.012493063695728779, -0.006701312027871609, 0.028094889596104622, 0.0079978471621871, -0.020340323448181152, -0.006516378838568926, 0.01281107496470213, 0.0028984704986214638, -0.05552415922284126, -0.06822744756937027, 0.056745562702417374, 0.033380672335624695, -0.02306373417377472, 0.050838131457567215, 0.022807173430919647, 0.030023248866200447, -0.0008020595996640623, 0.025811001658439636, -0.015703871846199036, 0.050282225012779236, 0.04158272594213486, 0.03558177873492241, -0.015067451633512974, 0.03737643361091614, 0.04574757441878319, -0.0023273290134966373, 0.000035370852856431156, -0.0036090631037950516, 0.003709514159709215, 0.0044772871769964695, -0.01686062663793564, -0.04987339302897453, -0.002499018097296357, 0.026321228593587875, -0.03374972566962242, -0.012351522222161293, -0.017982209101319313, -0.008169533684849739, 0.006198469083756208, -0.02015664055943489, 0.06208633631467819, -0.016339056193828583, 0.02211748994886875, -0.009192592464387417, -0.016836214810609818, 0.014872588217258453, 0.04299173876643181, 0.007931950502097607, 0.021334288641810417, 0.049197159707546234, 0.01841799169778824, -0.006381211336702108, 0.01928606443107128, 0.016032082960009575, -0.003674372797831893, -0.06457789987325668, 0.029279913753271103, 0.03677617013454437, 0.0021220508497208357, -0.04139624536037445, 0.005761813372373581, -0.05371231958270073, 0.04633323848247528, -0.045965567231178284, -0.06485956162214279, 0.03667197376489639, -0.045107852667570114, -0.0315561443567276, -0.040361449122428894, 0.01766626350581646, -0.030456233769655228, -0.010465973056852818, 0.03141108900308609, -0.008519144728779793, -0.01122054923325777, 0.011858738027513027, 0.014445497654378414, 0.06251838803291321, 0.023311519995331764, 0.06093795970082283, -0.019947700202465057, 0.03808063641190529, 0.06331698596477509, -0.014045818708837032, -0.02099039778113365, 0.024043217301368713, -0.00323225324973464, -0.027508853003382683, 0.0027188800740987062, -0.03618519753217697, 0.02673339657485485, 0.0016388222575187683, -0.030289215967059135, -0.031539879739284515, 0.06800731271505356, 0.018735729157924652, -0.039905697107315063, -0.014983829110860825, 0.033552806824445724, -0.04283689334988594, 0.024440260604023933, 0.004472328815609217, 0.030028613284230232, 0.02448410540819168, -0.01746455207467079, -0.05218691751360893, -0.018359631299972534, 0.00641366234049201, -0.043906014412641525, 0.04985443502664566, -0.027737867087125778, -0.015183704905211926, 0.0006614432204514742, -0.03521991893649101, -0.013490826822817326, 0.014916823245584965, -0.028239576146006584, -0.07079754769802094, 0.027546284720301628, 0.04832956939935684, -0.0011990315979346633, -0.002735322341322899, -0.03337542340159416, -0.03325853496789932, 0.04547618329524994, 0.05871616303920746, -0.014779760502278805, 0.03973512351512909, 0.018448421731591225, -0.007493761368095875, 0.0270401444286108, -0.03683751821517944, 0.022638991475105286, -0.0015762043185532093, -0.009702906012535095, -0.02126413583755493, 0.023172639310359955, -0.014371397905051708, -0.06611736118793488, 0.024417819455266, 0.04810623452067375, 0.02640403062105179, -0.011502891778945923, -0.055727362632751465, 0.008537939749658108, -0.03390868008136749, -0.012411833740770817, -0.012152507901191711, 0.012296327389776707, -0.014788483269512653, -0.015437213703989983, -0.004557209089398384, -0.06839294731616974, 0.14630523324012756, 0.05235419422388077, 0.01942531205713749, 0.014889468438923359, 0.006831389386206865, 0.03908367455005646, 0.025305699557065964, -0.031288936734199524, -0.015245035290718079, 0.007457277737557888, 0.03619440644979477, 0.011408934369683266, 0.019041158258914948, 0.026494760066270828, 0.03150153160095215, 0.035286933183670044, -0.06003577262163162, 0.007653212174773216, 0.012451572343707085, -0.025472601875662804, -0.044463977217674255, 0.044878698885440826, -0.0035479310899972916, 0.01973818801343441, -0.017494119703769684, -0.001505306689068675, 0.019131066277623177, -0.0744965597987175, -0.016468660905957222, -0.026130402460694313, 0.020564666017889977, -0.029343698173761368, 0.05661139637231827, -0.02485787123441696, -0.03244583308696747, 0.05099544674158096, -0.0007222158019430935, -0.014292754232883453, 0.00636383006349206, 0.030642200261354446, -0.026047078892588615, -0.0002646254433784634, 0.021762926131486893, -0.022551653906702995, 0.0018359679961577058, 0.040074195712804794, -0.06906287372112274, -0.011573589406907558, 0.014100207947194576, -0.032430656254291534, 0.06894350796937943, -0.031842321157455444, 0.031893935054540634, -0.010284926742315292, -0.06399963796138763, 0.006845720577985048, 0.027473509311676025, -0.010312914848327637, -0.005039502400904894, 0.027035342529416084, 0.044807273894548416, -0.00952573586255312, 0.005956424865871668, 0.05016706883907318, -0.0066328817047178745, 0.017894074320793152, 0.017166845500469208, 0.019804589450359344, -0.010267526842653751, -0.03329191356897354, -0.010001388378441334, 0.004425195977091789, 0.005985813215374947, -0.03317141905426979, 0.05592387542128563, 0.009713327512145042, -0.018760960549116135, 0.014799902215600014, 0.02560051903128624, -0.014599624089896679, -0.03218814358115196, -0.06495358049869537, -0.025242114439606667, 0.010301806032657623, 0.034297697246074677, 0.014202452264726162, -0.043832261115312576, -0.03759024292230606, -0.017227226868271828, 0.04184567928314209, 0.046673886477947235, 0.02277190610766411, 0.017321063205599785, -0.0150316022336483, -0.00867321714758873 ]
EBay has announced that effective February 1, 2015 it will be shutting down all MagetnoGo and ProStores accounts to focus more on its larger clients. This move of course puts a lot of small online retailers in to a bit of a situation as the thought of having to find a new hosting provider and ecommerce portal to run and manage its stores can be a daunting task as it involves researching and evaluating several m-commerce services platforms as well as finding the right service provider to help you through the entire ecommerce migration process. This entire process doesn't have to be as tedious as sounds. Benchmark IT Solutions ecommerce team of Business Analysts, Ecommerce Specialist and Ecommerce Developers can help you put together the right ecommerce plan to quickly and painlessly migrate your online store. In fact, now is the perfect time to take advantage of this upcoming change. It is the right time to consider implementing all the changes and enhancements you have been putting off these past few years. You can now give your out dated ecommerce site a new look and feel to match current design trends, making it responsive for your customers who are on the go, fix the product details page to increase conversion, or fine tune the checkout process to reduce your shopping cart abandonment rate. Our team of Ecommerce Specialist will work with you to evaluate your current store, make recommendations, create a plan of action and outline the migration strategy for your online store to an ecommerce platform that best fits your current and growing ecommerce needs. One such platform to consider is the Magento Community Edition. If you are already comfortable with essayswriters.biz the hosted version of MagentoGo, you should enjoy working with Magento's Community Edition even more as this free and the open source version allows you more control and flexibility over where it's hosted (in house or offsite), the features you would like integrated and customized as well as more control over the designs of your site. If you have a high enough sales volume, Magento Enterprise might be a better fit for you. Either way, both platforms will allow you to create a unique shopping experience for your online customers and it's a platform that will continue to grow with your ecommerce store as your product catalog and needs expand. With an abundance of free APIs to integrate and a huge community of developers who are continuously finding new ways to add more features to improve the user experience, you can rest a sure that your online store will be continuously performing at its optimal best. The Benchmark team can help you prepare now for this upcoming ecommerce migration from MagentoGo and ProStores to Magneto Community or Enterprise Edition. Please feel free to contact us if you would like to discuss your migration plans. One of our ecommerce specialists will be happy to go over all your options.
[ -0.0014989749761298299, -0.00323139107786119, -0.058707110583782196, 0.018180303275585175, -0.027530839666724205, -0.012631868943572044, 0.011885375715792179, 0.0243272315710783, 0.031154124066233635, 0.025215940549969673, 0.020452575758099556, 0.024959418922662735, 0.00956607423722744, -0.029007090255618095, -0.009229994378983974, 0.015101161785423756, -0.008453832007944584, -0.015856333076953888, -0.02737201377749443, -0.0026400675997138023, 0.00178156653419137, 0.0046058110892772675, -0.07472431659698486, -0.03645433485507965, -0.006663300096988678, 0.02595687098801136, 0.011892712675035, -0.020350191742181778, 0.08934114873409271, 0.055764615535736084, -0.05221318081021309, -0.05232489854097366, 0.03619494289159775, -0.041687872260808945, -0.015071488916873932, 0.00574434595182538, 0.026333173736929893, -0.031063247472047806, -0.03456376865506172, -0.06246201694011688, -0.004628313239663839, -0.022331135347485542, 0.03332538902759552, -0.01931963488459587, -0.06644191592931747, 0.011432807892560959, -0.008999842219054699, -0.03379291668534279, 0.02522793784737587, -0.0362929068505764, 0.006964128464460373, -0.007362002972513437, 0.007000206504017115, 0.019038163125514984, -0.0026671946980059147, 0.007420058827847242, 0.004499443806707859, 0.005136291962116957, -0.03511456400156021, 0.020056793466210365, 0.049714818596839905, 0.013777434825897217, 0.05093434080481529, -0.04338424652814865, 0.03518703207373619, 0.030262161046266556, -0.026915207505226135, -0.03549734130501747, 0.008218960836529732, -0.003596619702875614, -0.007001571357250214, 0.004863644018769264, 0.01512849424034357, -0.01993466168642044, -0.010608908720314503, 0.003669610945507884, -0.012581105343997478, -0.00708163483068347, 0.03746398538351059, 0.007846277207136154, 0.032873257994651794, 0.058601826429367065, 0.0176678616553545, 0.0076324124820530415, -0.07509595900774002, -0.005736581515520811, 0.006187703926116228, 0.002268593292683363, -0.0007369727827608585, -0.014392692595720291, 0.015036049298942089, 0.0562826432287693, 0.049180880188941956, 0.01064871996641159, 0.03021448478102684, 0.0578366219997406, -0.02562652714550495, 0.02901984564960003, 0.021988457068800926, 0.001720924163237214, 0.016684694215655327, 0.011272266507148743, 0.0023962073028087616, 0.030325675383210182, -0.047611720860004425, -0.0014715680154040456, 0.002658182056620717, -0.022946320474147797, -0.0030220511835068464, -0.0412108413875103, -0.0003072479157708585, -0.011100399307906628, 0.010306918062269688, -0.019006812945008278, -0.009521104395389557, 0.04608495533466339, -0.010231127962470055, 0.01884259097278118, -0.020810402929782867, 0.005999731365591288, 0.0069150058552622795, 0.017060386016964912, 0.01288367249071598, -0.04543572664260864, 0.03504909947514534, -0.05179516598582268, -0.02600841410458088, 0.05926870182156563, -0.040843572467565536, -0.00015471858205273747, -0.0021227276884019375, -0.03135111927986145, 0.012176254764199257, 0.03965866193175316, 0.02866414375603199, 0.024724800139665604, 0.02980136126279831, 0.04220956191420555, 0.04249182343482971, -0.06491227447986603, 0.01864377036690712, 0.0387275367975235, 0.0007064849487505853, 0.08008485287427902, -0.01716720312833786, 0.03984087333083153, -0.009879170916974545, -0.02017500251531601, -0.0492723323404789, 0.034238819032907486, -0.014571837149560452, 0.01601051166653633, -0.019331572577357292, 0.01070068683475256, 0.024252325296401978, 0.0043150754645466805, 0.005392745137214661, 0.011821726337075233, 0.043475113809108734, 0.03230356425046921, -0.01652669720351696, 0.02009246125817299, 0.01284355390816927, 0.030643682926893234, -0.04985310509800911, 0.03279192000627518, -0.029132965952157974, -0.020243020728230476, -0.01692286506295204, -0.04133957251906395, 0.012853376567363739, 0.029492786154150963, -0.013433529995381832, 0.0010841472540050745, 0.03757651522755623, 0.0335717536509037, 0.041171323508024216, -0.00292667536996305, 0.03579840809106827, 0.03965582698583603, -0.02885480970144272, -0.002970087341964245, -0.012485036626458168, 0.06921908259391785, -0.010053236968815327, 0.015404928475618362, 0.02855396829545498, -0.020960254594683647, -0.015790721401572227, -0.02907286025583744, 0.012272203341126442, 0.02918083779513836, -0.01339777186512947, 0.02706952579319477, 0.009958088397979736, -0.0041866363026201725, -0.007307225838303566, 0.01579335145652294, -0.012874700129032135, -0.08165433257818222, -0.0355873703956604, 0.05875147506594658, -0.04997514188289642, 0.01673494279384613, 0.008317728526890278, -0.04007923603057861, -0.0036238781176507473, 0.03339198976755142, -0.06173219904303551, -0.019898131489753723, 0.07084015011787415, 0.022848865017294884, -0.01869569532573223, -0.03379349783062935, 0.019143102690577507, -0.03190479800105095, -0.049276962876319885, 0.06403828412294388, -0.0063226837664842606, 0.008023296482861042, 0.002211908111348748, 0.026021376252174377, 0.03781979903578758, 0.024077225476503372, 0.011833292432129383, 0.00928587093949318, -0.007572430185973644, 0.05164555832743645, -0.017882617190480232, -0.010292278602719307, 0.001345799071714282, 0.03529149666428566, -0.007951316423714161, 0.06341730803251266, 0.053500089794397354, 0.010979636572301388, 0.06093838810920715, 0.06034324690699577, -0.041816532611846924, 0.04274756461381912, 0.030603524297475815, -0.0033438364043831825, 0.036272305995225906, 0.008310491219162941, -0.03599318861961365, 0.01868532970547676, 0.011826973408460617, 0.018394188955426216, -0.01093598548322916, 0.03311664238572121, -0.04791794344782829, 0.029881425201892853, 0.018328623846173286, 0.03770736977458, -0.03871573135256767, 0.004556361120194197, 0.024545818567276, 0.05041198804974556, -0.024994809180498123, 0.011350722052156925, 0.015620362013578415, 0.036738645285367966, -0.001736920326948166, -0.012065513990819454, 0.018462764099240303, 0.018564583733677864, 0.010264244861900806, 0.007817675359547138, -0.04032989591360092, -0.03321564942598343, -0.06104493886232376, -0.040053557604551315, -0.03878648951649666, -0.03850169852375984, -0.031203018501400948, 0.013338704593479633, 0.014845343306660652, -0.02527463808655739, 0.025479108095169067, -0.017427660524845123, 0.0025037825107574463, -0.019019266590476036, 0.018977824598550797, 0.01382387150079012, -0.0005580534343607724, 0.04139852896332741, -0.03455023095011711, 0.022499345242977142, -0.019437463954091072, 0.035448744893074036, -0.042714621871709824, 0.026739154011011124, 0.019807636737823486, -0.03481948748230934, 0.002514016581699252, -0.008076837286353111, -0.00685775326564908, 0.02039605751633644, -0.0428701750934124, -0.04965770244598389, -0.010898157022893429, 0.008762876503169537, 0.021199366077780724, 0.007246216293424368, -0.03308248519897461, 0.04197987541556358, 0.006696165539324284, -0.031572502106428146, 0.059478528797626495, 0.013789176940917969, -0.053841691464185715, 0.04006415233016014, 0.049858611077070236, -0.020517826080322266, -0.0628742054104805, 0.024353347718715668, 0.035591427236795425, -0.01653417944908142, -0.010346543043851852, -0.024539032950997353, -0.027171067893505096, 0.0015090552624315023, 0.019883617758750916, 0.005616329610347748, -0.029417064040899277, 0.03058835305273533, 0.017473066225647926, -0.08333215862512589, 0.03364306315779686, -0.03465450555086136, -0.025719529017806053, -0.038724634796381, -0.01585511490702629, -0.005119785666465759, 0.05515853688120842, 0.024999696761369705, -0.0006149750552140176, -0.020247362554073334, -0.00908644124865532, 0.03134666755795479, 0.055554792284965515, -0.05277899652719498, 0.03347405418753624, 0.0444195494055748, 0.010808484628796577, 0.01083471067249775, 0.037617702037096024, -0.039978619664907455, -0.005207779351621866, 0.003274808172136545, -0.007385865319520235, 0.018125856295228004, 0.02339453436434269, 0.02158685214817524, 0.042555421590805054, 0.03286202624440193, -0.05499196797609329, -0.013329602777957916, -0.006263031158596277, 0.008728387765586376, 0.027622152119874954, 0.012390620075166225, 0.004486158024519682, -0.02978447638452053, -0.02164124883711338, -0.04374608024954796, 0.0151015380397439, 0.02475196309387684, 0.04528893902897835, -0.08675947785377502, 0.05585053190588951, 0.0010959196370095015, -0.0577160082757473, 0.04851023480296135, -0.03827667981386185, -0.005530419759452343, 0.03350133076310158, -0.023445522412657738, 0.04705427959561348, -0.061194900423288345, 0.004899891093373299, -0.01776508241891861, 0.002349929418414831, 0.016734763979911804, -0.005215154029428959, 0.00819778349250555, -0.02010643482208252, -0.008370892144739628, -0.016519682481884956, -0.03586684167385101, -0.027816051617264748, -0.0003315499343443662, 0.007087501231580973, -0.015007331036031246, -0.05441401153802872, -0.04290241375565529, 0.022104663774371147, 0.03938678279519081, 0.052381958812475204, -0.019136935472488403, 0.03167850151658058, -0.0056296456605196, 0.010566271841526031, 0.02231653593480587, 0.010589485056698322, 0.005977881606668234, -0.060012463480234146, 0.036624323576688766, 0.03371886909008026, -0.004502227529883385, -0.036691684275865555, -0.05634011700749397, -0.014880179427564144, 0.0413806289434433, -0.0006811099592596292, -0.02155550941824913, -0.04150128364562988, -0.023885179311037064, 0.0055968002416193485, 0.031276460736989975, -0.017623458057641983, -0.030822878703475, -0.052779749035835266, 0.05226244404911995, 0.01955476403236389, -0.05467493459582329, -0.008928234688937664, -0.06949832290410995, 0.019802361726760864, 0.05051638185977936, -0.007464401423931122, -0.029224315658211708, -0.006472865119576454, -0.04118051007390022, -0.008578673005104065, 0.020714590325951576, 0.030979745090007782, 0.007285590283572674, 0.00309684406965971, -0.0488535538315773, -0.009895877912640572, 0.008906088769435883, -0.0346185639500618, -0.025969190523028374, 0.025600749999284744, 0.022107893601059914, 0.007695628330111504, 0.0491570383310318, 0.023186640813946724, -0.014211657457053661, 0.03245659917593002, -0.04323267564177513, 0.01585444062948227, -0.007707734126597643, 0.0006858783890493214, -0.008907169103622437, 0.008441020734608173, 0.0036358421202749014, 0.03762899339199066, -0.01003988180309534, 0.030970141291618347, -0.0028615561313927174, 0.033262964338064194, -0.047445233911275864, -0.03452754020690918, 0.027878522872924805, 0.0046116323210299015, -0.03688248246908188, 0.019568873569369316, 0.04311027750372887, -0.021828999742865562, 0.03235112130641937, 0.0157430712133646, -0.0023515112698078156, 0.03569689393043518, -0.03489002585411072, 0.021059073507785797, 0.0012142787454649806, -0.04792509600520134, 0.00019965811225119978, -0.03041584976017475, 0.03977110609412193, 0.002524095820263028, -0.0024553798139095306, -0.05462556704878807, -0.051565419882535934, -0.03946744650602341, 0.01861274428665638, 0.00014502079284284264, 0.016330232843756676, -0.014646814204752445, -0.0023624454624950886, 0.023455746471881866, 0.005999547895044088, 0.0022066705860197544, -0.0026246614288538694, 0.004923641216009855, -0.00325568113476038, 0.026627512648701668, 0.028531095013022423, 0.021531537175178528, -0.03761103376746178, -0.04649028554558754, 0.012336730025708675, -0.0032313840929418802, -0.026026427745819092, -0.0619979128241539, -0.00020468457660172135, -0.015314377844333649, -0.0067330277524888515, -0.008331184275448322, -0.015059199184179306, -0.03618146851658821, 0.03999955952167511, 0.041486117988824844, -0.013167637400329113, -0.0028023256454616785, 0.030574530363082886, -0.053127869963645935, 0.05078911408782005, 0.023820927366614342, -0.06359938532114029, -0.037090808153152466, 0.026011759415268898, 0.023487448692321777, 0.07214342057704926, -0.002571454271674156, -0.016091978177428246, -0.023027965798974037, -0.05547470226883888, -0.0068672592751681805, -0.021902766078710556, -0.03229077532887459, -0.029892535880208015, -0.02404874935746193, -0.016200410202145576, 0.05825262889266014, 0.03363921865820885, 0.01862584985792637, -0.03019155189394951, -0.03849044442176819, 0.013574289157986641, -0.05633958801627159, -0.009102988988161087, -0.016557706519961357, 0.004198429640382528, -0.022380279377102852, 0.07318488508462906, -0.001737708691507578, 0.015844201669096947, -0.019120819866657257, 0.04444132372736931, 0.017526093870401382, 0.005937661975622177, -0.04988139122724533, -0.04550623521208763, 0.008249456994235516, -0.026720870286226273, 0.032520730048418045, 0.0018843811703845859, -0.05711714178323746, 0.05854255333542824, -0.025805745273828506, 0.020968569442629814, -0.0059759486466646194, -0.011512982659041882, -0.03343146666884422, -0.02581166848540306, 0.02507033571600914, -0.0077481805346906185, 0.0025184694677591324, -0.024334754794836044, 0.04643701761960983, 0.03400147333741188, -0.000010910299351962749, -0.024782413616776466, -0.025449324399232864, -0.05253100395202637, -0.01659587398171425, -0.005148033611476421, -0.05538873374462128, -0.029506897553801537, -0.03309893608093262, -0.03486444056034088, 0.017566557973623276, -0.0035622604191303253, 0.042788080871105194, 0.0763707086443901, -0.0149850407615304, -0.018188588321208954, -0.013079347088932991, 0.013692821376025677, 0.0326378233730793, -0.00005369112113839947, 0.017181236296892166, -0.024178441613912582, -0.04610811918973923, -0.03847713768482208, -0.07117141783237457, -0.039349984377622604, -0.02739386446774006, -0.005068665836006403, 0.06382954120635986, -0.043246373534202576, 0.04661910980939865, -0.02759392373263836, -0.06294398754835129, -0.036271438002586365, 0.0371098518371582, 0.0110505111515522, 0.023492425680160522, 0.0527135506272316, 0.01706225611269474, -0.012069322168827057, 0.013748633675277233, -0.002438533352687955, 0.04404127597808838, -0.0342542864382267, 0.04664948210120201, 0.021423151716589928, -0.045973099768161774, 0.043284524232149124, 0.0583653524518013, -0.05161229521036148, -0.06543370336294174, 0.002329712500795722, 0.0009643940138630569, -0.0012920546578243375, -0.04148302972316742, 0.031000323593616486, -0.018856603652238846, 0.017615407705307007, 0.04800299555063248, 0.024591419845819473, -0.01863226294517517, 0.033660855144262314, 0.04072985053062439, 0.03273680806159973, -0.053609155118465424, -0.024208780378103256, 0.02241441421210766, 0.003745894879102707, -0.019831998273730278, -0.033531054854393005, -0.006730244494974613, 0.0067787859588861465, 0.00715648801997304, 0.04614603519439697, 0.0053967684507369995, 0.021172525361180305, 0.04793499410152435, 0.042202215641736984, 0.015372195281088352, 0.02799702063202858, 0.027725977823138237, 0.012992766685783863, -0.03899093344807625, -0.05397994443774223, -0.03766816109418869, -0.007882531732320786, -0.006844237446784973, 0.025392398238182068, -0.041945502161979675, 0.023946356028318405, 0.037088192999362946, 0.016316678375005722, -0.016528364270925522, -0.04741770774126053, -0.03025362640619278, -0.05281650647521019, -0.03350857272744179, -0.010428245179355145, -0.021305477246642113, -0.02658735401928425, -0.016561871394515038, -0.0019969504792243242, -0.02613370679318905, -0.020600952208042145, 0.029151054099202156, -0.00863212812691927, -0.018251774832606316, -0.0007190742180682719, 0.023950446397066116, -0.054273128509521484, -0.06068787723779678, -0.048826754093170166, 0.005268021486699581, 0.007567712105810642, 0.0013918493641540408, -0.040777090936899185, 0.008795477449893951, -0.0036030029878020287, 0.014943329617381096, 0.005320454481989145, 0.018448153510689735, -0.03782530874013901, -0.06267762929201126, -0.002795897191390395, 0.02218230441212654, -0.016826150938868523, 0.02965504862368107, 0.03103608451783657, -0.0272342748939991, 0.04738140478730202, -0.007036058697849512, -0.01197186578065157, -0.045643363147974014, 0.03507952392101288, 0.005740842316299677, -0.013186296448111534, -0.06827590614557266, -0.008211436681449413, 0.000047876084863673896, -0.01787826418876648, 0.013103206641972065, -0.012178425677120686, -0.010461986996233463, -0.013663585297763348, -0.032692767679691315, -0.04330536723136902, 0.03425547853112221, 0.00183798186480999, 0.0019857685547322035, -0.013866099528968334, 0.04247565194964409, 0.016330935060977936, -0.004907436668872833, 0.020952396094799042, 0.029806802049279213, -0.00963720865547657, -0.0333147868514061, 0.010472441092133522, 0.018248042091727257, -0.023242367431521416, 0.02655005268752575, -0.016436196863651276, 0.0035579027608036995, -0.017702491953969002, -0.02860860712826252, 0.015184428542852402, 0.06549317389726639, -0.009310047142207623, 0.01256752759218216, 0.02750007063150406, -0.0026226479094475508, -0.013165304437279701, 0.022731507197022438, -0.05288747698068619, -0.02210504747927189, 0.008761472068727016, -0.004768901504576206, 0.029230287298560143, 0.0006557878223247826, -0.018574729561805725, 0.004065800923854113, -0.007126553915441036, -0.014951520599424839, 0.02816183492541313, 0.010158789344131947, -0.017953170463442802, 0.025678984820842743, -0.03765491023659706, -0.018746595829725266, 0.030822452157735825, 0.07171987742185593, -0.016854267567396164, -0.04241853952407837, -0.0013186389114707708, 0.021672656759619713, 0.00021123372425790876, 0.003968019969761372, 0.0016624941490590572, -0.0023615718819200993, 0.01163131557404995, 0.027122681960463524, -0.006108625326305628, 0.026635045185685158, -0.013648809865117073, 0.031778398901224136, -0.0008142315782606602, -0.01188316848129034, -0.033599141985177994, 0.03861350938677788, 0.019309330731630325, -0.01695876382291317, -0.02733423374593258, 0.012363357469439507, 0.04336840286850929, -0.00691734766587615, 0.04750080779194832, 0.008242959156632423, 0.03360987454652786, -0.023417051881551743, 0.011824086308479309, -0.02733355015516281, 0.051625192165374756, 0.03098297491669655, 0.029777180403470993, -0.017503904178738594, 0.02818611077964306, 0.0545479990541935, 0.0025729548651725054, -0.023693038150668144, 0.023036209866404533, 0.02801177278161049, -0.027048839256167412, -0.019118379801511765, -0.01797531731426716, 0.015836723148822784, -0.015113000757992268, -0.014959712512791157, 0.024943357333540916, -0.020763732492923737, -0.007866356521844864, -0.026232745498418808, -0.019256381317973137, 0.05433201417326927, -0.031700316816568375, -0.010533483698964119, 0.000010318259228370152, -0.005502982996404171, 0.010969240218400955, 0.03009016625583172, -0.020852230489253998, 0.0049056122079491615, 0.01673446223139763, 0.007548954803496599, -0.0011168865021318197, 0.034617625176906586, 0.059074580669403076, 0.020843377336859703, -0.030094074085354805, -0.02690545842051506, 0.016539929434657097, -0.035460278391838074, -0.018847215920686722, 0.015996361151337624, -0.010883313603699207, 0.032684359699487686, -0.033722225576639175, -0.015344816260039806, 0.02381131425499916, -0.048214733600616455, -0.024839257821440697, -0.04698040336370468, 0.023519570007920265, -0.04908178001642227, -0.011209448799490929, 0.031504955142736435, -0.016791565343737602, -0.02185494638979435, 0.03602210059762001, 0.007984758354723454, 0.04531640186905861, 0.01507936418056488, 0.04979588836431503, -0.03140420466661453, 0.045752886682748795, 0.0468066930770874, -0.027864808216691017, 0.0054064104333519936, 0.035962071269750595, -0.01511817704886198, -0.019058700650930405, 0.0013453797437250614, -0.03011474572122097, -0.03877405449748039, 0.011740551330149174, -0.034661319106817245, 0.0025233691558241844, 0.04730673134326935, 0.011340462602674961, -0.0543585941195488, -0.029216041788458824, 0.05839492753148079, -0.05472569167613983, 0.003849106142297387, 0.03691166639328003, 0.014469794929027557, -0.01680109091103077, -0.04457314312458038, -0.018659159541130066, -0.06442268192768097, -0.009679164737462997, -0.050952497869729996, 0.025587406009435654, 0.009528140537440777, -0.04044707119464874, -0.07035674899816513, -0.02723751775920391, -0.01524659525603056, -0.00682427454739809, -0.05019083619117737, -0.030552100390195847, 0.04210610315203667, 0.02980431169271469, -0.0018060959409922361, 0.009052162989974022, 0.0050533125177025795, -0.0035183592699468136, 0.05197152867913246, 0.08709592372179031, 0.02365507371723652, 0.03000638261437416, 0.0471118800342083, 0.015252300538122654, 0.003021350596100092, -0.0386897549033165, 0.036227937787771225, -0.029500996693968773, 0.0022734052035957575, -0.009087887592613697, 0.0006112268310971558, -0.018819721415638924, -0.026899071410298347, -0.015998385846614838, 0.07529532164335251, 0.030276430770754814, -0.045183442533016205, -0.052819881588220596, 0.01219708751887083, -0.04712812229990959, -0.02295568212866783, -0.03120660036802292, 0.017792314291000366, 0.01128822285681963, -0.032751038670539856, 0.006232059560716152, -0.042314838618040085, 0.14885424077510834, 0.048717234283685684, 0.04428683966398239, 0.011780076660215855, 0.017825309187173843, 0.041974250227212906, 0.01814129389822483, -0.0028707238379865885, 0.0177773330360651, -0.03008684329688549, 0.047763798385858536, 0.002246890915557742, 0.025505058467388153, 0.013343076221644878, 0.00018214924784842879, 0.026368528604507446, -0.03826548904180527, 0.006187052000313997, 0.0167242381721735, -0.0517435148358345, -0.07883363217115402, 0.02109609916806221, 0.02105891890823841, 0.03129447624087334, -0.02362959459424019, 0.003005287842825055, 0.0030425277072936296, -0.054790426045656204, -0.005679327063262463, -0.033860549330711365, 0.020495740696787834, -0.023926248773932457, 0.02886194922029972, 0.017749488353729248, -0.04305987432599068, 0.04846486449241638, 0.026218775659799576, 0.00289199803955853, -0.010503682307898998, 0.017607348039746284, 0.004089745227247477, -0.013924422673881054, 0.04312477633357048, -0.043824419379234314, 0.01988350600004196, 0.03783329948782921, -0.03525465354323387, 0.001610133214853704, 0.024479029700160027, -0.026112543419003487, 0.05475159361958504, -0.020107312127947807, 0.02428572252392769, -0.0035695775877684355, -0.04019104689359665, 0.005681637208908796, 0.013175132684409618, -0.04929749295115471, 0.000988875050097704, -0.013554100878536701, 0.004564465023577213, 0.011094700545072556, -0.028117993846535683, 0.026238922029733658, -0.06669476628303528, 0.005542716942727566, 0.010004103183746338, 0.03141361474990845, 0.014368174597620964, -0.011720237322151661, -0.028538163751363754, -0.008188222534954548, -0.027424978092312813, -0.02695026621222496, 0.0005415435298345983, 0.024037562310695648, -0.013223722577095032, 0.05031680315732956, -0.022622909396886826, -0.01636653207242489, -0.0191048514097929, -0.036752697080373764, -0.004211720544844866, 0.00439051166176796, 0.027857927605509758, 0.040135376155376434, -0.05932043120265007, -0.0171454306691885, 0.0009908061474561691, 0.05106014758348465, 0.059806350618600845, 0.002571739722043276, -0.03113401122391224, -0.017425203695893288, 0.004819849506020546 ]
EL PASO – A little stubble on his face, a fedora hanging on an empty microphone to his right, Daniel Chacon is ready to record Words on a Wire, a KTEP-FM weekly radio show that showcases some of the best in creative writing. The show, in its fourth year, is attracting listeners throughout the borderlands and beyond. That's no surprise to the creator of the show, Chacon, a University of Texas at El Paso associate professor of creating writing and novelist who has a reputation around campus as being somewhat eccentric. A lover of reading and books since childhood (his favorite book as a child was "Danny and the Dinosaur"), several years ago Chacon began thinking about doing thought-provoking radio interviews with accomplished writers. With his fedora hanging on an empty microphone, writer Daniel Chacon is ready to record his Words on a Wire radio show on KTEP-FM. After discussing the idea with then chair of the UTEP creative writing department, Benjamin Alire Saenz, they agreed to approach El Paso's public radio station KTEP-FMA with the idea. They liked it. The first Words on a Wire show aired October 1, 2011, kicking off with an interview of Juan Felipe Herrera, California's Poet Laureate. Saenz is an internationally acclaimed poet, novelist and children's book author who won the PEN/Faulkner Award for Fiction in 2013. Together, he and Chacon showcase some of today's best creative writing through book reviews and interviews with writers. Along with humor and fun chatting with each other, Chacon and Saenz analyze books and interview writers. Not limited to local writers, the duo have interviewed writers nationwide. They have done more than 122 shows. With his humorous style, Words on a Wire brings out the best of both worlds for Chacon, the writer and the performer. Words on Wire has established not only a local following in El Paso, but also a national following through podcasts and its Facebook page, which has 513 likes. According to KTEP's latest Nielsen reports, the show, which airs at 12 p.m. on Sunday, has more than 2,400 listeners each week in the El Paso area. All the shows have been archived and can be heard at podomatic.com. According to Chacon, the show has become so successful that they are now being approached by writers who want exposure to talk about their latest work. In 2008, Chacon won the Hudson Prize, an award from independent publisher Black Lawrence Press for his collection of short stories. Each Hudson Prize recipient receives book publication, a $1000 cash award, and ten copies of the book as stated in the guidelines of the Black Lawrence Press. Chacon has published four books. His latest, "Hotel Juarez, Stories, Rooms and Loops" won the Penn Oakland Award. As a writer, Chacon said he has a lot of favorite authors he leans towards Latin American writers. Of his own work, his favorite is always the one he is currently working on. "It's like a relationship, you don't want to go back to old relationships, but be completely absorbed in the one you're in," he said. As for Word on a Wire, Chacon said he'd always wanted to create a literary show with a mix of entertainment, education and in depth discussions of writing. The quality of the program is reflected in the variety of guests they attract. "We have had poet laureates on the show, so we can get great writers on the show," Chacon said. The show recently featured recent work by Sergio Troncoso, winner of the Southwest Book Award and the International Latino Book Award for Our Lost Border: Essays on Life amid the Narco-Violence. Another recent guest was Lucha Corpi, poet laureate at Indiana University Northwest. Landis was impressed with the show and the expertise of its hosts. Landis lives in New York, and studies psychology at Barnard College. In addition to writing fiction, she has also covered interior design for the Chicago Tribune and has published six books on decorating. She prepared for her appearance on Words on a Wire by listening to recent podcasts of the program. "It seems that half the shows feature writers of color, that make it inherently diverse and a point of pride," she said. Words on a Wire's producer, Norma Martinez, is in charge of booking and finding guests for the show, as well as managing the social media for the program. An avid reader, Martinez, says when she was younger she always had a book in her hand. "I would read a 300 page book every week or two weeks," she said. Martinez, who has worked at KTEP since 1989, said she enjoys the rapport on the show. Major in Multimedia Journalism at UTEP.
[ -0.0016867438098415732, -0.014469614252448082, -0.014960033819079399, 0.007290004752576351, 0.009743628092110157, -0.01681518368422985, -0.03821461647748947, 0.002752247964963317, 0.003849293338134885, 0.005414551589637995, 0.05293942615389824, -0.015071835368871689, 0.01555747538805008, -0.04726853966712952, -0.022121768444776535, -0.019908972084522247, 0.00830407440662384, -0.007858763448894024, -0.012874328531324863, 0.009716877713799477, -0.026088779792189598, -0.005391526967287064, -0.03841257467865944, 0.0005544056184589863, -0.0046468377113342285, 0.01779116876423359, 0.0042017786763608456, -0.015165357850492, 0.06158272922039032, 0.04251758009195328, 0.009677019901573658, -0.021496092900633812, 0.02495795302093029, -0.052127670496702194, -0.013938676565885544, -0.037906330078840256, 0.04664446413516998, -0.04304228723049164, -0.0072693973779678345, -0.023428386077284813, 0.015356983989477158, -0.016188256442546844, 0.05077541247010231, -0.05054887384176254, -0.029282307252287865, -0.013612659648060799, -0.021640097722411156, -0.02012648619711399, 0.0021455634851008654, -0.04006887227296829, 0.00580410473048687, 0.0011272047413513064, 0.024699322879314423, 0.0051277694292366505, 0.010504510253667831, 0.007167726289480925, -0.007796690799295902, -0.010624680668115616, -0.012813498266041279, 0.016578812152147293, 0.04244665428996086, 0.0013383221812546253, -0.013925356790423393, -0.04633812606334686, 0.01964794658124447, 0.0008693626732565463, 0.012413977645337582, -0.004312476143240929, 0.039428405463695526, -0.02340278960764408, -0.007277946453541517, -0.000692917441483587, -0.01961422897875309, -0.01124346163123846, 0.00225993525236845, -0.024353399872779846, 0.017068589106202126, -0.029284292832016945, 0.010485394857823849, 0.011990789324045181, 0.009450110606849194, 0.05555889382958412, -0.011017863638699055, 0.04572102054953575, -0.07108929753303528, 0.003909358289092779, -0.004719153977930546, -0.011262450367212296, 0.02745611034333706, -0.007032851222902536, 0.010512080043554306, 0.051214803010225296, 0.01469644159078598, 0.008212512359023094, 0.05542302131652832, 0.02044319547712803, -0.02192145399749279, 0.012217091396450996, -0.016887297853827477, 0.009205745533108711, 0.02116786316037178, 0.020830659195780754, -0.010131889954209328, 0.05585549399256706, -0.055722322314977646, -0.011790086515247822, 0.008723888546228409, 0.003147047944366932, 0.0173969604074955, -0.04033492133021355, -0.016640273854136467, -0.010208227671682835, 0.019763266667723656, 0.002823940012603998, -0.030666934326291084, 0.023732447996735573, -0.0052690389566123486, 0.03608127310872078, -0.027230028063058853, 0.0280600618571043, 0.0013870549155399203, 0.01450943760573864, 0.02242426946759224, 0.005303600803017616, 0.029875142499804497, -0.03755078464746475, -0.04506049305200577, 0.06577681005001068, -0.03420111536979675, -0.020437732338905334, -0.0029779281467199326, -0.025592254474759102, 0.003980626352131367, 0.012940083630383015, 0.0004833643033634871, 0.03919224441051483, 0.013532539829611778, 0.03622760251164436, 0.03191818296909332, -0.07083361595869064, 0.03083777241408825, 0.000524208415299654, 0.03374280780553818, 0.10273332893848419, 0.026586467400193214, -0.004015129525214434, -0.00458864402025938, -0.003037014976143837, -0.0280805341899395, 0.04251202940940857, -0.021484743803739548, 0.009394445456564426, -0.0085221529006958, 0.030371058732271194, -0.017132475972175598, 0.009329558350145817, -0.012291980907320976, 0.0013261240674182773, 0.011940058320760727, 0.045977991074323654, -0.02701258845627308, -0.0018526798812672496, 0.005175490397959948, 0.04312509298324585, -0.023186244070529938, 0.0238588135689497, -0.011378603987395763, -0.008229064755141735, -0.02424396015703678, -0.04350990056991577, 0.016813643276691437, 0.0044929636642336845, -0.001558678108267486, 0.019597472622990608, -0.015293251723051071, 0.026935193687677383, 0.010018199682235718, 0.0037853047251701355, 0.02861105464398861, -0.0021200624760240316, -0.03396512195467949, -0.0007635667570866644, -0.0346296951174736, 0.08071840554475784, -0.026888282969594002, -0.011904316022992134, 0.01749247871339321, -0.013913757167756557, -0.0331413559615612, -0.01955966092646122, -0.011123759672045708, 0.032032519578933716, -0.03359600156545639, 0.0055138044990599155, 0.02377263642847538, -0.000022483713109977543, -0.007946218363940716, -0.031468432396650314, -0.0036949473433196545, -0.062485113739967346, -0.026674259454011917, 0.0709017962217331, -0.01636551134288311, 0.03408576175570488, -0.030474994331598282, -0.017360985279083252, 0.007696832995861769, 0.05791819095611572, -0.03271729126572609, -0.015125511214137077, 0.03780670464038849, 0.047406140714883804, -0.020957402884960175, 0.003890012623742223, 0.001829514279961586, -0.028016425669193268, -0.010173199698328972, 0.04913036525249481, 0.010647631250321865, -0.0210968516767025, -0.0012750461464747787, -0.013541587628424168, 0.05233323946595192, 0.011025573126971722, -0.012143117375671864, 0.019041981548070908, 0.011169848032295704, 0.06257022172212601, -0.027390340343117714, -0.037502095103263855, -0.007096221204847097, 0.06657062470912933, 0.035877663642168045, 0.053723789751529694, 0.04908011108636856, 0.00831565074622631, 0.05196087062358856, 0.04118618741631508, -0.01839926466345787, -0.01516700442880392, -0.017539385706186295, -0.023406771942973137, 0.03808700293302536, 0.0413767546415329, -0.015135406516492367, 0.0037530602421611547, -0.012339587323367596, -0.02352275140583515, -0.0010907191317528486, 0.03206811845302582, -0.03327047452330589, 0.04436922445893288, 0.04642561078071594, 0.04112042859196663, -0.031437136232852936, 0.0014118182007223368, 0.025947676971554756, 0.06792178004980087, -0.044355086982250214, -0.019366171211004257, 0.031482089310884476, 0.0362342894077301, -0.02083819918334484, 0.03965509310364723, 0.03726201504468918, 0.013988060876727104, -0.030624208971858025, 0.00936819612979889, -0.01621164195239544, -0.030485602095723152, -0.01599038578569889, -0.08619905263185501, -0.05224667489528656, 0.0006014412501826882, -0.07314559817314148, 0.021479077637195587, 0.03988911584019661, -0.06026341766119003, 0.03285762295126915, -0.011963244527578354, 0.016850147396326065, -0.04261923208832741, -0.02763879857957363, 0.022013554349541664, 0.026265349239110947, 0.02850157767534256, -0.027558691799640656, 0.04798106104135513, 0.03137851133942604, 0.029220782220363617, 0.022180143743753433, -0.014509659260511398, -0.01451966818422079, -0.024837663397192955, 0.03557979315519333, -0.007938181050121784, -0.0030352019239217043, 0.006212666165083647, -0.04268992692232132, -0.0357196219265461, -0.00471012806519866, -0.009540838189423084, -0.02384045533835888, -0.01767829991877079, -0.016547756269574165, 0.030729465186595917, 0.025548463687300682, -0.06024970859289169, 0.049994565546512604, 0.02842518873512745, -0.040343571454286575, 0.04888152703642845, 0.02335752546787262, 0.05364752933382988, -0.038415223360061646, 0.05906883627176285, 0.05357144773006439, 0.019334416836500168, -0.034070976078510284, -0.010189658962190151, -0.03200456500053406, -0.012617248110473156, 0.004621490370482206, -0.023913078010082245, -0.009409013204276562, 0.03250597417354584, 0.03222011774778366, -0.07253069430589676, 0.024659903720021248, -0.040847744792699814, -0.013662032783031464, -0.024672769010066986, -0.05048949643969536, 0.01206732727587223, 0.017084503546357155, 0.044295765459537506, -0.02002659998834133, -0.014407036826014519, -0.04025302454829216, 0.029790658503770828, 0.038934994488954544, -0.04274367168545723, -0.032979559153318405, 0.046366479247808456, 0.02332546003162861, 0.021845465525984764, 0.014091367833316326, -0.03150497004389763, -0.04620964452624321, -0.00541927432641387, -0.009311198256909847, 0.012480274774134159, 0.00910377036780119, -0.010720661841332912, 0.009937112219631672, 0.011112845502793789, -0.027420809492468834, -0.016430962830781937, 0.029436584562063217, 0.02044103480875492, 0.011831681244075298, 0.015923969447612762, 0.028225572779774666, -0.016498198732733727, -0.019606739282608032, -0.06439781934022903, 0.03038402646780014, 0.01591312699019909, 0.0680103749036789, -0.06570927053689957, 0.05024983361363411, -0.0017384262755513191, -0.02899097464978695, 0.04794121906161308, -0.06418538838624954, -0.04036048427224159, 0.05750412866473198, -0.002954459749162197, 0.032630082219839096, -0.06093964725732803, -0.012677771039307117, -0.01200873963534832, 0.006500632502138615, 0.023968493565917015, 0.005395177286118269, -0.022741876542568207, -0.03512520715594292, -0.04097241535782814, 0.008522615768015385, -0.012064862065017223, -0.023927409201860428, -0.017025062814354897, -0.0014443714171648026, -0.005672037601470947, -0.037149421870708466, -0.03158918768167496, 0.03610233962535858, 0.04421531781554222, 0.03497253358364105, -0.00506141223013401, 0.06956765800714493, 0.016401490196585655, 0.03356622904539108, 0.035668957978487015, -0.040196239948272705, -0.005594319198280573, -0.028833333402872086, 0.0499202199280262, 0.0014562563737854362, -0.03525620698928833, -0.02321879006922245, -0.024993671104311943, -0.01622527278959751, 0.009226994588971138, 0.012953750789165497, 0.007323825731873512, -0.005733530968427658, 0.052373748272657394, 0.0012810616753995419, 0.03182300180196762, -0.06455208361148834, 0.002489976119250059, -0.03229571878910065, 0.034455351531505585, 0.013883658684790134, -0.0376913882791996, -0.008464695885777473, -0.0423300676047802, 0.04011403024196625, 0.026260867714881897, -0.011051473207771778, -0.058280520141124725, 0.016705600544810295, -0.03880825266242027, -0.028101181611418724, 0.031626902520656586, 0.03525148704648018, -0.003568757325410843, -0.017585312947630882, -0.030120356008410454, 0.01941251941025257, 0.035193171352148056, 0.007918065413832664, -0.0015438097761943936, 0.013065333478152752, 0.014477026648819447, 0.022878071293234825, 0.05585383251309395, -0.03145882487297058, -0.036953479051589966, -0.004844918847084045, -0.07420197874307632, 0.014479434117674828, -0.010384959168732166, -0.048969816416502, -0.0077106161043047905, 0.010796244256198406, 0.02294076420366764, 0.0283623319119215, -0.006964775267988443, -0.006401381455361843, -0.0005209742812439799, 0.06979373097419739, -0.052175477147102356, -0.03126721829175949, 0.023302176967263222, 0.011433478444814682, -0.02677668072283268, -0.01826775074005127, 0.057642024010419846, 0.008489894680678844, 0.008639886975288391, 0.0016972648445516825, -0.06254341453313828, 0.035652074962854385, -0.025263013318181038, -0.0007695758249610662, -0.024667315185070038, -0.0540122352540493, -0.006142020225524902, -0.019022168591618538, 0.011590354144573212, 0.010825504548847675, -0.0021337291691452265, -0.03208359703421593, -0.02374720200896263, 0.004346103873103857, 0.01620994694530964, -0.013014184311032295, 0.0024454244412481785, 0.021585822105407715, -0.020985087379813194, 0.012844919227063656, -0.04461253806948662, -0.005825571250170469, 0.005525738932192326, -0.01107640191912651, -0.013538206927478313, 0.009579421021044254, 0.0556313619017601, 0.020502272993326187, 0.005941271781921387, -0.025720853358507156, 0.020066644996404648, -0.003976474050432444, -0.03588401526212692, -0.04222338646650314, -0.011375853791832924, -0.0249892957508564, -0.036249447613954544, 0.002712312387302518, 0.005837263073772192, -0.003866665530949831, 0.0016461072955280542, 0.02329595759510994, 0.02479441463947296, -0.014988875947892666, 0.03943154588341713, -0.028351284563541412, 0.02449508011341095, 0.010646367445588112, -0.04826442152261734, -0.020702572539448738, 0.04109354317188263, -0.023977335542440414, 0.054185040295124054, -0.0035221786238253117, -0.018342871218919754, -0.017872914671897888, -0.023223796859383583, 0.007057600189000368, -0.0446653887629509, -0.032441865652799606, -0.03810206428170204, 0.02572980523109436, -0.004712019115686417, 0.04407834634184837, 0.019983893260359764, -0.0056293015368282795, 0.01305244117975235, -0.06045060232281685, 0.002105862135067582, -0.019147388637065887, -0.03449476882815361, -0.029175108298659325, 0.005469167605042458, 0.015117120929062366, 0.07026739418506622, 0.030033642426133156, 0.013028701767325401, -0.01705506443977356, -0.02587784454226494, 0.009980320930480957, -0.01887832209467888, -0.018702933564782143, -0.0564507320523262, -0.006976023316383362, -0.014462042599916458, 0.027626629918813705, 0.011441966518759727, -0.00321024633012712, 0.0658663883805275, -0.05471135675907135, 0.00228557619266212, -0.06309964507818222, -0.015854405239224434, -0.017601052299141884, 0.01138109341263771, 0.06738055497407913, -0.0443754643201828, -0.008059311658143997, -0.003985270857810974, 0.05791160464286804, 0.04399313032627106, -0.01347304880619049, -0.04578615725040436, -0.05264420062303543, -0.04064352437853813, -0.04332157224416733, 0.022063761949539185, -0.04668604955077171, -0.0148414121940732, -0.01785401999950409, 0.04357271268963814, 0.05254632607102394, -0.012060550041496754, 0.011745910160243511, 0.05314689502120018, -0.016096793115139008, -0.025529375299811363, -0.04665346071124077, 0.03327703848481178, 0.030500875785946846, -0.020481742918491364, -0.02686639316380024, -0.01939871720969677, -0.030549360439181328, 0.017706725746393204, -0.04915487393736839, -0.05502048507332802, -0.03862413391470909, -0.00960918515920639, 0.06951819360256195, -0.036944784224033356, 0.037380244582891464, 0.017188988626003265, -0.010577155277132988, -0.05115794762969017, 0.01570870541036129, 0.011031560599803925, 0.028187621384859085, 0.037746019661426544, -0.01678626425564289, -0.04925733804702759, 0.004222576506435871, -0.0015497035346925259, 0.01259333360940218, -0.03165355324745178, 0.07667793333530426, -0.01807882823050022, -0.050311628729104996, 0.04487110674381256, 0.07894697785377502, -0.04025905206799507, -0.01632915809750557, 0.003951807972043753, 0.0047910274006426334, 0.0031305495649576187, -0.04610319808125496, -0.01309723686426878, 0.02237772010266781, -0.008779698051512241, 0.004471156746149063, 0.04447292909026146, -0.004508465062826872, 0.034864358603954315, -0.006070998497307301, 0.027452051639556885, -0.05507410317659378, 0.048323653638362885, -0.0015977030852809548, -0.01158071681857109, -0.008007786236703396, -0.048168592154979706, 0.011123180389404297, -0.007095612585544586, -0.01166804600507021, 0.03152450546622276, -0.026196854189038277, 0.007142411079257727, 0.03417717292904854, -0.05721386894583702, 0.04346165806055069, 0.00656349491328001, -0.009387296624481678, 0.042449597269296646, -0.06852255016565323, -0.05073518678545952, -0.006638817023485899, 0.02347433939576149, -0.01347814965993166, 0.03197268396615982, -0.09638303518295288, -0.005184472538530827, 0.008737695403397083, -0.006589267868548632, 0.012547214515507221, -0.042006202042102814, -0.034164126962423325, -0.02204260230064392, -0.05555025860667229, -0.008721337653696537, -0.0029185116291046143, -0.03502318263053894, 0.0308799147605896, 0.03262927010655403, -0.018862305209040642, -0.016621915623545647, 0.0381702221930027, -0.04063480719923973, 0.03270140662789345, -0.03385692462325096, 0.03865018114447594, -0.02108673006296158, -0.012797967530786991, -0.028546588495373726, -0.0018466525943949819, -0.036218974739313126, -0.014146992936730385, 0.008794347755610943, 0.012479946948587894, 0.0060775685124099255, 0.04240379109978676, 0.020083455368876457, -0.010406977497041225, -0.022066455334424973, -0.044792842119932175, 0.02390413172543049, 0.0408075712621212, -0.036662619560956955, 0.021393803879618645, 0.008588637225329876, -0.040275610983371735, 0.038042180240154266, -0.00648829760029912, -0.044483885169029236, -0.01020198967307806, 0.0005391226732172072, -0.005463673733174801, 0.03848486393690109, -0.028927184641361237, -0.02710116282105446, -0.007425135467201471, -0.040861569344997406, 0.05009083077311516, -0.021482467651367188, 0.02536538429558277, -0.035416312515735626, -0.040022097527980804, 0.02046639285981655, 0.05124998465180397, -0.009036272764205933, 0.04545338824391365, 0.03406362608075142, 0.046354688704013824, 0.04082867130637169, 0.022512277588248253, 0.040016788989305496, 0.01365275401622057, 0.0364302396774292, -0.03544364497065544, 0.01521272212266922, 0.006700076628476381, -0.04081420600414276, 0.04428493604063988, -0.03284083306789398, -0.026638885959982872, -0.038423873484134674, -0.02139250561594963, 0.02023649401962757, 0.01644822768867016, -0.016651257872581482, -0.035393521189689636, 0.03735285997390747, -0.051107585430145264, -0.035194385796785355, 0.007618103176355362, -0.06418626010417938, -0.026807144284248352, 0.02269146777689457, -0.024428363889455795, 0.0005915122455917299, 0.016511892899870872, -0.06026996299624443, -0.020040368661284447, -0.022061515599489212, 0.00447108643129468, -0.027823040261864662, 0.02594618871808052, -0.013158957473933697, 0.03795317932963371, -0.005673304665833712, 0.016913145780563354, 0.024427635595202446, 0.05921563878655434, -0.03784416988492012, -0.035160649567842484, 0.028295820578932762, 0.028293553739786148, 0.002242825459688902, 0.012262959964573383, 0.003124138806015253, 0.037169087678194046, -0.006793059874325991, -0.0002020111569436267, -0.00488292146474123, 0.016548361629247665, 0.0005672933184541762, 0.03190717101097107, 0.019701169803738594, 0.01924012415111065, 0.011665934696793556, 0.019885322079062462, -0.010929044336080551, -0.0030320906080305576, -0.005051082000136375, 0.03907735273241997, 0.02650165557861328, -0.008970866911113262, 0.0066144634038209915, -0.0020542251877486706, 0.05921458825469017, -0.03748102858662605, 0.03805844858288765, -0.029872125014662743, 0.022218486294150352, 0.03447558358311653, 0.04358290880918503, -0.01069616712629795, 0.04008052125573158, 0.051022645086050034, -0.014437809586524963, 0.011422265321016312, 0.039085280150175095, 0.03934914991259575, -0.030505122616887093, -0.006830310914665461, -0.02762572653591633, -0.0011790759162977338, 0.016867365688085556, -0.011554943397641182, 0.013744075782597065, -0.03076263889670372, 0.016459451988339424, -0.03471764549612999, -0.005531873553991318, 0.07007662206888199, 0.006761691998690367, -0.0038305316120386124, -0.00545518659055233, -0.0016788705252110958, 0.005987444426864386, 0.04039720445871353, 0.010265020653605461, 0.01678294874727726, 0.05724718049168587, 0.035016171634197235, -0.020368516445159912, 0.028790287673473358, 0.029024383053183556, 0.001091356622055173, -0.052703339606523514, 0.00508754001930356, 0.03049778752028942, 0.002659873105585575, -0.014448118396103382, -0.002886712783947587, -0.03355773538351059, 0.02550000697374344, -0.03547914698719978, -0.00638422928750515, 0.0011037541553378105, -0.03701222315430641, -0.0354655459523201, -0.05511881783604622, 0.020892536267638206, -0.044516801834106445, -0.003733861492946744, 0.016438158228993416, 0.008887502364814281, 0.0046754623763263226, 0.01423635333776474, 0.022440532222390175, 0.04737003147602081, 0.008187751285731792, 0.011134552769362926, -0.004436973948031664, 0.062029868364334106, 0.05821604281663895, -0.04291144385933876, -0.014543228782713413, 0.00981033407151699, 0.002754900138825178, -0.03305022418498993, -0.018670331686735153, -0.057933468371629715, -0.004631394520401955, 0.002694537863135338, 0.015117947943508625, 0.010740325786173344, 0.021468129009008408, -0.01698167249560356, -0.02194582298398018, -0.013323701918125153, 0.045465849339962006, -0.015537952072918415, 0.011653758585453033, 0.03223637491464615, 0.038801684975624084, -0.015038047917187214, -0.01844767853617668, -0.039676837623119354, -0.04352894052863121, -0.007984768599271774, -0.02195790223777294, 0.03896120935678482, -0.03438742086291313, -0.03980010747909546, -0.02518124133348465, -0.027011029422283173, -0.016008762642741203, -0.02953708916902542, -0.05464569479227066, -0.014997239224612713, 0.04462543874979019, 0.027242515236139297, 0.005657515488564968, 0.005321871023625135, -0.03808733820915222, 0.014810370281338692, 0.05472066253423691, 0.05885128304362297, 0.0019162551034241915, 0.05468621850013733, 0.02744927816092968, -0.01928030513226986, 0.03214704990386963, -0.030124304816126823, 0.03570418059825897, -0.059738900512456894, -0.03616737574338913, -0.05226799473166466, 0.013647311367094517, -0.018394818529486656, -0.0654204934835434, 0.0011653449619188905, -0.00038632695213891566, 0.033865418285131454, -0.036941103637218475, -0.0845286175608635, -0.00030160290771164, 0.0032279714941978455, -0.028136853128671646, -0.03021247684955597, 0.02734954282641411, 0.015477566979825497, 0.022456984966993332, -0.02149996906518936, -0.05787723511457443, 0.1888144463300705, 0.031324755400419235, 0.028698310256004333, 0.01197157334536314, -0.004977724514901638, 0.0461481511592865, 0.01582615077495575, 0.001591143081896007, -0.0019635045900940895, -0.033266037702560425, 0.029053833335638046, -0.037917133420705795, 0.02440817467868328, 0.011038750410079956, 0.0031292899511754513, 0.06891438364982605, -0.010298337787389755, -0.033227063715457916, -0.0009434872190468013, -0.036831583827733994, -0.04589023441076279, 0.01741386391222477, 0.032839808613061905, 0.01283295825123787, -0.011447864584624767, 0.021339457482099533, 0.041385117918252945, -0.034846264868974686, -0.011128481477499008, -0.01090098638087511, 0.024822110310196877, -0.023068401962518692, 0.04325128719210625, -0.017402753233909607, -0.06672215461730957, 0.04711553454399109, -0.009140513837337494, -0.016567310318350792, 0.022014422342181206, 0.005220331717282534, -0.014638186432421207, 0.03501642867922783, 0.023593828082084656, -0.008335213176906109, -0.008601139299571514, 0.0341128408908844, -0.045681439340114594, 0.012150836177170277, 0.009774211794137955, 0.009872079826891422, 0.06080266460776329, -0.01738312467932701, 0.012027699500322342, -0.003186403540894389, 0.0006616254686377943, 0.01265844888985157, 0.02788359671831131, -0.03571894019842148, -0.02318275161087513, 0.017753450199961662, 0.01247918326407671, -0.011002528481185436, -0.016387086361646652, -0.0002450691245030612, -0.03098726086318493, -0.004878769628703594, 0.03423209488391876, -0.01615792326629162, -0.022939682006835938, -0.016803119331598282, -0.02781304344534874, 0.013607366941869259, -0.015434499830007553, -0.04485124722123146, 0.02132151462137699, 0.03506741300225258, -0.027677742764353752, 0.04279410466551781, 0.0033868285827338696, -0.011353199370205402, -0.016452012583613396, -0.03681290149688721, -0.012091060169041157, -0.012220455333590508, 0.016856109723448753, 0.04216982424259186, -0.01328172255307436, -0.02262195385992527, -0.04378668963909149, 0.05500948429107666, 0.02285078540444374, 0.008591856807470322, -0.002734498819336295, -0.013169128447771072, -0.027042167261242867 ]
Rutgers coach Mike Rice's recent firing casts spotlight on tangled tale Published: Apr. 04, 2013, 10:20 a.m. Star-Ledger Staff mike-rice-house.JPG Mike Rice emerges from his riverfront home in Little Silver Tuesday to wave away a Star-Ledger reporter and photographer. Rice was fired as Rutgers men's basketball coach on Wednesday morning. Andrew Mills/The Star-Ledger (Andrew Mills/The Star-Ledger) By Ted Sherman and Kelly Heyboer/The Star-Ledger NEW BRUNSWICK — Rutgers University President Robert Barchi never asked to see the video that showed his head basketball coach raving at players, throwing balls at their heads and uttering homophobic slurs during practices — even though he knew as early as last November that they existed. The new president relied on the advice of athletic director Tim Pernetti and a nearly 50-page report from an outside investigator, concluding last fall that video showing basketball coach Mike Rice's rants were not serious enough to get him fired, according to a source familiar with the situation. But he never actually saw the tapes. Even as turmoil erupted Tuesday when the sports network ESPN aired a compilation of raw video clips showing Rice out of control at practices, Barchi — in Newark for meetings much of the day — still hadn't seen the video, according to the source. It wasn't until late Tuesday that Barchi finally watched a DVD of the excerpts with Pernetti on the Piscataway campus. Amid growing outrage and calls from the governor to fire the embattled coach, the university president finally changed his mind about Rice, according to interviews with Rutgers officials. Rice had to go. Wednesday morning, after Pernetti met with Rice, both Barchi and Pernetti released statements announcing that the coach had been fired. "I am responsible for the decision to attempt a rehabilitation of Coach Rice. Dismissal and corrective action were debated in December and I thought it was in the best interest of everyone to rehabilitate, but I was wrong," Pernetti said. "Moving forward, I will work to regain the trust of the Rutgers community." However, that did not end the controversy involving a coach using gay slurs at a university still trying to deal with the tragedy of Tyler Clementi, the freshman who killed himself after his roommate used a webcam to spy on his liaison with another man. Assembly Speaker Sheila Oliver (D-Essex) said she was planning legislative hearings into the matter. "It was the right thing to do, but it should have happened in November when these tapes first emerged," she told sports commentator Adam Schein on Sirius XM. "We know that we are a sports-loving nation. And we know a coach's job is to cultivate and develop and to encourage his athletes to get out there and do the best job that they can do. But anyone who knows anything about behavioral science also knows that there is a thin line between achievement motivation and emotional abuse." Assemblywoman Celeste Riley (D-Salem), who heads the higher education committee, asked why Rutgers took so long to act after the videos surfaced. "The leadership at Rutgers must explain to the people of New Jersey why Mr. Rice's firing didn't happen sooner and how such an abusive environment was ever permitted to exist at our state university," she said. Christie, who is out of state on vacation, called it a regrettable episode for the university, but said he supported the decision to remove Rice. 2 trchristie HINDASH.JPG On mobile or desktop: • Like The Star-Ledger on Facebook • Follow @starledger on Twitter And check out our redesigned mobile site by visiting NJ.com from any mobile browser. "It was the right and necessary action to take in light of the conduct displayed on the videotape," said the governor. "Parents entrust their sons to the Rutgers Athletic Department and the men's basketball program at an incredibly formative period of their lives. The way these young men were treated by the head coach was completely unacceptable and violates the trust those parents put in Rutgers University." Barchi left his office in the Old Queens administration building in New Brunswick around 5:45 p.m. Wednesday, rushing past a reporter to his car. "I have no comment for you tonight," he said. At his home in Little Silver, Rice said he was wrong to treat his players the way he did. Rice, who coached his team to a 44-51 record in three years, said he let down his players, Rutgers and its fans, and was an embarrassment to his family. Star-Ledger staff writers Eugene Paik and Brent Johnson contributed to this report.
[ 0.007529649417847395, -0.01964396797120571, -0.004519518930464983, -0.00034879223676398396, -0.013797586783766747, -0.016452480107545853, -0.03530913218855858, 0.019491223618388176, 0.02264244854450226, 0.02626068703830242, 0.04339318722486496, -0.023496342822909355, -0.0018329425947740674, -0.051043905317783356, -0.04441846162080765, -0.0171795766800642, -0.00016252374916803092, -0.02412383258342743, -0.04480864107608795, -0.012805831618607044, 0.015630515292286873, -0.007906589657068253, -0.03924723342061043, -0.024674367159605026, -0.002608796115964651, 0.0396793857216835, 0.018565626814961433, -0.013777370564639568, 0.05079019442200661, 0.03733653575181961, -0.018737955018877983, -0.025781473144888878, 0.028508810326457024, -0.05952112376689911, -0.014596986584365368, -0.044878385961055756, 0.02728862687945366, -0.027692824602127075, -0.024870816618204117, -0.05259259417653084, -0.01472507230937481, -0.031065884977579117, 0.03873182088136673, -0.04761321470141411, -0.028973599895834923, -0.002719854237511754, -0.02570929192006588, 0.002099996665492654, 0.022816915065050125, -0.02094857208430767, 0.008243506774306297, -0.01396977435797453, 0.024658506736159325, 0.004641267005354166, 0.025792567059397697, -0.0005266634398140013, 0.004755883477628231, -0.027980340644717216, -0.01373065635561943, 0.048186253756284714, 0.028979996219277382, -0.00867211353033781, 0.002904151799157262, -0.08686681091785431, 0.018627136945724487, 0.01978101208806038, 0.031139129772782326, -0.022127972915768623, 0.000018011389329330996, 0.003496704623103142, -0.0224535521119833, -0.002637626836076379, -0.04397522285580635, -0.009343691170215607, 0.02258378081023693, -0.027452215552330017, -0.043957773596048355, 0.013799518346786499, -0.005220230668783188, 0.010751661844551563, 0.005843727383762598, 0.06012798473238945, -0.015532173216342926, 0.010286749340593815, -0.06078415364027023, -0.043053556233644485, -0.025485338643193245, 0.006939135026186705, -0.021788237616419792, 0.017501184716820717, -0.03787761926651001, 0.05193539336323738, -0.02361728809773922, -0.012670667842030525, 0.052725691348314285, 0.052525490522384644, -0.03517798334360123, 0.03811223804950714, -0.00156094366684556, -0.019601643085479736, 0.02046346291899681, 0.029193108901381493, 0.022995028644800186, 0.040464796125888824, -0.0336674340069294, -0.04095634073019028, 0.011217967607080936, 0.002906436799094081, -0.02057838626205921, -0.012518590316176414, -0.008696552366018295, -0.03808194398880005, 0.02071070671081543, 0.01760995201766491, -0.026228120550513268, 0.028517501428723335, 0.007688956800848246, 0.018838632851839066, -0.03858189284801483, 0.03004608117043972, 0.04232260212302208, -0.0051240078173577785, 0.04748566821217537, -0.02259751595556736, 0.04351888597011566, 0.014979417435824871, -0.0398845300078392, 0.051434893161058426, -0.02553071267902851, 0.006889824289828539, 0.017842384055256844, -0.03482543304562569, -0.016914695501327515, 0.008354319259524345, -0.01915496215224266, 0.027737662196159363, 0.021607546135783195, 0.017948362976312637, 0.025001754984259605, -0.06923415511846542, 0.02118353173136711, 0.015549116767942905, -0.004952596500515938, 0.07796011865139008, -0.00708746025338769, 0.03953484818339348, -0.036312706768512726, 0.007832868956029415, 0.0032244937028735876, 0.0315190888941288, -0.04628077149391174, 0.03531043231487274, 0.0026821948122233152, -0.006920787505805492, -0.032757315784692764, 0.022110188379883766, 0.01254237350076437, 0.0005579548887908459, 0.03337770327925682, 0.047181788831949234, -0.023843061178922653, -0.0028801413718611, -0.014825048856437206, 0.02174030989408493, -0.019349925220012665, 0.05297500267624855, -0.022994311526417732, -0.011814902536571026, -0.010726094245910645, -0.03115159086883068, 0.03069174289703369, 0.013280723243951797, -0.005417623557150364, 0.03193800896406174, 0.0165305957198143, 0.04555841535329819, 0.016109175980091095, 0.021818576380610466, 0.03224056959152222, 0.039594680070877075, -0.046099964529275894, 0.012399203144013882, -0.024058468639850616, 0.07339166104793549, -0.009684859775006771, -0.00937874335795641, 0.010040090419352055, -0.044419459998607635, -0.045888710767030716, -0.010506627149879932, -0.016935326159000397, 0.024236882105469704, -0.029608020558953285, 0.021777676418423653, 0.03685871511697769, 0.023149482905864716, -0.03571603074669838, -0.041572265326976776, -0.013310084119439125, -0.055358339101076126, -0.028789402917027473, 0.04858654737472534, -0.01305275596678257, 0.045121509581804276, -0.01501433365046978, -0.02886287495493889, 0.032618291676044464, 0.053875070065259933, -0.06965865939855576, 0.0006108354427851737, 0.043597616255283356, 0.0332799032330513, -0.020318055525422096, -0.02058892883360386, -0.014217611402273178, -0.031033208593726158, -0.01464131660759449, 0.06915412098169327, 0.004666339606046677, -0.0015564216300845146, 0.03004581667482853, 0.04758569225668907, 0.009457254782319069, 0.036249179393053055, 0.012270157225430012, -0.023548204451799393, 0.02642805501818657, 0.030062882229685783, -0.012433304451406002, -0.04904584959149361, 0.010884212329983711, 0.040648363530635834, 0.010310940444469452, 0.056607455015182495, 0.013029941357672215, 0.01312626339495182, 0.035943351686000824, 0.047459676861763, -0.0019290114287286997, 0.04593457281589508, -0.007245316170156002, 0.01972510851919651, 0.038108259439468384, 0.004740145523101091, -0.0026114846114069223, 0.033813800662755966, -0.008815284818410873, 0.010185275226831436, -0.0266998540610075, 0.0291685089468956, -0.015184838324785233, 0.04751066118478775, 0.0572328083217144, 0.015813449397683144, -0.020203588530421257, 0.028072891756892204, 0.027619443833827972, 0.05819258838891983, -0.02741014026105404, -0.0198444165289402, 0.00021073519019410014, -0.003960459493100643, -0.012421452440321445, 0.022498266771435738, 0.03850129246711731, 0.01158131007105112, -0.004787225741893053, 0.038543738424777985, -0.007867814972996712, -0.04356352239847183, -0.013648823834955692, -0.050504010170698166, -0.029842983931303024, -0.05115164816379547, -0.053294409066438675, -0.018408633768558502, 0.04882265627384186, -0.050690412521362305, 0.04783053323626518, -0.0025073159486055374, -0.028380589559674263, -0.02755396068096161, -0.010402404703199863, 0.04066036269068718, 0.01947689801454544, 0.03660336881875992, -0.026744917035102844, 0.05350027233362198, -0.0020731098484247923, 0.01837671548128128, -0.025005973875522614, -0.029791727662086487, -0.027878468856215477, 0.017204126343131065, 0.04475383460521698, -0.01317577250301838, 0.02018464356660843, -0.013366744853556156, -0.04200685769319534, -0.06714511662721634, 0.024295372888445854, 0.0062328362837433815, 0.004484998993575573, -0.0005924171418882906, -0.04512839391827583, 0.054613057523965836, 0.03051222488284111, -0.03465095907449722, 0.054523833096027374, 0.03844740614295006, -0.04573791101574898, 0.0206760223954916, 0.009701289236545563, 0.021430686116218567, -0.04021120071411133, 0.026991769671440125, 0.032496217638254166, 0.03476659208536148, -0.052799515426158905, -0.04944337531924248, -0.057603318244218826, -0.02378341183066368, 0.015038837678730488, -0.014249013736844063, -0.025062911212444305, 0.002751360647380352, 0.06010402739048004, -0.054399944841861725, 0.05140676721930504, -0.051035743206739426, -0.04053754359483719, -0.01994379609823227, -0.026331471279263496, 0.019327538087964058, 0.04862288758158684, 0.03369315713644028, -0.00018838448158930987, -0.02744893729686737, 0.0226848516613245, -0.010146453976631165, 0.06563472747802734, 0.0017345823580399156, 0.023956239223480225, 0.026212504133582115, 0.0006621439242735505, 0.00002824912553478498, 0.023279329761862755, -0.004191168583929539, 0.000872332660946995, 0.012908155098557472, -0.011903539299964905, -0.03192553669214249, 0.0042199338786304, 0.011332542635500431, -0.005070834420621395, 0.03790830448269844, -0.03423634171485901, 0.015682002529501915, -0.00015634014562238008, 0.023801684379577637, 0.021481400355696678, -0.01249739620834589, -0.024581274017691612, -0.01888107880949974, -0.02314245142042637, -0.04434295371174812, 0.00239232974126935, 0.015591942705214024, 0.06761528551578522, -0.025703120976686478, 0.06440810114145279, -0.014025463722646236, -0.04891810938715935, 0.05624977871775627, -0.03532462939620018, 0.01515677385032177, 0.05185025930404663, -0.04481879994273186, 0.038744404911994934, -0.03178809583187103, -0.0039006415754556656, -0.0022426166106015444, 0.014358116313815117, 0.02184213697910309, 0.023752646520733833, 0.013273771852254868, -0.031729936599731445, -0.0373002327978611, -0.005014965310692787, -0.006465536542236805, 0.002909374190494418, -0.03840348497033119, 0.0027287513948976994, -0.02063790336251259, -0.03048139251768589, -0.0558752566576004, 0.035002607852220535, 0.0564807690680027, 0.050050683319568634, 0.005742034409195185, 0.07975949347019196, -0.02727087028324604, 0.003731872420758009, 0.028998104855418205, -0.017138682305812836, -0.008152020163834095, -0.024245182052254677, 0.021896081045269966, 0.02359744720160961, -0.04517399147152901, -0.031605057418346405, -0.02941885218024254, -0.02147698402404785, 0.03935602307319641, 0.006363668944686651, -0.019025417044758797, -0.016343669965863228, 0.04268411174416542, 0.026194486767053604, 0.02686651237308979, -0.038606639951467514, -0.023036295548081398, 0.030127262696623802, 0.04041358083486557, 0.05623061954975128, -0.045303575694561005, -0.005805252119898796, -0.04053039476275444, 0.0469813235104084, 0.057395096868276596, 0.005446813069283962, -0.05572056770324707, 0.02410593256354332, -0.0355934277176857, -0.02302156388759613, 0.020637579262256622, 0.01754681207239628, -0.003916499670594931, -0.01980053260922432, -0.021006856113672256, 0.03557918220758438, 0.04055283963680267, 0.006925167515873909, -0.0004297169216442853, -0.0014346572570502758, 0.0412425734102726, -0.006234784610569477, 0.044521503150463104, -0.01365867629647255, -0.023492323234677315, -0.00019933481235057116, -0.06039992347359657, 0.05313224345445633, 0.0015160012990236282, -0.02670670673251152, 0.007310735061764717, 0.03952297940850258, 0.00653733778744936, 0.04465993493795395, -0.017511945217847824, 0.002093865303322673, -0.007133424747735262, 0.015345541760325432, -0.05353322997689247, -0.05452717840671539, 0.05646951124072075, 0.00076173065463081, -0.005591311026364565, 0.026812320575118065, 0.027834821492433548, -0.015040714293718338, -0.02222040854394436, -0.01131865382194519, -0.011247445829212666, 0.040295060724020004, -0.04148301109671593, 0.041130416095256805, -0.03137652203440666, -0.04320294409990311, 0.0206486564129591, -0.003464990761131048, 0.022565804421901703, -0.00034802252775989473, -0.02460349164903164, -0.03577698767185211, -0.05222325772047043, -0.00014086290320847183, 0.0048094880767166615, 0.0019365529296919703, 0.003770688083022833, 0.0062647126615047455, -0.01195361278951168, -0.027380740270018578, -0.017639365047216415, -0.009705273434519768, 0.029602842405438423, 0.011452583596110344, 0.017824871465563774, -0.022735444828867912, 0.006074938457459211, 0.020402738824486732, -0.018487876281142235, -0.0481485053896904, 0.01744096912443638, -0.01853208988904953, -0.04623481258749962, -0.04230869188904762, -0.004304340574890375, -0.041713014245033264, 0.024161897599697113, -0.025903739035129547, 0.012747080996632576, -0.0014870130689814687, 0.05887715518474579, 0.02584143541753292, 0.013903641141951084, -0.001186711248010397, -0.0014482398983091116, -0.02881562151014805, 0.04811585322022438, 0.025330668315291405, -0.03932243958115578, -0.021350881084799767, 0.009318999014794827, -0.018525803461670876, 0.04423269256949425, -0.012992361560463905, -0.02724510245025158, -0.039724476635456085, -0.04917408898472786, 0.03725278005003929, 0.0032372712157666683, -0.019108250737190247, -0.06835833191871643, -0.002005283022299409, -0.018485277891159058, 0.05099186673760414, -0.02678491547703743, 0.018877912312746048, -0.015599516220390797, -0.054162390530109406, -0.004858000669628382, -0.0192912295460701, -0.01315294299274683, -0.02160923182964325, -0.034022171050310135, 0.006447299383580685, 0.05151572823524475, 0.013826297596096992, 0.04384177550673485, -0.003236171090975404, 0.004175479058176279, 0.02283472754061222, -0.038074664771556854, -0.041226938366889954, -0.032200150191783905, 0.015287911519408226, -0.04270607978105545, 0.001066199503839016, -0.00569389620795846, -0.045044079422950745, 0.05390268564224243, -0.032278284430503845, 0.008643667213618755, -0.02863023243844509, -0.00942474976181984, 0.007537167519330978, -0.007324884179979563, 0.05692312493920326, -0.0465238019824028, 0.057236287742853165, -0.03916562721133232, 0.042548082768917084, 0.0674821063876152, -0.010434889234602451, 0.004443036857992411, -0.026590395718812943, -0.011238089762628078, -0.04543532058596611, 0.012979150749742985, -0.022278347983956337, -0.03574682027101517, -0.0330195315182209, 0.0036273738369345665, 0.03174003213644028, -0.009674016386270523, 0.06236150488257408, 0.034624408930540085, -0.01125003956258297, -0.008604586124420166, -0.012547913938760757, 0.014655609615147114, 0.005964731797575951, -0.03597278147935867, 0.025438373908400536, -0.03708215057849884, -0.05184463784098625, 0.0033542420715093613, -0.030361846089363098, 0.021000390872359276, -0.04019099846482277, -0.026408938691020012, 0.07718674093484879, -0.019921259954571724, 0.03402220830321312, 0.008943285793066025, -0.04941180720925331, -0.0725516676902771, 0.03647839277982712, 0.022237196564674377, 0.0184722151607275, 0.046690139919519424, -0.006214205175638199, -0.03160761296749115, 0.006477220915257931, 0.021746769547462463, -0.05480028688907623, -0.04150865972042084, 0.055104177445173264, -0.005078607238829136, -0.05168547108769417, 0.03359389677643776, 0.01961343176662922, -0.0795665755867958, -0.040412165224552155, 0.017288636416196823, -0.00025163107784464955, -0.00646241707727313, 0.002733827568590641, -0.010239782743155956, -0.0038979165256023407, -0.01031600870192051, 0.024755677208304405, 0.035697340965270996, -0.010149775072932243, 0.046894606202840805, 0.00143000902608037, 0.01436888612806797, -0.048365477472543716, -0.009931483305990696, 0.027508379891514778, -0.030240504071116447, -0.035781845450401306, -0.04044968634843826, -0.019430357962846756, 0.0022413863334804773, -0.013141880743205547, 0.06683406233787537, -0.023549584671854973, 0.004285079427063465, 0.0022925331722944975, -0.008931861259043217, 0.0528024286031723, 0.0036797563079744577, -0.03985877335071564, 0.017666960135102272, -0.0004504947573877871, -0.030582526698708534, -0.014378008432686329, 0.0021269270218908787, 0.012791089713573456, 0.037085071206092834, -0.05773748829960823, 0.015577118843793869, 0.027444707229733467, -0.011810041964054108, 0.014724502339959145, -0.041749995201826096, -0.0385613776743412, -0.04176725074648857, -0.03396980091929436, -0.006080470513552427, -0.014982345513999462, 0.006434102542698383, 0.0014828580897301435, 0.009913555346429348, -0.0274700615555048, -0.0019156698836013675, 0.0005449537420645356, -0.02631247788667679, 0.022170420736074448, -0.024827860295772552, 0.0031937097664922476, -0.03812386468052864, -0.05744810774922371, -0.04036324843764305, -0.00654984125867486, -0.007616876158863306, -0.01195761002600193, -0.016334809362888336, 0.03312230482697487, -0.0008058840758167207, 0.004183914978057146, 0.025213420391082764, 0.03102005459368229, 0.0008602669695392251, -0.054884638637304306, -0.0013383877230808139, 0.04130838066339493, -0.006123976781964302, -0.000852210505399853, 0.05860665813088417, -0.04169902577996254, 0.024233393371105194, -0.01995597593486309, -0.04207232594490051, 0.0007769440999254584, 0.006379551254212856, -0.054136984050273895, 0.008955058641731739, -0.0065045286901295185, -0.02459878847002983, -0.0355856828391552, -0.015776559710502625, 0.03668597340583801, 0.017817005515098572, 0.022575460374355316, -0.0004961479571647942, -0.03237167000770569, 0.017449768260121346, 0.048485688865184784, -0.007884509861469269, 0.046290118247270584, -0.01961924321949482, -0.0007403708295896649, 0.03449300304055214, 0.020527781918644905, 0.021171966567635536, 0.04798230156302452, 0.009061075747013092, 0.0003639825154095888, 0.01944660395383835, -0.0020443706307560205, -0.015745624899864197, 0.026439813897013664, -0.008923402987420559, -0.013592864386737347, -0.039125364273786545, -0.019002046436071396, 0.005017229355871677, 0.03490139916539192, 0.017907554283738136, -0.02539592608809471, 0.03301137313246727, -0.007873918861150742, -0.04616853967308998, 0.00022623882978223264, -0.051993586122989655, -0.011141911149024963, 0.017660651355981827, 0.00600890489295125, -0.038699157536029816, -0.048095669597387314, -0.008745956234633923, -0.017892982810735703, -0.002609024289995432, 0.0015712989261373878, -0.0251468513160944, 0.011452998965978622, -0.00719729857519269, 0.056772779673337936, 0.02423340640962124, -0.024769840762019157, -0.016629116609692574, 0.06990674138069153, -0.050543587654829025, -0.01162284892052412, 0.022577205672860146, 0.020840119570493698, 0.021993618458509445, -0.017974061891436577, -0.007015483919531107, 0.011310849338769913, 0.005383659619837999, -0.018517129123210907, -0.017816631123423576, 0.02827039547264576, 0.012474524788558483, 0.02466048114001751, -0.013397525064647198, 0.003532651113346219, -0.013693940825760365, 0.015805210918188095, 0.014317337423563004, -0.03387724608182907, -0.015317196026444435, 0.017301205545663834, 0.007177508436143398, -0.013188457116484642, 0.05526747927069664, 0.04644213616847992, 0.04170617088675499, -0.050132423639297485, 0.013455967418849468, 0.0036395289935171604, 0.06226908043026924, 0.06138482689857483, 0.04693258926272392, 0.034661564975976944, 0.025709114968776703, 0.05615715682506561, 0.01403120718896389, -0.015238426625728607, 0.03967467322945595, 0.0036716358736157417, -0.03749046474695206, 0.001821220968849957, -0.027865899726748466, 0.008352666161954403, 0.014284021221101284, -0.0008413650211878121, 0.011285913176834583, -0.04162205755710602, -0.010872501879930496, -0.017808491364121437, -0.0025436163414269686, 0.04873207211494446, -0.025963177904486656, 0.02921399474143982, -0.006005663890391588, -0.002811301266774535, -0.03662959858775139, 0.04358188807964325, -0.025571338832378387, -0.0019299057312309742, 0.013696042820811272, 0.0345902144908905, 0.013776860199868679, 0.043486736714839935, 0.02231423184275627, 0.0001752956595737487, -0.05059041082859039, -0.019346218556165695, 0.03488222882151604, 0.026178937405347824, -0.04687875881791115, -0.0057203141041100025, -0.04278162494301796, 0.013724315911531448, -0.01302581001073122, -0.014459511265158653, 0.03594468906521797, -0.04035041481256485, -0.01923973113298416, -0.03475794568657875, 0.05078405141830444, -0.008128323592245579, -0.030851727351546288, 0.029195407405495644, 0.00043126477976329625, -0.01736622489988804, 0.034292422235012054, -0.016348350793123245, 0.021561365574598312, 0.0020565201994031668, 0.03901686519384384, 0.024911904707551003, 0.01790882647037506, 0.0787101611495018, -0.02979162707924843, -0.024666165933012962, 0.022017711773514748, -0.020484618842601776, -0.0704197883605957, -0.005840982776135206, -0.026105081662535667, -0.019751332700252533, -0.041801568120718, -0.01568847894668579, -0.007592770736664534, 0.033330898731946945, -0.03459151089191437, -0.021379902958869934, -0.0038550046738237143, 0.01481056772172451, -0.06185270473361015, 0.05364310368895531, 0.005170893389731646, 0.02381443977355957, -0.02093571610748768, -0.010178783908486366, -0.012029770761728287, -0.04702438414096832, 0.012006581760942936, -0.029594803228974342, 0.0313839316368103, -0.034692905843257904, -0.03620212525129318, -0.022008266299962997, -0.04552577808499336, -0.003610379295423627, 0.017312129959464073, -0.04691769555211067, -0.05388134345412254, 0.037984203547239304, 0.03728565573692322, 0.027119966223835945, 0.0027455345261842012, -0.03280165046453476, -0.01547269057482481, 0.04385470226407051, 0.047431349754333496, 0.003930559381842613, 0.00692551676183939, 0.014783168211579323, -0.017843324691057205, 0.002622956642881036, -0.0195444505661726, 0.025704430416226387, 0.003302104538306594, -0.025412417948246002, 0.0014453144976869226, 0.02740556187927723, -0.012978887185454369, -0.06870375573635101, 0.03915514796972275, 0.015569404698908329, 0.031894125044345856, -0.0055707604624331, -0.08075922727584839, 0.007863630540668964, -0.03490227088332176, 0.008350561372935772, -0.04341311752796173, 0.01735830120742321, 0.02351900190114975, 0.015627922490239143, -0.01568634808063507, -0.07823425531387329, 0.1691688448190689, 0.05075262486934662, 0.024783242493867874, 0.013011266477406025, 0.003951047547161579, 0.047294385731220245, 0.02288384735584259, 0.01098907645791769, 0.006012600380927324, -0.012610375881195068, 0.054480575025081635, -0.00928394217044115, 0.036440007388591766, 0.011278458870947361, 0.0034434571862220764, 0.06446251273155212, -0.022143159061670303, 0.0040416535921394825, 0.022781142964959145, -0.03399638459086418, -0.05097160115838051, -0.019342266023159027, -0.03054424747824669, 0.024067705497145653, -0.005476466845721006, 0.02285323478281498, 0.012721491046249866, -0.0652855932712555, -0.0029456494376063347, -0.022571014240384102, 0.004295337945222855, -0.01922333426773548, 0.0019524816889315844, -0.004045258276164532, -0.05965912714600563, 0.03374127298593521, -0.00392250856384635, -0.03183931112289429, 0.02462710812687874, 0.013129912316799164, -0.025720149278640747, -0.005741980858147144, 0.00911213830113411, -0.01939903013408184, 0.025587985292077065, 0.013144469819962978, -0.04322535917162895, 0.01079292967915535, 0.06150917708873749, -0.04003788158297539, 0.056014545261859894, -0.043624844402074814, 0.014155668206512928, -0.02902168780565262, 0.0032441557850688696, 0.02491847798228264, 0.001660252921283245, -0.022855769842863083, -0.006452848203480244, -0.009126964956521988, 0.03692391514778137, 0.013615977019071579, -0.012244714424014091, 0.0002819939109031111, -0.04750275984406471, 0.000727569218724966, 0.02684430591762066, -0.008912463672459126, -0.028404593467712402, -0.0034823645837605, -0.042537227272987366, 0.020114809274673462, 0.029895948246121407, -0.015757888555526733, 0.06762224435806274, 0.03325547277927399, -0.02310791052877903, 0.046747494488954544, 0.017468173056840897, -0.013057528994977474, -0.019106537103652954, -0.043089404702186584, 0.013458491303026676, -0.015358073636889458, 0.02125820517539978, 0.06483380496501923, -0.0468706451356411, -0.03383440151810646, -0.028575649484992027, 0.036280177533626556, 0.04710453748703003, -0.020558327436447144, -0.006348838564008474, -0.003209560178220272, -0.024678455665707588 ]
Walid Jumblatt, líder pragmático de la comunidad drusa del Líbano, nació el 7 de agosto de 1949 en el pueblo de Mokhtara, provincia del Shouf, Líbano. Es hijo del maestro y líder político, Dr. Kamal Fouad Jumblatt (1917 – 1977) más conocido como el Maestro Kamal Jumblatt fallecido en un atentado el 16 de marzo de 1977, que fue miembro del parlamento libanés en varios períodos constitucionales, ministro de varias carteras y de varios gabinetes, fundador y presidente del Partido Socialista Progresista (PSP), secretario general de la Frente Árabe, por lo que tomó parte en la Revolución Palestina, Presidente del Movimiento Nacional Libanés y su concilio político durante los inicios de la guerra civil libanesa 1975–1990), mientras que la madre del actual líder, Walid Jumblatt, es May Arslan de Jumblatt, una princesa de la casa de los emires Arslán, cuyo padre era el Príncipe (Emir) Shakib Arslan (un prominente político y escritor). Actualmente está casado con Noura Charabati, y tuvo sus tres hijos, Taimour, Aslan y Dalia, con su primera esposa, Gervet. Su juventud Desde muy temprana edad, fue un joven rebelde y de fuerte carácter. Su forma de vestir con su tradicional pantalón jeans y su chaqueta de cuero montando en su moto, le hizo ser entrevistado en un ejemplar de Playboy de julio de 1984, pero esto no le impidió realizar sus estudios académicos y universitarios. Estudió en el Colegio Internacional en el Líbano (1969), y posteriormente siguió sus estudios superiores en la Universidad Americana de Beirut, donde obtuvo el grado de Arte en Ciencias Políticas (1973). Luego realizó estudios de Historia en la misma Universidad. Domina y habla a la perfección el árabe, inglés y francés. La periodista Carmen Llera, todavía esposa de Alberto Moravia, mantuvo un romance recogido posteriormente en una novela. Su pasatiempo Su pasatiempo favorito es preservar la belleza de la naturaleza y el ambiente, la fotografía, Internet y leer. De allí que es presidente de la Fundación de los Cedros del Shouf. Como líder político Desde que falleció su padre el 16 de marzo de 1977 asumió como Jefe del partido Progresista Socialista Libanés el 29 de abril de 1977, al ser electo presidente del mismo. Todo ello ocurre en el apogeo de la cruenta Guerra Civil Libanesa (1975–1990), convirtiéndose en un gran líder durante el desarrollo de la misma. El 12 de junio de 1980 es elegido presidente del Concilio Político Central del Movimiento Nacional Libanés, que agrupó a los partidos y movimientos más importantes del Líbano, de tendencia socialista y social demócrata. En junio de 1982, Israel invade el Líbano, y con él la Montaña Druza, expulsando al líder de la OLP, (Organización para la Liberación de Palestina), Yaser Arafat, junto con miles de sus combatientes. Meses después, en septiembre de ese año, ocurre la matanza de unos 600 refugiados palestinos en los campamentos de Sabra y Chatilla a manos de las Falanges Libanesas aliados de los israelíes, con el conocimiento y consentimiento de Ariel Sharón, que por aquel entonces era ministro de Defensa de Israel. El 11 de abril de 1983, Walid Jumblat es elegido como vicepresidente de la Internacional socialista, central política que agrupa a todos los partidos social demócratas del mundo, ese mismo año, el 23 de julio de 1983 Walid Jumblat anunció en Baalbeck la conformación del Frente Nacional Libanés que incluyó ocho partidos y lo dirigió junto con Suleiman Franjieh y Rachid Karami. Este Frente sustituyó al Movimiento Nacional Libanés que años antes había iniciado su padre. Con este Frente se anotó innumerables triunfos durante la Guerra Civil Libanesa. Para agosto de 1983 Israel comienza a retirarse de Beirut y de la Montaña, para dirigirse al sur del país donde se pertrecha y crea un cinturón de seguridad de mil kilómetros cuadrados, para proteger su frontera norte, no sin antes dejar en su lugar a las fuerzas falangistas y sus aliados, bien armados y pertrechados. Pero el 3 de septiembre de 1983, Jumblat dirigió la Batalla de la Montaña al recuperar de las manos falangistas (Kataeb) y de su aliado, Israel, todo el Shouf, Aley, Bhamdoum, El Maten y parte de Beirut (1983 – 1985). Una vez lograda la gran victoria, el 1 de octubre de 1983 anunció desde el Palacio Nacional de Beiteddine, en el corazón del Shouf, el establecimiento de una administración civil para sostener la continuidad administrativa de las regiones reconquistadas, esparciendo luego sus servicios y la presencia a toda la montaña y aldeas de la conflictiva región del Iklim, la cual también conquistó de las manos falangistas. Tomó parte en dos conferencias internacionales de diálogo para la paz, con el fin de resolver la crisis Libanesa, la de Ginebra (31 de octubre de 1983) y Lousanne - Francia (12 de marzo de 1984), y tomó parte en reunión de Bekfaya para el mismo propósito. Un mes después, el 20 de abril de 1984, en un gobierno de reconciliación nacional, ocupa dos carteras al ser designado como Ministro de Trabajos Públicos y Ministro del Turismo, en el gabinete nacional dirigió por Rachid Karami. El 11 de octubre de 1985, estableció el Instituto Educativo Walid Jumblat, meses después, en diciembre de 1985, fue uno de los signatarios del Acuerdo Tripartito en Damasco - Siria. El 15 de enero de 1986 tomó parte en el diálogo del comité gubernamental que se formó después del Acuerdo Tripartito. El 23 de junio de 1986 es reelecto como vicepresidente de Internacional Socialista, luego es reelecto por tercera vez el 22 de junio de 1989. Ese mismo año es designado como Ministro del Trabajo Público en el gabinete dirigió por Salim El Hoss. Luego en 1990 es designado en el gabinete de Omar Karami. Ya finalizada la Guerra Civil Libanesa, se efectúan el 7 de junio de 1991 las primeras elecciones democráticas de post guerra, y es electo diputado por el Distrito del Chouf (Shouf) del Monte Líbano, lugar que ocupó su padre por muchos años. El 30 de agosto de 1992 es reelegido por segunda vez como diputado del distrito de Chouf, en esas elecciones democráticas, el Frente Nacional de la Lucha que él dirigió obtuvo 12 diputados. Ese mismo año de 1992 es designado Ministro del Estado en el gabinete de Rashid El Solh. Luego el 2 de noviembre de 1992 es designó como ministro de los Desplazados por la Guerra en el primer gabinete del emblemático y gran estadista, el primer ministro Rafic Hariri. El 16 de marzo de 1994 Funda y llegó a ser su primer Presidente de la Asociación de Cedros del Chouf , que vela por los ejemplares de este árbol milenario en la región, emblema y patrimonio nacional, así como la reforestación con más de cien mil árboles de cedros en las montañas del Chouf, y hasta la fecha sigue aún como su presidente El 17 de diciembre de 1994 estableció el Foro Progresista del Intelecto. Pocos meses después, el 15 de abril de 1995, se le otorgó la Medalla de la Amistad por el gabinete de la Presidencia de la Federación Rusa. Un mes después, el 25 de mayo de 1995 es nuevamente designado como Ministro de los Desplazados en el segundo gabinete del primer ministro Rafic Hariri. El 18 de agosto de 1996 es reelegido como diputado por el distrito de Chouf – el Monte Líbano. Ese mismo año, el 11 de noviembre de 1996 es designado otra vez como Ministro de los Desplazados en el tercer gabinete de Rafic Hariri. En las elecciones del 27 de agosto de 2000 es electo, una vez más, como diputado por el distrito de Chouf, en la cual dirigió el Frente Nacional de la Lucha y el Bloque del Foro Democrático, la cual obtuvieron una gran cuota de diputados. El 17 de abril de 2001 se le otorgó la nacionalidad italiana honoraria del concilio municipal de la ciudad de Martiniano. A los meses, el 4 de junio de 2003 se le otorgó por segunda vez la Medalla de la Amistad por el gobierno ruso. Además ese año dirige la Asociación Libanesa para la Educación Superior, Técnica y Económica. Revolución de los Cedros Durante la post Guerra, se caracterizó en ser en un gran líder no solo de su partido, sino de la comunidad drusa en general y de la Libanesa democrática y social, por lo que encabezó junto con el primer ministro Rafic El Hariri la solicitud y las grandes manifestaciones populares que exigieron la salida del ejército sirio del Líbano, hecho que se aceleró con el asesinato de Hariri el 14 de febrero de 2005. Desde entonces, Walid Jumblatt ha acusado en numerosas oportunidades a Siria y a sus lacayos dentro del Líbano por este vil asesinato, y junto con el hijo de este, Saad Hariri, han realizado numerosas protestas y grandes movilizaciones, a ellos se suman personalidades y partidos políticos tanto musulmanes sunnitas como cristianos, entre ellos el Movimiento Futuro de Saad Hariri, las Fuerzas Libanesas, El Partido Falange Libanés y otros partidos más, hasta que se produce la famosa Revolución de los Cedros, que en definitiva logra que Siria saque su ejército del Líbano. Seguidamente ocurren varios asesinatos de políticos y personalidades anti sirias, entre ellos el periodista Samir Kasir (02-01.2005), el ex comunista George Ají (21-06-05), el magnate y parlamentario Gebran Tueni (21-12-05), el ministro de Industria Pierre Gemayel, hijo de Amin Gemayel (21-11-06), el legislador Antoine Ghannem (02-09-07), el brigadier general Francois al-Hajj (12-12-07), y más recientemente Wisam Eid (25-01-08), capitán de la unidad de inteligencia de la policía libanesa, de todos estos asesinatos, Antoine Ghannem era parlamentario del Partido Takadumi Eshtiraki de Walid Jumblatt, e incluso hubo un intento fallido en contra de un miembro druso de su partido, el ministro Marwan Hamadeh. Durante este tiempo, ocurren las elecciones parlamentarias libanesas el 19 de junio de 2005, con triunfo de la alianza anti siria de Saad Hariri y Walid Jumblatt. Ellos y los diputados triunfantes de la alianza nombran a Fouad Siniora como primer ministro, e impulsan una serie de hechos en busca de la independencia libanesa y respeto a su constitución. El Hizbuláh escapándose de las presiones para su desarme de parte del gobierno libanés, captura a dos soldados israelíes el 12 de julio de 2006, tras una redada a través de la frontera, dando inicio a una cruenta guerra de 34 días en la que Israel mata a 1200 personas en el Líbano. Hasta que se logra el alto al fuego con la intervención de las Naciones Unidas y la retirada de Israel del sur libanés. Los hechos se siguen sucediendo entre los Anti Sirios liderados por Hariri y Jumblatt y los prosirios capitaneados por el Hizbuláh, con apoyo iraní, el 11 de noviembre de 2006. Cinco ministros chiitas pro-sirios de Hizbollah y su aliado, el movimiento Amal, renuncian tras el colapso de las conversaciones entre todos los partidos para darle a su bando una mayor influencia en el Gobierno. Luego el 21 de noviembre de 2006 ocurre el asesinato del ministro de Industria, Pierre Gemayel, lo que trajo mayores presiones de Walid Jumblatt y sus aliados para investigar estos hechos que ensombrecen la confianza hacia Siria, y culpan a sus aliados de que con las muertes de ministros y diputados anti siriosa buscan debilitar la mayoría anti-siria, al cabo de pocas semanas el Consejo de Seguridad de la ONU aprueba planes para un tribunal que juzgue a los sospechosos en el asesinato de Rafic Hariri y ataques subsecuentes. La acampada en el centro de Beirut La reacción de los Anti sirios no se hizo esperar, el 1 de diciembre de 2006. Hizbollah, Amal y seguidores del líder cristiano Michel Aoun acampan fuera de la oficina del primer ministro Fouad Siniora en Beirut, en una campaña para derrocar al Gobierno. Posteriormente ocurren los hechos del Campo de Nahr al-Bared en Trípoli hasta que el 2 de septiembre de 2007, las tropas libanesas toman completo control del campo Nahr al-Bared, tras meses de enfrentamientos con militantes de Fatah al-Islam, que dejan más de 420 muertos, incluyendo 168 soldados, en la peor violencia interna desde la guerra civil. El 23 de noviembre de 2007, el presidente libanés (prosirio) Emile Lahoud deja el palacio presidencial al final de su mandato. No se ha elegido a ningún sucesor. Al día siguiente Fouad Siniora dice que el gabinete asume los poderes ejecutivos ante la ausencia de un presidente. Las rivalidades entre pro y anti sirios aumentan las tensiones a pesar de ello el 5 de diciembre de 2007 el presidente del Parlamento, Nabih Berri, dice que los líderes libaneses rivales se pusieron de acuerdo para designar al general Michel Suleiman como presidente, aunque el Parlamento aún debe elegirlo. Llega el año 2008 y no hay acuerdo para nombrar al presidente del Líbano, a pesar de las conversaciones entre los factores políticos, impulsadas por Walid Jumblatt, Saad Hariri, Michell Aoun, Amin Gemayel y Samir Yahya. Todas fracasan ya que el Hezboláh busca derribar al gobierno de Siniora y con él sacar del poder político a Walid Jumblatt, por lo que mantiene la acampada en el centro de Beirut. Ataque del Hizbuláh a Beirut y la Montaña Drusa El 5 de mayo de 2008, el gobierno del primer ministro Fuad Siniora, declaró ilegal la cadena telefónica privada y el sistema de control por vídeos de las pistas del aeropuerto, dispuestos por Hizbala. El ejecutivo libanés, además, alejó del cargo de responsable de la seguridad del aeropuerto internacional, al general Wafiq Shuqeir, vinculado a ese partido, principal fuerza opositora del país, esto desencadenó protestas de parte del líder del Hizbolá, Hassan Nasrallah y tildó de traidores a Walid Jumblatt y a Siniora, y la decisión del gobierno de acabar con esa red de telecomunicaciones es una declaración de guerra contra su organización, y terminado sus palabras, los milicianos del Hizbuláh se lanzaron a las calles y tomaron Beirut Occidental con casi sin ninguna resistencia. Los choques se iniciaron en la céntrica zona de Corniche el Masra y se trasladaron a los barrios de Ras El Nabah, Beshara Al Juri y Barbur, así como al valle de la Bekaa en el este del Líbano. Acto seguido, destruyeron varias sedes del partido Futuro del líder sunita, Saad Hariri, así como también destruyeron parte del rotativo del periódico Al Mustaqbal y sacaron del aire a la radio y televisión, todos de la propiedad de Hariri, incluso rodearon la casa de Walid Yumblatt y de Saad Hariri en Beirut. Pero el Hizbuláh inicio con torpeza su avance ya que recibieron dura resistencia en el sector Tarik El Yadif, donde hubo muchas bajas de parte del Hizbuláh, pero pudieron llegar a Shoaifet, Aitet y otros pueblos drusos y parte del camino hacia Aley. En este momento estaban buscando atacar la Montaña Drusa, a pocos kilómetros al sureste de la capital, con la intención de acorralar a los partidarios de Walid Jumblatt. Paralelamente, el Hizbuláh estaba atacando al Barouk desde el sur y a la región de Hasbaiyah, ubicado al sureste del Líbano. Walid Jumblatt pudo salir de Beirut y dirigirse al Shouf, no sin antes comunicarse con su rival político y primo, Talal Arslan para unir las fuerzas drusas y repeler el ataque. Paralelamente a esta estrategia de Walid Jumblatt, las milicias drusas del Partido Progresista Socialista o Takadumi Eshtiraki, hizo detener las acciones del Hizbuláh, principalmente en el Monte Druso, hasta tal extremo de que los milicianos drusos tomaron varios pueblos y aldeas chiitas. La situación se ha ido calmando desde el martes, cuando por fin el Ejército Libanés asumió la seguridad de las regiones, tras el pedido de Talal Arslan de cese inmediato de los enfrentamientos y la entrega de las armas, al tiempo que se ha puesto en contacto con el Ejército para que se despliegue en la zona. Las incursiones del Hizbulah se hicieron en las localidades de Aitat, Kayfun, Baisun, Maite y en Chuaifat, Todos estos poblados están localizados en el municipio de Aley, en la región del Monte Líbano, a pocos kilómetros al sureste de Beirut. Igualmente cerca de ciudad de Aley y en la región de Hasbaiyah. Tras el contacto de Walid Jumblatt con Talal Aíslan, el domingo 11 de mayo, surtió efecto, y para la noche del domingo al lunes, cambió drásticamente la situación, y los valerosos drusos, tanto partidarios de Walid Jumblatt, como de Talal Arslan unidos como un solo bloque, lucharon hombro a hombro, contra los chiitas del grupo terrorista del Hezbolah, causándoles numerosas bajas. Los enfrentamientos se concentraron en el área de Baruk. Y antes de estos, hubo cruentos combates entre los dos bandos en la región de Aley, Aitet y en Shouaifet, colindante al Aeropuerto al sureste de Beirut. Tan sólo en el Barouk murieron 32 personas y unos 250 heridos entre los chiitas, la historia se repitió en la localidad drusa de Shoaifet, donde murieron 25 milicianos chiitas, varios de ellos eran iraníes, enrolados en el Hezbolah. También en la Montaña, al sur del Shouf, los milicianos druzos capturaron un convoy de del Hezbolah, conformado de 13 vehículos, fuertemente pertrechados por milicianos y armamento, quienes subían desde Niha hacia el Barouk, los milicianos chiitas libaneses, fueron dejados en libertad, mientras que los milicianos de nacionalidad iraní fueron entregados junto con los vehículos al ejército del Líbano. Igualmente, los milicianos drusos desalojaron a los milicianos del Hizbulá de dos (2) pueblos chiitas cercanos a la ciudad de Aley, Kaifur y El Kmatiyeh, ellos estaban allí fuertemente armados con la excusa de cuidar a sus aldeados, en su mayoría chiita, pero ciertamente era que estaban allí para espiar a los drusos. Por primera vez en mucho tiempo, el Hisbuláh fue derrotada por los drusos, mal armados y desorganizados, ante ellos, que se ufanan en haberse enfrentado al poderoso ejército de Israel. El caudillo y líder druso, Walid Jumblatt, ha declarado su intención de morir con las botas puestas, y es la opinión de la mayoría de los druzos de la región, sean partidarios o no de él, "ya que las montañas del Aley y el Chouf son nuestras y las vamos a defender hasta la última gota de sangre". Para la noche del domingo al lunes, cambió drásticamente la situación, y los valerosos drusos, tanto partidarios de Walid Jumblatt, como de Talal Arslan unidos como un solo bloque, lucharon hombro a hombro, contra los chiitas del grupo terrorista del Hezbolah, causándoles numerosas bajas. Al cabo de pocas semanas, a pesar de que el Hizbuláh se siente victorioso, pero con el sabor de la derrota en la Montaña Druza, se reúnen en Doha y aceptan un plan de reconciliación y nombran como Presidente al General Michell Slaimen, y este nombra a Fouad Siniora, una vez más para formar un gobierno ampliado hasta 30 ministros, incluyendo a partidarios prosirios de Michel Aoun, de Talal Arslan, del Amal y del Hizbuláh. Hoy por hoy Walid Jumblatt es uno de los grandes líderes del Líbano, además de ser líder del Movimiento del 14 de marzo, que surgió de la revuelta para sacar a los soldados sirios del Líbano, también conocida como la "Revolución del Cedro", la misma recuerda los grandes movimientos que se efectuaron ese día del año 2005, un mes después del asesinato de Rafic El Hariri, que movilizó a miles de personas para exigir la salida de Siria del Líbano. El Movimiento 14 de marzo reúne a importantes personalidades y partidos democráticos que buscan hoy día la total libertad del Líbano. Bibliografía Walid Jumblatt, por Dr. Monir Afif El Masri. publicado en la Red Nacional Druza de Venezuela, 14 de agosto de 2008. Partido Progresista Socialista Libanés. Fundación Los Cedros del Shouf. Referencias En castellano e inglés: Enlaces externos https://web.archive.org/web/20170522164752/http://psp.org.lb/ http://www.shoufcedar.org/ Walid Jumblatt, by Gary C. Gambill and Daniel Nassif, Middle East Intelligence Bulletin, Vol 3, No 5, May 2001. Biografía de Kamal Jumblatt. Políticos del Líbano Políticos de Kurdistán Drusos Líbaneses de origen iraní Alumnado de la Universidad Americana de Beirut Libaneses del siglo XX Nacidos en Beirut
[ -0.020644523203372955, -0.02308124676346779, 0.01010449044406414, 0.016287295147776604, -0.0038560570683330297, -0.0038522090762853622, -0.04126190394163132, 0.03274175524711609, 0.004025333095341921, -0.0016769267385825515, 0.04225265607237816, -0.0006771014886908233, -0.009829414077103138, -0.0025284234434366226, -0.03142227977514267, 0.013116390444338322, 0.0007418269524350762, -0.021203096956014633, 0.007906465791165829, -0.004966760519891977, -0.02412138693034649, 0.02766343206167221, -0.09172510355710983, -0.0018286136910319328, -0.02360256016254425, 0.02414277009665966, 0.01736215502023697, -0.020090021193027496, 0.04431343451142311, 0.05253424867987633, 0.0017131057102233171, -0.03947495296597481, 0.05203162133693695, -0.049414027482271194, -0.006574094295501709, -0.0073318942449986935, 0.02165212482213974, -0.06738365441560745, 0.006732849404215813, -0.05486009269952774, 0.030628714710474014, -0.015268967486917973, 0.02036275714635849, -0.02564794197678566, -0.0439123697578907, -0.020887916907668114, -0.012941079214215279, -0.03632728010416031, 0.018247321248054504, -0.021079150959849358, -0.00503663020208478, -0.0041901725344359875, 0.045189499855041504, 0.009840285405516624, -0.009622675366699696, 0.019279809668660164, 0.03492037206888199, 0.00009572161798132583, -0.025465214625000954, 0.022729795426130295, 0.030368851497769356, 0.012102584354579449, 0.04413057118654251, -0.07722028344869614, 0.015882374718785286, 0.017913270741701126, 0.016429534181952477, 0.01055796630680561, 0.056483108550310135, -0.04347049444913864, 0.018830744549632072, -0.010175704956054688, -0.015615878626704216, -0.020150484517216682, 0.006457777693867683, 0.027625486254692078, -0.0137229198589921, -0.01608359068632126, -0.004573509097099304, -0.00249607115983963, 0.04247259348630905, 0.03790398687124252, -0.011326545849442482, -0.0012631521094590425, -0.07773870974779129, -0.01374140940606594, 0.00026002616505138576, 0.038664061576128006, -0.006937787402421236, 0.018999338150024414, 0.0033535631373524666, 0.060644153505563736, 0.015292951837182045, 0.01818102039396763, 0.029009712859988213, 0.046678680926561356, -0.03752332925796509, 0.05203484371304512, -0.007777001708745956, -0.01404489204287529, 0.037372395396232605, 0.0249143298715353, 0.00722589110955596, 0.04421072453260422, -0.036577142775058746, -0.014728150330483913, -0.02645808830857277, -0.007235414814203978, -0.004864131566137075, -0.031087365001440048, 0.004679903853684664, 0.0014560373965650797, -0.016252445057034492, -0.007777727674692869, 0.010215909220278263, 0.05789121240377426, -0.0137467160820961, 0.04680079594254494, -0.03415556624531746, -0.0012514188420027494, -0.011577255092561245, 0.031456779688596725, 0.030947750434279442, -0.013129794038832188, 0.02662888541817665, -0.021542469039559364, -0.029409773647785187, 0.055438555777072906, -0.013331403955817223, -0.051784586161375046, 0.009448220953345299, -0.03450707718729973, -0.01479482464492321, -0.0035898173227906227, -0.007739737164229155, 0.038265079259872437, 0.014191162772476673, 0.0312882699072361, 0.046394381672143936, -0.02546039968729019, 0.039058249443769455, 0.04813703894615173, 0.0007651688065379858, 0.08450259268283844, 0.005174192134290934, 0.034853171557188034, 0.002397331641986966, 0.017355898395180702, -0.03292843699455261, 0.018355607986450195, -0.020092550665140152, 0.028150487691164017, 0.0029636500403285027, 0.037758465856313705, 0.015796424821019173, -0.014795253984630108, 0.021122267469763756, 0.024095142260193825, 0.00607828376814723, 0.033729296177625656, -0.04909900575876236, 0.0005281400517560542, -0.01061919517815113, 0.046216923743486404, 0.014768391847610474, 0.02841910533607006, -0.010780028998851776, -0.016197117045521736, -0.008751634508371353, -0.04546874389052391, 0.02892892248928547, -0.023233162239193916, -0.014522092416882515, 0.016862383112311363, 0.011473392136394978, 0.029123514890670776, 0.004375051241368055, 0.0030559946317225695, 0.022015808150172234, 0.04993497580289841, -0.020986434072256088, -0.017568450421094894, -0.006753827910870314, 0.04782356321811676, 0.005095894914120436, -0.011433322913944721, -0.0025551235303282738, -0.025330808013677597, -0.017846887931227684, -0.029940826818346977, -0.0067027476616203785, 0.050554074347019196, -0.007933219894766808, 0.028551921248435974, 0.02777990885078907, -0.003477479098364711, -0.03659643977880478, -0.012041967362165451, -0.015434365719556808, -0.03779996559023857, -0.011529908515512943, 0.047720763832330704, -0.024240124970674515, 0.035279832780361176, 0.014038806781172752, -0.047574520111083984, -0.0102368900552392, 0.051966920495033264, -0.04596594348549843, 0.0030132336542010307, 0.04672353342175484, 0.019590025767683983, -0.024747075513005257, -0.0054921903647482395, -0.0006939781596884131, -0.03527511656284332, -0.0502125509083271, 0.04993224889039993, -0.012476673349738121, 0.016133496537804604, 0.008087705820798874, 0.03494459018111229, 0.03536013513803482, 0.042068544775247574, -0.01002171915024519, -0.007012481801211834, -0.003251461312174797, 0.04451422765851021, -0.02310710772871971, 0.002642772626131773, 0.008159944787621498, 0.016494115814566612, 0.00929538905620575, 0.04997193440794945, 0.048028815537691116, 0.04951277747750282, 0.010008861310780048, 0.038460977375507355, -0.0018110041273757815, 0.035811394453048706, -0.005855618044734001, 0.01609676517546177, 0.05211276188492775, 0.03594452515244484, 0.0012140230974182487, 0.04804890602827072, 0.017231309786438942, 0.00017567622126080096, -0.03169231116771698, 0.04022252932190895, -0.04481859877705574, 0.06428778171539307, 0.04523110389709473, 0.05019194260239601, -0.020205087959766388, 0.03417855501174927, 0.04471447318792343, 0.038271788507699966, -0.014348579570651054, -0.010681242682039738, 0.000591816904488951, 0.00004220418122713454, -0.010840090923011303, 0.012032515369355679, 0.016175590455532074, 0.0065652974881231785, 0.027045223861932755, 0.026503365486860275, 0.004631190560758114, -0.05874749645590782, -0.026944810524582863, -0.05824701488018036, -0.054617393761873245, -0.03833303600549698, -0.06409627944231033, 0.034744080156087875, 0.05124831572175026, -0.038563527166843414, 0.0438518151640892, -0.006515489891171455, -0.01027688104659319, -0.0020597954280674458, -0.03481628745794296, 0.04804056137800217, 0.022493986412882805, 0.037294089794158936, -0.004042170476168394, 0.04996031895279884, 0.005160566885024309, 0.004263516515493393, -0.000013812639735988341, -0.020880190655589104, -0.02160150185227394, -0.024698568508028984, 0.012858514674007893, -0.011218865402042866, 0.015670087188482285, 0.01592680811882019, -0.032492030411958694, -0.039103999733924866, -0.006393408868461847, 0.0317707285284996, -0.00984678789973259, -0.0010877131717279553, -0.037916965782642365, 0.04899617284536362, 0.031970780342817307, -0.025931768119335175, 0.027521813288331032, 0.04831260070204735, -0.008506419137120247, 0.03613638877868652, 0.014506380073726177, 0.017104992642998695, -0.05664629861712456, 0.05256270989775658, 0.03395380824804306, 0.00753006711602211, -0.03815030679106712, 0.0006543135386891663, -0.046660952270030975, 0.012314585968852043, 0.048501577228307724, -0.001280836178921163, -0.02632649429142475, 0.01901969499886036, 0.008267638273537159, -0.05673249438405037, 0.04484521970152855, -0.05229729413986206, -0.026129981502890587, -0.04547761380672455, -0.03051069937646389, 0.01255294680595398, 0.032653432339429855, 0.026546236127614975, -0.010383203625679016, -0.00043692885083146393, -0.011410962790250778, -0.005296771414577961, 0.040463853627443314, -0.01261430699378252, 0.04371839389204979, 0.04358449578285217, 0.006711508147418499, 0.0008309914264827967, 0.013267864473164082, 0.008738068863749504, -0.030435362830758095, 0.03296896442770958, 0.001821880228817463, 0.006638945080339909, 0.013303684070706367, -0.009531294927001, -0.00274680252186954, 0.037668682634830475, -0.030283533036708832, 0.019968995824456215, 0.02390959858894348, 0.022094540297985077, 0.03204547241330147, 0.00787061732262373, 0.016301872208714485, -0.012126297689974308, -0.030797338113188744, -0.05356408283114433, 0.03655712679028511, 0.041306983679533005, 0.03562205284833908, -0.06232606992125511, 0.0747479796409607, -0.00042021326953545213, -0.05070517212152481, 0.015696926042437553, -0.05514302849769592, -0.01125122606754303, 0.06335317343473434, -0.017663275822997093, 0.05144394561648369, -0.025395819917321205, -0.012764673680067062, -0.02520241215825081, 0.009694638662040234, 0.011287583969533443, -0.017643101513385773, 0.02387276291847229, -0.012549440376460552, 0.015484219416975975, -0.009884594939649105, -0.03263997659087181, -0.030047589913010597, -0.043405063450336456, 0.009361962787806988, -0.015063939616084099, -0.0315176360309124, -0.04208613932132721, 0.04773974418640137, 0.04306787624955177, 0.0372314453125, -0.008958343416452408, 0.03157313913106918, 0.03737999498844147, 0.03820960968732834, 0.061549779027700424, -0.026462996378540993, 0.030109954997897148, -0.052427053451538086, 0.04333766549825668, -0.0008076757658272982, -0.010845284909009933, -0.00221101357601583, -0.017019789665937424, -0.04677468165755272, 0.03252493962645531, 0.012277851812541485, -0.03637233003973961, -0.019122818484902382, 0.023554164916276932, -0.020184921100735664, 0.016702547669410706, -0.03351803496479988, -0.04117408022284508, 0.01998668722808361, 0.04926999285817146, 0.038620803505182266, -0.0444117896258831, -0.03577326238155365, -0.05184592306613922, 0.05118080973625183, 0.029666127637028694, 0.012861625291407108, -0.06437376141548157, -0.0438041090965271, -0.02723955176770687, -0.03699769079685211, -0.014877919107675552, 0.07290200889110565, 0.0063727437518537045, 0.0017947778105735779, -0.05207497626543045, 0.03253289312124252, 0.03533357009291649, 0.0029310304671525955, 0.001906110206618905, 0.0053907171823084354, 0.01931268721818924, -0.01415291428565979, 0.031629778444767, -0.04264349862933159, -0.03654724359512329, 0.02116577699780464, -0.06868541985750198, 0.006870484910905361, -0.008967974223196507, -0.016295375302433968, -0.022079218178987503, -0.010665549896657467, 0.016909025609493256, 0.01419178768992424, -0.01863950677216053, -0.016102228313684464, -0.002371565205976367, 0.05009085312485695, -0.0197454746812582, 0.00023783418873790652, 0.06936764717102051, 0.009728518314659595, -0.010678624734282494, 0.008267556317150593, 0.04054441303014755, -0.015308328904211521, 0.002189214574173093, 0.039527203887701035, -0.05153655633330345, 0.014932559803128242, -0.025227008387446404, -0.0011583453742787242, 0.00557202473282814, -0.017725074663758278, 0.014225035905838013, -0.04345441982150078, 0.04499422386288643, 0.0010761442827060819, -0.021943777799606323, -0.014020867645740509, -0.05787142366170883, 0.00894497986882925, 0.000669428613036871, -0.022782541811466217, 0.00005179920844966546, 0.0025830797385424376, -0.03918306156992912, 0.0007868528482504189, -0.027340102940797806, -0.009430627338588238, -0.008289557881653309, -0.010978681035339832, -0.0029933846089988947, 0.004967713262885809, 0.020194176584482193, 0.04259587451815605, 0.0161700788885355, -0.009872697293758392, -0.016099993139505386, -0.015299743972718716, -0.03513326123356819, -0.03567882999777794, -0.02484879456460476, -0.03211456164717674, -0.0003783757274504751, -0.022391874343156815, -0.055419713258743286, -0.01874050498008728, 0.01654764823615551, -0.0071228244341909885, -0.0028723340947180986, 0.023082654923200607, -0.005875492002815008, -0.021085593849420547, 0.049169596284627914, 0.036140285432338715, -0.07314878702163696, -0.020278772339224815, 0.05139875411987305, -0.00602848781272769, 0.041881263256073, -0.004902737680822611, -0.01742596924304962, -0.059723418205976486, -0.041909683495759964, -0.018291302025318146, -0.024638380855321884, -0.00948956236243248, -0.03584379702806473, -0.028297560289502144, 0.003168366150930524, 0.014331075362861156, 0.005063274875283241, -0.010613813064992428, -0.002229453530162573, -0.0488426648080349, -0.011013457551598549, -0.010314401239156723, -0.018224665895104408, -0.02860223315656185, -0.04033482447266579, -0.029711998999118805, 0.07679480314254761, 0.037003420293331146, 0.036018114537000656, 0.01482510194182396, 0.03835037350654602, 0.00028465260402299464, -0.025127027183771133, -0.03912658244371414, -0.046218641102313995, -0.031162869185209274, 0.020156310871243477, 0.012376083992421627, 0.009644264355301857, -0.025441214442253113, 0.043831717222929, -0.010341271758079529, 0.010339409112930298, -0.01160283014178276, -0.027161855250597, -0.024743542075157166, -0.011716526933014393, 0.07377086579799652, 0.0023831077851355076, 0.015863707289099693, -0.015821518376469612, 0.04487783834338188, 0.05698974058032036, 0.008889916352927685, -0.020932897925376892, -0.030024543404579163, -0.0336686447262764, -0.056495051831007004, 0.03315147012472153, -0.012818412855267525, -0.03412460908293724, -0.0030368217267096043, 0.0007125177653506398, 0.036055002361536026, -0.01778389886021614, 0.04793953895568848, 0.043831974267959595, -0.03632482513785362, -0.020050015300512314, -0.04743998125195503, 0.02503056265413761, 0.00369608448818326, -0.056432537734508514, -0.006335830315947533, -0.03886088728904724, -0.01744706742465496, -0.019041134044528008, -0.04378606006503105, -0.06658162921667099, -0.04708397760987282, -0.0006360823754221201, 0.06128675863146782, -0.014219507575035095, 0.038206614553928375, -0.0028904848732054234, -0.024348720908164978, -0.06839662790298462, 0.02605530247092247, -0.02329079806804657, 0.013469708152115345, 0.040832918137311935, -0.017042391002178192, 0.025061465799808502, 0.043246641755104065, 0.01371942088007927, 0.006848062388598919, -0.031070686876773834, 0.06688667088747025, -0.03231818601489067, -0.041120707988739014, 0.005855838302522898, 0.010314698331058025, -0.033043134957551956, -0.01007356308400631, 0.02016674540936947, 0.004885846748948097, -0.03722096234560013, -0.022190775722265244, -0.006107651628553867, -0.009872697293758392, -0.013903150334954262, -0.0013722233707085252, 0.042177170515060425, -0.012034029699862003, 0.029665403068065643, -0.014615598134696484, 0.004200609866529703, -0.02022716961801052, -0.008908429183065891, 0.022410402074456215, -0.025111710652709007, -0.012819422408938408, -0.03615279123187065, -0.011541753076016903, -0.004480712581425905, -0.005233110394328833, 0.013026869855821133, 0.008666484616696835, 0.03624378889799118, 0.02539950981736183, -0.023465147241950035, 0.046387385576963425, 0.0059143174439668655, -0.028947457671165466, -0.011765186674892902, -0.016397343948483467, -0.0808253139257431, -0.03522695228457451, 0.02326083369553089, 0.0008383182575926185, 0.015293736942112446, -0.04269782453775406, -0.009232974611222744, 0.05062718316912651, 0.0030348245054483414, 0.019359655678272247, -0.05084238946437836, -0.025620518252253532, -0.03645280376076698, -0.03691772744059563, -0.033250633627176285, 0.036934852600097656, -0.03279111534357071, 0.022360432893037796, 0.024465378373861313, -0.047766007483005524, 0.01361814234405756, 0.005455233622342348, -0.03044353798031807, 0.04146142676472664, 0.001983864000067115, 0.0239468552172184, -0.049708329141139984, -0.037709642201662064, -0.04070873558521271, 0.014488988555967808, 0.00810424517840147, -0.02323383465409279, 0.0047426060773432255, 0.04483328387141228, -0.005967345088720322, 0.04776502400636673, -0.011497057974338531, 0.04438287392258644, 0.00810158345848322, -0.048305414617061615, -0.041747093200683594, 0.014699911698698997, 0.028172915801405907, 0.030744481831789017, 0.03086988814175129, -0.0515013188123703, 0.022811537608504295, -0.0005106066819280386, -0.042694225907325745, -0.018238505348563194, -0.02080576680600643, 0.006347430404275656, -0.00024495989782735705, -0.030673881992697716, -0.06722932308912277, -0.01939639076590538, -0.053316473960876465, 0.03449099883437157, -0.008809832856059074, 0.06002800539135933, -0.04535370320081711, -0.016200866550207138, -0.007084806449711323, 0.031192941591143608, 0.017653372138738632, 0.011389928869903088, 0.00029070055461488664, 0.0397997722029686, 0.04745156690478325, 0.02173772267997265, 0.011214829981327057, 0.011327601969242096, 0.015002927742898464, -0.007442801725119352, -0.02675630711019039, 0.026201318949460983, -0.004123365972191095, 0.04751737043261528, -0.02616926282644272, -0.017977233976125717, -0.05723470449447632, 0.011255449615418911, 0.025166235864162445, 0.04720514267683029, 0.008897366002202034, -0.018267735838890076, 0.009725803509354591, -0.038458287715911865, -0.018662000074982643, 0.0011539540719240904, -0.05997662991285324, -0.04864424094557762, 0.04828193783760071, -0.055113784968853, -0.028312793001532555, 0.015982715412974358, -0.05097164958715439, -0.005077574867755175, 0.014643045142292976, -0.03759477660059929, -0.01691056415438652, 0.05812228471040726, 0.03188346326351166, 0.00902604404836893, 0.005098973400890827, 0.009439365938305855, 0.017068995162844658, 0.010679840110242367, -0.03592018038034439, -0.04268643260002136, 0.012983325868844986, 0.014615533873438835, 0.0069453539326786995, -0.017693951725959778, -0.01405402086675167, 0.021740002557635307, -0.02559676393866539, -0.016192849725484848, -0.008254466578364372, -0.0031018634326756, -0.001817956450395286, 0.036158088594675064, 0.014248978346586227, 0.020635228604078293, -0.015837788581848145, 0.011915524490177631, -0.01775176450610161, -0.0005419315421022475, -0.06035356968641281, 0.053432028740644455, 0.0583738312125206, 0.00009003657032735646, 0.040452148765325546, 0.032494816929101944, 0.033435333520174026, -0.004589371848851442, -0.002844599774107337, -0.020767951384186745, 0.05708104744553566, 0.04128095135092735, 0.04849255457520485, -0.011105756275355816, 0.02129300683736801, 0.04551752284169197, -0.002690901281312108, -0.005569986533373594, 0.030193636193871498, 0.0271843783557415, -0.025872699916362762, -0.001211122958920896, -0.03351419046521187, -0.0251778494566679, 0.034165818244218826, -0.00817514955997467, -0.014120602048933506, -0.03560986369848251, -0.016195381060242653, -0.02457442320883274, -0.011888927780091763, 0.0607241615653038, -0.028447886928915977, -0.0003071832761634141, 0.01574118435382843, -0.02078165113925934, -0.005633881315588951, 0.06180764362215996, 0.027899036183953285, 0.017744898796081543, 0.026252154260873795, 0.05930212885141373, -0.015181999653577805, 0.01565234735608101, 0.023658741265535355, 0.010901480913162231, -0.051369260996580124, 0.02182151935994625, 0.03911540284752846, -0.0163814015686512, -0.04377897083759308, -0.040616851300001144, -0.016790317371487617, 0.04203061759471893, -0.061297520995140076, -0.030871650204062462, 0.028755471110343933, -0.028643425554037094, -0.028785545378923416, -0.039440955966711044, 0.017335278913378716, -0.04594630375504494, -0.042049914598464966, 0.01674307882785797, 0.0020913525950163603, 0.002702176570892334, 0.04945216700434685, 0.004616102669388056, 0.046565406024456024, -0.018714817240834236, 0.027570588514208794, -0.008609983138740063, 0.021415311843156815, 0.03540719300508499, -0.05674033612012863, -0.023321930319070816, 0.010641825385391712, -0.008880965411663055, -0.05413058027625084, -0.023935798555612564, -0.04368963837623596, 0.005906335543841124, -0.013530256226658821, -0.004980473313480616, -0.008427959866821766, 0.06840892136096954, -0.022043505683541298, -0.036863043904304504, 0.020675648003816605, 0.04195375367999077, -0.03703467547893524, 0.011330281384289265, 0.00009106798097491264, 0.02743067406117916, 0.0036849852185696363, -0.008261932991445065, -0.015135041438043118, -0.03786112740635872, 0.027618950232863426, -0.06761952489614487, 0.05005338415503502, -0.015025918371975422, -0.03536057472229004, -0.06177028641104698, -0.0077928523533046246, -0.008345787413418293, 0.018522102385759354, -0.05978547781705856, -0.032030779868364334, 0.03585333377122879, 0.04989790543913841, 0.005351887550204992, -0.011172225698828697, -0.04019118845462799, 0.018701381981372833, 0.026770371943712234, 0.08083908259868622, 0.011414287611842155, 0.023320961743593216, 0.027091316878795624, 0.009749469347298145, 0.03491850569844246, -0.016393817961215973, 0.016095804050564766, 0.005185960326343775, -0.015355315990746021, -0.016622265800833702, 0.01035799365490675, -0.0404212661087513, -0.08087750524282455, 0.012748530134558678, 0.03228537365794182, 0.01089372020214796, -0.029331447556614876, -0.07770930975675583, -0.012454165145754814, -0.047370199114084244, -0.020198453217744827, -0.010483169928193092, 0.02752911113202572, -0.005960460752248764, -0.01414327323436737, -0.003721505869179964, -0.0646338015794754, 0.14630763232707977, 0.06452977657318115, 0.03632228821516037, 0.005630375351756811, 0.020845508202910423, 0.06545616686344147, -0.01154518872499466, -0.02301969565451145, 0.008688997477293015, -0.02494846284389496, 0.020646842196583748, -0.020794158801436424, 0.02738719806075096, -0.018749359995126724, 0.029650479555130005, 0.06771169602870941, -0.020089099183678627, -0.009483316913247108, -0.0019060756312683225, -0.055794887244701385, -0.05296339467167854, 0.020840127021074295, -0.013070376589894295, -0.02701481059193611, -0.008384882472455502, 0.02558368630707264, 0.020249467343091965, -0.04973035305738449, 0.0027088697534054518, -0.012262329459190369, -0.015293065458536148, -0.042503852397203445, 0.021052353084087372, -0.028045164421200752, -0.02701563946902752, 0.04712514206767082, -0.025800224393606186, -0.03816060349345207, 0.012050202116370201, 0.0321023166179657, -0.014742447063326836, 0.017623696476221085, 0.06185640022158623, -0.05405963584780693, 0.014832147397100925, 0.031857963651418686, -0.03901435434818268, 0.02155771292746067, 0.001878070062957704, -0.0450134202837944, 0.044594231992959976, -0.060594990849494934, 0.015813900157809258, -0.03449363633990288, -0.028212733566761017, 0.010451139882206917, -0.0015825380105525255, -0.00014541970449499786, -0.009648527950048447, 0.008664147928357124, 0.024919742718338966, 0.009966524317860603, -0.009251313284039497, -0.002731281565502286, -0.0022902698256075382, 0.029634838923811913, 0.050524432212114334, 0.014467695727944374, -0.006478982511907816, -0.016219832003116608, -0.013346114195883274, -0.021811742335557938, -0.005026709288358688, -0.007158111780881882, 0.008990035392343998, 0.027157623320817947, -0.025980139151215553, 0.02116229757666588, -0.0023329262621700764, -0.0016998306382447481, 0.0023967111483216286, -0.02699596993625164, -0.019037902355194092, -0.022359861060976982, 0.01432611234486103, 0.027115659788250923, -0.04891238734126091, -0.04592287167906761, -0.041665125638246536, 0.04192809388041496, 0.05184408277273178, -0.021692752838134766, -0.003722023218870163, -0.01665516570210457, -0.019290199503302574 ]
A quick run through with plans to make your own Saruman staff! The proportions are not perfectly aligned to the movie, but they are close. The .svg file of the plans has been included so you can edit the files in the free vector program Inkscape if you wish to modify the proportions or to fit a different sized ball. Either a printer to print out designs to cut by hand with a blade, or a laser cutter to cut the foam directly, this foam does not contain PVC so it can be laser cut. You should not laser cut anything with PVC. From these files you can cut out the staff shape, you will need to add a slot to the two main parts that slot together, the slot has not been included in the DXF or SVG as you may use foam board of a different thickness which requires a different sized slot. Here the edges of the foam had to be filled with polyfiller as the foam in the cardboard melted slightly from the laser and i was concerned about the spray paint dissolving the foam. spray all black. Assemble the top of the staff with a hot glue gun, being careful to not use excessive amounts. No need to put the orb in yet. Once the glue has set, poke the armature wire through the bottom of the foam close to the center in several spots so that several pieces of armature wire are protruding from the bottom, then put these into the top of the tub and squirt a very large amount of hot glue into the top of the tube. Then angle the tube in the air with the top of the staff facing towards the floor so the hot glue flows over the armature wire to stick the top of the staff and the tube together. Now use the black spray paint to cover any excess hot glue, then carefully bend the foam to slip the orb into place!
[ -0.0006783274002373219, -0.014664600603282452, 0.0003287653671577573, -0.028639573603868484, -0.016640679910779, 0.010557896457612514, -0.004932754673063755, 0.010133037343621254, 0.02461358904838562, 0.001340136514045298, 0.05716051906347275, -0.018172305077314377, 0.028444327414035797, -0.039910946041345596, -0.006686785724014044, 0.03043181821703911, -0.027844857424497604, -0.023636532947421074, -0.00975795928388834, -0.006335974205285311, 0.003905521472916007, -0.0029318504966795444, -0.06386838853359222, -0.027778981253504753, 0.002051407704129815, 0.033564306795597076, 0.014642295427620411, -0.005071788560599089, 0.05873264744877815, 0.03313586860895157, -0.009103119373321533, -0.005620548035949469, 0.05337706580758095, -0.02581121027469635, -0.02164194919168949, -0.018531257286667824, 0.016486356034874916, -0.041174180805683136, -0.030981777235865593, -0.03980327770113945, 0.033376358449459076, -0.011594263836741447, 0.04979526251554489, -0.024925077334046364, -0.02595721371471882, 0.009707145392894745, 0.014071929268538952, -0.0026850742287933826, -0.00248385570012033, -0.05218075215816498, 0.009058014489710331, 0.005934496875852346, 0.011607371270656586, 0.0035926876589655876, 0.004175672307610512, -0.012252536602318287, 0.012688273563981056, -0.019161395728588104, -0.04540689289569855, 0.041362464427948, 0.005901210475713015, 0.006699384655803442, 0.012643450871109962, -0.052218545228242874, 0.013242640532553196, 0.02593349665403366, 0.0061366623267531395, -0.016813121736049652, -0.0024187860544770956, -0.0111967409029603, -0.02265835739672184, 0.028841545805335045, -0.014800538308918476, -0.017810052260756493, -0.002936026779934764, -0.008484658785164356, -0.005762728862464428, 0.0029542488045990467, -0.007316825911402702, 0.01062707882374525, 0.00775231933221221, 0.06062151491641998, -0.017379559576511383, 0.009860043413937092, -0.03031870350241661, -0.029109373688697815, 0.009037117473781109, 0.03931817039847374, 0.03094847872853279, -0.015230530872941017, -0.0004056480247527361, 0.060955796390771866, -0.0065386854112148285, -0.0133480504155159, 0.032494574785232544, 0.02749846689403057, -0.028835570439696312, 0.044331952929496765, 0.029046617448329926, 0.0013888285029679537, 0.03233291581273079, -0.003717083018273115, -0.0062932041473686695, 0.03247738257050514, -0.021813981235027313, -0.01450312789529562, 0.008735298179090023, -0.0037242223042994738, -0.0008197192219085991, -0.019049787893891335, 0.026078158989548683, -0.037894804030656815, 0.05435870960354805, 0.02469092607498169, 0.009566052816808224, 0.009243137203156948, 0.02715471386909485, 0.023386402055621147, -0.054458942264318466, 0.034881655126810074, 0.01846073754131794, 0.02119714953005314, 0.01167475339025259, -0.035927362740039825, 0.013157693669199944, -0.03244838863611221, 0.009930504485964775, 0.05795317888259888, -0.023624280467629433, 0.0011505361180752516, 0.033459220081567764, -0.02975156344473362, -0.009687465615570545, 0.003349544247612357, 0.008993475697934628, 0.01375802606344223, -0.020583175122737885, 0.03363785892724991, 0.02478932961821556, -0.05966734141111374, 0.027742130681872368, 0.05802736431360245, 0.009939922019839287, 0.0936795100569725, 0.0018487698398530483, 0.03478245437145233, 0.005555367562919855, 0.03652866929769516, -0.04963379725813866, 0.008072479628026485, -0.029925450682640076, -0.012666614726185799, 0.010534320957958698, 0.006945727858692408, -0.020897483453154564, 0.00510563375428319, -0.013514728285372257, -0.005167891271412373, 0.01887335255742073, 0.03880550339818001, 0.01208744291216135, 0.01725035533308983, -0.01535539235919714, 0.03913775458931923, 0.0021140940953046083, 0.031172068789601326, -0.04226618632674217, -0.03281635791063309, -0.010642689652740955, -0.03487697243690491, 0.0024715899489820004, -0.014379874803125858, -0.021337104961276054, 0.0009775565704330802, 0.01608848199248314, 0.03998416289687157, 0.04358906298875809, 0.01319681853055954, 0.008261906914412975, 0.04781367629766464, -0.013907698914408684, -0.0005198800354264677, 0.025039706379175186, 0.06674487143754959, 0.011005767621099949, 0.0031593034509569407, 0.0017921648686751723, -0.025432538241147995, -0.005367918871343136, -0.00928043108433485, 0.009115106426179409, 0.04850434139370918, -0.005376771092414856, 0.015611241571605206, 0.0010856610024347901, -0.008435805328190327, -0.04355228692293167, -0.022101420909166336, -0.03737206384539604, -0.06713969260454178, -0.041444554924964905, 0.026766449213027954, -0.0346914604306221, 0.024053653702139854, 0.024455247446894646, -0.03272218257188797, 0.015533793717622757, 0.055711500346660614, -0.04863417521119118, -0.0021564392372965813, 0.019926242530345917, 0.028298024088144302, 0.00586385652422905, 0.006190990097820759, -0.015227020718157291, 0.0031724036671221256, -0.024025889113545418, 0.03289930149912834, -0.019980719313025475, 0.005278505384922028, 0.007609819993376732, 0.006711495574563742, 0.01940094120800495, 0.05016646906733513, -0.02434311807155609, 0.0031321337446570396, 0.019250808283686638, 0.06365811824798584, 0.008318034000694752, -0.007855971343815327, -0.05345818027853966, 0.05736763775348663, 0.04265628010034561, 0.04994453117251396, 0.0351550467312336, 0.02865711785852909, 0.03392895683646202, 0.015946323052048683, -0.0036904423031955957, 0.011211596429347992, -0.012275450862944126, -0.0062734573148190975, 0.021361317485570908, 0.025498734787106514, 0.01009461935609579, 0.04537830874323845, -0.0189626794308424, 0.006109629757702351, -0.004445025231689215, 0.0016275134403258562, -0.034268926829099655, 0.04346717521548271, 0.032680731266736984, 0.03666657954454422, -0.021010199561715126, -0.0021979394368827343, 0.007420957554131746, 0.08144286274909973, -0.030892491340637207, -0.017247943207621574, -0.008565760217607021, 0.006851771846413612, 0.026571953669190407, 0.023017676547169685, 0.04587690159678459, 0.024241086095571518, -0.007831462658941746, 0.003701751586049795, 0.0012879681307822466, -0.04196896031498909, -0.04763050004839897, -0.04715299606323242, -0.04170374944806099, -0.03904441371560097, -0.007241279352456331, -0.006760571151971817, 0.018646080046892166, -0.01775825023651123, 0.025783326476812363, -0.03212028369307518, -0.018822025507688522, -0.027562815696001053, -0.014559408649802208, 0.03795960918068886, 0.040649428963661194, 0.013360375538468361, 0.004736182279884815, 0.02619794011116028, -0.011215860024094582, 0.019937852397561073, -0.04356817528605461, 0.006041569635272026, -0.004970623180270195, -0.008645808324217796, 0.017870713025331497, 0.004292996600270271, 0.006521888077259064, -0.03002898395061493, -0.03036552667617798, -0.04908961057662964, -0.01827322132885456, -0.004393568728119135, -0.004008566029369831, 0.0050857579335570335, -0.04422838240861893, 0.04617282375693321, 0.020443497225642204, -0.0443594865500927, 0.04029607027769089, 0.029307939112186432, -0.04167237505316734, 0.032179154455661774, 0.00941537693142891, 0.018757211044430733, -0.04676990211009979, 0.03787669911980629, 0.03866659849882126, 0.01177307404577732, -0.025430528447031975, -0.03799744322896004, -0.03621283173561096, 0.011854629032313824, -0.009775374084711075, -0.030228180810809135, -0.027443574741482735, 0.03725983574986458, 0.01826149970293045, -0.041517943143844604, 0.0003504711203277111, -0.03338884934782982, -0.01767103560268879, -0.03884212672710419, -0.06361906230449677, -0.008117207325994968, 0.008728202432394028, 0.026300769299268723, 0.005676283501088619, -0.032465849071741104, -0.00008171920489985496, 0.002501739887520671, 0.04145094379782677, -0.04088113456964493, 0.04280857741832733, 0.022132404148578644, -0.03577163442969322, 0.02064305730164051, 0.05166781321167946, -0.026852507144212723, -0.015739139169454575, -0.02272363007068634, 0.005290026310831308, 0.004610699135810137, 0.020405583083629608, 0.029038332402706146, 0.03853433579206467, 0.058286167681217194, -0.060430675745010376, -0.012951070442795753, 0.01055334322154522, 0.02610575594007969, 0.005666595418006182, 0.007835292257368565, 0.03421497344970703, -0.054845262318849564, -0.06530773639678955, -0.042474064975976944, 0.04255389794707298, 0.043289851397275925, 0.06337765604257584, -0.05866554006934166, 0.046844806522130966, 0.004007764160633087, -0.04941906780004501, 0.02066071145236492, -0.032630544155836105, 0.005547583103179932, 0.014826239086687565, -0.018526162952184677, 0.04627612978219986, -0.046863190829753876, 0.0017963866703212261, -0.007536275312304497, 0.014632510021328926, 0.04419774189591408, -0.011945856735110283, 0.011545049026608467, -0.015279185026884079, -0.023524237796664238, -0.0074860695749521255, -0.013654365204274654, -0.017364853993058205, -0.031939852982759476, 0.024994703009724617, -0.030771750956773758, -0.05837763473391533, -0.052894093096256256, 0.03039579838514328, 0.044151995331048965, 0.06783261150121689, -0.010647931136190891, 0.00767618278041482, -0.01431835163384676, -0.004813804291188717, 0.02371690236032009, -0.03691588342189789, 0.005745183676481247, -0.059402838349342346, 0.08312658965587616, 0.009150652214884758, -0.03693367540836334, -0.013890314847230911, -0.004163490142673254, -0.033621422946453094, 0.050819288939237595, 0.006211513187736273, -0.015711920335888863, -0.04235851764678955, -0.002280124928802252, -0.025471027940511703, 0.022017382085323334, -0.03107387013733387, -0.03670164942741394, -0.01715879701077938, 0.019220074638724327, 0.03355482220649719, -0.05604475364089012, -0.030551733449101448, -0.03619857132434845, 0.016948197036981583, 0.011880170553922653, -0.020791277289390564, -0.0349547453224659, -0.029916904866695404, -0.011526658199727535, -0.015968341380357742, -0.0013334263348951936, 0.024304216727614403, 0.012538846582174301, -0.01482592336833477, -0.04036992788314819, 0.03851154446601868, 0.011089707724750042, -0.0027917721308767796, 0.003573488211259246, 0.017878178507089615, 0.04530317708849907, -0.008886820636689663, 0.06098667159676552, -0.000213944076676853, 0.007967554964125156, 0.010948560200631618, -0.05562053248286247, -0.003180425614118576, 0.0023502057883888483, -0.0040768287144601345, -0.029094761237502098, 0.0034671779721975327, 0.022123776376247406, 0.048973508179187775, -0.012923899106681347, -0.030701585114002228, -0.005950433202087879, 0.03462754935026169, -0.07033566385507584, -0.017970481887459755, 0.04473020136356354, -0.008107343688607216, -0.025662558153271675, 0.031513240188360214, 0.03711770474910736, -0.02322232723236084, -0.001212726579979062, 0.045388128608465195, -0.05082815885543823, 0.020398972555994987, -0.056171219795942307, 0.028548143804073334, -0.041443996131420135, -0.010868577286601067, 0.015431390143930912, -0.0190495103597641, 0.0411798357963562, -0.0009977312292903662, -0.0029370661359280348, -0.019172945991158485, -0.018332691863179207, -0.01734282076358795, 0.00268533849157393, -0.04939807206392288, -0.016599856317043304, 0.03688478097319603, -0.03625096008181572, -0.024155883118510246, -0.04434499517083168, 0.02820209600031376, -0.00024253883748315275, -0.020317180082201958, 0.003888223320245743, -0.0019768965430557728, 0.008188274689018726, 0.012667905539274216, 0.03789784759283066, -0.027297263965010643, -0.01718522608280182, -0.016996968537569046, 0.008739653043448925, -0.03734690323472023, -0.009579706005752087, -0.014439516700804234, -0.011170470155775547, -0.03050018474459648, 0.006770323030650616, 0.0005344629171304405, 0.02681240625679493, 0.014494488947093487, 0.013904142193496227, 0.04143201932311058, -0.00002190740815422032, -0.04028283432126045, 0.047174397855997086, 0.018544241786003113, -0.04840501397848129, -0.022490350529551506, 0.052089255303144455, 0.00894438661634922, 0.04626480117440224, -0.002261484507471323, -0.01200882252305746, -0.04714003577828407, -0.04842785745859146, -0.006703436840325594, -0.047794654965400696, -0.02499888278543949, -0.039135515689849854, -0.06404158473014832, -0.004268066957592964, 0.019257891923189163, -0.025956295430660248, -0.024674881249666214, 0.00277035147882998, -0.046620890498161316, -0.003089430509135127, -0.03330061584711075, -0.019283002242445946, -0.00755528686568141, -0.013240071013569832, -0.02004867233335972, 0.0410919263958931, 0.005184839945286512, 0.024851541966199875, 0.0035435378085821867, 0.003648362820968032, 0.03701762482523918, -0.01631207950413227, -0.02142985351383686, -0.035117410123348236, -0.011259593069553375, -0.00011816324695246294, -0.002239918801933527, 0.018201984465122223, -0.007266836706548929, 0.05755513161420822, -0.04178588092327118, 0.023594172671437263, -0.029604515060782433, -0.007770614232867956, -0.02128024585545063, -0.008889233693480492, 0.04618387296795845, -0.015990152955055237, 0.018017806112766266, -0.015472861006855965, 0.03953550383448601, 0.06104534491896629, 0.01212588232010603, -0.010124197229743004, -0.03386686369776726, -0.06689883023500443, -0.0602138489484787, 0.027066325768828392, -0.028552157804369926, -0.023052586242556572, -0.03920496627688408, 0.017717493698000908, 0.029569178819656372, -0.005724487826228142, 0.04367375001311302, 0.0560435950756073, -0.0036782831884920597, 0.0034339572302997112, -0.04663887247443199, 0.016026176512241364, 0.04116947576403618, -0.02694334276020527, 0.016123361885547638, -0.008643059991300106, -0.026840616017580032, 0.018658697605133057, -0.05818410590291023, -0.02952374704182148, -0.06923078000545502, 0.014745201915502548, 0.07318179309368134, -0.005847572349011898, 0.04412492737174034, 0.004490496125072241, -0.06084495782852173, -0.030285382643342018, 0.033984165638685226, 0.00945278163999319, 0.024039220064878464, 0.03353450447320938, -0.0005930783809162676, -0.008303248323500156, -0.006152538117021322, -0.011853552423417568, -0.006408295128494501, -0.05318743363022804, 0.0957174301147461, 0.01171153225004673, -0.04435008391737938, 0.029077904298901558, 0.0498981811106205, -0.04909786954522133, -0.04363333433866501, -0.03666452318429947, -0.014306774362921715, -0.015732569620013237, -0.028109325096011162, 0.010316449217498302, -0.016345258802175522, -0.010391154326498508, 0.026972616091370583, 0.04612160101532936, -0.012652778998017311, 0.04490362107753754, -0.014949015341699123, 0.019640857353806496, -0.023687727749347687, 0.01442023180425167, 0.029454022645950317, -0.01573280431330204, -0.03363377973437309, -0.05457112565636635, -0.025840040296316147, 0.0006586572853848338, 0.015371902845799923, 0.004928956273943186, 0.018340537324547768, 0.019002987071871758, 0.031442612409591675, 0.008764793165028095, 0.06266357749700546, 0.008283833973109722, -0.004669905174523592, 0.0016313568921759725, -0.05910568684339523, -0.03714371472597122, -0.05037948116660118, 0.029030002653598785, -0.000008016249921638519, 0.014858365058898926, -0.03745603933930397, -0.007882402278482914, 0.01959606632590294, 0.04432780668139458, 0.0019088108092546463, -0.06713704764842987, -0.022716239094734192, -0.03772450238466263, -0.041068438440561295, -0.03610594943165779, -0.014957495033740997, -0.003742992179468274, 0.021479785442352295, -0.037892334163188934, -0.028954552486538887, -0.005520635284483433, -0.010313713923096657, -0.0437600277364254, 0.019607380032539368, -0.031996991485357285, 0.03470988571643829, -0.030056295916438103, -0.03634687140583992, -0.046629779040813446, 0.004708204418420792, -0.05577273294329643, -0.0022479775361716747, 0.005158868618309498, 0.04433487728238106, 0.00375381950289011, 0.045896995812654495, 0.03019631654024124, 0.028518065810203552, -0.002842577872797847, -0.04908688738942146, -0.02651381678879261, 0.03196049481630325, -0.0033614456187933683, 0.027480481192469597, 0.0114567456766963, -0.05159643664956093, 0.038508810102939606, 0.027417214587330818, -0.0285083819180727, -0.022517554461956024, 0.01631280593574047, 0.02617460861802101, 0.0018454266246408224, -0.030529990792274475, -0.0353817455470562, -0.04140413552522659, -0.0362294465303421, 0.03546154126524925, 0.0034454800188541412, 0.007383693940937519, 0.01782589964568615, 0.009124284610152245, 0.0019888675305992365, 0.07417630404233932, 0.017161022871732712, -0.015977701172232628, 0.055766280740499496, 0.037279922515153885, 0.029487259685993195, 0.009629543870687485, 0.017324380576610565, 0.025464128702878952, 0.023075290024280548, -0.04065464064478874, 0.027050387114286423, 0.010383079759776592, -0.009718062356114388, 0.02965746633708477, -0.016992507502436638, -0.016420437023043633, -0.002466639271005988, 0.007961987517774105, 0.021517733111977577, 0.05970178171992302, -0.0018376567168161273, -0.029035251587629318, 0.005018699914216995, -0.04147719591856003, -0.02077065408229828, 0.007469549309462309, -0.07237718254327774, -0.042971108108758926, 0.02606179006397724, -0.035798218101263046, 0.02364208921790123, 0.00604783883318305, -0.03279082849621773, -0.028418874368071556, -0.026947619393467903, 0.010474520735442638, -0.018832644447684288, 0.057172439992427826, -0.004901557229459286, 0.025040918961167336, -0.01740873046219349, -0.00845384318381548, 0.037023067474365234, 0.07553385198116302, -0.05060621723532677, -0.052908141165971756, 0.023472024127840996, 0.013127928599715233, 0.015977337956428528, 0.005301710218191147, 0.009637366980314255, 0.04117932915687561, 0.005011146422475576, 0.024242250248789787, -0.007857178337872028, 0.030954590067267418, -0.00831197202205658, 0.035433508455753326, 0.0003642408119048923, -0.003353762673214078, -0.03671472147107124, 0.018164314329624176, 0.040576621890068054, -0.027623865753412247, -0.01629766821861267, 0.053257882595062256, 0.004880021326243877, -0.02286640740931034, 0.04002079367637634, -0.007341279182583094, 0.041905179619789124, -0.020710483193397522, -0.0035251793451607227, -0.0037362852599471807, 0.042804837226867676, 0.029050199314951897, 0.07081100344657898, -0.012781240046024323, 0.02301226742565632, 0.03652910143136978, -0.0023712783586233854, 0.005150713957846165, 0.044271212071180344, 0.024225682020187378, -0.014598567970097065, 0.002014046534895897, -0.00409469660371542, 0.003813317744061351, -0.004464991856366396, -0.0031375086400657892, 0.01142058428376913, -0.017902743071317673, -0.015477688051760197, -0.019441118463873863, -0.02897333726286888, 0.055760446935892105, -0.027321746572852135, -0.026250414550304413, 0.01716947928071022, -0.01923741213977337, -0.003256221767514944, 0.042176276445388794, -0.0027930131182074547, 0.014143342152237892, 0.016543185338377953, 0.02232649177312851, -0.001712193712592125, 0.02247740514576435, 0.016828006133437157, -0.0014789176639169455, 0.0052579669281840324, 0.002288427436724305, 0.006991592235863209, 0.016378767788410187, -0.026965802535414696, -0.016754424199461937, -0.03997746855020523, 0.053634725511074066, -0.01864519901573658, -0.049539949744939804, 0.022279681637883186, -0.04470187425613403, -0.026359913870692253, -0.03764732554554939, 0.033614348620176315, -0.013225391507148743, 0.010315855033695698, 0.019075874239206314, -0.004906945396214724, -0.02606242708861828, 0.05429508909583092, -0.019886823371052742, 0.0378337986767292, 0.021472251042723656, 0.06604873389005661, 0.023829039186239243, 0.04411756247282028, 0.042855989187955856, -0.024618754163384438, -0.004589783027768135, 0.04099613055586815, -0.024518923833966255, -0.025162339210510254, -0.01790558733046055, -0.05936729907989502, -0.023977691307663918, -0.04072904586791992, -0.008152919821441174, -0.03314535319805145, 0.055541303008794785, -0.03339342027902603, -0.038779519498348236, 0.004812197759747505, 0.03157513961195946, -0.04825247824192047, -0.01570960134267807, 0.018999962136149406, 0.05435359850525856, -0.015350107103586197, 0.008727182634174824, -0.023399969562888145, -0.04133138433098793, -0.056897472590208054, -0.030842550098896027, 0.008192644454538822, 0.013171988539397717, -0.015394712798297405, -0.026869922876358032, -0.026084955781698227, -0.02247178554534912, -0.013189801014959812, -0.03227907791733742, -0.012883911840617657, 0.04585570842027664, 0.02111944928765297, 0.03638345003128052, 0.016269898042082787, -0.03879765793681145, 0.009096965193748474, 0.052672259509563446, 0.07703447341918945, -0.008646040223538876, 0.04562012851238251, 0.06858544796705246, -0.012305219657719135, 0.018466614186763763, -0.02942189946770668, 0.025598878040909767, -0.026894135400652885, 0.0018059624126181006, -0.0007970160222612321, 0.02692921832203865, -0.03560345619916916, -0.06106764078140259, -0.019917508587241173, 0.01922353357076645, 0.02704477496445179, -0.01271656434983015, -0.06059466302394867, 0.021434132009744644, -0.0767328217625618, -0.030582379549741745, -0.07306967675685883, 0.009585686959326267, 0.032374218106269836, -0.013139509595930576, 0.01237036194652319, -0.06359720975160599, 0.18219709396362305, 0.056702353060245514, 0.03614560887217522, 0.0060382201336324215, 0.01819044165313244, 0.07040268182754517, 0.02615785226225853, -0.026014240458607674, -0.023267032578587532, -0.0479818657040596, 0.01185003761202097, 0.016750343143939972, 0.04172482341527939, -0.00672927824780345, 0.017641214653849602, 0.07425147294998169, -0.04792831093072891, 0.004468291997909546, 0.008884922601282597, -0.06266472488641739, -0.055598869919776917, 0.0147840091958642, -0.000498435867484659, 0.030404381453990936, -0.008369632996618748, -0.001800506841391325, 0.005510939285159111, -0.05443938821554184, -0.01623343490064144, -0.0308943260461092, 0.03717772290110588, -0.029291896149516106, 0.022241992875933647, -0.021077364683151245, -0.02746654860675335, 0.05870778113603592, 0.018876494839787483, -0.03070651926100254, -0.0032447322737425566, -0.000625814194791019, -0.03150785714387894, 0.004586508497595787, 0.02997637167572975, -0.023065336048603058, 0.003790528979152441, 0.0517011396586895, -0.025853054597973824, -0.008295007981359959, -0.01833747699856758, -0.05012025684118271, 0.05146905034780502, -0.04741070792078972, 0.0006308310548774898, -0.020320946350693703, -0.05369792878627777, 0.02394411526620388, -0.014471306465566158, -0.006745780818164349, -0.016306350007653236, 0.0010565143311396241, 0.02631576731801033, 0.020453481003642082, -0.0069510904140770435, -0.016666723415255547, -0.0802118107676506, -0.0035581232514232397, -0.029002802446484566, -0.000400187389459461, -0.02012752555310726, -0.01380213163793087, -0.02840465120971203, 0.007659276947379112, -0.001679284730926156, -0.015201768837869167, 0.08515237271785736, 0.008098679594695568, -0.019299734383821487, 0.04757218435406685, 0.03298520669341087, -0.013577002100646496, -0.014511555433273315, -0.02056816592812538, -0.0006020842120051384, 0.016473619267344475, 0.004664430394768715, 0.038214098662137985, -0.07685080915689468, -0.04766885191202164, -0.004074160009622574, 0.07263337075710297, 0.03588637337088585, 0.03811204060912132, -0.035713113844394684, 0.0045892633497715, 0.00504668615758419 ]
Searching for a job can be filled with anxiety. Whether you're looking for a job right out of college or you're looking to switch jobs late in life, nobody really relishes the job hunt. You might be hard pressed for money or concerned that your resume isn't competitive. The first rule of thumb when it comes to looking for a job is: don't panic. Sure, you are bound to have worries when searching for a job. Just keep in mind that there are thousands upon thousands of jobs available. It is more than likely that you'll eventually land a job. So long as you're relaxed about the job hunt, the process will go a lot more smoothly. How might it look if you show up to an interview panicked and desperate? When you're overly anxious, it makes for sloppy work whether it's putting together a resume, writing cover letters, or responding to email correspondence. If you've been looking for a job for several months with still no bites, you might think about changing some of your tactics. First, take a look at your resume. Is it easy to read and free of mistakes? It might seem strange to have to mention this but often resumes are fraught with grammatical and spelling errors. If you're an employer looking at two resumes one clean and professional, the other error-prone, which employee are you going to take? This might be the case even if you have more experience. Go over your resume with a fine-tooth comb. Don't just spell check sometimes words can be spelled correctly but used in the wrong context. Next, make sure your skills are highlighted. Just writing the company and the years worked is not nearly enough. You should highlight every skill used for each job. At the same time, brevity is important. A job recruiter might have a stack of 50 resumes, or even more, so your resume needs to get to the point quick. Highlight the most unique and challenging aspects of your employment. Adding bold highlights to certain job qualifications helps them stand out on the page. It's recommended that you also make up a few different resumes highlighting different skills. This depends on the nature of your job search. If you are applying for jobs within a very narrow field, you may only need one basic resume. If you are applying for several different types of jobs, prepare resumes that correspond to the skills of each job. Most word programs include a resume builder, which can be easily customized. When you finally do get called in for an interview, the same rules still apply: look presentable, be polite, and most of all, be aware of your audience. Some interviews will allow for some joking or witty banter, others will be all business. Just as you should submit different resumes to different jobs, you should not treat every interview exactly the same.
[ -0.005658116657286882, -0.0177996177226305, -0.007386438548564911, 0.0027590265963226557, -0.006191673688590527, -0.02485671080648899, 0.016025830060243607, 0.014863458462059498, 0.032988566905260086, 0.03836453706026077, 0.06033576652407646, -0.013872521929442883, 0.005685384850949049, -0.035181447863578796, -0.009034505113959312, 0.008020937442779541, -0.004944074433296919, -0.002884820569306612, -0.02966449409723282, -0.00008208367944462225, -0.005331108346581459, 0.0072081140242516994, -0.029481971636414528, -0.04266366362571716, -0.024343129247426987, 0.03910282999277115, 0.02919040620326996, -0.020181912928819656, 0.04840533807873726, 0.06920521706342697, -0.04289272800087929, -0.011919582262635231, 0.005381153896450996, -0.040094319730997086, -0.04027451202273369, -0.03239378333091736, 0.02617036923766136, -0.050756629556417465, -0.015438820235431194, -0.025874031707644463, 0.012399925850331783, -0.014338415116071701, 0.03014666773378849, -0.02366163209080696, -0.0552387535572052, -0.012319241650402546, -0.02946525812149048, -0.01315202284604311, 0.01925697736442089, -0.05640574172139168, 0.008190707303583622, 0.003807395463809371, 0.00043665876728482544, 0.007660482078790665, -0.0013108995044603944, 0.043223679065704346, 0.006426887586712837, -0.0017598780104890466, 0.008627389557659626, 0.027435822412371635, 0.02309793420135975, 0.02889246679842472, 0.0040398575365543365, -0.046905893832445145, 0.0226261168718338, 0.034180834889411926, -0.015911098569631577, 0.022809995338320732, 0.03172856941819191, -0.0012323289411142468, -0.006444156635552645, 0.006733683869242668, -0.0006196255562826991, -0.01444168295711279, 0.006613193545490503, -0.0027748008724302053, 0.007862414233386517, 0.026471499353647232, -0.007638019509613514, -0.010046287439763546, 0.00767242768779397, 0.04534904658794403, 0.0006684862310066819, -0.009299756027758121, -0.04708753898739815, -0.012102853506803513, 0.014435762539505959, 0.026935022324323654, 0.0531403124332428, -0.012309928424656391, 0.00043421925511211157, 0.0537576861679554, -0.0024350557941943407, 0.0057406737469136715, 0.01985872909426689, 0.04225490614771843, -0.021613897755742073, 0.033001888543367386, 0.039689578115940094, 0.006712071597576141, 0.027897082269191742, 0.04013844206929207, 0.024864662438631058, 0.04585344344377518, -0.039548180997371674, -0.015365964733064175, -0.004139005672186613, -0.018257547169923782, -0.016704628244042397, -0.03139912709593773, -0.00692712189629674, -0.022728851065039635, 0.029644286260008812, 0.0002730626438278705, -0.0073958998546004295, 0.02923797443509102, 0.014918209984898567, 0.03874191641807556, -0.009642543271183968, 0.03562132269144058, 0.0037081013433635235, 0.01281477976590395, 0.035357020795345306, -0.032655760645866394, 0.01410232950001955, -0.015085567720234394, -0.04619622603058815, 0.0704253762960434, -0.04509428143501282, 0.05007987841963768, -0.016359206289052963, -0.016038967296481133, -0.004932272247970104, 0.023469936102628708, 0.019978562369942665, 0.020069072023034096, 0.0299976896494627, 0.04245811328291893, -0.010940635576844215, -0.05277325585484505, 0.06409919261932373, 0.02121089957654476, -0.0049768672324717045, 0.07750213891267776, -0.0016262298449873924, 0.01026162039488554, 0.009030302055180073, -0.0019116131588816643, -0.014795088209211826, 0.04068535938858986, -0.030167119577527046, 0.016840210184454918, -0.018860651180148125, 0.005302180536091328, -0.0017814725870266557, -0.0019546414259821177, 0.033066798001527786, -0.00729616591706872, 0.028994329273700714, 0.02921265736222267, -0.03554042801260948, 0.022352294996380806, 0.00784023106098175, 0.04511343687772751, 0.005759267136454582, 0.024995939806103706, -0.025851653888821602, 0.0009675180772319436, -0.0059064943343400955, -0.04823338985443115, 0.0028086616657674313, 0.0030724958050996065, -0.01648838259279728, 0.03390628844499588, 0.013609519228339195, 0.05306467041373253, 0.06439775973558426, 0.004126456566154957, 0.05008659139275551, 0.03828584775328636, -0.04029414802789688, -0.036008212715387344, 0.005767499562352896, 0.07036352902650833, -0.010925543494522572, -0.03739428147673607, 0.016772601753473282, -0.04647381976246834, -0.03861905634403229, -0.003087884746491909, 0.0007896670722402632, 0.020123742520809174, 0.008014630526304245, 0.04868846386671066, 0.0076843248680233955, 0.002620041836053133, -0.03843603655695915, -0.006756666116416454, -0.007473727688193321, -0.0667453482747078, -0.046448320150375366, 0.03319927677512169, -0.046353258192539215, 0.0164740439504385, 0.017500877380371094, -0.00015506433555856347, 0.03834952786564827, 0.042735617607831955, -0.04996105656027794, 0.0015617040917277336, 0.0349234864115715, 0.03911694511771202, -0.02500273287296295, -0.042521342635154724, 0.016237836331129074, 0.00016932463040575385, -0.02948554791510105, 0.048930637538433075, 0.029856132343411446, -0.032113756984472275, 0.011911607347428799, 0.015594947151839733, 0.006951850838959217, 0.025121117010712624, 0.004309064242988825, 0.019436217844486237, 0.01311509683728218, 0.05594810098409653, -0.024254709482192993, 0.023715225979685783, -0.018997589126229286, 0.045487742871046066, 0.03664368763566017, 0.035816531628370285, 0.045208342373371124, 0.005578747950494289, 0.04597855359315872, 0.05836465582251549, 0.023569278419017792, 0.0206899531185627, 0.010463351383805275, 0.02584223262965679, 0.04375889152288437, 0.045974742621183395, -0.018051007762551308, 0.004432980436831713, 0.0000893499018275179, -0.03302011266350746, -0.006706133019179106, 0.05164719372987747, -0.008868030272424221, 0.05338893085718155, 0.02060564048588276, 0.03198257461190224, -0.05462299659848213, -0.01847713068127632, 0.0309486985206604, 0.08142179250717163, -0.026067236438393593, -0.03367087244987488, 0.005592097993940115, 0.022506797686219215, -0.012031586840748787, -0.01706370711326599, 0.03686390444636345, 0.010391292162239552, -0.0077604446560144424, 0.04971317946910858, 0.012563342228531837, -0.04587115719914436, -0.025024347007274628, -0.05393216013908386, -0.03658129274845123, -0.03417057916522026, -0.03509167954325676, 0.01538469735532999, 0.02960849553346634, -0.0383785180747509, 0.03922119736671448, -0.011824906803667545, -0.039580896496772766, -0.027451658621430397, -0.036883704364299774, 0.033841684460639954, 0.03281933069229126, 0.016569791361689568, -0.020020924508571625, 0.022712362930178642, 0.009791616350412369, 0.055142030119895935, -0.01600457914173603, -0.02186821773648262, -0.036611080169677734, -0.011083227582275867, 0.03220716118812561, -0.028017250820994377, -0.008672834374010563, -0.0130588598549366, -0.03423521667718887, -0.039016738533973694, -0.025925148278474808, -0.009719877503812313, -0.03163565322756767, -0.020428501069545746, -0.021026689559221268, 0.032032765448093414, 0.022703267633914948, -0.05189284309744835, 0.048949889838695526, 0.03986810892820358, -0.049286916851997375, 0.02027004212141037, 0.01018405333161354, 0.02134759910404682, -0.046765733510255814, 0.030899425968527794, 0.027649039402604103, -0.015904052183032036, -0.008656589314341545, -0.036715105175971985, -0.006548626348376274, -0.012780680321156979, 0.020862489938735962, -0.0012665860122069716, -0.02608862891793251, 0.04580416902899742, -0.020823616534471512, -0.06587694585323334, 0.02444644272327423, -0.046537354588508606, -0.01379817258566618, -0.05914934724569321, -0.03637830168008804, 0.03490934893488884, 0.017208397388458252, 0.01411792729049921, 0.006732804700732231, -0.01369338296353817, 0.02660413645207882, 0.02275564707815647, 0.04436182603240013, -0.028936658054590225, 0.0007726423209533095, 0.03949088230729103, 0.0011772762518376112, -0.0031017072033137083, 0.009824925102293491, -0.024995235726237297, 0.011827986687421799, 0.003954582381993532, 0.040121521800756454, 0.033150553703308105, 0.02524920180439949, 0.02401435375213623, 0.06849878281354904, 0.018718572333455086, -0.03863830119371414, 0.0048468573950231075, 0.02280760556459427, 0.001188614871352911, 0.014476518146693707, 0.03792827948927879, 0.014189955778419971, 0.006503142416477203, -0.046617865562438965, -0.04903566837310791, 0.023582305759191513, -0.014232550747692585, 0.06480524688959122, -0.05081398785114288, 0.07449959963560104, -0.011899908073246479, -0.02943606860935688, 0.02362324856221676, -0.05370129644870758, 0.0010931206634268165, 0.05925998091697693, -0.003354091662913561, 0.0543597973883152, -0.03194896876811981, 0.020767834037542343, -0.020200027152895927, 0.039699576795101166, 0.018859609961509705, -0.026368318125605583, 0.030101710930466652, 0.013934722170233727, -0.030201850458979607, -0.022732604295015335, -0.009385837242007256, -0.01768372766673565, -0.03450366109609604, 0.015264008194208145, -0.019298406317830086, -0.03016430325806141, -0.05576780065894127, 0.058707986027002335, 0.011639517731964588, 0.04400373250246048, 0.00038932362804189324, 0.001019681105390191, -0.0066556562669575214, 0.035440653562545776, 0.02337159402668476, 0.0059686643071472645, 0.007737371139228344, -0.046226441860198975, 0.058365266770124435, -0.00685170479118824, -0.0015246941475197673, -0.02930109202861786, 0.005333051085472107, -0.008506327867507935, 0.032404813915491104, -0.0006819033878855407, -0.05994512140750885, -0.027112044394016266, 0.007160315290093422, -0.014073068276047707, 0.056113291531801224, -0.040228430181741714, -0.02454357035458088, -0.0361173041164875, 0.03114527463912964, 0.021933598443865776, -0.035963211208581924, 0.012117023579776287, -0.016712196171283722, 0.04387946054339409, 0.0371897891163826, -0.0015613811556249857, -0.06268945336341858, 0.007717393804341555, -0.0422695055603981, -0.05506880208849907, -0.002177570713683963, 0.028458334505558014, -0.024961421266198158, 0.011142540723085403, -0.031876400113105774, 0.03487582877278328, -0.020243968814611435, -0.0013641862897202373, -0.015700817108154297, -0.014476374723017216, 0.023662962019443512, -0.0005867881118319929, 0.050225626677274704, -0.013332724571228027, -0.008185432292521, 0.004828739911317825, -0.039372459053993225, -0.0011581691214814782, 0.01427568681538105, -0.01341059897094965, -0.01563892886042595, 0.0027748041320592165, -0.006424594670534134, 0.024126995354890823, -0.029728570953011513, 0.02017640694975853, -0.029430685564875603, 0.052631404250860214, -0.05079037323594093, -0.06015521660447121, 0.032697971910238266, 0.0015586870722472668, -0.036008041352033615, 0.03208732604980469, 0.020478028804063797, -0.00020022437092848122, -0.023489702492952347, 0.0028623563703149557, -0.049793094396591187, -0.013078437186777592, -0.024722769856452942, 0.035801663994789124, -0.023165250197052956, -0.04526660963892937, 0.004544420167803764, -0.014807239174842834, 0.011841255240142345, 0.00943693332374096, -0.02316325716674328, -0.05495283752679825, -0.055795617401599884, -0.017613064497709274, -0.021006695926189423, -0.00798776838928461, 0.02833208627998829, -0.01824764534831047, -0.011668836697936058, -0.042339541018009186, -0.051111381500959396, 0.0018655426101759076, 0.008541766554117203, -0.004611647222191095, -0.010392973199486732, -0.030241573229432106, 0.027666442096233368, 0.011327637359499931, -0.010605845600366592, -0.03518589586019516, 0.010419188998639584, -0.00823016557842493, -0.027896851301193237, -0.02148381993174553, -0.0043168808333575726, 0.0017209803918376565, 0.0036466154269874096, -0.04984460771083832, 0.021919775754213333, -0.036802008748054504, 0.022889558225870132, 0.04969221353530884, 0.00790366530418396, -0.0027653216384351254, 0.027655577287077904, -0.01635866053402424, 0.028246894478797913, 0.01634979248046875, -0.027899397537112236, -0.034534890204668045, 0.04454074800014496, -0.02076607197523117, 0.03783590346574783, -0.0186928641051054, -0.018274756148457527, -0.057729627937078476, -0.025425957515835762, -0.01308094896376133, -0.03677792847156525, -0.03434216231107712, -0.057474009692668915, -0.016311565414071083, 0.013268397189676762, 0.04200519621372223, 0.032109323889017105, -0.030642641708254814, 0.0270300954580307, -0.06169157847762108, 0.014462015591561794, -0.046606361865997314, -0.026489749550819397, 0.00018804482533596456, -0.006164571736007929, 0.02483735978603363, 0.07817358523607254, 0.013407854363322258, 0.028901556506752968, 0.011090375483036041, 0.017501985654234886, 0.02905246429145336, -0.020760778337717056, -0.044937364757061005, -0.0019972354639321566, -0.004204146564006805, 0.0036263028159737587, 0.030042346566915512, -0.0018388476455584168, -0.029356004670262337, 0.028498750180006027, -0.020593442022800446, -0.00007786248170305043, -0.02698616497218609, -0.011017762124538422, -0.017089754343032837, 0.01332828775048256, 0.046505704522132874, -0.019727198407053947, 0.0037693579215556383, -0.033291228115558624, 0.07841149717569351, 0.050377365201711655, -0.014765791594982147, -0.018406415358185768, -0.04512328654527664, -0.03299109637737274, -0.04729032516479492, -0.0022502513602375984, -0.019183123484253883, -0.0026336521841585636, -0.023669851943850517, -0.022615384310483932, 0.04711275175213814, -0.032751452177762985, 0.052795328199863434, 0.06188926473259926, 0.01663287915289402, -0.005797643680125475, -0.011224585585296154, -0.014437243342399597, 0.043335869908332825, -0.026616457849740982, 0.012972879223525524, -0.025378886610269547, -0.05163482576608658, -0.013155494816601276, -0.04712777957320213, -0.04463794454932213, -0.057879894971847534, 0.013722427189350128, 0.05181635171175003, 0.0038726632483303547, 0.04361283406615257, 0.001567142317071557, -0.0342530831694603, -0.036643605679273605, 0.055280089378356934, -0.0026869820430874825, -0.016821028664708138, 0.037864554673433304, 0.005922999698668718, -0.04247129335999489, -0.0008402795065194368, -0.06209950149059296, 0.024365268647670746, -0.03756893053650856, 0.0677490085363388, 0.018712515011429787, -0.03652416542172432, 0.03282948210835457, 0.053093671798706055, -0.047340936958789825, -0.059910133481025696, 0.01232786662876606, 0.007597281597554684, 0.02539474330842495, -0.02528996579349041, 0.010321845300495625, -0.014432957395911217, -0.01071480568498373, 0.05893121287226677, 0.030997779220342636, -0.04296870902180672, 0.03682558238506317, 0.012056379579007626, 0.025455845519900322, -0.05113669112324715, -0.0018596294103190303, 0.02891792543232441, -0.002035503275692463, -0.017302291467785835, -0.04171615466475487, -0.005247780587524176, -0.010643509216606617, -0.005337550770491362, 0.04881199076771736, 0.01442166417837143, 0.017450381070375443, 0.048016507178545, 0.0012538325972855091, 0.045886944979429245, -0.0002999013231601566, -0.03731752932071686, 0.017971456050872803, -0.027924157679080963, -0.061306823045015335, -0.026652352884411812, 0.03068915195763111, -0.003560495562851429, 0.029221108183264732, -0.06764739751815796, -0.005627874750643969, 0.035060636699199677, 0.008438409306108952, -0.010971027426421642, -0.0627712830901146, -0.016762951388955116, -0.057942889630794525, -0.03898729756474495, 0.0030317807104438543, -0.03509897366166115, -0.014671596698462963, 0.0013075553579255939, 0.009357833303511143, 0.006377154961228371, -0.010632128454744816, 0.0013021492632105947, -0.019704898819327354, 0.009358447976410389, -0.022572418674826622, 0.06197722256183624, -0.03778044879436493, -0.051987774670124054, -0.052233800292015076, 0.009855874814093113, -0.03125487267971039, -0.007026618346571922, -0.00608629547059536, -0.003677662694826722, 0.01204624306410551, 0.014277772046625614, 0.016610300168395042, 0.01209243107587099, -0.01619889587163925, -0.04557790234684944, -0.001189853879623115, 0.03233160078525543, -0.06073031574487686, 0.03811413049697876, 0.023384926840662956, -0.01519178319722414, 0.014371545054018497, 0.02170201577246189, 0.0010057043982669711, -0.02450145222246647, -0.0062644705176353455, -0.00024015737290028483, 0.0125866224989295, -0.021045394241809845, -0.020748687908053398, -0.015819057822227478, -0.04337194934487343, 0.024561896920204163, 0.0016060632187873125, -0.0022387318313121796, -0.0038103600963950157, -0.007650216110050678, 0.0029776915907859802, 0.0618576854467392, 0.00023793880245648324, 0.033851783722639084, 0.023051176220178604, 0.02629036456346512, 0.02119578793644905, -0.012391824275255203, -0.008422438986599445, 0.015233960002660751, -0.0001295526890316978, 0.011543666943907738, 0.00012634540325962007, 0.011249274015426636, -0.023591935634613037, 0.011304772458970547, -0.014163537882268429, -0.012459796853363514, -0.026649564504623413, -0.021353958174586296, -0.013369275256991386, 0.05048324912786484, 0.013251706026494503, -0.0008279801113530993, 0.012897924520075321, -0.004486816003918648, -0.029180994257330894, 0.035482365638017654, -0.06998088955879211, -0.04800261929631233, 0.006274077575653791, -0.03443165123462677, -0.04467698186635971, -0.024298254400491714, -0.053027935326099396, 0.032833922654390335, -0.03031470626592636, 0.027074432000517845, -0.05077886953949928, -0.012571467086672783, 0.00125315529294312, 0.012883779592812061, -0.040291789919137955, 0.005440922919660807, 0.005643609445542097, 0.034023914486169815, -0.01887401193380356, -0.03740943595767021, 0.011705932207405567, -0.02974754571914673, 0.038846392184495926, -0.0015884354943409562, 0.006003649439662695, 0.038283783942461014, -0.006304299458861351, 0.018803659826517105, 0.02880176529288292, 0.026109736412763596, -0.013231686316430569, 0.02622097358107567, 0.0006087882211431861, -0.01884349063038826, -0.040848035365343094, 0.04700031131505966, 0.011849106289446354, -0.018871208652853966, -0.025515319779515266, 0.01012200117111206, 0.0507870614528656, -0.01211019977927208, -0.005878733471035957, 0.020023010671138763, 0.049881529062986374, -0.04940017685294151, 0.00983551423996687, 0.023602675646543503, 0.03834780678153038, 0.028768479824066162, 0.01109596062451601, 0.0027591008692979813, 0.02325836755335331, 0.029272794723510742, 0.003296317532658577, -0.0453200526535511, 0.050884801894426346, 0.0075141736306250095, -0.025338266044855118, -0.01575673557817936, -0.01350536197423935, -0.007333044428378344, 0.018690435215830803, -0.005805030465126038, 0.04639829322695732, -0.04726250097155571, -0.0005616036360152066, -0.03125317767262459, -0.026705430820584297, 0.06452964246273041, -0.023977018892765045, 0.000768042344134301, -0.029486654326319695, -0.0525490827858448, -0.04195104539394379, 0.02571795880794525, -0.01528836414217949, 0.0016918476903811097, 0.01372060738503933, 0.023416124284267426, -0.008122117258608341, 0.06242144852876663, 0.02708338387310505, -0.004200557246804237, -0.01508321799337864, 0.005200221668928862, 0.025967387482523918, -0.01028873398900032, -0.021293412894010544, 0.010372480377554893, -0.056460876017808914, 0.06631423532962799, -0.034149475395679474, -0.011588618159294128, 0.028281334787607193, -0.050405751913785934, -0.009355233050882816, -0.041400011628866196, 0.03911657631397247, -0.022411679849028587, -0.006870715878903866, 0.05105164274573326, -0.010592727921903133, -0.06694792211055756, 0.036943450570106506, -0.012892563827335835, 0.04787415266036987, 0.024417420849204063, 0.04729041829705238, -0.008234133943915367, 0.0565800815820694, 0.04698430374264717, -0.045653168112039566, -0.005996613297611475, -0.0043338085524737835, -0.0063709174282848835, -0.04068582504987717, 0.011686369776725769, -0.016140112653374672, -0.03795143961906433, -0.0319315567612648, -0.0022326037287712097, -0.03693753480911255, 0.025664905086159706, -0.05278715491294861, -0.03536064550280571, -0.025979237630963326, 0.004243094474077225, -0.02120155096054077, 0.004916713107377291, 0.041512344032526016, 0.0434102900326252, -0.010321308858692646, -0.021871937438845634, -0.02399689145386219, -0.011305602267384529, 0.0009824413573369384, -0.04645377770066261, 0.04063169285655022, -0.00854258332401514, -0.04772168770432472, -0.03641423210501671, -0.03907721862196922, 0.008451567031443119, -0.0014593593077734113, -0.027636850252747536, -0.05239848420023918, 0.04134860262274742, 0.059268366545438766, 0.006449805106967688, 0.012476167641580105, -0.0644393116235733, 0.01013869233429432, 0.05114545673131943, 0.07206251472234726, -0.0011878239456564188, 0.08374767005443573, 0.011511211283504963, -0.01201671827584505, 0.034384340047836304, -0.049007050693035126, 0.0018982383189722896, -0.011070321314036846, -0.0038868708070367575, -0.015594959259033203, 0.04302575811743736, -0.0309897568076849, -0.051141295582056046, 0.0011786381946876645, 0.01962847262620926, 0.024325599893927574, 0.015625428408384323, -0.07407940924167633, 0.015558210201561451, -0.061767611652612686, 0.005176332779228687, -0.05254596844315529, 0.029479805380105972, -0.0216271560639143, 0.0017881696112453938, 0.034736476838588715, -0.06214774399995804, 0.15321139991283417, 0.060112178325653076, 0.03300200775265694, -0.01858353614807129, 0.04527268186211586, 0.033880896866321564, 0.014261731877923012, 0.0036648795939981937, 0.03269924223423004, -0.03759906813502312, 0.018429528921842575, -0.013094328343868256, 0.03015776164829731, 0.002980441553518176, 0.00612206757068634, 0.04044588655233383, -0.04020148143172264, 0.0027956687845289707, 0.02550874464213848, -0.03998929262161255, -0.08030670136213303, 0.03319423645734787, 0.013502118177711964, 0.018070219084620476, -0.0007026459206826985, 0.03134850785136223, 0.024368470534682274, -0.055663030594587326, -0.008620313368737698, -0.005683242343366146, 0.05068356543779373, -0.03363848477602005, 0.030978361144661903, -0.028903068974614143, -0.011909227818250656, 0.03288327902555466, 0.00573028763756156, 0.0167043786495924, -0.022367002442479134, 0.018311670050024986, -0.023267783224582672, 0.02161496877670288, 0.016478637233376503, -0.05097348615527153, 0.025713816285133362, 0.030032427981495857, -0.02484765090048313, 0.007783662062138319, -0.004802274983376265, -0.04559287428855896, 0.043665651232004166, -0.028324680402874947, 0.04905008152127266, -0.016783038154244423, -0.04280818998813629, 0.044808339327573776, 0.0011671767570078373, -0.012767204083502293, -0.017418021336197853, -0.010980842635035515, 0.010838475078344345, 0.017172345891594887, 0.00236065243370831, 0.000246308627538383, -0.051454413682222366, -0.02302510291337967, -0.0001662340946495533, -0.007828421890735626, -0.0017910415772348642, -0.03011954203248024, -0.039224639534950256, 0.005347559228539467, 0.01385421585291624, -0.03326215595006943, 0.05826462432742119, -0.0011766040697693825, 0.011473137885332108, 0.01235965732485056, -0.026697564870119095, -0.043775126338005066, -0.038385339081287384, -0.00871660653501749, -0.023637419566512108, -0.027223356068134308, 0.019487690180540085, 0.04521925747394562, -0.04017365723848343, -0.006772422231733799, -0.03809932991862297, 0.05895838141441345, 0.0429396890103817, 0.03736472129821777, 0.016287080943584442, -0.002038449514657259, -0.03970428183674812 ]
Awesome = Do-It-Yourself Game Handouts Tags: Comics and Art, fantasy, gamma world, geekery, rpgs I have, as I may have mentioned from time to time, a lot of very cool friends. One of these is Josh, a.k.a. "Sirfox," who is a fellow artist and is also a member of my gaming group. I mentioned in my Gamma World review that the intro scenario in the game was woefully short on background material, not even providing the "boss" at the bottom of the dungeon (so to speak) a name. In the firm belief that this is a piss-poor way to write an adventure, I fleshed out the character a bit in a between-sessions handout, which in turn inspired Sirfy to provide his own illustration! Here's the scene I wrote (forgive the ALL CAPS parts … Gamma World is an over-the-top game, and calls for an over-the-top writing style): "BEHOLD!" said Jack, known to some as 'Wild-Eyed Jack,' leader of the gang known as 'The Rippers.' "We can move this enormous … mechanical … thing … using only THE POWER OF OUR MIND!" Jack was a "hoop," a man-sized humanoid rabbit, as were all of the 'senior management' (as they called themselves) of the gang. Upon Jack's head was a cybernetic 'crown' with cables running to the factory's central computer — the wounds around his skull from where it had forcibly inserted implants when he'd first put it on had at least stopped bleeding, but still looked nasty. Across from him, a robotic armature some thirty feet across lurched and swung around, dancing to the strange rhythms in the hoop's head. "Yeah, Jack," said Gutter, another member of the gang, "thrilling. But can we get serious a minute? We've been in this stupid factory for days now and we've got nothing to show for it but some tubs of glowy purple goo and a bunch of self-destructed robot parts." "Jack? JACK? We told you, we are no longer JACK! We are LEPUS MAGNUS THE FIRST! As for what we have to show for it, what do you call THAT?" He pointed at the wildly-swinging robot arm, and its clanking, grasping claw. "For too long, we sat quiet, dormant, damaged, and dark! But soon, SOON we shall have a MASSIVE ROBOT ARMY at our command! And with it, we shall SWEEP ACROSS THE WORLD! All shall fear our power and majesty!" "Eh, Jack…" said Gutter. "I'm worried about you. I think those things may have hit some important parts when they drilled into your skull. Maybe you should … y'know … take it off now?" "Take it off?" said Jack, voice rising to a wild shriek. "TAKE IT OFF? Infidel! Defiler! You would STRIP US of our POWER!" Gutter backed away, raising his hands in an attempt at a calming gesture. "Whoa, Jack, Jack! Don't — GAACK!" Suddenly, the hoop was hoisted into the air by the mechanical arm, his own arms and legs flailing wildly. "Jack! Jaaaaaack!" "We are not JACK!" shrieked the gang leader, his eyes bulging and bloodshot. "We are LEPUS MAGNUS! And you shall DIE for your TREASON!" The mechanical arm released Gutter abruptly; he plunged into one of the vats of squirming nano, which quickly climbed up his arms, legs, and face, engulfing him. "Jaaaaaaaaack–!" howled Gutter, until his voice was cut off by a squishy gurgle. "Does anyone ELSE doubt us?" demanded Lepus Magnus, formerly Wild-Eyed Jack. The rest of the congregation of hoops around him looked back and forth nervously, then almost as a body they knelt before their new king. Now, isn't that much more interesting than "Iron King, Level XX Controller"? I think Josh captured the character pretty well, don't you? Filed under : Roleplaying Games, Stories | Comments Off on Awesome = Do-It-Yourself Game Handouts
[ 0.03633597120642662, -0.012539035640656948, -0.01116147544234991, 0.004029043484479189, -0.005994650535285473, -0.023689093068242073, 0.0003747575101442635, 0.012911959551274776, 0.009282092563807964, 0.029971033334732056, 0.006562733091413975, 0.003163185203447938, 0.0016042047645896673, -0.054266877472400665, -0.01141617726534605, -0.02098122611641884, -0.043907634913921356, -0.038242828100919724, -0.0057095494121313095, -0.00790353026241064, 0.02235748991370201, 0.011576764285564423, -0.06587396562099457, -0.02295016124844551, -0.00048758689081296325, 0.025343192741274834, 0.026514839380979538, 0.03168034926056862, 0.0715964138507843, 0.05571398884057999, 0.014670300297439098, -0.013194256462156773, 0.023693358525633812, -0.05013859644532204, -0.013377463445067406, -0.014702703803777695, 0.05804378539323807, -0.015585004352033138, -0.014505753293633461, -0.03728010505437851, 0.030581766739487648, -0.02237466722726822, 0.03192231059074402, -0.0468178354203701, -0.04351628199219704, -0.00824080128222704, 0.015047394670546055, -0.018358120694756508, 0.008533229120075703, -0.05589660257101059, -0.0024427573662251234, 0.0040532867424190044, 0.0127106299623847, -0.0006615453166887164, -0.007788936607539654, -0.007409145589917898, -0.00715908408164978, -0.016454409807920456, -0.013142446056008339, 0.0485871285200119, 0.03528999537229538, 0.0009270251612178981, 0.03474976122379303, -0.06086406111717224, 0.016388017684221268, 0.03335774689912796, -0.029251324012875557, -0.020069820806384087, -0.001189650152809918, 0.009376272559165955, -0.010219189338386059, 0.0233266931027174, -0.018870359286665916, -0.02208179235458374, -0.046216681599617004, -0.007397828623652458, -0.0014825718244537711, 0.0165281780064106, -0.021519679576158524, 0.005674486979842186, 0.01581590436398983, 0.05910397320985794, -0.012710539624094963, 0.029015149921178818, -0.058152634650468826, -0.0007284687599167228, 0.022448010742664337, 0.030498625710606575, 0.015428354032337666, -0.02522633783519268, 0.01597932167351246, 0.03293222934007645, 0.017017165198922157, 0.00027986124041490257, 0.056438371539115906, 0.06858042627573013, -0.042881086468696594, 0.04414413124322891, 0.003922873642295599, -0.0017724658828228712, 0.01838107220828533, 0.028365835547447205, -0.01599486917257309, 0.04331023991107941, -0.02163047343492508, -0.018924441188573837, 0.02554406225681305, -0.03840018808841705, 0.011505166999995708, -0.03631681948900223, 0.025495978072285652, 0.003913723398000002, 0.02491796761751175, 0.0196818970143795, -0.014241853728890419, 0.028113489970564842, 0.00977976992726326, 0.028219204396009445, -0.0654418095946312, 0.023941345512866974, -0.0034516463056206703, -0.007448138669133186, 0.025114649906754494, -0.02471095137298107, 0.01271815225481987, -0.05580657720565796, -0.02463250607252121, 0.04100886732339859, -0.020091943442821503, 0.014547155238687992, -0.00001788489862519782, -0.021064870059490204, -0.022081613540649414, 0.01517755538225174, -0.022264735773205757, 0.024616021662950516, -0.030981456860899925, 0.039986852556467056, 0.016164101660251617, -0.07135549932718277, 0.05258958041667938, 0.019497519358992577, 0.0036868364550173283, 0.10302171856164932, 0.002595352241769433, -0.014891485683619976, 0.015608392655849457, 0.04150215908885002, -0.03715124726295471, 0.06275103241205215, -0.03558512404561043, -0.017929838970303535, -0.016762902960181236, 0.0059739695861935616, -0.015857843682169914, 0.019528651610016823, -0.010263745673000813, 0.03754223510622978, 0.018375802785158157, 0.04000125080347061, 0.004183846525847912, 0.015651769936084747, 0.0030255718156695366, 0.04142143949866295, 0.009059134870767593, 0.05228763073682785, -0.034201402217149734, -0.027527008205652237, -0.028682829812169075, -0.01589616946876049, -0.004407953936606646, -0.018203631043434143, -0.020246507599949837, 0.010769955813884735, 0.043981168419122696, 0.05938287451863289, 0.030217090621590614, -0.029411515220999718, 0.0557800829410553, 0.04223599284887314, -0.04394477233290672, 0.01302853412926197, -0.008892848156392574, 0.08027864992618561, -0.01661120168864727, 0.017310302704572678, 0.02734546549618244, -0.01282441709190607, -0.009371539577841759, -0.012943847104907036, 0.004966207779943943, 0.027219824492931366, -0.051532648503780365, 0.019737569615244865, 0.016992876306176186, 0.042009301483631134, -0.026328101754188538, 0.00487845903262496, -0.0019565324764698744, -0.0699518620967865, 0.004231052473187447, 0.05162052810192108, -0.006015531253069639, 0.0009768720483407378, -0.01818292774260044, -0.0382610559463501, 0.019799569621682167, 0.05671408027410507, -0.06160430610179901, 0.009808839298784733, 0.02476600930094719, 0.022895976901054382, -0.00754881277680397, -0.0025111986324191093, -0.008705793879926205, 0.003372500417754054, -0.036242399364709854, 0.06437148153781891, -0.01602080650627613, -0.01027180440723896, 0.023778097704052925, 0.01976744271814823, 0.026150090619921684, 0.042463868856430054, -0.003038416150957346, 0.010054170154035091, -0.021771324798464775, 0.06145704165101051, -0.0261473897844553, -0.02401411347091198, -0.02127557434141636, 0.06405149400234222, 0.03209923952817917, 0.04011061415076256, 0.029160158708691597, -0.007388847414404154, 0.052584368735551834, 0.0030997437424957752, -0.023885251954197884, 0.018256045877933502, -0.0216214582324028, 0.005111874081194401, 0.007610879838466644, 0.026653865352272987, -0.00885827001184225, 0.030929328873753548, 0.008082900196313858, -0.01763753592967987, -0.01758313924074173, 0.018338948488235474, -0.020965274423360825, 0.033933185040950775, 0.033209845423698425, -0.003405206371098757, -0.03929240256547928, -0.01420568022876978, 0.02945123054087162, 0.07149176299571991, -0.013760541565716267, -0.01920197531580925, -0.011979777365922928, 0.019121918827295303, -0.016222655773162842, 0.01615642011165619, 0.034565456211566925, 0.03687172755599022, -0.02900494635105133, 0.0142180435359478, 0.003939043264836073, -0.04369711875915527, -0.0557895265519619, -0.04644433781504631, -0.03769266977906227, -0.011896517127752304, -0.018128329887986183, 0.03076454997062683, 0.026200613006949425, -0.023885780945420265, 0.01711241900920868, -0.005771051626652479, -0.011459353379905224, -0.034983422607183456, -0.0014360178029164672, 0.0275944322347641, 0.024140169844031334, 0.033924560993909836, -0.04951103404164314, 0.03869861364364624, -0.009107274003326893, 0.04914407432079315, -0.023786773905158043, -0.016872359439730644, 0.0002326875546714291, 0.009154582396149635, 0.027387848123908043, 0.016505908221006393, -0.0011321111815050244, -0.008567576296627522, -0.021338339895009995, -0.04692167416214943, -0.004960653372108936, 0.02108633890748024, -0.00964901689440012, 0.020281976088881493, -0.04495861008763313, 0.043228842318058014, 0.044877953827381134, -0.04399952292442322, 0.04604697227478027, 0.027022603899240494, -0.03981779143214226, 0.03280026093125343, -0.012376025319099426, 0.0010310671059414744, -0.035824548453092575, 0.02965538576245308, 0.032458316534757614, -0.0009070527739822865, -0.020534517243504524, 0.01018268521875143, -0.02518569491803646, 0.0020774167496711016, 0.00791178084909916, -0.03352396562695503, -0.053686659783124924, 0.019333526492118835, 0.018377481028437614, -0.07664806395769119, 0.01461879350244999, -0.02667141705751419, -0.013920665718615055, -0.023633958771824837, -0.06195451319217682, 0.02400287613272667, 0.017510363832116127, 0.026955384761095047, -0.015289511531591415, -0.03489181399345398, 0.013761063106358051, 0.016131320968270302, 0.025877295061945915, -0.026129920035600662, 0.03333386778831482, 0.058274976909160614, 0.008145183324813843, 0.004508617799729109, 0.04041806235909462, -0.004205385688692331, -0.006035556085407734, 0.008410969749093056, -0.024195218458771706, -0.014681287109851837, 0.017766298726201057, 0.022728679701685905, 0.02473822422325611, 0.043095700442790985, -0.05476824566721916, -0.007628178223967552, 0.020327387377619743, 0.0011533631477504969, 0.02823088876903057, 0.009466358460485935, 0.02361949346959591, -0.020148582756519318, -0.053292784839868546, -0.045072346925735474, 0.009817522019147873, 0.020984388887882233, 0.05008958652615547, -0.025806764140725136, 0.03554285317659378, -0.020098907873034477, -0.027767082676291466, 0.03670773282647133, -0.06766970455646515, 0.01020141877233982, 0.033509332686662674, -0.0392238013446331, 0.04130418226122856, -0.04745258390903473, -0.013781844638288021, -0.01091659814119339, 0.012733867391943932, 0.040332965552806854, -0.019891656935214996, 0.015098223462700844, -0.0068121785297989845, -0.034507766366004944, -0.030645856633782387, -0.03820561617612839, -0.00982462428510189, -0.034244149923324585, -0.007499686907976866, -0.011517753824591637, -0.05485532432794571, -0.03609040752053261, 0.04590749740600586, 0.028792768716812134, 0.06286665052175522, 0.0005215926794335246, 0.040438517928123474, -0.006590905599296093, -0.005710913799703121, 0.040630538016557693, -0.013782735913991928, 0.013775084167718887, -0.052166447043418884, 0.0487065315246582, 0.03988771140575409, -0.03406872600317001, -0.013457945547997952, 0.017858587205410004, -0.03339773789048195, 0.015870263800024986, 0.011110428720712662, -0.009650606662034988, -0.007808435708284378, 0.045997731387615204, -0.0068742684088647366, 0.013136250898241997, -0.07145198434591293, -0.005060784984380007, 0.0013278127880766988, 0.025673015043139458, 0.013954739086329937, -0.07365623116493225, -0.023753540590405464, -0.04120020195841789, 0.03294661268591881, 0.018583375960588455, 0.019112946465611458, -0.057809799909591675, -0.03039565496146679, -0.04837718978524208, -0.03159452974796295, -0.0047347573563456535, 0.024158580228686333, 0.013063517399132252, 0.03534471243619919, -0.02885005995631218, 0.03441936895251274, -0.011807069182395935, -0.0056145372800529, -0.027410823851823807, 0.01604486256837845, 0.010286597535014153, -0.001316312700510025, 0.06736389547586441, -0.009483881294727325, -0.055669818073511124, 0.002783971605822444, -0.08158639073371887, -0.020651329308748245, 0.009542416781187057, -0.0028030879329890013, -0.0184769369661808, -0.010449173860251904, 0.01708395965397358, 0.0212631206959486, -0.008109664544463158, 0.002381513360887766, -0.021276146173477173, 0.06324207782745361, -0.04573024436831474, -0.02833602763712406, 0.06742219626903534, 0.0027910778298974037, -0.029043087735772133, 0.010575739666819572, 0.04784414917230606, -0.027340147644281387, 0.010921823792159557, 0.025106942281126976, -0.04420628771185875, 0.02166035771369934, -0.059744495898485184, 0.02660272642970085, -0.0002895558427553624, -0.003717945422977209, 0.0008306291420012712, -0.013340157456696033, 0.015040070749819279, 0.03702041879296303, -0.008894756436347961, -0.03989867493510246, -0.0642954558134079, -0.00671565905213356, -0.010342289693653584, -0.029461508616805077, 0.021348942071199417, 0.02003221958875656, -0.0023800553753972054, 0.0030782928224653006, -0.019591810181736946, 0.030857549980282784, -0.005750507116317749, -0.023481369018554688, 0.019483810290694237, 0.02111816219985485, 0.013233033008873463, -0.0020817089825868607, 0.008711977861821651, -0.034105729311704636, -0.016090821474790573, -0.03384099155664444, -0.01415933296084404, -0.05036531761288643, 0.010092556476593018, -0.02218208834528923, -0.007364126853644848, -0.032763831317424774, 0.004873344209045172, 0.0022430045064538717, 0.023754840716719627, 0.04173032194375992, 0.020843103528022766, 0.005062595009803772, -0.013841322623193264, -0.04369420185685158, 0.0574820451438427, 0.008062640205025673, -0.03324471786618233, -0.04821555316448212, 0.04932156950235367, 0.0008053000783547759, 0.026827571913599968, -0.016868533566594124, -0.007189277559518814, -0.04011306166648865, -0.06600264459848404, -0.003956262022256851, -0.046926043927669525, -0.010668950155377388, -0.027323661372065544, -0.040684133768081665, -0.005686311982572079, 0.0218595452606678, -0.006894138175994158, -0.05076569318771362, -0.005762938875705004, -0.015543663874268532, -0.029094506055116653, -0.02363051287829876, 0.004545623902231455, -0.018084252253174782, 0.00298499409109354, -0.04184400662779808, 0.06056434288620949, -0.032885149121284485, 0.02244606614112854, 0.002336090663447976, 0.030069341883063316, 0.01863931678235531, 0.00501716835424304, -0.02869964949786663, -0.03140246123075485, -0.0208857674151659, 0.004107717424631119, -0.0009911679662764072, 0.052015580236911774, -0.020449405536055565, 0.04573032259941101, -0.06183618679642677, 0.006382778286933899, -0.048627253621816635, -0.007160564884543419, -0.006860529072582722, 0.021022755652666092, 0.04862568527460098, -0.03713343292474747, 0.003162626875564456, -0.027420176193118095, 0.03205593675374985, 0.052928339689970016, 0.00893606711179018, -0.031939320266246796, -0.024439072236418724, -0.04825066775083542, -0.057409513741731644, 0.03180418908596039, -0.04614650085568428, -0.0003590258420445025, -0.03590139001607895, 0.006152382120490074, 0.04109804704785347, -0.022503148764371872, 0.044432856142520905, 0.031181935220956802, 0.032770004123449326, 0.014348742552101612, -0.03860907256603241, 0.01745133101940155, 0.03128409385681152, -0.003089025616645813, -0.0032714076805859804, 0.0048959823325276375, -0.042903680354356766, 0.022736668586730957, -0.0452636256814003, -0.025194840505719185, -0.07442948967218399, -0.011540803126990795, 0.06860906630754471, -0.02468174323439598, 0.053482361137866974, -0.017093637958168983, -0.04137786477804184, -0.055516913533210754, 0.04154904559254646, 0.024338651448488235, 0.0035315242130309343, 0.05399524047970772, 0.023669758811593056, -0.007080642506480217, 0.009939068928360939, 0.009141745045781136, -0.04119034484028816, -0.04400225356221199, 0.05646611005067825, 0.006436652969568968, -0.006277594715356827, 0.03530845046043396, 0.026127919554710388, -0.056132230907678604, -0.05617570877075195, -0.03838749974966049, -0.00025565698160789907, -0.013581017963588238, -0.03096739389002323, 0.0032182324212044477, -0.021438777446746826, 0.024225205183029175, -0.003293494926765561, 0.04250246286392212, -0.0004777546273544431, 0.038876354694366455, 0.005548282526433468, 0.017137397080659866, -0.027812542393803596, 0.04222557693719864, 0.022750047966837883, -0.01712670363485813, -0.04293346032500267, -0.055083710700273514, 0.0005878765950910747, 0.0189584381878376, -0.00046470583765767515, 0.05288028344511986, -0.010172630660235882, 0.0038974040653556585, 0.03229289874434471, 0.0002475428918842226, 0.029787389561533928, 0.015390169806778431, -0.019010886549949646, 0.016569901257753372, -0.05346955358982086, -0.05477409437298775, -0.042709674686193466, -0.009569814428687096, 0.009206373244524002, 0.03756207600235939, -0.04099706932902336, -0.018383445218205452, 0.025019075721502304, 0.02152976207435131, -0.006880626082420349, -0.048918552696704865, -0.04280931502580643, -0.026410024613142014, -0.05966535210609436, -0.017406148836016655, 0.004995340947061777, -0.005497229751199484, 0.006863580550998449, 0.0037022780161350965, -0.024941524490714073, -0.0036952358204871416, 0.009701231494545937, -0.02722674235701561, 0.009416439570486546, -0.04902128875255585, 0.035591188818216324, -0.021779099479317665, -0.025667428970336914, -0.020004617050290108, 0.005090957973152399, -0.03636666014790535, -0.038420286029577255, -0.00905429758131504, 0.008356851525604725, 0.030275214463472366, 0.04653790965676308, -0.00004991715832147747, -0.002359657781198621, -0.008090364746749401, -0.06195111200213432, -0.02037086710333824, 0.0321824811398983, -0.006851035635918379, 0.01923019252717495, 0.010855470784008503, -0.024834278970956802, 0.05666558817028999, -0.004745642188936472, -0.026241637766361237, -0.015613927505910397, 0.008593638427555561, 0.02510487474501133, 0.005126930773258209, -0.03932679817080498, -0.024416496977210045, -0.03196968138217926, -0.0547410249710083, 0.004873077850788832, 0.006719023454934359, 0.012145723216235638, -0.0028194391634315252, -0.005146828945726156, -0.007999373599886894, 0.0838441476225853, 0.010873496532440186, 0.016112469136714935, 0.023794163018465042, 0.04454556852579117, 0.03664326295256615, -0.019151367247104645, 0.014312755316495895, 0.01364198513329029, 0.0076583740301430225, -0.04560563713312149, -0.01148215588182211, -0.00680567929521203, 0.0019726853352040052, 0.022249002009630203, -0.0036088426131755114, -0.034254495054483414, -0.04301600158214569, 0.024217944592237473, 0.0011735600419342518, 0.04223693162202835, 0.014782855287194252, 0.0008313052821904421, 0.018754340708255768, -0.028607018291950226, -0.047590188682079315, 0.01138794980943203, -0.08888977766036987, -0.024239329621195793, 0.020789682865142822, -0.016572654247283936, 0.016935870051383972, 0.003136975225061178, -0.02848832681775093, -0.008221108466386795, -0.03864436224102974, 0.024232057854533195, -0.026010287925601006, 0.015836752951145172, 0.01947595179080963, 0.03658679872751236, -0.033869609236717224, -0.014919444918632507, 0.008528092876076698, 0.04810893163084984, -0.026392363011837006, -0.049530625343322754, -0.009647335857152939, 0.01975376531481743, 0.00010411653784103692, -0.018170330673456192, 0.006148769520223141, 0.021257633343338966, -0.014998489990830421, 0.010816064663231373, -0.01321189571171999, 0.013827216811478138, -0.019476521760225296, 0.010462719947099686, -0.012516546063125134, 0.02605280466377735, -0.04401147738099098, 0.05868618190288544, 0.05875382572412491, -0.009554311633110046, 0.002369498834013939, 0.06458815187215805, 0.026264019310474396, 0.006559557281434536, 0.033909860998392105, 0.016899755224585533, 0.05242388695478439, 0.015488957054913044, 0.03330963850021362, -0.028921911492943764, 0.0023224246688187122, 0.048409804701805115, 0.050591789186000824, -0.009265691041946411, 0.012502966448664665, 0.0498240701854229, -0.007758779916912317, 0.03704129531979561, 0.023878881707787514, 0.011979815550148487, -0.04029707610607147, 0.0038520516827702522, -0.01688368059694767, 0.003764416091144085, 0.00901167280972004, -0.011262506246566772, 0.010352320969104767, -0.033145785331726074, -0.013992478139698505, -0.013181165792047977, -0.009613984264433384, 0.02915249764919281, -0.04337245598435402, -0.01902272179722786, 0.02310217171907425, -0.00785059854388237, -0.004984479397535324, 0.03132643550634384, -0.020969737321138382, -0.008200746029615402, 0.012265576981008053, 0.03358873352408409, -0.02240086905658245, 0.029872329905629158, 0.038026001304388046, 0.03021012805402279, -0.007528310175985098, 0.011418522335588932, 0.025166478008031845, 0.012850913219153881, -0.030546844005584717, -0.009182155132293701, -0.036287229508161545, 0.04495716840028763, 0.0038428232073783875, -0.04743940755724907, 0.03238506242632866, -0.045299358665943146, 0.010358696803450584, -0.03361009806394577, 0.014851097017526627, -0.023432539775967598, 0.0018404911970719695, 0.03670071065425873, 0.00851654913276434, -0.039428066462278366, 0.01510252058506012, 0.00007711202488280833, 0.053554464131593704, 0.043610963970422745, 0.05918778106570244, -0.0014143752632662654, 0.06461404263973236, 0.04438083618879318, -0.034314487129449844, -0.00497767049819231, 0.016574956476688385, -0.023075196892023087, -0.026715096086263657, 0.007882421836256981, -0.04927710443735123, -0.016214247792959213, -0.02411157451570034, 0.010717371478676796, -0.027731213718652725, 0.04324311763048172, -0.0020761704072356224, -0.046573054045438766, -0.014332473278045654, 0.043045997619628906, -0.07492487877607346, 0.004007622599601746, 0.007569140754640102, 0.03368310630321503, 0.0021518690045922995, -0.01475535798817873, -0.01703837513923645, -0.050282977521419525, -0.00364628410898149, -0.052540868520736694, 0.04773170128464699, -0.017683453857898712, -0.017047464847564697, -0.01686931774020195, -0.0317193940281868, -0.03918371722102165, -0.04188725724816322, -0.03601442649960518, -0.018451381474733353, 0.04417242482304573, 0.05779668316245079, 0.005698049440979958, 0.009658949449658394, -0.012372727505862713, -0.03879052400588989, 0.0460575632750988, 0.06347623467445374, 0.009110287763178349, 0.03310283273458481, 0.05132649466395378, -0.02084951288998127, 0.009716705419123173, -0.03626125678420067, 0.0366285964846611, -0.01916678249835968, -0.011471409350633621, -0.028769370168447495, 0.04164543375372887, -0.020326094701886177, -0.062102120369672775, 0.00853197555989027, 0.03795158118009567, 0.008192517794668674, -0.04978330805897713, -0.08585325628519058, -0.025841807946562767, -0.03595797345042229, -0.032557375729084015, -0.05258999392390251, 0.04755812883377075, 0.0356757752597332, 0.009244410321116447, -0.013877883553504944, -0.052718766033649445, 0.1656491905450821, 0.028606867417693138, 0.04688628017902374, 0.010590942576527596, 0.03418811410665512, 0.048324596136808395, 0.034517865628004074, -0.024467995390295982, -0.0041710990481078625, -0.037225980311632156, 0.02934134565293789, -0.00018040755821857601, 0.05148816108703613, 0.03628680482506752, 0.036770667880773544, 0.05300544574856758, -0.0349707156419754, 0.015350923873484135, -0.014317014254629612, -0.042319394648075104, -0.03876786306500435, -0.0030202753841876984, 0.026779470965266228, 0.024404143914580345, -0.02106231078505516, 0.015494056977331638, 0.046563878655433655, -0.05993606150150299, -0.004485681187361479, -0.01581364870071411, 0.02536260150372982, -0.007409237325191498, 0.042548276484012604, -0.03802056983113289, -0.03007795289158821, 0.06434500217437744, 0.0034387868363410234, -0.025328800082206726, 0.013056954368948936, 0.02417704649269581, -0.0395476259291172, -0.008096382953226566, 0.017087768763303757, -0.029985714703798294, 0.0074366298504173756, 0.030170399695634842, -0.01883779838681221, -0.010821438394486904, 0.005900902673602104, -0.04502919316291809, 0.039669256657361984, -0.02917337417602539, 0.021228866651654243, -0.022320488467812538, -0.016820119693875313, 0.014489352703094482, 0.00847052875906229, -0.009572036564350128, -0.031089894473552704, 0.008861119858920574, 0.031927768141031265, -0.010805876925587654, -0.015790017321705818, 0.003863266436383128, -0.03500122204422951, 0.0172413419932127, 0.010284523479640484, 0.010643256828188896, 0.004089757800102234, -0.02558620274066925, -0.028316687792539597, 0.012005879543721676, -0.028538258746266365, -0.06201883777976036, 0.036170560866594315, 0.029485367238521576, -0.008534223772585392, 0.02950727567076683, 0.03472812473773956, -0.0013899047626182437, -0.044698070734739304, -0.05000447854399681, -0.020777570083737373, -0.01447363942861557, 0.0003649099380709231, 0.05597477778792381, -0.04840363934636116, -0.01801265962421894, 0.004350963514298201, 0.06274984031915665, 0.024297146126627922, 0.021171431988477707, -0.013905261643230915, 0.005966971628367901, -0.007396767381578684 ]
Debt consolidation Port Moody is the action of taking out a essential debt consolidation service to settle all hard earned cash owed. The brand new essential debt consolidation is usually at a top-notch lower rate of interest, and could be the crucial debt consolidation outlet for someone with too many high-interest debts to pay off. For those who have seen yourself in unpredictable levels of bills, debt consolidation might be worth looking into, as there are lots of top-notch advantages to debt consolidation. When you combine all your bills into one credit consolidating loans, you're left with just one debt consolidation payment. This is able to make your frequent life easier, as you wont need to be concerned about paying multiple high interest debt punctually each month anymore. You're then free to concentrate on the one prominent debt consolidation payment a month to settle all of your high monthly bills. Usually the crucial payment will probably be smaller, as the debt consolidation program is stretched out over a essential duration of time as well as the top-notch rate of Port Moody debt consolidation loan interest might be lower as well. Among the most essential advantages of debt consolidation is the load of anxiety that'll be lifted everyday from your head. Continuous worry about payday loans in Port Moody complications can change other facets of a persons day to day life, as well lifting the Port Moody weight from your shoulders could be a issue emotionally. When you've just one essential invoice to pay off, it's exponentially less difficult to make and keep a budget. The top-notch relief of only worrying about one credit consolidating statement can be just the break you should concentrate in Port Moody BC on what's significant in your lifetime. Debtors using numerous consolidate debt: Port Moody services for high interest debt are often subjected to the issue of unpredictable high minimal monthly unsecure over due bills payments. This prominent position would be crucial in the event the Port Moody lawyer cannot fulfill the capable past due bills payments. If a payment is lost frequent in Port Moody BC, the most likely fee is the fact that the top-notch rate of interest increases and in the long run the crucial users would battle and be submerged in an ocean of Port Moody high monthly bills. The easiest way out of this chancy would be to choose a creditcard relief loans. Debtors who enroll in prominent credit card management programs would automatically cease receiving phone calls from short term funding lenders and other Port Moody easy quick money loan agencies, when this essential endeavor stops, the frequent users would be in a top-notch position to focus new on financial authorization. Debtors who enrol in top-notch Port Moody consolidation loans services stand a capable chance of getting monthly bills free quicker than frequent debtors refunding essential unsecure high interest credit card debts and being penalized for prominent lateness and unpredictable defaults. Free help for your Port Moody debts. Port Moody British Columbia debt consolidation services are now available at DebtCafe Port Moody! Simply use our simple online form on the right to contact a Port Moody BC debt consolidation professional who can help you gain financial control over all of your unsecure loans and debt difficulties today! If you are like other individuals residing in Port Moody BC, you are sensing the unpredictable pinch from the financial complications and you need to understand how you can cut interest costs in Port Moody British Columbia and get out of debt fast. You may have tried to get a credit card relief with bad credit from the local lending institutions but the local Port Moody banks simply aren't prepared to assist and unsecure bills cost far too much in fees and other charges. At DebtCafe we have the Port Moody remedy. Your debt economic creditors recognize the worthiness of obtaining their Port Moody cash back therefore they're ready to assist you by decreasing your Port Moody debt, or even removing credit card debt, late charges and added economic Port Moody interest costs when you use any of our credit card relief loans options. Our credit consolidating loans options can demonstrate how DebtCafe Port Moody can reduce or eliminate interest, and de-stress your financial complications with merely a single payment per month. If you are visiting us from Port Moody British Columbia and you need to claim your free debt consolidation analysis, merely complete the FREE Port Moody debt consolidation form above. After you complete our card consolidation loans, debt consultation form you will get access into our system of Port Moody BC credit card management professionals who will compute an easy to understand creditor/financial assessment of the essential circumstance you face with card consolidation loans. This is done to find the very best debt relief program that will benefit you. It's vitally important for all required in Port Moody to comprehend where you are at with debt and hard earned cash in Port Moody because without these financial details, the credit consolidation professionals could not provide a crucial financial assessment and determine what's the prominent customized credit card consolidation that gets you debts free fast while putting hard earned cash in your pocket each month. Once finished your free debt relief, the debt consolidation professionals will be in a top-notch position to assist you in saving thousands of dollars in Port Moody debt in late fees and interest and possibly lowering the Port Moody principal also. Debt counselling - Port Moody - debt consolidation programs and credit card consolidation services are a simple way in Port Moody BC for you to get your life back - today!
[ -0.020067637786269188, -0.003346108365803957, -0.028914982452988625, 0.039865873754024506, -0.03226892650127411, -0.024052970111370087, 0.007964332588016987, 0.022272221744060516, 0.031959544867277145, 0.02733847126364708, 0.04651666805148125, 0.0009162407368421555, 0.02041524089872837, -0.048222173005342484, -0.030568115413188934, 0.01139160431921482, -0.024403521791100502, -0.03559314087033272, -0.037030212581157684, 0.03346298635005951, 0.0054123918525874615, -0.014239865355193615, -0.05786367505788803, -0.03613648563623428, -0.0038875341415405273, 0.0663122609257698, 0.03189080208539963, 0.0019029206596314907, 0.07341252267360687, 0.05865025892853737, -0.035666048526763916, -0.015614239498972893, 0.015960529446601868, -0.03120708465576172, -0.036957256495952606, -0.03285918012261391, 0.010488340631127357, -0.027898190543055534, -0.000264299800619483, -0.05272756516933441, 0.02179439179599285, -0.005263648461550474, 0.04221328720450401, -0.0320429652929306, -0.059337206184864044, -0.0063141523860394955, -0.023928046226501465, -0.037693921476602554, 0.007054820191115141, -0.05797358602285385, -0.02000339888036251, -0.013535992242395878, 0.02549135871231556, 0.008128038607537746, 0.012911534868180752, 0.02779899537563324, 0.0034991451539099216, 0.0010559025686234236, -0.004705323372036219, 0.03422391787171364, 0.0018912293016910553, 0.00717838853597641, 0.02644999511539936, -0.05122251808643341, 0.021788930520415306, 0.04157651588320732, -0.036831725388765335, -0.019981171935796738, 0.02709876373410225, -0.02929406799376011, 0.006850400939583778, 0.00645414600148797, -0.007647770922631025, -0.014607980847358704, -0.008399862796068192, 0.010417873971164227, 0.0036888516042381525, -0.037619564682245255, 0.018295614048838615, -0.0035314210690557957, 0.010362287983298302, 0.05744899436831474, 0.014346877112984657, 0.03502674028277397, -0.07944463938474655, -0.03960663825273514, -0.00487323384732008, 0.0370187945663929, 0.014716816134750843, 0.028680209070444107, 0.003909520339220762, 0.0619933046400547, -0.0034424548503011465, -0.016037141904234886, 0.028943216428160667, 0.027705678716301918, -0.025734495371580124, 0.013712070882320404, 0.008881539106369019, 0.028103256598114967, 0.03523751720786095, 0.011416478082537651, 0.003986225929111242, 0.041951246559619904, -0.017156511545181274, -0.004504172131419182, 0.0007947245612740517, -0.021548757329583168, -0.0068479920737445354, -0.022311421111226082, -0.014551782980561256, -0.013248123228549957, 0.03502701222896576, -0.030665764585137367, -0.014857616275548935, 0.01984352618455887, -0.023355258628726006, 0.051323093473911285, -0.03485918417572975, 0.016862500458955765, 0.004752408247441053, 0.012329034507274628, 0.06764403730630875, -0.018558979034423828, 0.01421954482793808, -0.048236995935440063, -0.031061038374900818, 0.044600773602724075, -0.05045640841126442, -0.007591117639094591, 0.016110632568597794, -0.050756920129060745, -0.03384420648217201, 0.03655560687184334, -0.013865337707102299, 0.004453956615179777, 0.0039029766339808702, 0.03385403752326965, 0.01736011914908886, -0.029333733022212982, 0.047881871461868286, 0.005565978121012449, -0.013116186484694481, 0.065782330930233, 0.005035051144659519, 0.06434713304042816, -0.005966094322502613, -0.034377504140138626, -0.003966192249208689, 0.03266223147511482, -0.012436820194125175, 0.012385650537908077, 0.00320989778265357, 0.03582140803337097, 0.003937913104891777, -0.03015340492129326, -0.00908780749887228, 0.021730080246925354, 0.0338023416697979, 0.0104171521961689, -0.016162538900971413, -0.009792094118893147, 0.017964571714401245, 0.028761526569724083, -0.015910882502794266, 0.03542006388306618, -0.046027377247810364, 0.015356563031673431, 0.0033979411236941814, -0.014898663386702538, 0.007370908744633198, 0.006004538852721453, -0.0206296406686306, 0.027488738298416138, 0.03422640264034271, 0.034852832555770874, 0.04275208339095116, -0.020911594852805138, 0.03916288539767265, 0.04884008318185806, -0.019579539075493813, -0.013185416348278522, -0.01535538025200367, 0.05464956536889076, 0.004785379860550165, -0.0026128864847123623, 0.003207341069355607, -0.01262002531439066, -0.03528105840086937, -0.027303416281938553, 0.006412866525352001, 0.024447906762361526, -0.028864741325378418, 0.05417932569980621, -0.005100524052977562, -0.005275430157780647, -0.0012249534483999014, -0.018752075731754303, 0.007200568448752165, -0.042452797293663025, -0.018006613478064537, 0.04633983597159386, -0.042690031230449677, 0.05740133672952652, -0.02065953239798546, -0.018820714205503464, 0.04231615737080574, 0.06325802952051163, -0.03914206847548485, -0.0055016279220581055, 0.07079066336154938, 0.024155396968126297, -0.03739702329039574, -0.03097148798406124, -0.015449732542037964, -0.0031422791071236134, -0.013678589835762978, 0.021383730694651604, -0.002652399707585573, -0.015979371964931488, 0.023206667974591255, 0.017257442697882652, 0.020960072055459023, 0.03643383830785751, -0.01141262985765934, 0.02536408044397831, -0.0053388033993542194, 0.04986966401338577, -0.025720929726958275, -0.011865317821502686, -0.0031281269621104, 0.028968703001737595, 0.03964883089065552, 0.08693426847457886, 0.01723526045680046, 0.04049155116081238, 0.043951116502285004, 0.046601686626672745, -0.009480360895395279, -0.002512505045160651, 0.006868911907076836, 0.03947722539305687, 0.0521744005382061, -0.005617908202111721, -0.018429942429065704, 0.029834628105163574, -0.017423512414097786, -0.003677031956613064, -0.03634146228432655, 0.03024148754775524, -0.019490089267492294, 0.04651843383908272, 0.016234127804636955, 0.045873403549194336, -0.0298189464956522, 0.019093384966254234, 0.05229593813419342, 0.04183589667081833, -0.011118095368146896, 0.0064402977004647255, 0.012300745584070683, 0.044921647757291794, -0.02480742149055004, -0.0024771627504378557, 0.011246141977608204, 0.025161251425743103, -0.00041774899000301957, -0.01046549528837204, 0.00012574190623126924, -0.038921404629945755, -0.024341469630599022, -0.03910563141107559, -0.0369182750582695, -0.04507555440068245, -0.048097655177116394, 0.010322808288037777, -0.0009469254873692989, -0.04677208513021469, 0.005812535993754864, 0.01768159493803978, -0.029439600184559822, -0.01671076938509941, 0.00686882296577096, 0.03174874559044838, 0.012442647479474545, 0.027727149426937103, -0.05752254277467728, 0.03439437597990036, 0.0015949505614116788, 0.0029754252173006535, -0.005196206271648407, -0.03566766902804375, -0.007968183606863022, -0.0015551988035440445, 0.03848997876048088, -0.002120151650160551, 0.0031379754655063152, -0.01875903829932213, -0.0552518405020237, -0.03860965743660927, -0.0004976309719495475, -0.021780619397759438, -0.023490166291594505, 0.01826879195868969, -0.04795825481414795, 0.057908374816179276, 0.024546092376112938, -0.027766117826104164, 0.027228018268942833, 0.03984103351831436, -0.025331227108836174, 0.038324322551488876, 0.016085496172308922, -0.0022325923200696707, -0.05639493465423584, 0.016483932733535767, 0.044834621250629425, -0.036990150809288025, -0.008134232833981514, 0.007341309450566769, 0.006693270988762379, 0.03743364289402962, -0.0020630245562642813, -0.0025091327261179686, -0.01196723710745573, 0.06119602546095848, 0.013426574878394604, -0.06756908446550369, 0.006191597785800695, -0.02738920785486698, -0.035672031342983246, -0.04111902788281441, -0.05197883024811745, -0.010902137495577335, 0.011587271466851234, 0.035485055297613144, -0.009824770502746105, -0.026362909004092216, -0.013045268133282661, 0.024708475917577744, 0.04408089444041252, -0.053973712027072906, 0.01889762096107006, 0.03199434652924538, 0.018441561609506607, -0.011840828694403172, 0.02927256189286709, -0.04480060935020447, -0.029293492436408997, 0.01029830239713192, -0.026548346504569054, 0.04108203947544098, 0.010134223848581314, 0.010008128359913826, 0.03148478642106056, 0.03125518560409546, -0.05268409103155136, -0.006563764996826649, 0.013497569598257542, 0.032136209309101105, 0.04886120557785034, 0.0021070344373583794, 0.0044022235088050365, -0.002950528636574745, -0.042401716113090515, -0.04374845698475838, 0.01740696094930172, 0.0054248846136033535, 0.05220707133412361, -0.03110276721417904, 0.062148116528987885, 0.013219941407442093, -0.04800064489245415, 0.04269171133637428, -0.0439322367310524, -0.002420200267806649, 0.03974449262022972, -0.004287075251340866, -0.002122096950188279, -0.03493194654583931, 0.03622043877840042, -0.02420657128095627, -0.00022880356118548661, 0.0323241651058197, 0.020848168060183525, 0.0069346739910542965, -0.033340826630592346, -0.0023517466615885496, -0.008335893042385578, -0.0021281077060848475, -0.01554789301007986, -0.0003953239065594971, 0.01542860921472311, -0.007283350918442011, -0.046465665102005005, -0.06525462865829468, 0.07309697568416595, 0.009174500592052937, 0.016423113644123077, -0.015837345272302628, 0.062029626220464706, 0.014341134577989578, 0.03242134302854538, 0.026218533515930176, -0.023721614852547646, 0.007147038355469704, -0.047120656818151474, 0.03417811542749405, 0.03652259707450867, -0.03175117075443268, -0.029347088187932968, -0.014680566266179085, -0.03091389313340187, 0.0460832305252552, -0.011033262126147747, -0.020940279588103294, -0.018949562683701515, -0.0006759656243957579, 0.011066274717450142, 0.039890967309474945, -0.020675156265497208, -0.02360016293823719, -0.019200272858142853, 0.04581935703754425, 0.039901819080114365, -0.04959101229906082, 0.007440634071826935, -0.053596626967191696, 0.037076737731695175, 0.053550370037555695, -0.015245012938976288, -0.023959975689649582, -0.0012714436743408442, -0.030684394761919975, -0.008914165198802948, 0.014572864398360252, 0.03590632230043411, -0.002448537852615118, 0.009965147823095322, -0.03347261995077133, 0.035572394728660583, 0.02717810682952404, 0.0034685772843658924, -0.00928026158362627, 0.005151597782969475, 0.03680437058210373, -0.001483825035393238, 0.02621621824800968, 0.003998700994998217, -0.01662946678698063, -0.006164330989122391, -0.07287430763244629, -0.0006961145554669201, 0.0013948922278359532, -0.017899300903081894, 0.007966388016939163, 0.004232434090226889, -0.0035235839895904064, 0.023290855810046196, 0.006105597130954266, 0.01992174983024597, -0.017236854881048203, 0.0478510856628418, -0.041263096034526825, -0.017112255096435547, 0.025617536157369614, 0.0026749970857053995, -0.003446596674621105, 0.036672670394182205, 0.04155942425131798, -0.03214110806584358, -0.004747237544506788, 0.04999910295009613, -0.017228269949555397, 0.04516579210758209, -0.04311386123299599, 0.02012074552476406, -0.008265946060419083, -0.050746530294418335, 0.034821562469005585, -0.04757983237504959, 0.009198074229061604, 0.002394778886809945, 0.00864493940025568, -0.09060031175613403, -0.05327798053622246, -0.008921133354306221, 0.011980240233242512, -0.03497566655278206, 0.03399430215358734, 0.018807653337717056, -0.009338326752185822, -0.0030514770187437534, -0.03016880340874195, 0.01899675279855728, -0.03644442930817604, 0.000060884591221110895, 0.0038190914783626795, -0.021559130400419235, -0.01264214888215065, 0.03546616807579994, -0.012545399367809296, -0.03700929135084152, -0.0103597491979599, -0.005415152292698622, -0.028623130172491074, -0.0606311559677124, 0.025018412619829178, -0.0034729442559182644, -0.004685342311859131, -0.00701072858646512, -0.001994234509766102, -0.007297130301594734, 0.027562610805034637, 0.026400044560432434, 0.007734884973615408, -0.000725545862223953, -0.013570692390203476, -0.04460490867495537, 0.04308166727423668, 0.013473410159349442, -0.0320911779999733, -0.025690488517284393, 0.02768883667886257, -0.026063164696097374, 0.040938545018434525, -0.021550603210926056, -0.02746681123971939, -0.04887476563453674, -0.04959596320986748, 0.005754275247454643, -0.024904504418373108, -0.03984865918755531, -0.042884666472673416, -0.04258434474468231, 0.0009982187766581774, 0.043282829225063324, 0.03923910856246948, -0.010357462801039219, -0.008001334965229034, -0.03362854942679405, -0.001558059942908585, -0.04333551973104477, -0.02261803112924099, -0.016822919249534607, 0.00965073797851801, -0.006880042143166065, 0.07249047607183456, 0.002278502332046628, 0.017320986837148666, -0.056145794689655304, 0.0045330883003771305, 0.05034712329506874, 0.004560528323054314, -0.07180365175008774, -0.010221387259662151, -0.02391117811203003, 0.007756268139928579, 0.017696013674139977, -0.02556692063808441, -0.06445575505495071, 0.04656846448779106, -0.029816636815667152, 0.007277786731719971, -0.023534465581178665, -0.018340501934289932, -0.011746511794626713, -0.027887636795639992, 0.04781734198331833, -0.047045253217220306, 0.011126341298222542, -0.02941276878118515, 0.047736212611198425, 0.059474509209394455, 0.006767974700778723, -0.01119249127805233, -0.05282177776098251, -0.05882246047258377, -0.025247834622859955, 0.01992294192314148, -0.021039798855781555, -0.013745708391070366, -0.048966292291879654, -0.006953749805688858, 0.015200885012745857, -0.013157843612134457, 0.053612738847732544, 0.022158171981573105, -0.02017139084637165, -0.012950499542057514, 0.010660023428499699, 0.03176223486661911, 0.050762634724378586, -0.007304063998162746, -0.04229027032852173, -0.019461536779999733, -0.03107997588813305, 0.01491820439696312, -0.08562277257442474, -0.03749549388885498, -0.0640331357717514, -0.0024421866983175278, 0.05248250812292099, -0.027592618018388748, 0.022350488230586052, -0.0178182702511549, -0.032298967242240906, -0.03237389773130417, 0.02202027291059494, 0.005067187361419201, 0.028735758736729622, 0.057797838002443314, 0.019621899351477623, -0.025366494432091713, -0.01624610833823681, -0.04210638254880905, 0.015670673921704292, -0.02853268012404442, 0.06954579055309296, -0.000539726170245558, -0.04157879203557968, 0.02347075380384922, 0.05900391563773155, -0.064041867852211, -0.0481538288295269, -0.020480716601014137, -0.008132332935929298, -0.03840581327676773, -0.041078463196754456, 0.02890997938811779, -0.01642593927681446, -0.02633226290345192, -0.006006342358887196, 0.050169944763183594, -0.029310334473848343, 0.058337390422821045, -0.00197589211165905, 0.0633123591542244, -0.024458300322294235, -0.02065138705074787, -0.00853328499943018, 0.007130301557481289, -0.03043297864496708, -0.04282037913799286, 0.00016866841178853065, 0.02285064570605755, 0.013549910858273506, 0.0542689748108387, -0.008764821104705334, -0.005181325599551201, 0.014551572501659393, 0.022346114739775658, 0.03872371464967728, 0.056677162647247314, -0.0066088284365832806, 0.027027953416109085, -0.05107719823718071, -0.038642700761556625, -0.04508913680911064, -0.0036590404342859983, 0.015891844406723976, 0.028317047283053398, -0.03472626581788063, -0.02239481918513775, 0.026401735842227936, 0.02062748558819294, 0.01733226142823696, -0.036499977111816406, -0.03228245675563812, -0.047111254185438156, -0.04085938259959221, -0.06112300977110863, -0.028555184602737427, -0.01158910896629095, 0.032120734453201294, -0.0005232784315012395, -0.04643874615430832, -0.01232200674712658, 0.01019776239991188, -0.031678441911935806, -0.024141507223248482, -0.04650998115539551, 0.02997470647096634, -0.04352983832359314, -0.09272304177284241, -0.04775048792362213, 0.01966775581240654, -0.019365916028618813, 0.01700269617140293, 0.012112974189221859, 0.03521774709224701, -0.005898614414036274, 0.0005123757291585207, 0.0007739714928902686, -0.006659655831754208, -0.019373346120119095, -0.01148209348320961, 0.011278090998530388, 0.04135368391871452, -0.007907598279416561, 0.06526414304971695, 0.009180687367916107, -0.015150275081396103, 0.019831020385026932, -0.02024025283753872, -0.022929416969418526, -0.016862550750374794, 0.022686472162604332, -0.010737613774836063, 0.011857081204652786, -0.023870358243584633, -0.02318454533815384, -0.02778944931924343, -0.040028877556324005, 0.035905178636312485, 0.005082119721919298, 0.00984057504683733, -0.0004536899796221405, -0.0018031292129307985, -0.012653934769332409, 0.05525531619787216, -0.004781823139637709, 0.04150799661874771, -0.004095699638128281, 0.021397102624177933, -0.009107320569455624, 0.0008023804984986782, 0.02217436023056507, 0.021821612492203712, 0.006799323484301567, -0.013945727609097958, 0.01598517782986164, 0.0021853535436093807, -0.013846546411514282, 0.03742625564336777, -0.014117310754954815, -0.03751349449157715, -0.048763126134872437, -0.010578769259154797, 0.017226949334144592, 0.0369599424302578, 0.026913460344076157, -0.0023029418662190437, 0.043462008237838745, -0.02502903901040554, -0.0417417511343956, -0.03055519610643387, -0.061158087104558945, -0.02690700814127922, 0.028273575007915497, 0.005386549513787031, -0.04527907818555832, -0.026572659611701965, -0.04650868475437164, -0.013247700408101082, -0.023166218772530556, -0.018730418756604195, -0.026588043197989464, 0.02150287851691246, 0.023219561204314232, 0.03476160019636154, -0.011933369562029839, 0.0054070549085736275, 0.02429731748998165, 0.09201081842184067, -0.03121965564787388, -0.046520259231328964, -0.0018958038417622447, 0.0023398164194077253, -0.008993372321128845, -0.02585247904062271, -0.007525165565311909, 0.02528991363942623, 0.014068576507270336, 0.02694549784064293, 0.023212989792227745, 0.021206911653280258, 0.0012649447889998555, 0.02802145667374134, -0.013226213864982128, -0.00002915035111072939, -0.02736733667552471, 0.04423502832651138, 0.014850911684334278, -0.004941809922456741, -0.03450566902756691, 0.04094718396663666, 0.046347182244062424, -0.01706044189631939, 0.02782844938337803, -0.001883273129351437, 0.038271449506282806, -0.017589431256055832, 0.001029546489007771, -0.020071959123015404, 0.04902464896440506, 0.031369760632514954, 0.022228224202990532, -0.016446806490421295, 0.006933063734322786, 0.04890161752700806, 0.009355098009109497, -0.030096521601080894, 0.013757644221186638, 0.01756790094077587, -0.001303908065892756, 0.010303485207259655, 0.007869197055697441, 0.01546061784029007, 0.013318326324224472, -0.027115944772958755, -0.015252121724188328, -0.014177264645695686, 0.027294591069221497, 0.006612421944737434, -0.01734878122806549, 0.031779009848833084, -0.04460872337222099, -0.006083141081035137, 0.0010410853428766131, -0.02275797910988331, -0.008029102347791195, 0.04598719999194145, 0.0061313696205616, -0.02292145974934101, 0.043863072991371155, 0.013406381011009216, -0.005751172546297312, 0.04404956474900246, 0.04868360236287117, 0.01202583871781826, -0.04169477894902229, 0.0037737509701400995, 0.0010936198523268104, -0.016516905277967453, -0.009860420599579811, 0.03911995142698288, -0.044512853026390076, 0.04313190281391144, -0.010122820734977722, -0.02907157875597477, -0.005523394327610731, -0.05946250632405281, -0.03808033838868141, -0.07038769870996475, 0.04159395024180412, -0.049040138721466064, -0.002380886347964406, 0.02804880402982235, -0.02018682472407818, -0.04444402456283569, 0.04855456203222275, 0.006557310465723276, 0.03975638374686241, 0.01258899923413992, 0.013152861036360264, -0.0026025515981018543, 0.0510275699198246, 0.050061728805303574, -0.055757179856300354, -0.004690411500632763, 0.029960183426737785, -0.02692567929625511, -0.008296368643641472, -0.008444422855973244, -0.051738955080509186, -0.014525547623634338, 0.001648301025852561, -0.023077936843037605, -0.019390657544136047, 0.04093308746814728, -0.027173319831490517, -0.053190845996141434, -0.0037726450245827436, 0.05190826207399368, -0.017856692895293236, 0.03385435789823532, 0.011330896988511086, 0.01989252120256424, -0.017487406730651855, -0.03418281674385071, -0.02287451922893524, -0.05608946830034256, 0.014506760984659195, -0.04577682912349701, 0.028695685788989067, -0.003504434833303094, -0.034938208758831024, -0.03789574280381203, -0.03446919098496437, -0.01476812083274126, -0.01001688465476036, -0.04919799044728279, -0.029166139662265778, 0.042381711304187775, 0.0656498447060585, 0.024771984666585922, -0.025855325162410736, -0.048615824431180954, 0.008337193168699741, 0.035303995013237, 0.05333562567830086, -0.009014732204377651, 0.037056293338537216, 0.038840580731630325, -0.008522968739271164, 0.0015713199973106384, 0.00557278748601675, 0.031040797010064125, 0.01675964705646038, -0.0016369721852242947, -0.009540137834846973, 0.02918691374361515, -0.028771644458174706, -0.06791860610246658, 0.04204178228974342, 0.04500722140073776, 0.013484133407473564, -0.035690609365701675, -0.03886345401406288, 0.02373984083533287, -0.029563607648015022, -0.011069468222558498, -0.006473904475569725, 0.030357474461197853, 0.012470184825360775, 0.00018154729332309216, 0.001340414397418499, -0.06384557485580444, 0.14629587531089783, 0.027156732976436615, 0.03987625986337662, -0.004510592203587294, 0.050473880022764206, 0.056446827948093414, 0.022339388728141785, -0.021973442286252975, 0.03512759879231453, -0.0005986239993944764, 0.03737315908074379, -0.016333337873220444, 0.03367292135953903, 0.004761179909110069, 0.020937103778123856, 0.0291517972946167, -0.026177026331424713, 0.029399434104561806, 0.004777888301759958, -0.060962289571762085, -0.057514697313308716, -0.00028316339012235403, 0.014236828312277794, 0.030700048431754112, -0.013070615008473396, 0.03802581876516342, 0.03187386319041252, -0.07020872086286545, -0.017199426889419556, -0.03741485998034477, 0.016215670853853226, -0.04949363321065903, 0.04889097809791565, -0.0034285145811736584, -0.06084531918168068, 0.04699903726577759, 0.0015375509392470121, -0.01586109772324562, -0.010876573622226715, 0.006860191933810711, -0.0031832391396164894, -0.007157760672271252, 0.05912328138947487, -0.043270453810691833, 0.007649357430636883, 0.02715488150715828, -0.059419408440589905, 0.008656211197376251, -0.009999552741646767, -0.026876386255025864, 0.032275885343551636, -0.014043044298887253, 0.04702110216021538, 0.010769880376756191, -0.04082999750971794, 0.002466480014845729, 0.008034572936594486, -0.016657842323184013, 0.011812681332230568, -0.027822356671094894, 0.03435211628675461, 0.013134904205799103, -0.026217211037874222, 0.03259168565273285, -0.02253636159002781, -0.013902083039283752, -0.0032762717455625534, 0.022781120613217354, 0.007502440828830004, -0.005698327906429768, 0.01212293840944767, -0.018091274425387383, -0.0010424056090414524, 0.003356164088472724, 0.034590307623147964, 0.03342060372233391, -0.028469044715166092, 0.05194777995347977, 0.03407236188650131, -0.011033175513148308, -0.017780525609850883, -0.023674018681049347, -0.02230079472064972, -0.010164684616029263, 0.04021088778972626, 0.036731138825416565, -0.05041138455271721, -0.03506717085838318, -0.014697294682264328, 0.06278124451637268, 0.0631265640258789, 0.034147556871175766, 0.0038267842028290033, 0.0066016367636621, -0.007740965578705072 ]
.oo-ui-icon-alignCentre { background-image: /* @embed */ url(themes/apex/images/icons/align-center.svg); } .oo-ui-icon-alignLeft { background-image: /* @embed */ url(themes/apex/images/icons/align-float-left.svg); } .oo-ui-icon-alignRight { background-image: /* @embed */ url(themes/apex/images/icons/align-float-right.svg); } .oo-ui-icon-insert { background-image: /* @embed */ url(themes/apex/images/icons/insert.svg); } .oo-ui-icon-layout { background-image: /* @embed */ url(themes/apex/images/icons/layout-ltr.svg); } .oo-ui-icon-newline { background-image: /* @embed */ url(themes/apex/images/icons/newline-ltr.svg); } .oo-ui-icon-redirect { background-image: /* @embed */ url(themes/apex/images/icons/redirect-ltr.svg); } .oo-ui-icon-noWikiText { background-image: /* @embed */ url(themes/apex/images/icons/noWikiText-ltr.svg); } .oo-ui-icon-outline { background-image: /* @embed */ url(themes/apex/images/icons/outline-ltr.svg); } .oo-ui-icon-puzzle { background-image: /* @embed */ url(themes/apex/images/icons/puzzle-ltr.svg); } .oo-ui-icon-quotes { background-image: /* @embed */ url(themes/apex/images/icons/quotes-ltr.svg); } .oo-ui-icon-quotesAdd { background-image: /* @embed */ url(themes/apex/images/icons/quotesAdd-ltr.svg); } .oo-ui-icon-searchCaseSensitive { background-image: /* @embed */ url(themes/apex/images/icons/case-sensitive.svg); } .oo-ui-icon-searchRegularExpression { background-image: /* @embed */ url(themes/apex/images/icons/regular-expression.svg); } .oo-ui-icon-specialCharacter { background-image: /* @embed */ url(themes/apex/images/icons/specialCharacter.svg); } .oo-ui-icon-table { background-image: /* @embed */ url(themes/apex/images/icons/table.svg); } .oo-ui-icon-tableAddColumnAfter { background-image: /* @embed */ url(themes/apex/images/icons/table-insert-column-rtl.svg); } .oo-ui-icon-tableAddColumnBefore { background-image: /* @embed */ url(themes/apex/images/icons/table-insert-column-ltr.svg); } .oo-ui-icon-tableAddRowAfter { background-image: /* @embed */ url(themes/apex/images/icons/table-insert-row-after.svg); } .oo-ui-icon-tableAddRowBefore { background-image: /* @embed */ url(themes/apex/images/icons/table-insert-row-before.svg); } .oo-ui-icon-tableCaption { background-image: /* @embed */ url(themes/apex/images/icons/table-caption.svg); } .oo-ui-icon-tableMergeCells { background-image: /* @embed */ url(themes/apex/images/icons/table-merge-cells.svg); } .oo-ui-icon-templateAdd { background-image: /* @embed */ url(themes/apex/images/icons/templateAdd-ltr.svg); } .oo-ui-icon-translation { background-image: /* @embed */ url(themes/apex/images/icons/translation-ltr.svg); } .oo-ui-icon-wikiText { background-image: /* @embed */ url(themes/apex/images/icons/wikiText.svg); }
[ -0.02166161686182022, -0.015750743448734283, -0.008076615631580353, -0.010214045643806458, -0.010366242378950119, 0.0007297321571968496, 0.02118956483900547, 0.04905850067734718, 0.03215378522872925, 0.01959177292883396, 0.02724991738796234, 0.03451928868889809, 0.015405100770294666, -0.015980785712599754, -0.01545952633023262, -0.0056609828025102615, -0.006833940278738737, -0.028427405282855034, -0.03924708068370819, 0.017476141452789307, -0.003778075100854039, 0.013788069598376751, -0.08399807661771774, -0.04644186794757843, -0.010510900989174843, 0.08007316291332245, 0.025272667407989502, 0.00313599337823689, 0.051593538373708725, 0.05435224622488022, -0.033209312707185745, -0.034097056835889816, 0.023143893107771873, -0.04109448194503784, -0.024591563269495964, -0.0011502134148031473, 0.024793222546577454, -0.021296806633472443, -0.008460406213998795, -0.07904236763715744, 0.004620472900569439, -0.03614794462919235, 0.01105393934994936, -0.03215547651052475, -0.04800761491060257, -0.017994368448853493, -0.006802522577345371, -0.024790072813630104, 0.004309108015149832, -0.016572074964642525, 0.03135957568883896, -0.005405740346759558, 0.00699571380391717, -0.005628393497318029, -0.014079366810619831, 0.008855845779180527, 0.04956117644906044, -0.012635852210223675, -0.00898973923176527, 0.041984669864177704, 0.025331849232316017, 0.017934994772076607, 0.03025418147444725, -0.06623371690511703, 0.01847206801176071, 0.00227208249270916, -0.018056664615869522, -0.002591218799352646, 0.005395462736487389, -0.010008708573877811, -0.032284174114465714, 0.032649293541908264, 0.0026865110266953707, -0.06211697682738304, -0.015717677772045135, 0.004647304769605398, -0.02166827581822872, -0.01502822246402502, 0.006346465088427067, 0.016118664294481277, 0.005247846245765686, 0.07556446641683578, 0.003941786475479603, 0.019259266555309296, -0.060890283435583115, -0.017384054139256477, -0.021697932854294777, 0.023472396656870842, 0.01803186908364296, -0.020394718274474144, -0.005374946165829897, 0.054958850145339966, 0.0035726530477404594, 0.0018043917370960116, 0.03355586901307106, 0.07538098841905594, -0.03660209849476814, 0.0338384285569191, 0.009030533023178577, 0.014406943693757057, 0.057027462869882584, 0.035917893052101135, -0.009751757606863976, 0.04659992456436157, -0.05885423347353935, -0.0021438722033053637, 0.03478037938475609, 0.002780700335279107, 0.0035235972609370947, -0.03958829492330551, 0.0010228975443169475, -0.01172676868736744, 0.0413864403963089, 0.025629747658967972, 0.007619976531714201, 0.04807217791676521, -0.02909713052213192, 0.004053979180753231, -0.0209649708122015, 0.008520177565515041, 0.01694389060139656, 0.016977224498987198, 0.029318543151021004, -0.007315838243812323, 0.010665476322174072, 0.0049027856439352036, -0.0010779963340610266, 0.05824345350265503, -0.02973717451095581, -0.033895958214998245, -0.017683498561382294, -0.026997363194823265, 0.016413835808634758, 0.022434042766690254, -0.012421631254255772, 0.0267662201076746, 0.003090784652158618, 0.03842129185795784, 0.019387148320674896, -0.04743986204266548, 0.02657073177397251, 0.04270390048623085, 0.006334919016808271, 0.079256571829319, 0.004105777945369482, 0.03659923002123833, -0.0031360883731395006, -0.005772365722805262, -0.03570212423801422, -0.003717351472005248, -0.028293060138821602, 0.018822982907295227, 0.0054970853962004185, 0.03477659076452255, -0.011433661915361881, -0.01959291659295559, -0.008028310723602772, 0.028287457302212715, 0.0028258718084543943, 0.017675913870334625, -0.002827590797096491, 0.03820409998297691, -0.0032053482718765736, 0.05186217278242111, -0.023872019723057747, 0.038559168577194214, -0.04765237122774124, -0.030605440959334373, -0.021401025354862213, -0.027687180787324905, 0.03693341836333275, 0.027132663875818253, -0.013696672394871712, -0.014645452611148357, 0.013839809224009514, 0.06875681132078171, 0.029815303161740303, 0.002838053973391652, 0.025637662038207054, 0.040588412433862686, -0.023868856951594353, -0.016263751313090324, -0.008357850834727287, 0.06149763986468315, 0.016019517555832863, 0.002432258566841483, 0.011354118585586548, -0.0272359661757946, -0.047944076359272, -0.028178121894598007, -0.00047315089614130557, 0.025089658796787262, -0.012063896283507347, 0.02808341197669506, 0.026907891035079956, -0.005584825295954943, -0.016346585005521774, -0.004516356159001589, -0.013777867890894413, -0.06313741207122803, -0.029593853279948235, 0.031539250165224075, -0.023433905094861984, 0.009211180731654167, 0.018891651183366776, -0.03903971612453461, 0.0007949317223392427, 0.07242048531770706, -0.025863410905003548, -0.004064333625137806, 0.03531878814101219, -0.0019620798993855715, -0.05181098356842995, 0.008379193022847176, 0.0157152246683836, -0.003089773701503873, -0.03662693500518799, 0.024508940055966377, 0.010650192387402058, 0.004920225590467453, -0.028144830837845802, 0.018103178590536118, 0.04560394957661629, 0.048366695642471313, -0.0033418419770896435, 0.01505819708108902, 0.008789865300059319, 0.024486981332302094, -0.04011218249797821, 0.0027409347239881754, -0.029583610594272614, 0.018835091963410378, 0.02114003337919712, 0.04750892147421837, 0.0481966994702816, 0.03556845337152481, 0.0002576523111201823, 0.03705284744501114, 0.01909441500902176, 0.023204492405056953, 0.005636780057102442, 0.045214761048555374, 0.041541945189237595, 0.04157024249434471, -0.014452539384365082, 0.014772148802876472, -0.0009402401046827435, 0.015596842393279076, -0.004227174911648035, 0.02732326276600361, -0.0016585089033469558, 0.029506096616387367, 0.04106499254703522, 0.051498230546712875, -0.05088557302951813, 0.016256121918559074, 0.04384537413716316, 0.05640468746423721, -0.03522752225399017, -0.024780819192528725, -0.0005815393524244428, 0.0019159570802003145, 0.005062286276370287, -0.0011879282537847757, 0.011893762275576591, 0.0029272986575961113, 0.013033373281359673, 0.02030264027416706, -0.012142634019255638, -0.0672655999660492, -0.04347660392522812, -0.04175332188606262, -0.03459925204515457, -0.03578103706240654, -0.06537967175245285, 0.0028807532507926226, 0.05355755612254143, -0.0457899272441864, 0.06533756107091904, -0.014973558485507965, 0.016579551622271538, -0.004953302443027496, -0.009965767152607441, 0.03602273389697075, 0.012475545518100262, 0.048631757497787476, -0.03232092410326004, 0.03074781596660614, -0.023807182908058167, 0.036348890513181686, -0.037650298327207565, -0.011109324172139168, -0.007690766826272011, -0.03636763617396355, 0.023991743102669716, -0.019088465720415115, -0.0029541461262851954, 0.005583383142948151, -0.021319212391972542, -0.054385777562856674, -0.009987641125917435, 0.013971087522804737, 0.013647954910993576, 0.01651865988969803, -0.04114644601941109, 0.056393399834632874, 0.008072998374700546, -0.03586135432124138, 0.06447300314903259, 0.032396428287029266, -0.06062355637550354, 0.048490650951862335, 0.024923812597990036, -0.004526758566498756, -0.0552709624171257, 0.04941544309258461, 0.039923228323459625, 0.03479654714465141, -0.029731253162026405, -0.025262996554374695, -0.031084727495908737, -0.002435064874589443, 0.018520748242735863, -0.017705360427498817, -0.03492645546793938, 0.04328005388379097, 0.016213109716773033, -0.0697409138083458, 0.018985038623213768, -0.028335969895124435, -0.058667827397584915, -0.04424510523676872, -0.03118974156677723, 0.03535894677042961, 0.01361811999231577, 0.031105883419513702, -0.025842666625976562, 0.012451264075934887, 0.010499810799956322, 0.020519716665148735, 0.041354626417160034, -0.03395833820104599, 0.00982924085110426, 0.005879005417227745, -0.003587118349969387, 0.03753695264458656, 0.027246050536632538, -0.027170663699507713, -0.027408408001065254, -0.01009095087647438, -0.018587520346045494, 0.005294713657349348, 0.05013131722807884, 0.013521379791200161, 0.03319121152162552, 0.03154803067445755, -0.04766954109072685, 0.0037876868154853582, 0.023151319473981857, 0.017986545339226723, 0.03741276264190674, 0.01855936087667942, 0.019053377211093903, -0.029938632622361183, -0.02104938216507435, -0.07063905149698257, 0.029799140989780426, 0.02578490413725376, 0.04007473960518837, -0.04631458967924118, 0.05637608841061592, -0.01920517347753048, -0.034349244087934494, 0.05265616998076439, -0.06647337973117828, -0.016655992716550827, 0.050250276923179626, 0.006412130780518055, 0.04183612018823624, -0.04789544641971588, 0.011174028739333153, -0.030524032190442085, -0.013369709253311157, 0.03526183217763901, -0.0027361128013581038, 0.021273167803883553, -0.017575057223439217, -0.01291854027658701, 0.004671232774853706, -0.004257566295564175, -0.016677118837833405, -0.030485527589917183, 0.01519571803510189, -0.03154265880584717, -0.04840772971510887, -0.054045941680669785, -0.002543979324400425, 0.036586031317710876, 0.06814717501401901, -0.001893450040370226, 0.007058919873088598, 0.011542261578142643, 0.03312751278281212, 0.02860746532678604, -0.03513367474079132, 0.03109228052198887, -0.03580649942159653, 0.047316353768110275, 0.0034638370852917433, -0.01586303859949112, -0.05761313438415527, -0.021450020372867584, -0.048038434237241745, 0.040183402597904205, 0.011187695898115635, 0.0021992914844304323, -0.05842234939336777, -0.023165684193372726, -0.006011988501995802, 0.03183286264538765, -0.04075555130839348, -0.036171771585941315, -0.00721488893032074, 0.016984643414616585, 0.04795936122536659, -0.05906306952238083, -0.01569346711039543, -0.011697417125105858, -0.008198576048016548, 0.020504841580986977, -0.01169426366686821, -0.02635844610631466, -0.013062565587460995, -0.028696171939373016, -0.01987949013710022, -0.002132120542228222, 0.01654985174536705, 0.011361170560121536, 0.007139049936085939, -0.05689069256186485, 0.032699283212423325, 0.054923880845308304, -0.008575915358960629, -0.02285412698984146, 0.00113272899761796, 0.042246170341968536, 0.010024496354162693, 0.05655667930841446, -0.013775899074971676, 0.01848522387444973, 0.050683364272117615, -0.0389026440680027, 0.03476059064269066, -0.008475914597511292, 0.00974173191934824, -0.0414951927959919, -0.0047742510214447975, 0.008616148494184017, 0.05623932182788849, -0.016672275960445404, 0.004936574026942253, -0.012682279571890831, -0.0047935061156749725, -0.026005806401371956, -0.02443215623497963, 0.03832491859793663, -0.028080619871616364, -0.016074001789093018, 0.054760970175266266, 0.009897791780531406, -0.010364606976509094, -0.0034970578271895647, 0.01166798360645771, -0.03143550083041191, 0.04361341521143913, -0.04439094290137291, 0.010131494142115116, -0.02006082981824875, -0.040676429867744446, -0.0030074964743107557, -0.026802482083439827, 0.04934268444776535, -0.015464464202523232, -0.03562799096107483, -0.04851200059056282, -0.03439173474907875, -0.02763810008764267, 0.005864149425178766, -0.018675196915864944, 0.0012878760462626815, -0.036137424409389496, -0.015647314488887787, 0.0009790986077859998, -0.0350988432765007, 0.0294545479118824, -0.027636270970106125, -0.03061957098543644, 0.008673003874719143, 0.029653292149305344, -0.012598417699337006, 0.006467167288064957, 0.017523489892482758, -0.06064189597964287, 0.018118446692824364, 0.0053135002963244915, -0.017691005021333694, -0.039989132434129715, -0.010928810574114323, -0.00843832828104496, -0.026004256680607796, -0.04410596564412117, 0.010717091150581837, 0.011718242429196835, 0.03454145789146423, 0.014230922795832157, 0.010089063085615635, 0.007618624716997147, 0.017786957323551178, -0.04395147040486336, 0.058961790055036545, 0.026574021205306053, -0.04459848254919052, -0.03497534990310669, 0.04728029668331146, -0.025395529344677925, 0.05901859700679779, 0.0009976724395528436, 0.013054752722382545, -0.053436748683452606, -0.05447079613804817, -0.010792429558932781, -0.03367878496646881, -0.024701356887817383, -0.05161580815911293, -0.02244717627763748, 0.002203284529969096, 0.0469842404127121, -0.0321660190820694, -0.043064989149570465, -0.02808961644768715, -0.02937864139676094, 0.012546051293611526, -0.022119104862213135, -0.012823589146137238, -0.02327156998217106, -0.018177777528762817, -0.01478221919387579, 0.03755580633878708, 0.017095007002353668, 0.0064759207889437675, 0.03740265220403671, 0.019257523119449615, 0.026468221098184586, -0.009640217758715153, -0.06662356853485107, -0.011359704658389091, -0.014434212818741798, -0.01923280768096447, -0.017599433660507202, 0.01974578946828842, -0.03336847200989723, 0.021077198907732964, -0.047940317541360855, -0.025969943031668663, -0.022127201780676842, -0.003386301454156637, -0.02137286588549614, 0.0052713025361299515, 0.025519371032714844, -0.03673669695854187, 0.01598408631980419, -0.01675017550587654, 0.07470275461673737, 0.017607761546969414, 0.0026511631440371275, -0.03931795805692673, -0.02257557213306427, -0.055928945541381836, -0.059747666120529175, 0.014196722768247128, -0.0447021946310997, -0.016448309645056725, -0.04922370985150337, -0.0051130251958966255, 0.015471089631319046, -0.014123287051916122, 0.04005291312932968, 0.06468702107667923, 0.014546176418662071, -0.00013147119898349047, -0.019727090373635292, 0.0374143011868, 0.02624944970011711, -0.006574227474629879, 0.007200979627668858, -0.020542915910482407, -0.027803095057606697, -0.00009072328975889832, -0.04547099024057388, -0.05381176993250847, -0.058044686913490295, -0.022943435236811638, 0.07025443762540817, -0.026558933779597282, 0.022921094670891762, 0.0031994956079870462, -0.0712006464600563, -0.016361447051167488, 0.04251742735505104, -0.011292482726275921, 0.013547518290579319, 0.048097554594278336, -0.008117071352899075, 0.021104570478200912, 0.014284444972872734, 0.006186511367559433, 0.009116878733038902, -0.033677391707897186, 0.056248873472213745, 0.017616605386137962, -0.03195483982563019, 0.030787771567702293, 0.0528961606323719, -0.052552733570337296, -0.051683634519577026, 0.0006007094052620232, -0.006029105745255947, 0.002955953124910593, -0.023118527606129646, 0.024592729285359383, 0.0008793457527644932, -0.01300467737019062, 0.004885341972112656, 0.0162822138518095, 0.004034759476780891, 0.05518534407019615, 0.005586458370089531, 0.016936514526605606, -0.02686912752687931, 0.006806221790611744, 0.03515540435910225, -0.017235565930604935, -0.028951561078429222, -0.026805277913808823, -0.01980045810341835, 0.023028871044516563, 0.01095665618777275, 0.04243931546807289, 0.013917226344347, 0.0304647758603096, 0.023169392719864845, -0.007322898134589195, 0.030558696016669273, -0.006576365791261196, 0.005839839112013578, 0.005244445987045765, -0.05090516433119774, -0.06347397714853287, -0.03977276012301445, 0.028524257242679596, -0.007666874211281538, 0.019173821434378624, -0.043566398322582245, 0.009500016458332539, 0.02147510088980198, 0.00887669250369072, -0.004978314507752657, -0.04096443951129913, -0.028242267668247223, -0.06422426551580429, -0.044320035725831985, -0.011428662575781345, -0.024765057489275932, -0.010501604527235031, 0.016458533704280853, 0.0030425009317696095, -0.028827650472521782, 0.006358645390719175, 0.02971758507192135, -0.0072495476342737675, 0.000954759365413338, -0.030956529080867767, 0.010300008580088615, -0.060089025646448135, -0.04282829537987709, -0.05355864018201828, -0.003593427361920476, -0.013367814011871815, 0.0045477282255887985, -0.019403278827667236, 0.004501075949519873, -0.01761573925614357, 0.030042322352528572, 0.0005190997035242617, 0.031975533813238144, -0.024824177846312523, -0.012630302459001541, -0.0051734731532633305, 0.03456258401274681, -0.006434345617890358, 0.03963647410273552, 0.069037064909935, -0.0059715923853218555, 0.02172318659722805, 0.0144347557798028, -0.035242579877376556, -0.021492982283234596, 0.007771565578877926, 0.005122436210513115, 0.010281522758305073, -0.01596873812377453, -0.04268431290984154, 0.00880356878042221, -0.03917207568883896, 0.019000614061951637, 0.01751590706408024, 0.029521571472287178, 0.009575335308909416, -0.015755226835608482, 0.0037788734771311283, 0.05958109349012375, 0.002654974116012454, 0.010424868203699589, -0.004904214292764664, 0.028160585090517998, 0.02456618659198284, -0.019479477778077126, 0.023902202025055885, 0.0371074341237545, 0.017772259190678596, -0.03327719122171402, -0.01973470114171505, 0.00809671264141798, 0.0061849551275372505, 0.015619246289134026, -0.0019622179679572582, -0.022154847159981728, -0.03328452259302139, -0.000330086681060493, 0.0026618484407663345, 0.04162059351801872, 0.0026214260142296553, -0.000849255477078259, 0.05026471987366676, -0.023365885019302368, -0.024502743035554886, 0.03907432034611702, -0.04939949885010719, -0.045724768191576004, 0.024516083300113678, -0.03038111701607704, -0.01516120508313179, -0.027573756873607635, -0.06272377818822861, -0.028368433937430382, -0.025280574336647987, -0.02188829705119133, -0.028779447078704834, 0.05935638025403023, -0.00009886667248792946, 0.0205385759472847, -0.03963369131088257, 0.0026639385614544153, 0.019310763105750084, 0.04802277311682701, -0.04046193137764931, -0.049670230597257614, 0.020390909165143967, 0.014020748436450958, 0.03220865875482559, 0.007558809593319893, -0.02490234561264515, 0.019623544067144394, 0.009860701858997345, 0.016743050888180733, 0.02366023138165474, 0.034249529242515564, -0.025530314072966576, 0.026531536132097244, -0.015162601135671139, 0.0025099434424191713, -0.03934728354215622, 0.05561362951993942, -0.004693146795034409, -0.014677696861326694, -0.02141125686466694, 0.03815467655658722, 0.04093698412179947, -0.03224991634488106, 0.03668255731463432, 0.0034792572259902954, 0.03178955242037773, -0.000506710319314152, -0.012499277479946613, -0.02152230218052864, 0.035376306623220444, 0.035991813987493515, 0.028198108077049255, -0.03086482547223568, 0.03606097400188446, 0.04206487908959389, 0.002367755165323615, 0.00834073405712843, 0.017837438732385635, 0.009318560361862183, -0.029663080349564552, -0.01390632800757885, -0.016094980761408806, -0.021331757307052612, 0.040726907551288605, -0.03706006333231926, 0.0024012536741793156, -0.039150577038526535, 0.005995528772473335, -0.017168063670396805, -0.0359390527009964, 0.05500278249382973, -0.03778631240129471, -0.018501445651054382, -0.010399667546153069, -0.021885035559535027, 0.002555544488132, 0.047482870519161224, 0.0007453127764165401, 0.034793511033058167, 0.0443127416074276, 0.04872725531458855, -0.024853644892573357, 0.03514159098267555, 0.01013535913079977, 0.02062130533158779, 0.007872126065194607, -0.030635135248303413, 0.02920113317668438, -0.004410645458847284, -0.029681658372282982, -0.010764448903501034, -0.043185777962207794, 0.034200165420770645, -0.006393538787961006, -0.016269007697701454, 0.057356394827365875, -0.03155408054590225, -0.008636614307761192, -0.05185212939977646, 0.04368774592876434, -0.033821310847997665, -0.01892092078924179, 0.03598397970199585, -0.011117510497570038, -0.03840953856706619, 0.033956706523895264, -0.013551426120102406, 0.017169591039419174, 0.017151769250631332, 0.05672234669327736, 0.023826271295547485, 0.05224291607737541, 0.05386769399046898, -0.03494652360677719, -0.006962667219340801, 0.012744670733809471, 0.010298894718289375, -0.03824125975370407, -0.030763687565922737, -0.038738831877708435, -0.0029644903261214495, 0.004499096889048815, -0.013999881222844124, -0.003545408835634589, 0.0180410947650671, -0.008719541132450104, -0.05849381908774376, -0.025642335414886475, 0.040672916918992996, -0.023649035021662712, -0.002132672118023038, 0.007487941533327103, 0.013857057318091393, -0.0006033081444911659, -0.007461633533239365, -0.027095111086964607, -0.026121454313397408, -0.013641739264130592, -0.036311645060777664, 0.021928027272224426, -0.026506755501031876, -0.024275310337543488, -0.03774835169315338, -0.027625542134046555, -0.008330821059644222, 0.0313996858894825, -0.021244799718260765, -0.04401484504342079, 0.035667356103658676, 0.04846016690135002, 0.009528265334665775, 0.011920250952243805, -0.0039503853768110275, 0.01080402173101902, 0.019822873175144196, 0.06862837076187134, 0.004348539747297764, 0.03618801757693291, 0.05220619961619377, -0.00332742091268301, 0.03350863233208656, -0.030216380953788757, 0.05143190920352936, -0.024135878309607506, -0.04104003682732582, 0.009857628494501114, 0.013546373695135117, -0.02436898648738861, -0.060922011733055115, 0.0037888584192842245, 0.02814486250281334, -0.0004058622580487281, -0.028368106111884117, -0.060734331607818604, 0.0003159254265483469, -0.06393380463123322, 0.0018481601728126407, -0.04435645416378975, -0.014699762687087059, 0.011976636946201324, -0.020159896463155746, 0.005682745482772589, -0.06461066752672195, 0.1529315710067749, 0.03903231769800186, 0.035860467702150345, 0.03807447478175163, 0.033056244254112244, 0.060208894312381744, 0.05137472599744797, -0.03067668154835701, 0.009829822927713394, -0.029643652960658073, 0.008797826245427132, -0.009200206026434898, 0.03534669056534767, -0.0072737792506814, 0.040313053876161575, 0.05711914226412773, -0.04324493557214737, 0.004722170531749725, 0.02653411217033863, -0.064308762550354, -0.08033592253923416, 0.010399192571640015, 0.008037732914090157, 0.00020986743038520217, -0.01699420064687729, 0.030987292528152466, 0.008575418032705784, -0.02737887017428875, -0.03334736451506615, -0.05899948254227638, 0.016035251319408417, -0.032214343547821045, 0.04201414808630943, 0.01977337710559368, -0.034200962632894516, 0.06896619498729706, -0.01919441483914852, -0.011825515888631344, 0.0016671611228957772, 0.0062546804547309875, 0.0031621374655514956, -0.04695146530866623, 0.030010337010025978, -0.047251440584659576, 0.023744730278849602, 0.001957750879228115, -0.0472821481525898, -0.013963363133370876, 0.0021273281890898943, -0.018116014078259468, 0.06145000085234642, -0.030058739706873894, 0.025791022926568985, -0.002235463820397854, -0.03814619779586792, -0.003839513985440135, 0.030283918604254723, -0.03007081151008606, 0.016441522166132927, 0.0028278634417802095, 0.016587667167186737, 0.025815419852733612, 0.0030933746602386236, -0.024778474122285843, -0.053569864481687546, 0.0029021797236055136, 0.03300141915678978, 0.05161730945110321, -0.014247816056013107, -0.026451511308550835, -0.024583689868450165, 0.006638181395828724, 0.004013777710497379, 0.0033716908656060696, 0.05506761744618416, 0.02052490785717964, -0.015979629009962082, 0.028548724949359894, 0.010291230864822865, -0.024621345102787018, 0.00397774251177907, -0.008798506110906601, -0.03747564181685448, -0.005202127620577812, 0.03954809904098511, 0.055337708443403244, -0.05048154294490814, -0.03286496177315712, -0.04346791282296181, 0.06907165795564651, 0.05199553072452545, 0.024338003247976303, -0.0295803751796484, -0.024154797196388245, -0.008636177517473698 ]
Want A Hollywood Style Makeup Vanity Mirror? Then this Dimmable Hollywood Mirror with Led Bulbs is a must have. We're not just saying that because this is our product, just look at the images for yourself! It's a real beauty and definitely looks very professional. With side outlet for connecting hair tools like hair dryer, hair sticks etc.
[ -0.004624929744750261, -0.017138563096523285, -0.023784611374139786, 0.0021243139635771513, -0.036479346454143524, -0.013012249022722244, 0.018171144649386406, 0.01423493679612875, -0.00817082729190588, 0.008171715773642063, 0.016756152734160423, -0.0038584447465837, 0.03836020454764366, -0.049779899418354034, -0.0030804742127656937, -0.02267218753695488, 0.00584767758846283, -0.012505718506872654, -0.03496042639017105, -0.001985541544854641, -0.012632596306502819, 0.015339876525104046, -0.05923961475491524, -0.0266208928078413, -0.0117402458563447, 0.04446377977728844, 0.03655530884861946, -0.015272701159119606, 0.05611977353692055, 0.0607011541724205, -0.06856130063533783, -0.0304767694324255, 0.05583065003156662, -0.04560805484652519, -0.0141814686357975, -0.015746107324957848, 0.01325836218893528, -0.02502843178808689, -0.03793639317154884, -0.032727282494306564, 0.013012980110943317, -0.0038780351169407368, 0.0360800176858902, -0.040688302367925644, -0.03623349219560623, 0.0004651351482607424, -0.024281766265630722, -0.02306647039949894, 0.031025255098938942, -0.033550944179296494, -0.007559506222605705, -0.012411069124937057, -0.011495666578412056, 0.024119701236486435, 0.0068265656009316444, 0.0004402204940561205, 0.007052557542920113, 0.005141247995197773, -0.02339259907603264, 0.006586585193872452, 0.02859192155301571, -0.0016670519253239036, 0.01227544154971838, -0.031549595296382904, 0.013820112682878971, 0.03150620311498642, 0.021312320604920387, -0.017319321632385254, 0.031805697828531265, -0.00798742100596428, 0.01529871765524149, -0.009928470477461815, 0.01812531054019928, -0.0020386127289384604, 0.015053503215312958, 0.008682157844305038, -0.013024155981838703, 0.003527396824210882, 0.030951887369155884, -0.0020291898399591446, 0.00048056954983621836, 0.04961748421192169, -0.006791372783482075, 0.03181888908147812, -0.023657534271478653, -0.005632262676954269, -0.004758965224027634, 0.01683260314166546, -0.008716466836631298, 0.0017028877045959234, 0.004419760312885046, 0.052614349871873856, 0.008692871779203415, 0.018008321523666382, 0.030270716175436974, 0.02247190847992897, -0.050188422203063965, 0.013666236773133278, 0.026765672490000725, 0.020193254575133324, 0.0007234924705699086, 0.025961894541978836, -0.008604786358773708, 0.0424935445189476, -0.009445691481232643, -0.013988505117595196, -0.0029386915266513824, -0.020336207002401352, -0.006788142025470734, -0.0438200943171978, 0.026703985407948494, -0.03586942330002785, 0.0006738139782100916, 0.012555674649775028, -0.015359162352979183, 0.05731484293937683, -0.01251953560858965, 0.029118480160832405, -0.03862457722425461, -0.012876993976533413, 0.020846214145421982, 0.026940716430544853, 0.04186481237411499, -0.040277693420648575, 0.008725308813154697, -0.03689344599843025, -0.013633591122925282, 0.056996941566467285, -0.02707602269947529, -0.034357160329818726, -0.009955273941159248, -0.04782786965370178, 0.006203991826623678, 0.02078399248421192, 0.008437280543148518, -0.005321429576724768, -0.02564270794391632, 0.03805704414844513, 0.03191401809453964, -0.060363542288541794, 0.04987580329179764, 0.0487077496945858, 0.0005729915574193001, 0.0773383155465126, 0.021710088476538658, 0.04198848456144333, 0.030080899596214294, -0.005080629605799913, -0.04947739839553833, 0.029351379722356796, -0.0005650492967106402, 0.02965695783495903, -0.026804141700267792, 0.016785582527518272, -0.004857678897678852, -0.005655829329043627, 0.000969346787314862, -0.001859975280240178, 0.035363804548978806, 0.05060729756951332, 0.004734852351248264, -0.0057871160097420216, -0.003620740259066224, 0.02638506144285202, 0.01604539155960083, 0.019481565803289413, -0.030067063868045807, -0.05662405118346214, -0.030280830338597298, -0.028653370216488838, 0.009479201398789883, -0.01689000241458416, -0.016850091516971588, -0.01112036406993866, 0.019820615649223328, 0.04052048921585083, 0.030594410374760628, -0.033101845532655716, 0.012349543161690235, 0.01666373200714588, -0.043129824101924896, -0.019382916390895844, 0.0007821321487426758, 0.05562789365649223, 0.018340812996029854, -0.01803230680525303, 0.01232144981622696, -0.04426025599241257, -0.02602212131023407, -0.02319556102156639, 0.002596077509224415, 0.026024699211120605, -0.021433798596262932, 0.01601707749068737, -0.010148856788873672, 0.009407024830579758, -0.025646455585956573, 0.00552687793970108, -0.001974920043721795, -0.04763343557715416, -0.006982958875596523, 0.057327255606651306, -0.06094152480363846, 0.017712309956550598, 0.009635800495743752, -0.02575516887009144, 0.00042301826761104167, 0.09094367921352386, -0.05299830064177513, 0.01310815755277872, 0.03629432991147041, 0.005041723605245352, -0.02248021773993969, -0.022275684401392937, 0.005191370379179716, -0.010626976378262043, -0.008810177445411682, 0.04912018030881882, -0.031237876042723656, 0.022653711959719658, 0.020232247188687325, 0.013780849054455757, 0.021715156733989716, 0.03370539844036102, 0.011485585942864418, 0.03081112541258335, 0.009403906762599945, 0.011560402810573578, 0.021662525832653046, -0.020316174253821373, -0.025436853989958763, 0.07022053748369217, 0.0343746542930603, 0.044440168887376785, 0.038037750869989395, 0.031024618074297905, 0.009249554947018623, 0.02524613030254841, 0.00008757446630625054, -0.003943708259612322, 0.002779496368020773, -0.011005111038684845, 0.026183709502220154, 0.03194627910852432, 0.008054430596530437, 0.018204275518655777, -0.008456301875412464, -0.016667617484927177, 0.0026194308884441853, 0.032493628561496735, -0.03287940472364426, 0.05545051768422127, 0.02276853658258915, 0.052688274532556534, -0.0486803874373436, 0.027131495997309685, 0.05300484970211983, 0.0664195641875267, -0.009832686744630337, 0.0009614074369892478, -0.016124162822961807, 0.014317626133561134, -0.04201630875468254, 0.005912385415285826, 0.042303599417209625, 0.017191004008054733, 0.020957069471478462, 0.012062468566000462, -0.004409681539982557, -0.05600035935640335, -0.043752819299697876, -0.0574505552649498, -0.032804224640131, -0.031264420598745346, -0.018838025629520416, -0.010867002420127392, 0.041955266147851944, -0.029048113152384758, 0.028694165870547295, -0.02049834467470646, -0.006230975966900587, -0.06389331817626953, -0.04417812079191208, 0.014928856864571571, 0.029236439615488052, 0.03817004710435867, -0.029271740466356277, 0.021008325740695, 0.00865387823432684, 0.04350581020116806, -0.04139324650168419, -0.028187518939375877, -0.004524248652160168, -0.005781112238764763, 0.026600293815135956, -0.011539495550096035, -0.010646285489201546, -0.01564471796154976, -0.0556735023856163, -0.06519272923469543, 0.01822889968752861, 0.007734732236713171, 0.007620934396982193, 0.0037721300031989813, -0.032982923090457916, 0.053982023149728775, 0.019473722204566002, -0.021503228694200516, 0.03375468775629997, 0.0668596625328064, -0.06488578766584396, 0.03779663145542145, 0.039928190410137177, 0.015330681577324867, -0.044559694826602936, 0.0525638684630394, 0.04290353134274483, -0.009451513178646564, -0.04234243184328079, 0.0172694344073534, -0.03270301967859268, 0.01857147552073002, -0.0001391427213093266, -0.030527208000421524, -0.03787033632397652, 0.056920867413282394, 0.03255418688058853, -0.07049833983182907, 0.021093007177114487, -0.039547961205244064, -0.03023662231862545, -0.06396867334842682, -0.046488311141729355, 0.0019574074540287256, 0.03625166416168213, 0.041974812746047974, 0.015161341056227684, -0.02071269229054451, 0.021064287051558495, 0.05053374171257019, 0.057626791298389435, -0.028471464291214943, -0.006045287474989891, 0.04908791184425354, -0.010868280194699764, 0.04747970029711723, 0.042596831917762756, -0.017934534698724747, -0.0042034476064145565, -0.002740614814683795, 0.025368032976984978, -0.0009068105719052255, 0.005533622112125158, 0.03186320513486862, 0.023363623768091202, 0.03155302628874779, -0.023683322593569756, 0.011025327257812023, 0.02887547016143799, 0.01645723171532154, 0.01584993302822113, 0.01775703951716423, 0.0032536473590880632, -0.032464899122714996, -0.05023803934454918, -0.0638548955321312, 0.00908172782510519, 0.008077750913798809, 0.03942589461803436, -0.041515082120895386, 0.04417925328016281, 0.01001767348498106, -0.05553536117076874, 0.038435209542512894, -0.036241449415683746, -0.010435500182211399, 0.05192667618393898, 0.011988324113190174, 0.03901418671011925, -0.05154828727245331, 0.02394871786236763, -0.04725072160363197, -0.009378138929605484, 0.022611800581216812, -0.030733847990632057, -0.00491100549697876, -0.031296126544475555, -0.037473537027835846, -0.01765386015176773, -0.015024486929178238, -0.01803438737988472, -0.005119232926517725, -0.028179537504911423, -0.0093167033046484, -0.06392139196395874, -0.04715694859623909, 0.017331527546048164, 0.010125626809895039, 0.02139429561793804, -0.01247546449303627, -0.004502966068685055, 0.03603143244981766, 0.019784705713391304, 0.014064816758036613, -0.03104330413043499, 0.012683243490755558, -0.03467995673418045, 0.042429570108652115, 0.014372977428138256, -0.03132270276546478, -0.016240829601883888, 0.00591207155957818, -0.01500361692160368, 0.04530410096049309, -0.004491270054131746, -0.01778305321931839, -0.015899647027254105, -0.010462815873324871, -0.022263433784246445, 0.041105810552835464, -0.05655857175588608, -0.016345536336302757, -0.027251161634922028, 0.044421982020139694, 0.02448253147304058, -0.04546158015727997, 0.011603785678744316, -0.01575453020632267, 0.038062091916799545, 0.04500007629394531, -0.023026421666145325, -0.04177476838231087, -0.02461893856525421, -0.03261570632457733, -0.03186730667948723, 0.023568326607346535, 0.05688970908522606, 0.0021901773288846016, 0.005022541619837284, -0.036387864500284195, 0.04645968973636627, 0.03861893340945244, -0.022785373032093048, -0.006685325875878334, 0.014779503457248211, 0.0483541265130043, 0.01778242364525795, 0.015172055922448635, -0.015674831345677376, 0.0006631548749282956, -0.014344288967549801, -0.05203493312001228, 0.024658389389514923, -0.002766037592664361, -0.028565287590026855, -0.004663262516260147, 0.016724780201911926, 0.03512959182262421, 0.04674384370446205, -0.003374529769644141, 0.011729173362255096, -0.028696333989501, 0.0479593463242054, -0.04535539075732231, -0.04197831079363823, 0.045854635536670685, 0.044676780700683594, -0.003616882022470236, 0.012633317150175571, 0.044358495622873306, -0.014384313486516476, 0.01470972876995802, 0.0039002709090709686, -0.05395233631134033, 0.03206028789281845, -0.04722898080945015, -0.010069540701806545, -0.016928162425756454, -0.020972641184926033, 0.0021653021685779095, -0.027370644733309746, 0.02820168249309063, 0.005543671548366547, -0.03089231066405773, -0.030536284670233727, -0.029320063069462776, -0.026223670691251755, -0.005044762976467609, -0.00809943675994873, -0.009087328799068928, 0.0024212663993239403, -0.010396498255431652, -0.023771118372678757, -0.015415464527904987, 0.010258297435939312, -0.0029961171094328165, -0.018725629895925522, 0.007752112578600645, -0.004256157204508781, -0.01653689704835415, 0.0011348497355356812, -0.0032283123582601547, -0.02066747099161148, -0.007920055650174618, -0.010529890656471252, 0.0044108545407652855, -0.05005306005477905, 0.028636205941438675, -0.016445767134428024, 0.005305912345647812, -0.02352486178278923, 0.010768432170152664, -0.005746425129473209, 0.028379268944263458, 0.02872443199157715, 0.002550262724980712, -0.023926014080643654, 0.009038970805704594, -0.01931885816156864, 0.03478110209107399, 0.02170068956911564, -0.06265134364366531, -0.023191990330815315, 0.056718144565820694, -0.030846046283841133, 0.05962657928466797, -0.017759272828698158, -0.02001859061419964, -0.03342115134000778, -0.038179729133844376, -0.013661445118486881, -0.018801869824528694, -0.030195947736501694, -0.05365044251084328, -0.026701223105192184, -0.02083149366080761, 0.05623532086610794, -0.005722262896597385, -0.03604189306497574, 0.03109227493405342, -0.026589276269078255, 0.01027968991547823, -0.05000585317611694, -0.039929576218128204, -0.0155254527926445, -0.007860642857849598, -0.005235400982201099, 0.013838367536664009, -0.02121368981897831, 0.025681408122181892, 0.025998897850513458, 0.007684468291699886, 0.030735550448298454, -0.03738662973046303, -0.04613451287150383, -0.04082200303673744, -0.02110781893134117, 0.0025840287562459707, -0.010273960418999195, 0.038660477846860886, -0.05199180543422699, 0.05844073370099068, -0.01581786945462227, 0.002531094942241907, 0.0072555229999125, -0.0023148355539888144, -0.0059733944945037365, -0.022569332271814346, 0.0559266172349453, -0.023565160110592842, -0.006197465118020773, -0.022341685369610786, 0.02155262418091297, 0.04728955775499344, 0.02288719080388546, 0.021311644464731216, -0.0849364697933197, -0.05063541233539581, -0.06701555848121643, 0.033604323863983154, -0.0130986412987113, -0.016165247187018394, -0.04086560755968094, -0.010382991284132004, 0.03261328116059303, 0.023758001625537872, 0.02515619806945324, 0.03946874663233757, 0.02965838462114334, 0.016612721607089043, -0.044389449059963226, 0.023387597873806953, 0.041390396654605865, -0.015174010768532753, -0.044069401919841766, -0.02281198464334011, -0.04959867149591446, 0.018614033237099648, -0.053577717393636703, -0.03542949631810188, -0.04368952661752701, -0.01284724473953247, 0.04382982477545738, -0.028868483379483223, 0.03953535854816437, 0.0037636582273989916, -0.03824315965175629, -0.008564491756260395, 0.06536659598350525, -0.009978779591619968, 0.020672278478741646, 0.028938574716448784, 0.007559598423540592, -0.003032043343409896, 0.013103564269840717, -0.013460266403853893, 5.354382892619469e-7, -0.04818018153309822, 0.06715849041938782, 0.02328992635011673, -0.02844027429819107, 0.01490058284252882, 0.05047057569026947, -0.07534314692020416, -0.03228837996721268, 0.021170102059841156, 0.012493935413658619, -0.0020410569850355387, -0.04077503830194473, 0.012347258627414703, -0.029280979186296463, 0.02428661473095417, -0.008133026771247387, 0.040500201284885406, 0.0013848505914211273, 0.054380811750888824, 0.01341658178716898, 0.021678565070033073, -0.0691530629992485, -0.011647912673652172, 0.025611860677599907, -0.015082061290740967, -0.029963813722133636, -0.04265476018190384, -0.02655045874416828, -0.018657613545656204, -0.013214263133704662, 0.02597280964255333, -0.006216194946318865, 0.02192726731300354, 0.05524412915110588, -0.0231547262519598, 0.05476933717727661, -0.0037256418727338314, -0.008121975697577, 0.023653937503695488, 0.0012853705557063222, -0.04543887823820114, -0.043400440365076065, 0.0561797134578228, -0.011893711052834988, 0.022089773789048195, -0.048975370824337006, -0.028522318229079247, 0.02942068502306938, -0.005416033789515495, -0.018892677500844002, -0.03018667735159397, -0.031287290155887604, -0.05579523369669914, -0.06110585480928421, -0.02851993776857853, 0.0027107112109661102, 0.013745089992880821, 0.039248377084732056, -0.0013221775880083442, -0.031767986714839935, 0.006513144820928574, 0.012260173447430134, -0.02701893448829651, 0.030228445306420326, -0.05862144008278847, 0.009825129993259907, -0.043341971933841705, -0.0373130664229393, -0.04114241525530815, -0.006163786165416241, -0.022593151777982712, 0.026972010731697083, -0.012457302771508694, -0.01374312024563551, 0.027769405394792557, 0.027085740119218826, -0.008746497333049774, 0.035245899111032486, -0.012218534015119076, -0.008994556963443756, -0.010264231823384762, 0.024667613208293915, 0.006231602746993303, 0.035447683185338974, 0.040175117552280426, -0.020472276955842972, 0.06444038450717926, 0.0024534473195672035, -0.008299658074975014, -0.0014326246455311775, 0.001155681675300002, 0.031103432178497314, 0.012927111238241196, -0.011297127231955528, -0.020659763365983963, -0.03299778327345848, -0.03689880669116974, 0.011762847192585468, 0.00492900749668479, 0.01978994533419609, 0.010020916350185871, 0.009839481674134731, -0.02148713730275631, 0.035559091717004776, -0.009045729413628578, 0.018425041809678078, 0.006526415701955557, 0.017702721059322357, 0.038138870149850845, -0.025164829567074776, 0.025404028594493866, 0.016679828986525536, 0.06263888627290726, -0.006082839332520962, 0.010466618463397026, -0.004993414040654898, -0.03441747650504112, 0.044385842978954315, -0.025280524045228958, -0.02529778890311718, -0.04952256381511688, -0.024314476177096367, -0.000918534176889807, 0.06859023123979568, 0.016646649688482285, 0.006037556100636721, 0.0613352507352829, -0.030924217775464058, -0.06984385848045349, 0.0051621911115944386, -0.05869137868285179, -0.03479035198688507, 0.05336557328701019, -0.07961509376764297, 0.03582658991217613, -0.003916277550160885, -0.04229843616485596, 0.016114283353090286, -0.008718582801520824, 0.01802530139684677, -0.012271527200937271, 0.02210160344839096, -0.01632717065513134, 0.012386891059577465, 0.012544605880975723, -0.016190513968467712, 0.025598593056201935, 0.07058880478143692, -0.014385118149220943, -0.04441948980093002, -0.020585164427757263, -0.0005064177676104009, -0.008686402812600136, -0.03449380025267601, -0.0037229089066386223, 0.016632212325930595, 0.0001435515150660649, 0.017174672335386276, 0.010616794228553772, 0.02019387297332287, -0.019470153376460075, 0.03160539269447327, 0.004146754741668701, 0.01968415640294552, -0.003356779459863901, 0.03565587103366852, 0.018309639766812325, -0.020488856360316277, -0.002715049311518669, 0.045519500970840454, 0.03717118874192238, -0.008558820933103561, 0.06452121585607529, 0.008811789564788342, 0.03703443706035614, -0.04180679842829704, 0.02207133360207081, -0.009000817313790321, 0.04417283833026886, 0.017789270728826523, 0.008426390588283539, -0.0365804098546505, 0.014310907572507858, 0.06404506415128708, 0.011896497569978237, 0.019955893978476524, 0.03905370458960533, 0.017486335709691048, -0.04828670248389244, 0.007634368725121021, -0.029122428968548775, -0.002571161137893796, -0.006463686004281044, 0.02738584391772747, -0.0022507980465888977, -0.01956375129520893, -0.005120462737977505, -0.030357442796230316, -0.03967679664492607, 0.03534071519970894, -0.023616572842001915, 0.001215716707520187, -0.01681535504758358, -0.008275962434709072, -0.014631468802690506, 0.05274428799748421, 0.024995138868689537, 0.05444750562310219, 0.014572561718523502, 0.011606848798692226, -0.027815569192171097, 0.05521383881568909, 0.05162622779607773, -0.008008195087313652, -0.017010435461997986, 0.003953584469854832, 0.012798572890460491, -0.025844398885965347, -0.02029060199856758, -0.004218836780637503, -0.04731505736708641, 0.03323476389050484, -0.016614245250821114, -0.016737572848796844, 0.056086014956235886, -0.05555424466729164, -0.029561487957835197, -0.0533694289624691, 0.0308394692838192, -0.0565449595451355, -0.003555688075721264, 0.04481911286711693, -0.0030255517922341824, -0.021729610860347748, 0.04725150763988495, -0.011451040394604206, 0.05544067919254303, 0.01981094479560852, 0.037453096359968185, 0.015079992823302746, 0.053428735584020615, 0.03067042864859104, -0.05744544416666031, -0.0008431151509284973, -0.000370093563105911, -0.017006630077958107, -0.02235163189470768, -0.008409976959228516, -0.04037356376647949, -0.005066319368779659, 0.005568183492869139, -0.012508065439760685, -0.008096911944448948, 0.03480628877878189, -0.029167968779802322, -0.022762902081012726, -0.004511186387389898, 0.0532807894051075, -0.015152720734477043, 0.023641010746359825, -0.0029811272397637367, 0.016594676300883293, 0.0027327733114361763, -0.015115327201783657, -0.03624916449189186, -0.03538597375154495, -0.019265227019786835, -0.012560831382870674, 0.02604145184159279, 0.02156064845621586, -0.011724254116415977, -0.05986085906624794, -0.04795711487531662, -0.02522663213312626, 0.02245701663196087, -0.039271727204322815, -0.042593032121658325, 0.03327237442135811, 0.02917712926864624, 0.015751753002405167, -0.014294722117483616, -0.02043352648615837, -0.00300178793258965, -0.009357200004160404, 0.05820627883076668, -0.004935495089739561, 0.05231257528066635, 0.04426541551947594, -0.0020315845031291246, 0.03742973506450653, -0.0053523872047662735, 0.04166262596845627, -0.025285080075263977, 0.012859427370131016, -0.022005464881658554, 0.03815677389502525, -0.00197920436039567, -0.049779362976551056, 0.01371316984295845, 0.046177200973033905, -0.012115337885916233, -0.03371179476380348, -0.08047093451023102, 0.008879950270056725, -0.038417618721723557, -0.02682545781135559, -0.0371880903840065, 0.04761553183197975, 0.025551440194249153, -0.019208060577511787, -0.032652515918016434, -0.06116734817624092, 0.1546241044998169, 0.0638374462723732, 0.002526955446228385, 0.033861830830574036, 0.04661316052079201, 0.047196634113788605, 0.023937003687024117, 0.006678174249827862, -0.0034974950831383467, -0.015247266739606857, 0.006652852986007929, -0.013281500898301601, 0.021515149623155594, 0.025244727730751038, 0.045590318739414215, 0.07346207648515701, -0.044317275285720825, 0.0009067169157788157, 0.0499858558177948, -0.07075300812721252, -0.06551472842693329, 0.0077791521325707436, 0.02371634915471077, -0.01860218308866024, -0.006319534033536911, 0.023004088550806046, -0.002953294198960066, -0.01184608694165945, -0.012271949090063572, -0.03663098067045212, 0.0193486250936985, -0.03909391909837723, 0.039376407861709595, -0.012464122846722603, -0.039228711277246475, 0.045512840151786804, 0.024269530549645424, -0.04487556219100952, -0.0015924933832138777, 0.010057351551949978, -0.005163421388715506, -0.0308236014097929, 0.022069163620471954, -0.03520848974585533, -0.005585904698818922, 0.007541965693235397, -0.06780003011226654, -0.013511084020137787, -0.024027928709983826, -0.03763910382986069, 0.06256590038537979, -0.04285160079598427, 0.015814024955034256, 0.022135594859719276, -0.026505272835493088, 0.03817959874868393, -0.04424024000763893, -0.011193759739398956, -0.007037279661744833, 0.027719231322407722, 0.028207629919052124, 0.01489987038075924, -0.04628419876098633, -0.013543677516281605, -0.04820477217435837, -0.01664050482213497, -0.0029933350160717964, -0.002801863942295313, -0.010796559043228626, -0.00971245113760233, -0.008547795005142689, 0.0066757830791175365, 0.030311640352010727, -0.04024340584874153, 0.04136926680803299, 0.032806746661663055, -0.003072101389989257, 0.03934275731444359, -0.014104917645454407, -0.036006588488817215, -0.012135275639593601, -0.028590818867087364, -0.009603265672922134, 0.0031161708757281303, 0.028709914535284042, 0.04055769369006157, -0.04767050966620445, -0.021048765629529953, -0.044925276190042496, 0.066974937915802, 0.03746580705046654, 0.029132790863513947, -0.014569729566574097, 0.0013959971256554127, -0.025591624900698662 ]
Our informal social is your chance to meet some of the people behind the Bristol YIMBY campaign, find out more about what the campaign is aiming to achieve and meet other people interested in building more homes across Bristol. The social coincides with Bristol Housing Festival, running from 19th October to 4th November 2018, celebrating and showcasing innovation in housing and placemaking. The event is being held at Prince Street Social (34-41 Prince Street, Bristol, BS1 4PS) between 6pm and 8pm. Come along, have a drink and chat to fellow YIMBYs in a relaxed environment. We look forward to seeing you there! Build support for development ideas and proposals across the city with Bristol YIMBY's interactive tools. Throughout Bristol Housing Festival, young people from across the city have told us what kind of home they would like to see in their back yard. Bristol YIMBY will have a stand at Bristol Housing Festival, running from 19th October to 4th November 2018.
[ 0.00003996343002654612, 0.015245014801621437, -0.03356877341866493, 0.017981378361582756, -0.007362519856542349, -0.020779909566044807, 0.005042170640081167, 0.060439109802246094, 0.02533033862709999, 0.0022891524713486433, 0.02586446702480316, 0.005069524981081486, 0.04045124724507332, -0.03364889696240425, -0.024499699473381042, -0.0006544037605635822, -0.04562412574887276, -0.031265728175640106, -0.005286818835884333, -0.01968523859977722, 0.008740969933569431, 0.03485960140824318, -0.07151136547327042, -0.037099868059158325, -0.004797014407813549, 0.030988093465566635, 0.0061653689481318, -0.016622772440314293, 0.05053010210394859, 0.031380411237478256, -0.0021494098473340273, -0.06258372217416763, 0.01758727617561817, -0.06297566741704941, -0.043517839163541794, -0.021105628460645676, 0.03246644511818886, -0.045693591237068176, -0.023636551573872566, -0.06206606701016426, 0.02506953664124012, 0.015281042084097862, 0.013950318098068237, -0.052414484322071075, -0.022149551659822464, 0.005021958611905575, -0.014331736601889133, -0.018942205235362053, -0.0026415055617690086, -0.03500396013259888, -0.00839240849018097, -0.02808057703077793, 0.0025642269756644964, -0.005293709691613913, 0.005211749579757452, -0.00576094351708889, -0.025445308536291122, -0.006897870451211929, -0.013219115324318409, 0.02409520372748375, 0.011219325475394726, 0.01412778440862894, 0.025035008788108826, -0.05562940612435341, 0.043393589556217194, 0.026177704334259033, -0.014988170936703682, -0.02803359366953373, 0.003787584137171507, -0.02757440134882927, -0.005647216457873583, 0.008798271417617798, -0.02984253317117691, -0.03512873873114586, 0.012335497885942459, 0.0006365278968587518, 0.007280838210135698, 0.01906207948923111, -0.01699352264404297, -0.01171813439577818, 0.022909188643097878, 0.046858832240104675, 0.004160037264227867, 0.01954450085759163, -0.08848036080598831, -0.0389607734978199, -0.006330646574497223, 0.000031091047276277095, 0.021703751757740974, 0.007100879680365324, 0.0201647337526083, 0.037248946726322174, 0.008207276463508606, 0.013730991631746292, 0.03359273821115494, 0.040084343403577805, -0.03924256190657616, 0.012596054933965206, 0.0018667627591639757, 0.034923017024993896, 0.025480713695287704, 0.018711533397436142, 0.010751373134553432, 0.040261272341012955, -0.05198719725012779, 0.0074484096840023994, -0.00999677088111639, -0.021524440497159958, -0.008134456351399422, -0.013752882368862629, -0.020017461851239204, -0.02477445639669895, 0.04022426903247833, 0.006267700809985399, 0.013783738948404789, 0.0558081790804863, -0.005198567174375057, 0.042689286172389984, -0.04471459984779358, 0.02930338867008686, 0.005671683233231306, -0.00943018775433302, 0.02186422422528267, 0.0032847453840076923, -0.011940130032598972, -0.045118968933820724, -0.0037606447003781796, 0.05504511296749115, -0.029285654425621033, -0.004225820302963257, 0.01005950290709734, -0.0610123835504055, -0.005386953707784414, 0.024496575817465782, -0.004127685911953449, 0.02505892515182495, 0.023944254964590073, 0.051391132175922394, 0.02388550341129303, -0.04195992276072502, 0.07156561315059662, 0.03226688504219055, 0.019392970949411392, 0.08056749403476715, -0.01616154983639717, 0.016566088423132896, 0.021886346861720085, -0.007858534343540668, -0.026211000978946686, 0.040750421583652496, -0.0008001685491763055, 0.012662113644182682, -0.01483303215354681, 0.027445733547210693, -0.011247405782341957, -0.00407737260684371, 0.007818165235221386, 0.006001314613968134, 0.027413612231612206, 0.054598014801740646, -0.06240606680512428, 0.03580230101943016, -0.02391679584980011, 0.046669960021972656, -0.010466824285686016, 0.047902364283800125, -0.028256017714738846, -0.014168872497975826, 0.0025459404569119215, -0.02534354291856289, -0.009528420865535736, -0.0023491878528147936, -0.023141399025917053, 0.01109207235276699, 0.029576409608125687, 0.04399040713906288, 0.006639316212385893, -0.019543157890439034, 0.066286601126194, 0.00846424326300621, -0.032467734068632126, -0.019205499440431595, 0.009140701964497566, 0.06943172961473465, 0.008341433480381966, -0.011459753848612309, -0.01811671443283558, -0.02099868841469288, -0.04015281796455383, -0.03933310881257057, -0.0008193916874006391, 0.004708323627710342, -0.03986860066652298, 0.05929965525865555, 0.019068125635385513, 0.012211635708808899, 0.013428169302642345, -0.026817450299859047, -0.014646514318883419, -0.043113287538290024, -0.02080758661031723, 0.07319207489490509, -0.0369189977645874, 0.009314442053437233, -0.004072713200002909, -0.016086509451270103, 0.013544139452278614, 0.07253211736679077, -0.03143469989299774, -0.022371837869286537, 0.046764492988586426, -0.0172025877982378, -0.056818291544914246, 0.0009067016653716564, 0.03911472111940384, -0.0176792461425066, -0.002120083197951317, 0.04651923477649689, 0.010778314433991909, -0.027513105422258377, 0.0009251722367480397, 0.03518594428896904, 0.02298014424741268, 0.01621484011411667, -0.009892159141600132, -0.012887978926301003, 0.016572074964642525, 0.03417960926890373, -0.024019641801714897, 0.014605146832764149, -0.03321851044893265, 0.05899829789996147, 0.04215172678232193, 0.04350601136684418, 0.05379438027739525, 0.008246754296123981, 0.03052845038473606, 0.06416330486536026, -0.019837742671370506, 0.01108104083687067, -0.007726422045379877, -0.00010414864664198831, 0.030136726796627045, 0.030688853934407234, -0.030805962160229683, 0.012529576197266579, -0.0056151035241782665, -0.005002603400498629, -0.020093075931072235, 0.070813849568367, -0.030829282477498055, 0.04456287994980812, 0.0004558867949526757, 0.051684219390153885, -0.02491261251270771, 0.0007970959413796663, 0.019835513085126877, 0.03162727504968643, -0.03189971297979355, 0.00789168756455183, 0.02562716044485569, 0.025447573512792587, -0.002354336204007268, -0.01000248733907938, 0.04385068267583847, 0.014213730581104755, -0.004210792947560549, 0.0014081785921007395, -0.018519142642617226, -0.015036080032587051, -0.04762386158108711, -0.02814963273704052, -0.0567413829267025, -0.03745473548769951, -0.06235768273472786, 0.005584749858826399, 0.02446434460580349, -0.03297484666109085, -0.0018379949033260345, -0.0038296037819236517, 0.007973413914442062, -0.03378459811210632, 0.005402103997766972, 0.03908640891313553, 0.053561821579933167, 0.013140514492988586, -0.028970420360565186, 0.03093467839062214, 0.01120601687580347, 0.06609726697206497, -0.06013099104166031, 0.005782243795692921, -0.0034458921290934086, -0.02531539276242256, 0.028495004400610924, -0.02364962548017502, -0.036548275500535965, 0.00979247223585844, -0.03583759441971779, -0.02680809609591961, 0.0075745047070086, 0.009129514917731285, -0.023544788360595703, 0.0062212953343987465, -0.05011044070124626, 0.03708479180932045, 0.049523498862981796, -0.042748868465423584, 0.05310674011707306, 0.060934025794267654, -0.028064927086234093, 0.015013929456472397, 0.014320624992251396, -0.00669037876650691, -0.057653363794088364, 0.05381477624177933, 0.019206753000617027, -0.006123126484453678, -0.02855510637164116, -0.03253988176584244, -0.027144096791744232, -0.01208502147346735, 0.008111629635095596, -0.03209385648369789, -0.05251659080386162, 0.0320701003074646, 0.010533793829381466, -0.08158893883228302, 0.013604179956018925, -0.028037365525960922, -0.020060475915670395, -0.05729883909225464, -0.022185757756233215, 0.015645107254385948, 0.032145146280527115, 0.0498213954269886, 0.022298311814665794, -0.040920235216617584, -0.005290493369102478, 0.013282747007906437, 0.02487259916961193, -0.007295314222574234, 0.04246989265084267, 0.06752502918243408, 0.007023914251476526, 0.032510191202163696, -0.004509624559432268, -0.04070500656962395, 0.01202485803514719, -0.006650542374700308, 0.004203304182738066, -0.0037507375236600637, 0.029782932251691818, -0.027912532910704613, 0.00835553091019392, 0.056698981672525406, -0.05912800878286362, 0.0036292963195592165, 0.013730556704103947, 0.032972805202007294, 0.02385910600423813, 0.029363738372921944, 0.03539992868900299, -0.000681934820022434, -0.03834329545497894, -0.06045417860150337, 0.017957592383027077, 0.032376978546381, 0.07035767287015915, -0.061253711581230164, 0.05303482338786125, -0.015576657839119434, -0.03513498604297638, 0.04177555814385414, -0.0658903643488884, -0.0012248910497874022, 0.05907551571726799, -0.014914651401340961, 0.045987509191036224, -0.022700786590576172, 0.0062669748440384865, -0.017006246373057365, 0.035831768065690994, 0.03068672865629196, 0.017335856333374977, 0.04295893758535385, -0.012623541057109833, -0.007413327228277922, -0.02185196429491043, -0.014135908335447311, -0.008319037966430187, -0.021726418286561966, 0.02304680272936821, -0.0005524625885300338, -0.039157312363386154, -0.04354626685380936, 0.04658079147338867, 0.012224989011883736, 0.03395361080765724, -0.019940778613090515, 0.059066757559776306, 0.031793542206287384, 0.015356719493865967, 0.033020008355379105, -0.014678987674415112, 0.028228551149368286, -0.04190388321876526, 0.06037632375955582, 0.00390654057264328, -0.04585187882184982, -0.004170470871031284, -0.012346786446869373, -0.039037302136421204, 0.01216071005910635, 0.024387449026107788, -0.0316329188644886, -0.02823377400636673, 0.004984074272215366, -0.016796903684735298, 0.032826587557792664, -0.0534248985350132, -0.03384362906217575, -0.019104385748505592, 0.008362566120922565, 0.0179719477891922, -0.010642674751579762, 0.04664214327931404, -0.03848101943731308, 0.04637330397963524, 0.06074463576078415, -0.01844543032348156, -0.04829889535903931, -0.022759675979614258, -0.00017396842304151505, 0.007725400850176811, 0.019345002248883247, 0.0302355345338583, 0.006878363899886608, -0.02995803952217102, -0.035403527319431305, 0.04611937701702118, -0.0006079382146708667, 0.022787079215049744, -0.010114787146449089, 0.007998747751116753, 0.01184473093599081, 0.00904806237667799, 0.04741133749485016, -0.04786224663257599, -0.021442443132400513, 0.00517297675833106, -0.030163662508130074, -0.0205822940915823, 0.0085578802973032, -0.013674899935722351, 0.006217076443135738, 0.0019065578235313296, 0.03466665744781494, 0.0373251810669899, -0.03529470041394234, 0.03145112097263336, -0.004837816581130028, 0.01899910531938076, -0.05201199650764465, -0.033605437725782394, 0.07139429450035095, 0.00014114720397628844, -0.03358125314116478, 0.015405358746647835, 0.04259415343403816, -0.030853595584630966, 0.007024561520665884, 0.03421507775783539, -0.05583883076906204, 0.009907510131597519, -0.028779951855540276, -0.01764390617609024, -0.028606068342924118, -0.005202869419008493, 0.0015404443256556988, 0.01056010089814663, 0.039553023874759674, -0.01272530760616064, 0.0003531381080392748, -0.054952386766672134, -0.048970598727464676, -0.03266390785574913, -0.006008371245115995, 0.011318204924464226, 0.03198622539639473, -0.009262807667255402, -0.012405837886035442, 0.008833634667098522, -0.006833389867097139, 0.005585715174674988, 0.00917674321681261, -0.001980020198971033, 0.00763184716925025, 0.003455664496868849, 0.005348379723727703, 0.024853404611349106, 0.015506754629313946, -0.0763317197561264, 0.019664034247398376, 0.011855937540531158, -0.03297756612300873, -0.0376863069832325, 0.024670036509633064, -0.034092046320438385, -0.01351403072476387, 0.0022740860003978014, -0.0018814137438312173, -0.02962164767086506, 0.016739582642912865, 0.026273714378476143, 0.030902890488505363, 0.011218883097171783, -0.014188885688781738, -0.022482987493276596, 0.020439239218831062, 0.02290702611207962, -0.045819420367479324, -0.021375050768256187, 0.008938376791775227, -0.027022123336791992, 0.0485154464840889, 0.02754424512386322, -0.006097548175603151, -0.048461273312568665, -0.09332727640867233, -0.023952648043632507, -0.07457535713911057, -0.0024319663643836975, -0.040490277111530304, -0.030737757682800293, -0.022404560819268227, 0.024105411022901535, 0.017987878993153572, -0.0007564614643342793, 0.020191220566630363, -0.04525687173008919, 0.013643535785377026, -0.009290690533816814, -0.054777439683675766, -0.05029347911477089, -0.004699437413364649, -0.005907063372433186, 0.05439392104744911, 0.02399204671382904, 0.021938132122159004, 0.012454775162041187, 0.027002818882465363, 0.0013800752349197865, -0.04908456653356552, -0.028410358354449272, -0.03795795142650604, -0.029008183628320694, 0.006026012357324362, 0.011061088182032108, 0.008516466245055199, -0.02985484153032303, 0.06558606773614883, 0.008760175667703152, 0.005257439333945513, -0.04480239376425743, -0.031003350391983986, -0.01148107461631298, -0.03753636032342911, 0.050178758800029755, -0.004835615865886211, -0.0008817805210128427, -0.010541235096752644, 0.05164938047528267, 0.02599986270070076, -0.013493525795638561, -0.026182707399129868, -0.04257888346910477, -0.055848341435194016, -0.04381794109940529, 0.01720373146235943, -0.04514119401574135, -0.016960280016064644, -0.005184545181691647, -0.01859603263437748, 0.039210353046655655, 0.006220108363777399, 0.03026992827653885, 0.04074690118432045, -0.005484259221702814, -0.0017977167153730989, -0.027727527543902397, 0.03171255812048912, 0.032403621822595596, 0.01065588928759098, -0.016258401796221733, -0.04286908358335495, -0.025406673550605774, -0.00023853773018345237, -0.07186417281627655, -0.03520593419671059, -0.03170006722211838, -0.015888871625065804, 0.084341861307621, -0.03961553797125816, 0.03060326538980007, -0.040330324321985245, -0.016996094956994057, -0.05572374165058136, 0.013143581338226795, 0.011828101240098476, 0.025097135454416275, 0.050403088331222534, 0.01656040921807289, -0.006814584601670504, 0.013330360874533653, 0.0019440008327364922, 0.00983178149908781, -0.05508534982800484, 0.0685807541012764, 0.004256167449057102, -0.036065373569726944, 0.013091781176626682, 0.07013632357120514, -0.05181840434670448, -0.020033882930874825, -0.0019142827950417995, -0.011190628632903099, 0.03249098360538483, -0.05056818574666977, 0.027528248727321625, -0.05004645138978958, -0.023161763325333595, 0.008159458637237549, 0.028275759890675545, 0.013804731890559196, 0.05528818815946579, -0.0011413507163524628, 0.026888353750109673, -0.050712067633867264, 0.00935557670891285, 0.015855269506573677, 0.003339580027386546, -0.026538806036114693, -0.03215961530804634, -0.01718379743397236, -0.011423034593462944, -0.017200011759996414, 0.03801288455724716, -0.02641730010509491, 0.02893012948334217, 0.0285468902438879, -0.0012759276432916522, 0.03514164313673973, 0.008199009113013744, 0.008139356970787048, 0.01594054512679577, -0.03927219659090042, -0.04895811527967453, -0.0331779308617115, 0.011068176478147507, -0.004156817682087421, 0.03635813668370247, -0.01742950826883316, 0.009129554033279419, 0.020306721329689026, -0.0015301514649763703, 0.03519796207547188, -0.03939277306199074, -0.04181382805109024, -0.03190401941537857, -0.03801889345049858, -0.03052395209670067, 0.022222524508833885, 0.020042991265654564, 0.010032830759882927, -0.004325458314269781, -0.036575742065906525, -0.023389309644699097, 0.026336200535297394, -0.01207713969051838, -0.0011363174999132752, -0.05261274799704552, 0.010244791395962238, -0.036185652017593384, -0.03247859328985214, -0.057529740035533905, -0.00037046908983029425, -0.0250764861702919, 0.016741586849093437, -0.023126395419239998, 0.015104138292372227, -0.008259628899395466, 0.020254526287317276, 0.01756226271390915, 0.009147935546934605, -0.014007333666086197, -0.04877512529492378, -0.03512582927942276, 0.0426332913339138, -0.008500062860548496, 0.0068932524882256985, 0.013743078336119652, 0.01568390242755413, 0.03595288097858429, -0.04007983207702637, -0.01364865992218256, 0.0012493954272940755, 0.006296547595411539, -0.004107252694666386, -0.009628166444599628, -0.03376450017094612, 0.008352701552212238, 0.015870895236730576, -0.014829068444669247, 0.03813767805695534, -0.04398887977004051, -0.018705768510699272, 0.02286044880747795, -0.0030482569709420204, 0.024298561736941338, 0.05259677395224571, 0.03096538782119751, 0.03657807782292366, 0.025893142446875572, 0.03910035640001297, 0.0038548323791474104, 0.0036376151256263256, 0.001407903153449297, 0.006898126564919949, 0.015169207006692886, -0.01638880930840969, 0.004491214640438557, 0.003153872210532427, -0.029270103201270103, 0.0543164387345314, -0.016764750704169273, -0.03608408942818642, -0.03196214884519577, 0.0032737781293690205, -0.0045523615553975105, 0.03527899086475372, -0.023423925042152405, -0.0042195068672299385, 0.0348186120390892, -0.007047784980386496, -0.030299125239253044, 0.016470327973365784, -0.0426936112344265, -0.03440573066473007, 0.04281901940703392, -0.04015430063009262, -0.015606033615767956, -0.01161845400929451, -0.032861605286598206, 0.04729539901018143, -0.0007547899731434882, -0.013716967776417732, -0.017643336206674576, 0.013551698066294193, -0.010933385230600834, 0.029514940455555916, -0.007848490960896015, 0.0026156348176300526, 0.028764905408024788, 0.06119939312338829, -0.05672932788729668, -0.04998433217406273, 0.03476002439856529, 0.041844021528959274, -0.019463909789919853, -0.012395897880196571, 0.017129458487033844, 0.0251084603369236, -0.037937063723802567, 0.014425155706703663, -0.0165440384298563, 0.01313792448490858, -0.0026627657935023308, 0.007136124651879072, -0.008642137050628662, 0.022246919572353363, -0.02109004370868206, 0.05469740182161331, -0.006554265972226858, -0.0377691276371479, -0.0356130488216877, 0.053454939275979996, 0.034588709473609924, -0.003374669002369046, 0.0422515906393528, -0.03181368112564087, 0.05965668335556984, -0.021907445043325424, 0.014445394277572632, -0.02559315226972103, 0.050064608454704285, 0.014129952527582645, 0.000992637244053185, -0.0034640287049114704, 0.03920878469944, 0.04413112998008728, -0.003212584648281336, 0.008056538179516792, 0.04162390157580376, 0.0317082516849041, -0.009673422202467918, -0.013494796119630337, -0.027298249304294586, 0.042530570179224014, -0.007530878763645887, -0.023792464286088943, -0.0018952240934595466, -0.05437363684177399, -0.0058863465674221516, -0.03170972689986229, -0.027003921568393707, 0.03816318139433861, -0.010788384824991226, 0.02757776901125908, 0.0003596014576032758, 0.014179006218910217, 0.008715804666280746, 0.04448099061846733, 0.0003125026705674827, 0.06463145464658737, 0.012387450784444809, 0.0161261148750782, -0.006157801486551762, 0.05216958001255989, -0.00939872581511736, 0.005504688248038292, -0.02705530636012554, 0.015760283917188644, -0.002340496750548482, -0.020119117572903633, -0.03216841071844101, 0.028316108509898186, 0.01945914328098297, 0.04076836258172989, -0.03637943044304848, -0.02104782871901989, 0.006115193013101816, -0.04996206983923912, -0.005359150003641844, -0.031946294009685516, 0.05509424954652786, -0.03284984827041626, 0.0006716989446431398, 0.03810875490307808, 0.0014379360945895314, -0.00818563625216484, 0.0447591170668602, 0.004157333634793758, 0.0479288175702095, 0.003023806493729353, 0.021042045205831528, -0.02419181540608406, 0.027148354798555374, 0.057571399956941605, -0.04296327754855156, -0.009068824350833893, 0.0326649434864521, 0.008961234241724014, 0.007162957452237606, -0.019571106880903244, -0.036585863679647446, -0.007997171021997929, -0.033468976616859436, -0.007927495054900646, 0.016565222293138504, 0.02662547491490841, -0.0016656691441312432, -0.050818897783756256, -0.0057923393324017525, 0.037071917206048965, -0.03632010146975517, -0.006830204743891954, 0.04992249235510826, 0.006963701918721199, -0.01087172981351614, 0.015420515090227127, -0.02759399078786373, -0.017645711079239845, 0.00840416457504034, -0.04643068090081215, 0.047741398215293884, 0.002354479394853115, -0.02104468271136284, -0.010413090698421001, -0.03927008807659149, -0.020147033035755157, 0.012552659027278423, -0.020257188007235527, -0.036574359983205795, 0.03563712164759636, 0.04499990493059158, 0.023347100242972374, -0.017751939594745636, -0.02946385368704796, -0.02501516602933407, 0.03528698906302452, 0.05855175107717514, -0.01851906254887581, 0.04627325013279915, 0.019686168059706688, -0.04786701127886772, 0.016232827678322792, -0.01400098204612732, 0.0242315586656332, -0.04301869124174118, -0.03341560810804367, -0.012788808904588223, 0.008992701768875122, -0.034478869289159775, -0.06702485680580139, 0.020770758390426636, 0.0008472814806737006, 0.012107585556805134, -0.014182325452566147, -0.059959352016448975, -0.0070339166559278965, -0.03993256017565727, -0.034060075879096985, -0.05459992587566376, 0.03333236649632454, 0.00673857145011425, -0.015933381393551826, 0.012665878050029278, -0.06142669916152954, 0.15829779207706451, 0.04592972993850708, 0.04416771978139877, -0.022494418546557426, 0.029585285112261772, 0.027492010965943336, 0.0064133042469620705, 0.017375443130731583, -0.011671025305986404, -0.04444670304656029, 0.012130285613238811, 0.0035337440203875303, 0.03395910933613777, -0.0048005348071455956, 0.021926285699009895, 0.05288980156183243, -0.052461888641119, 0.019581906497478485, 0.02928897552192211, -0.04338480904698372, -0.05637446790933609, -0.001001671771518886, 0.011674406006932259, 0.007196476683020592, -0.014301655814051628, 0.053544532507658005, -0.00421600416302681, -0.029482262209057808, -0.019739454612135887, -0.004209437407553196, 0.036832455545663834, -0.02405291609466076, 0.03399349004030228, -0.004329425748437643, -0.08978918939828873, 0.07753967493772507, -0.014304976910352707, -0.04243486374616623, 0.0026145880110561848, 0.033685944974422455, -0.021932244300842285, 0.016031624749302864, 0.03106868453323841, -0.007175384555011988, 0.01284696627408266, 0.020610878244042397, -0.013233200646936893, -0.006040716543793678, 0.02601739577949047, -0.019733939319849014, 0.05782632529735565, -0.040604278445243835, 0.010324183851480484, -0.0065137422643601894, -0.045771412551403046, 0.005697953049093485, 0.005541452672332525, -0.03270474448800087, -0.021466512233018875, 0.012419634498655796, 0.03066825307905674, -0.008778977207839489, -0.030326029285788536, -0.014312776736915112, -0.024177437648177147, 0.012528467923402786, 0.034640152007341385, -0.018625276163220406, -0.023933954536914825, -0.027798471972346306, -0.02824993059039116, 0.017405109480023384, 0.035776287317276, -0.030022883787751198, 0.018304923549294472, 0.039521969854831696, -0.026884669438004494, 0.01929517835378647, 0.00271602813154459, -0.0202475655823946, -0.020404260605573654, -0.05185237154364586, -0.018930260092020035, 0.006162244826555252, 0.021368306130170822, -0.00012605366646312177, -0.02747192420065403, -0.044159118086099625, -0.018244745209813118, 0.05462358519434929, 0.065384641289711, 0.04963793233036995, -0.01687781699001789, -0.0031929071992635727, -0.019421517848968506 ]
At game end, worth 1 point for each Common Construction in your city. When you place a worker here, reveal 4 cards from the draw pile or discard pile and play 1 of them for free. Discard the others. Your worker must stay here permanently. Cemetery may only have up to 2 workers on it, but the second spot must be unlocked by having a Undertaker in your city. When you place a worker here, place 1 point token on the Chapel. Draw 2 cards for every 1 point token on the Chapel. When you play the Clock Tower, place 3 point tokens on it. Before you bring back your workers during a Prepare for Season action, remove 1 point token from the Clock Tower and activate one of the basic or Forest locations where you have a worker deployed. Any points left on the Clock Tower at game's end will count towards your point total. Gain 1 twig, 1 resin, or 1 pebble every time you play a Construction into your city. You do not gain resources for playing this Courthouse. When you play a Construction, you may discard this Crane from your city to decrease the cost of the played Construction by 3 of any resource. You do not gain the 3 resources. This card cannot be combined with any other card-playing abilities-including the Inn, any forest tiles that allow you to play a card, or cards like the Dungeon. When you are playing a Construction or a Critter, you may place a Critter from your city beneath this Dungeon to decrease the cost of the played card by 3 of any resource. You do not gain the 3 resources. The Critter in your Dungeon is no longer considered part of your city and is not worth any points. This card cannot be combined with any other card-playing abilities-including the Inn, any forest tiles that allow you to play a card, or cards like the Crane or inkeeper. Dungeon can only have up to 2 prisoners, but the second cell must be unlocked by having a Ranger in your city. At game end, worth 1 point for each purple Prosperity card in your city, including this Ever Tree. Ever Tree can grant 1 of any Critter for free. When played and during Production, draw 2 cards. When played and during Production, gain 1 berry. When played and during Production, gain 1 berry or gain 2 berries if you have a Farm in your city (not 2 berries per Farm). When you place a worker here, play a Critter or Construction from the Meadow cards for 3 less resources of your choice. You do not gain the 3 resources. You gain 1 point token if an opponent visits your Inn. Solo Game: you may visit the Inn in Rugwort's City and Rugwort gains 1 point token. When you place a worker here, copy any 1 basic or Forest location, even if it is occupied by 1 of your workers. When played and during Production, gain 1 pebble. When you place a worker here, give 2 of any resources to an opponent and then gain 4 points. Worker stays here permanently. Monastery can only have up to 2 workers on it, but the second spot must be unlocked by having a Monk in your city. At game end, worth 1 point for each Unique Construction in your city, including this Palace. When you place a worker here, give an opponent 2 cards from your hand and then discard any amount of cards from your hand that you want. Then draw cards from the draw pile up to your hand limit. You gain 1 point token if an opponent visits your Post Office. Solo Game: you may visit the Post Office in Rugwort's City and and Rugwort gains 1 point token. When played and during Production, gain 1 resin. When played, discard a Construction from your city and place this card in that spot, then receive back that Construction's listed cost in resources. Also draw 2 cards. At game end, worth 1 point for each Common Critter in your city. Storehouse: When played and during Production, take from the supply and place either 3 twigs, 2 resin, 1 pebble, or 2 berries on this card. Also works as a location to place a worker and take all of the resources on the card. At game end is worth 1 point for each Unique Critter in your city. When played and during Production, gain 2 twigs. When you place a worker here, discard 1 Construction or Critter from your city and receive back the listed cost of resources of the discarded card, plus gain 1 of any resource and gain 1 point. If you discard a card with a permanent worker on it, place that worker on the University permanently instead (you do not get the worker back).
[ -0.0010396884754300117, 0.03168678283691406, -0.014405302703380585, -0.009671010076999664, -0.02372416853904724, -0.0023652049712836742, -0.030476175248622894, 0.03291865065693855, 0.014769409783184528, 0.018195299431681633, 0.03304613381624222, 0.032043732702732086, 0.0262205358594656, -0.034838758409023285, 0.004251523874700069, -0.02550533413887024, -0.04788108170032501, -0.036821119487285614, -0.014625021256506443, 0.0013746835757046938, -0.0026822315994650126, 0.025909189134836197, -0.062119513750076294, -0.04519512504339218, -0.014465815387666225, 0.07102011889219284, 0.01206672377884388, 0.00434956094250083, 0.0548337884247303, 0.06153126806020737, -0.025745440274477005, -0.03714126721024513, 0.012153533287346363, -0.03643626347184181, -0.04113921523094177, -0.00015123603225219995, 0.02067909948527813, -0.019686449319124222, -0.01229849923402071, -0.03805247321724892, 0.014165014028549194, -0.016143063083291054, 0.03871823847293854, -0.031783632934093475, -0.032992973923683167, 0.0009588151006028056, 0.00020999237312935293, -0.026203887537121773, 0.03417930752038956, -0.060325514525175095, -0.001977110281586647, -0.011932646855711937, -0.013261926360428333, 0.004022201523184776, 0.006398926489055157, 0.010310146026313305, 0.0019483366049826145, -0.023232989013195038, -0.02739107795059681, 0.07421663403511047, 0.04149911552667618, -0.02009398862719536, 0.01516407448798418, -0.04830038174986839, 0.029337093234062195, 0.031108370050787926, -0.007359832059592009, -0.02668730355799198, -0.006578539032489061, -0.03279596567153931, -0.013022326864302158, 0.011602206155657768, -0.010712559334933758, -0.04461413621902466, -0.003245007246732712, -0.002042443258687854, -0.0038452635053545237, -0.014993020333349705, -0.012454400770366192, -0.004097512923181057, 0.029709892347455025, 0.05389461666345596, -0.02397380769252777, -0.005818511825054884, -0.06005789712071419, -0.013722420670092106, -0.0034023146145045757, -0.009745475836098194, 0.013848962262272835, -0.015247209928929806, -0.002693482208997011, 0.04554764926433563, 0.02627439983189106, 0.025299685075879097, 0.028455227613449097, 0.07382217049598694, -0.035682324320077896, 0.03606177493929863, -0.0003941744507756084, -0.00765472836792469, 0.02107328735291958, 0.026460811495780945, -0.022255772724747658, 0.028996266424655914, -0.04317820817232132, -0.013673597015440464, 0.022979091852903366, -0.002907231217250228, -0.013898785226047039, -0.02741055004298687, 0.02126140706241131, -0.0072879306972026825, 0.028309937566518784, 0.00226379930973053, -0.01070634089410305, 0.06879300624132156, 0.0008463244303129613, 0.017194250598549843, -0.05091789364814758, 0.028374800458550453, 0.035881634801626205, -0.003433477133512497, 0.021059324964880943, -0.004653815645724535, 0.0020696797873824835, -0.036273859441280365, -0.016294296830892563, 0.060865435749292374, -0.04662548750638962, -0.02373957447707653, 0.02975296974182129, -0.03616045415401459, -0.015959614887833595, 0.023320574313402176, -0.013828571885824203, 0.024447761476039886, -0.002529986435547471, 0.035415492951869965, 0.016031917184591293, -0.054072145372629166, 0.06203346699476242, 0.020074287429451942, -0.033122383058071136, 0.0866646021604538, 0.02890128456056118, 0.010072823613882065, -0.018485654145479202, 0.03920659422874451, -0.0751444473862648, 0.02744503691792488, -0.03445056825876236, 0.01088965404778719, 0.004966783337295055, 0.010878510773181915, -0.00923924334347248, -0.013815696351230145, -0.024185910820961, 0.005115412175655365, -0.006780092138797045, 0.002237367443740368, -0.019029982388019562, 0.032829608768224716, 0.005773551296442747, 0.026391642168164253, -0.002398921176791191, 0.03010302409529686, -0.031722407788038254, -0.027571622282266617, -0.012415728531777859, -0.031057283282279968, -0.007920565083622932, -0.0033160713501274586, 0.0011855799239128828, 0.013904550112783909, 0.0414673313498497, 0.03860579431056976, 0.04811927303671837, 0.0010013091377913952, 0.0421442911028862, 0.030019912868738174, -0.044489916414022446, -0.0006725435378029943, -0.008335854858160019, 0.0708044096827507, 0.02419268526136875, 0.014249924570322037, 0.00893676932901144, -0.02414480596780777, -0.04282022640109062, -0.005753272213041782, 0.005090107675641775, 0.0467127189040184, -0.02874099835753441, 0.020030630752444267, 0.03420189023017883, 0.0226573683321476, -0.021059103310108185, -0.03259380906820297, -0.005383384879678488, -0.045478541404008865, -0.034696273505687714, 0.05599107965826988, -0.009063005447387695, 0.03420957550406456, 0.006756834220141172, -0.02386838011443615, 0.04063773900270462, 0.05001078173518181, -0.041840776801109314, -0.02288963831961155, 0.03862889111042023, 0.006437372881919146, -0.03502655774354935, -0.00770973414182663, 0.022808650508522987, 0.010703438892960548, -0.02336198277771473, 0.026623422279953957, -0.0006778360693715513, -0.032269276678562164, 0.028103595599532127, 0.009796977043151855, 0.01809263974428177, 0.05213825777173042, -0.02560180425643921, 0.008472970686852932, 0.019283680245280266, 0.05384806543588638, 0.015463268384337425, 0.011119956150650978, -0.014886965975165367, 0.0600663423538208, 0.05650055408477783, 0.05332965776324272, 0.03826106712222099, 0.007363748736679554, 0.03064742311835289, 0.009581887163221836, -0.013925927691161633, 0.018535999581217766, -0.007732287980616093, 0.03168272227048874, 0.04196795076131821, 0.028265440836548805, -0.010500912554562092, 0.03186599165201187, -0.009888251312077045, -0.0035422921646386385, -0.04868383705615997, 0.0428459607064724, -0.004087506327778101, 0.01491457037627697, 0.030509604141116142, 0.036233577877283096, -0.03726975992321968, 0.002757288282737136, 0.03835983946919441, 0.07540100067853928, -0.02041085623204708, -0.023199116811156273, 0.017152942717075348, 0.031021587550640106, 0.012889728881418705, -0.0177755244076252, 0.028734393417835236, 0.02455972507596016, 0.00865143071860075, 0.009376331232488155, -0.00793171115219593, -0.0445597805082798, -0.03436918184161186, -0.043396901339292526, -0.012734007090330124, -0.015974003821611404, -0.03189431503415108, -0.019094763323664665, 0.04540708661079407, -0.02891247160732746, 0.014619672670960426, -0.03820415213704109, -0.021090658381581306, -0.02181769348680973, -0.014682433567941189, 0.04298821836709976, 0.03239388391375542, 0.05624755471944809, -0.06184621900320053, 0.004572553560137749, -0.009380021132528782, 0.03985515981912613, -0.022225115448236465, -0.0011829131981357932, -0.0008124614250846207, 0.00181371730286628, 0.04001927748322487, -0.013967566192150116, 0.0067887138575315475, -0.011375091969966888, -0.025098193436861038, -0.057716693729162216, -0.018937328830361366, 0.030340537428855896, -0.023015674203634262, 0.003106976393610239, -0.015178835019469261, 0.04456667602062225, 0.02457485720515251, -0.023512937128543854, 0.05514476075768471, 0.05752091482281685, -0.029872963204979897, 0.016121840104460716, 0.027716014534235, 0.02296021766960621, -0.04618331044912338, 0.07205826044082642, 0.053276177495718, -0.0060926321893930435, -0.026800626888871193, -0.018157631158828735, -0.019578786566853523, -0.006814481690526009, 0.013934609480202198, -0.006864504422992468, -0.021263573318719864, 0.03116874396800995, 0.019412783905863762, -0.07169821113348007, 0.009525120258331299, -0.03370724618434906, -0.02993158809840679, -0.025777438655495644, -0.035395607352256775, 0.030820759013295174, 0.0012509175576269627, 0.03559689223766327, -0.01297951303422451, -0.04289993643760681, -0.0038982918485999107, 0.026225661858916283, 0.06008962169289589, -0.04925548657774925, 0.03797708824276924, 0.020802142098546028, -0.011524131521582603, 0.01874486729502678, 0.05712689086794853, -0.006705650128424168, -0.020640209317207336, 0.002523714443668723, -0.004868944641202688, -0.0029014386236667633, 0.04535501077771187, 0.0020165552850812674, 0.03177408501505852, 0.04475035145878792, -0.04748555272817612, -0.007453709840774536, 0.018862979486584663, 0.013024639338254929, 0.03879718855023384, -0.013816877268254757, 0.02217920683324337, -0.02347930334508419, -0.030940277501940727, -0.058620210736989975, 0.01343041192740202, 0.02259814366698265, 0.06828460842370987, -0.06186351925134659, 0.06423945724964142, 0.006554112769663334, -0.02509765513241291, 0.06808627396821976, -0.04113499075174332, 0.00006517595465993509, 0.03371579572558403, -0.026837918907403946, 0.04642060026526451, -0.022002557292580605, 0.040760546922683716, -0.03899931535124779, 0.03826259449124336, 0.011535314843058586, 0.024365700781345367, 0.04126456007361412, 0.0024507681373506784, -0.023350289091467857, -0.009881557896733284, -0.004976711235940456, -0.006963426247239113, -0.02493259683251381, -0.010056952945888042, -0.014686818234622478, -0.022097496315836906, -0.03439579904079437, 0.012041032314300537, 0.04529232159256935, 0.05626590549945831, -0.018429262563586235, 0.01066887378692627, 0.0080918800085783, 0.004044513683766127, 0.04817609861493111, -0.036249689757823944, 0.01694527640938759, -0.03693479672074318, 0.04080173000693321, -0.0009333378984592855, -0.011076999828219414, -0.040967460721731186, -0.009285766631364822, -0.0384325347840786, 0.03614864498376846, 0.027119670063257217, -0.01644342578947544, -0.03638390824198723, 0.009506703354418278, -0.00624004565179348, 0.012215099297463894, -0.006474326364696026, -0.029266219586133957, -0.007665502373129129, 0.023738570511341095, 0.02319050021469593, -0.02710694447159767, -0.002327755792066455, -0.03631243482232094, 0.011519333347678185, 0.021247409284114838, -0.01741969585418701, -0.05673375353217125, -0.03746427223086357, -0.016976244747638702, -0.013225601986050606, 0.010600033216178417, 0.03116508573293686, -0.0008941337582655251, -0.008059932850301266, -0.045182205736637115, 0.024834875017404556, 0.019802497699856758, 0.012064692564308643, -0.022814659401774406, 0.020862117409706116, 0.016645343974232674, 0.0011469093151390553, 0.04380841553211212, -0.0015874644741415977, -0.026166090741753578, 0.006466210819780827, -0.023652173578739166, -0.01945463940501213, -0.00391330337151885, 0.007611480541527271, -0.019978482276201248, 0.013672922737896442, -0.004009723197668791, 0.037649005651474, -0.024927213788032532, 0.0031090325210243464, -0.009318354539573193, 0.019011404365301132, -0.03739556670188904, -0.011336976662278175, 0.056773215532302856, -0.021053068339824677, -0.024320194497704506, 0.04558797925710678, 0.04228456690907478, -0.03463543578982353, 0.015353274531662464, 0.042474910616874695, -0.03781361132860184, 0.03513416275382042, -0.06227647885680199, 0.03159777820110321, -0.013990961946547031, -0.005189369898289442, 0.016193179413676262, -0.0044015697203576565, 0.03849422559142113, -0.0032718777656555176, -0.005945411045104265, -0.0718318521976471, -0.0714673325419426, -0.007891026325523853, 0.0030969535000622272, -0.031267695128917694, 0.012597964145243168, -0.002204139018431306, -0.008808187209069729, -0.008127959445118904, -0.030585121363401413, 0.014905240386724472, -0.006149550899863243, -0.04074036329984665, 0.024362953379750252, 0.01830909214913845, -0.01322417426854372, -0.0032095513306558132, -0.004266439005732536, -0.053878303617239, -0.022000344470143318, -0.026289593428373337, -0.01527862437069416, -0.051975540816783905, -0.017530396580696106, -0.02944810688495636, -0.00011011133756255731, -0.05689222365617752, 0.014437594451010227, -0.003390009980648756, 0.011308610439300537, 0.027755072340369225, -0.007728292606770992, 0.000872268108651042, -0.0052594467997550964, -0.04492513835430145, 0.04819238930940628, 0.02549946866929531, -0.057384490966796875, -0.05070216581225395, 0.039133112877607346, 0.007012928370386362, 0.06474724411964417, -0.01558739598840475, 0.013081923127174377, -0.05316096916794777, -0.03875580057501793, 0.0015899358550086617, -0.044268593192100525, -0.01221913006156683, -0.061211567372083664, -0.035964906215667725, -0.010338823311030865, 0.017899470403790474, 0.010012674145400524, -0.03315696120262146, -0.007598367054015398, -0.044928424060344696, -0.0010435176081955433, -0.02371802367269993, -0.011655734851956367, -0.04435243085026741, -0.022428005933761597, -0.0021017834078520536, 0.0548194982111454, 0.006774631328880787, 0.021330395713448524, 0.0006232412997633219, 0.01650974154472351, 0.003507844638079405, -0.0011731373379006982, -0.06071913614869118, -0.018131066113710403, -0.026754960417747498, -0.004879642277956009, -0.0023414576426148415, 0.01741972379386425, -0.029732713475823402, 0.030633123591542244, -0.04375644028186798, -0.0044645145535469055, -0.02085806429386139, -0.018928220495581627, -0.019093159586191177, 0.0008237530710175633, 0.06307847797870636, -0.005655801389366388, 0.01158534549176693, -0.043723657727241516, 0.037348128855228424, 0.07414508610963821, 0.006806808523833752, -0.02843373455107212, -0.03549523651599884, -0.04900490120053291, -0.061637040227651596, 0.042968932539224625, -0.03270823135972023, -0.028907984495162964, -0.056660089641809464, 0.00893635954707861, 0.04727107658982277, 0.002502971328794956, 0.04065777733922005, 0.06500650197267532, -0.013034108094871044, 0.004252390470355749, -0.04216581955552101, 0.04154932498931885, 0.029311848804354668, -0.03131876140832901, -0.033030420541763306, -0.011456577107310295, -0.04751519486308098, 0.028954995796084404, -0.040666382759809494, -0.04567532241344452, -0.05411089211702347, -0.007876191288232803, 0.036521825939416885, -0.007790049538016319, 0.026656046509742737, -0.032192956656217575, -0.04854029044508934, -0.0571746788918972, 0.03759559243917465, -0.01590787060558796, 0.015781009569764137, 0.07818374782800674, 0.0010091657750308514, -0.018553344532847404, 0.012774549424648285, 0.03136670961976051, -0.005328217521309853, -0.05200820043683052, 0.057341426610946655, 0.009424297139048576, -0.031255099922418594, 0.01394573412835598, 0.03339356184005737, -0.07539018988609314, -0.045021116733551025, -0.025216136127710342, -0.008648182265460491, -0.020067123696208, -0.05325758457183838, 0.045832473784685135, -0.0034728136379271746, -0.007937566377222538, 0.019801199436187744, 0.03200271353125572, -0.010882844217121601, 0.0390789695084095, 0.009227014146745205, 0.03793220967054367, -0.03491382673382759, 0.01243802160024643, 0.02417071908712387, 0.01314736157655716, -0.02241869829595089, -0.03204265609383583, -0.02402617037296295, 0.005700119771063328, 0.008102405816316605, 0.04007895290851593, -0.032366976141929626, 0.022694522514939308, 0.03537881374359131, -0.0056290156207978725, 0.042800188064575195, -0.01192833948880434, 0.006843751762062311, 0.013232127763330936, -0.04020072892308235, -0.032617777585983276, -0.05661744996905327, -0.012771619483828545, 0.013629463501274586, 0.038777247071266174, -0.04675814136862755, 0.00044093586620874703, 0.027973931282758713, 0.008278723806142807, -0.0034610717557370663, -0.05920889228582382, -0.04990462586283684, -0.043271854519844055, -0.04387151822447777, -0.02856268920004368, -0.02367917075753212, 0.005038247909396887, 0.004828711040318012, -0.013144893571734428, -0.020276974886655807, -0.005370469763875008, 0.007749025244265795, -0.023799898102879524, 0.02893505059182644, -0.0410502664744854, 0.025822753086686134, -0.027857337146997452, -0.03511815145611763, -0.056860391050577164, 0.022319812327623367, -0.01368676871061325, -0.016223840415477753, -0.026474082842469215, -0.0032468156423419714, -0.01617693342268467, 0.026754504069685936, 0.009392808191478252, 0.0005937883979640901, -0.012456398457288742, -0.03639189898967743, -0.017096921801567078, 0.030247962102293968, -0.025215087458491325, 0.03209058567881584, 0.024037610739469528, 0.015804825350642204, 0.037888411432504654, -0.000623108702711761, -0.02929411269724369, -0.009535974822938442, -0.0009037388954311609, 0.0012728333240374923, -0.025405626744031906, -0.050436947494745255, -0.04851647838950157, -0.004885563161224127, -0.03547235205769539, 0.02395913563668728, -0.009833927266299725, 0.00830786395817995, -0.00552375428378582, 0.0004808249941561371, -0.0020325195509940386, 0.08297879993915558, -0.026790207251906395, -0.0019144673133268952, 0.021087557077407837, 0.012501758523285389, 0.023458054289221764, -0.004423703998327255, 0.011523555964231491, 0.014814557507634163, 0.024137064814567566, -0.037849560379981995, 0.01906709186732769, -0.02206951379776001, -0.0005431040190160275, 0.0332777313888073, -0.03999749943614006, -0.04776439070701599, -0.041203033179044724, -0.029885778203606606, -0.010265545919537544, 0.055164020508527756, 0.034564413130283356, -0.016732189804315567, 0.026262976229190826, -0.029179368168115616, -0.031114237383008003, 0.013772811740636826, -0.07274768501520157, -0.07523836195468903, 0.046284500509500504, -0.029248375445604324, 0.004969703499227762, -0.011761174537241459, -0.04056137800216675, -0.0032220499124377966, -0.026059230789542198, -0.005651081912219524, -0.03307584300637245, 0.02478041499853134, -0.006987967994064093, 0.03536840155720711, -0.025823896750807762, 0.007607894018292427, 0.02398557960987091, 0.05722101405262947, -0.06293776631355286, -0.03196335956454277, 0.012657135725021362, 0.02406487800180912, 0.018313352018594742, 0.005039416719228029, -0.0036384041886776686, 0.01043219119310379, -0.009253817610442638, 0.03532689809799194, 0.015446756966412067, 0.016462886705994606, -0.01334884949028492, 0.022517118602991104, -0.014773452654480934, 0.0009674546308815479, -0.036750245839357376, 0.04990291967988014, 0.010194478556513786, -0.023213384672999382, -0.049944888800382614, 0.04089551419019699, 0.029405497014522552, -0.018326250836253166, 0.06634460389614105, 0.007566310930997133, 0.048549894243478775, -0.03587863966822624, 0.014002938754856586, -0.008305206894874573, 0.0003857084666378796, 0.011902444995939732, 0.0616784505546093, 0.0004253551596775651, 0.0219842828810215, 0.02965809777379036, 0.004241090267896652, 0.021081507205963135, 0.05617314949631691, 0.018483204767107964, -0.018265731632709503, 0.012016967870295048, 0.0018089604564011097, 0.015923207625746727, 0.02042698860168457, -0.024536367505788803, -0.00009915475675370544, -0.021673042327165604, 0.012546118348836899, -0.0017737305024638772, -0.015280630439519882, 0.04099727421998978, -0.022527076303958893, 0.013086934573948383, 0.005532766692340374, -0.049258992075920105, 0.0016480154590681195, 0.025415942072868347, -0.021535241976380348, 0.025118160992860794, 0.035666655749082565, 0.024909183382987976, -0.012360570020973682, 0.06593917310237885, 0.019641883671283722, 0.01553627010434866, -0.022488048300147057, 0.007810676470398903, -0.004046458285301924, -0.004081559367477894, -0.02716226875782013, -0.022957107052206993, -0.009303857572376728, 0.03592675179243088, -0.036919005215168, -0.022791491821408272, 0.02572951465845108, -0.03947972133755684, 0.009779839776456356, -0.03677057474851608, 0.02938094548881054, -0.033399734646081924, 0.008042525500059128, 0.012113163247704506, 0.016067786142230034, -0.020802266895771027, 0.056671902537345886, -0.0004975735791958869, 0.0429554358124733, 0.025437982752919197, 0.06250549852848053, 0.011353706941008568, 0.02668113447725773, 0.06339969485998154, -0.012537222355604172, -0.00771615095436573, 0.014189822599291801, -0.010064405389130116, -0.03015376441180706, -0.016582094132900238, -0.04372125491499901, -0.036916594952344894, -0.028287000954151154, -0.01327910739928484, -0.036137692630290985, 0.04348624870181084, 0.020113766193389893, -0.05994737148284912, -0.018721090629696846, 0.019876547157764435, -0.038105402141809464, 0.014688115566968918, 0.02318562939763069, 0.052236851304769516, -0.008050278760492802, -0.012363051064312458, -0.006947682239115238, -0.0234104935079813, 0.00011667928629321977, -0.03827585279941559, 0.044978078454732895, -0.017889462411403656, -0.02795124426484108, -0.04553500935435295, -0.04647921398282051, -0.008589109405875206, 0.014619140885770321, -0.04777604341506958, -0.02079944685101509, 0.04039556533098221, 0.04349333420395851, 0.011880472302436829, -0.0016863432247191668, -0.003941274713724852, -0.002061855746433139, 0.046004585921764374, 0.06649616360664368, -0.019142083823680878, 0.0664675161242485, 0.02266845293343067, -0.014652606099843979, 0.0008036363287828863, -0.046929020434617996, 0.046862632036209106, -0.030053110793232918, -0.0005710828118026257, -0.02170715481042862, -0.0027737373020499945, -0.015408538281917572, -0.046998463571071625, -0.00034579687053337693, 0.007225283421576023, -0.0019749230705201626, -0.013522518798708916, -0.06821978837251663, -0.016335071995854378, -0.019343271851539612, 0.002383982529863715, -0.034664399921894073, -0.005076268687844276, -0.0022059062030166388, -0.0045308866538107395, -0.02135496959090233, -0.080045185983181, 0.19511176645755768, 0.02696859836578369, 0.02774074673652649, 0.029946105554699898, 0.021589884534478188, 0.06938737630844116, 0.05731987953186035, -0.01175179984420538, 0.0031892566476017237, -0.01841772347688675, 0.015197240747511387, 0.00927983969449997, 0.01891905441880226, 0.0025322744622826576, 0.031244872137904167, 0.048359889537096024, -0.052871860563755035, 0.012679762206971645, 0.010313298553228378, -0.02886277437210083, -0.06423182785511017, 0.03246797248721123, 0.009816182777285576, 0.0301978662610054, -0.020882027223706245, 0.007533519063144922, 0.017480816692113876, -0.059023234993219376, -0.01934349350631237, -0.032625943422317505, 0.02565847709774971, -0.049961190670728683, 0.01581924594938755, 0.005869289394468069, -0.03009786456823349, 0.06584402918815613, -0.010418090969324112, 0.007571546360850334, -0.014259385876357555, 0.03271067515015602, -0.02234870009124279, 0.02532382868230343, 0.02195715345442295, -0.03168454393744469, 0.004409474786370993, 0.034693606197834015, -0.04008414223790169, 0.012492473237216473, 0.024496201425790787, -0.020534895360469818, 0.039905011653900146, 0.007804790046066046, 0.029545418918132782, 0.004783309996128082, -0.04137874394655228, 0.009187865070998669, -0.006332618650048971, -0.035577256232500076, -0.02614067867398262, 0.028036152943968773, 0.028094280511140823, 0.0182675588876009, -0.017930135130882263, -0.010715470649302006, -0.04284331575036049, 0.01860942132771015, 0.029225284233689308, -0.002575380029156804, -0.00003195481622242369, -0.02250378578901291, 0.003406584495678544, -0.012761373072862625, -0.013852579519152641, -0.027508575469255447, 0.031744930893182755, 0.03880848363041878, -0.005638184957206249, 0.030923524871468544, 0.03594862297177315, -0.04078378528356552, -0.018598781898617744, -0.039399243891239166, -0.0248702522367239, -0.001057554385624826, 0.03188357129693031, 0.054810140281915665, -0.035542044788599014, -0.024252235889434814, -0.003537037642672658, 0.050741419196128845, 0.03443426638841629, 0.038788359612226486, -0.0008378119091503322, -0.0350102074444294, -0.00044700645958073437 ]
Hideyoshi Enrique Arakaki Chinen (born 2 February 1998) is a Peruvian professional footballer who plays as a right winger for Peruvian club Cusco FC. Club career Arakaki excelled with Universidad San Martín during the 2015 Torneo de Promoción y Reserva, the national under-20 league, prompting his call-up to the first team by manager José del Solar the following year. He made his Peruvian Primera División debut on 10 February 2016, scoring the game-winner in the 47th minute of a 2–1 victory over Comerciantes Unidos. Arakaki signed with FBC Melgar ahead of the 2018 season. He made his continental debut during the 2019 Copa Libertadores qualifying stages, scoring with an impressive strike from outside the box in their 2–0 home victory over Caracas FC on 19 February. In December 2019 he signed a one-year extension with the club. On 8 December 2021, Arakaki signed with UTC. International career Arakaki has represented his country internationally at various age groups. He was part of the team that won the 2013 South American U-15 Championship for Peru, their first-ever title, while going undefeated in the tournament. He scored a brace in their 4–4 draw with Argentina and added another goal in their semi-final victory over Chile. He then played with the national under-17 team at the 2015 South American U-17 Championship before appearing with the Peru U20s at the 2016 Copa de los Andes as well as the Peru U23s during the 2019 Pan American Games in Lima. Personal life Arakaki is of Japanese descendence. His grandparents were born in Japan, but his parents, Genoveva and Luis Enrique, were both born in Peru. Honours International Peru U15 South American U-15 Championship: 2013 References External links Living people 1998 births Peruvian footballers Peru youth international footballers Association football wingers Club Deportivo Universidad de San Martín de Porres players FBC Melgar footballers Deportivo Municipal footballers Universidad Técnica de Cajamarca footballers Peruvian Primera División players Footballers at the 2019 Pan American Games Pan American Games competitors for Peru Footballers from Lima Peruvian people of Japanese descent Peru under-20 international footballers 21st-century Peruvian people
[ -0.02065233886241913, 0.02382645383477211, -0.01321402657777071, -0.027380526065826416, -0.005054648499935865, -0.004694932606071234, -0.013959584757685661, 0.008008274249732494, 0.02204475738108158, 0.029609695076942444, 0.0595952607691288, -0.004556951578706503, 0.0016718163387849927, -0.03347208723425865, -0.03631133958697319, -0.0156902763992548, -0.017998138442635536, -0.024966523051261902, 0.007977395318448544, -0.0012691904557868838, 0.022052496671676636, 0.01249327976256609, -0.05403890460729599, -0.03826690465211868, -0.011694659478962421, 0.035011280328035355, 0.015052877366542816, -0.020461738109588623, 0.04595879837870598, 0.016882430762052536, -0.02147500030696392, -0.0422230139374733, 0.03041047975420952, -0.052854809910058975, -0.010520152747631073, -0.03994456306099892, 0.04782179743051529, -0.04411005228757858, -0.04113319516181946, -0.05479826778173447, 0.03830593079328537, -0.014524095691740513, 0.01010886114090681, -0.003937181085348129, -0.04300482198596001, -0.008268251083791256, -0.017566798254847527, -0.01998213119804859, 0.003286413848400116, -0.0452992208302021, 0.025997979566454887, 0.0016279633855447173, 0.025951925665140152, 0.008496858179569244, -0.027990354225039482, 0.014862696640193462, 0.02862688899040222, -0.044901832938194275, -0.002025080844759941, 0.043683234602212906, 0.03502003103494644, -0.024365119636058807, 0.017830070108175278, -0.041426096111536026, 0.02957601472735405, -0.006959392689168453, 0.029045624658465385, -0.01023624837398529, 0.05119217932224274, -0.016140861436724663, -0.001454716781154275, -0.013550426810979843, -0.03568648174405098, -0.014510015025734901, -0.006703376304358244, 0.011563027277588844, -0.021542616188526154, -0.0019604251720011234, -0.011875001713633537, 0.024095475673675537, 0.02472095564007759, 0.07253620028495789, 0.0012831075582653284, 0.0033308081328868866, -0.049339212477207184, -0.03657037019729614, 0.0024629556573927402, 0.023479288443922997, -0.015164541080594063, 0.008564171381294727, -0.030430786311626434, 0.041127871721982956, -0.012330570258200169, -0.033262450248003006, 0.027436213567852974, 0.03229178860783577, -0.036396563053131104, 0.03657940402626991, -0.0028773879166692495, -0.027183322235941887, 0.051190197467803955, 0.03854160010814667, 0.012141400016844273, 0.04701385274529457, -0.028836332261562347, -0.02570277452468872, -0.01519418228417635, -0.008132440969347954, -0.011629913002252579, -0.03604334965348244, -0.0010719066485762596, -0.03247532621026039, 0.013219264335930347, 0.018724381923675537, -0.025265712291002274, 0.07126829773187637, -0.0018016141839325428, 0.026968831196427345, -0.0052820732817053795, 0.0005356398178264499, 0.014430424198508263, 0.013378509320318699, 0.032503072172403336, -0.00481426902115345, 0.035836778581142426, -0.024724075570702553, -0.03444819897413254, 0.0541628897190094, -0.04227563738822937, -0.025437084957957268, 0.015109691768884659, -0.05391368269920349, -0.025611503049731255, 0.01529641356319189, -0.019771290943026543, 0.05173373222351074, -0.0013859227765351534, 0.010032239370048046, 0.015645703300833702, -0.05688614398241043, 0.048188526183366776, 0.03009817562997341, 0.014738517813384533, 0.07588667422533035, -0.0006233900785446167, 0.054149676114320755, 0.0010571667226031423, -0.00802139937877655, -0.0313539020717144, 0.025335686281323433, -0.037984449416399, -0.002455726731568575, -0.011832868680357933, 0.025234568864107132, -0.003554755821824074, 0.01727864146232605, -0.01804610900580883, 0.024855028837919235, -0.0005349707207642496, 0.010667760856449604, -0.032806262373924255, -0.0025515423621982336, 0.0075376699678599834, 0.041481100022792816, 0.0004990812158212066, 0.05412204563617706, -0.04417746886610985, 0.009750956669449806, -0.014477988705039024, -0.049737319350242615, 0.037984926253557205, -0.00911598652601242, 0.0002671563415788114, 0.013925883919000626, 0.008328724652528763, 0.04199925437569618, 0.016327084973454475, -0.0017521693371236324, 0.03861864283680916, 0.03675667569041252, -0.03584529832005501, -0.014765581116080284, -0.007697424851357937, 0.06604868918657303, 0.026087289676070213, 0.002850238000974059, -0.021029097959399223, -0.029732249677181244, -0.03751803934574127, -0.014436326920986176, -0.03657880425453186, 0.03899786248803139, -0.02095453441143036, 0.03395500034093857, 0.023771008476614952, -0.017351748421788216, -0.008376529440283775, -0.02438201755285263, 0.023405946791172028, -0.039295993745326996, -0.005110842175781727, 0.06484952569007874, -0.010052674449980259, 0.04067033901810646, 0.013337920419871807, -0.0034350124187767506, 0.03218529373407364, 0.08228954672813416, -0.039783064275979996, 0.025347771123051643, 0.0544440858066082, 0.01968959905207157, -0.005189282353967428, -0.02157408930361271, 0.002168007893487811, -0.008049114607274532, -0.014170333743095398, 0.04785992205142975, -0.0074866465292871, 0.018639981746673584, 0.01781373657286167, 0.03631770983338356, 0.038547907024621964, 0.017496567219495773, 0.0010429121321067214, 0.016268234699964523, 0.011530661955475807, 0.03828161209821701, 0.013230251148343086, -0.009893042035400867, -0.011942533776164055, 0.023836132138967514, -0.004264949820935726, 0.061307698488235474, 0.021174758672714233, 0.021471267566084862, 0.02643844112753868, 0.044145215302705765, 0.009736976586282253, 0.025773493573069572, 0.01744728535413742, 0.004361297003924847, 0.02665395475924015, 0.04034455865621567, -0.013837899081408978, 0.010379539802670479, -0.015676934272050858, 0.006455793511122465, -0.044121257960796356, 0.047804009169340134, 0.00009186805255012587, 0.04331677407026291, 0.03142865374684334, 0.04201935604214668, -0.03515935316681862, -0.005524049047380686, 0.024249549955129623, 0.05609401687979698, -0.028350524604320526, 0.0019016937585547566, -0.016704030334949493, -0.00543367350474, 0.012741556391119957, -0.018183454871177673, 0.026747632771730423, 0.01709398627281189, -0.0030121065210551023, 0.015012605115771294, 0.02186373993754387, -0.037279631942510605, -0.04309075325727463, -0.07174129784107208, -0.05034033581614494, -0.040590882301330566, -0.04354504868388176, -0.01890099048614502, 0.06418884545564651, -0.056201670318841934, 0.01336619071662426, -0.0011229823576286435, -0.020915014669299126, 0.0016390822129324079, -0.02683299407362938, 0.05760359764099121, 0.026764698326587677, 0.047883156687021255, -0.003978346474468708, 0.023941053077578545, 0.0013442797353491187, 0.036789972335100174, -0.04000413790345192, -0.006887506693601608, 0.019717449322342873, -0.025058159604668617, 0.03756033629179001, -0.0214404109865427, -0.010945885442197323, 0.0016535144532099366, -0.025256188586354256, -0.05395568907260895, 0.022738808766007423, 0.0028306522872298956, -0.010560998693108559, -0.029234178364276886, -0.035230327397584915, 0.050709281116724014, 0.03652014583349228, -0.03674924746155739, 0.05172714591026306, 0.047266848385334015, -0.04621179774403572, 0.03554810583591461, 0.020203331485390663, 0.0060033551417291164, -0.037993934005498886, 0.060087695717811584, 0.04978375881910324, -0.001529902801848948, -0.03958621621131897, -0.037892285734415054, -0.05622042715549469, 0.008326898328959942, 0.04168379679322243, -0.033252447843551636, -0.024296380579471588, 0.02054302580654621, 0.03203639015555382, -0.0671720951795578, 0.0572691336274147, -0.03629305586218834, -0.059279415756464005, -0.037563636898994446, -0.027147872373461723, 0.015861764550209045, 0.012727804481983185, 0.012449497357010841, -0.024946680292487144, -0.03918034955859184, 0.016241801902651787, 0.023147201165556908, 0.05640879645943642, -0.027741845697164536, 0.0434752032160759, 0.029905423521995544, -0.011658580973744392, 0.015797162428498268, 0.003968716133385897, -0.02086677774786949, -0.03179539740085602, 0.012544674798846245, -0.007023270707577467, 0.0030860344413667917, 0.022569689899683, -0.0005324515514075756, 0.01378389447927475, 0.06832829862833023, -0.04772356525063515, 0.004466078244149685, 0.007615131791681051, 0.02970334142446518, 0.04154519364237785, 0.008691365830600262, 0.017618143931031227, -0.052560023963451385, -0.0018936473643407226, -0.0376637727022171, -0.006084571126848459, 0.027850152924656868, 0.05312827602028847, -0.05377557501196861, 0.0467655323445797, 0.01099322084337473, -0.03104304149746895, 0.07785071432590485, -0.06811877340078354, -0.003162075998261571, 0.0623648501932621, -0.004439306911081076, 0.04429487884044647, -0.05630997568368912, -0.005085289012640715, 0.0072418684139847755, 0.029959475621581078, 0.029374942183494568, 0.010945009998977184, 0.02477298490703106, 0.0032535952050238848, -0.021190283820033073, -0.032847583293914795, -0.02335551008582115, 0.0014398349449038506, -0.001502246130257845, -0.006560420151799917, 0.0038205876480787992, -0.056069303303956985, -0.03256174921989441, 0.027490122243762016, 0.03520961105823517, 0.047840412706136703, -0.058224353939294815, 0.03125938028097153, 0.013997678644955158, 0.04498333856463432, 0.036566831171512604, -0.012197455391287804, -0.006615620106458664, -0.007683162111788988, 0.04086015000939369, 0.0059152948670089245, -0.03240720182657242, -0.028811151161789894, -0.030337918549776077, -0.04177628085017204, 0.04234601557254791, 0.012419242411851883, -0.027556132525205612, -0.02998429723083973, 0.022875752300024033, -0.020599834620952606, 0.013142508454620838, -0.035291142761707306, -0.014842471107840538, -0.027109244838356972, 0.045317914336919785, 0.03703051805496216, -0.04932888597249985, -0.008477346040308475, -0.039976391941308975, 0.025090405717492104, 0.035922225564718246, -0.005801678169518709, -0.03929872065782547, -0.020116634666919708, -0.03602196276187897, -0.032400328665971756, -0.009635897353291512, 0.061865855008363724, 0.007074293214827776, 0.01337843481451273, -0.03787115961313248, 0.003967093303799629, 0.02624141052365303, 0.013126338832080364, 0.017655834555625916, -0.010569428093731403, -0.004787458572536707, 0.000026542142222751863, 0.03724290058016777, -0.032517991960048676, -0.016832632943987846, -0.011391518637537956, -0.07359833270311356, 0.030523112043738365, 0.011155116371810436, -0.010609051212668419, 0.011802843771874905, -0.01485676784068346, 0.02146487683057785, 0.05956460162997246, -0.006223304197192192, -0.022286366671323776, -0.010334784165024757, 0.014000925235450268, -0.0359109491109848, -0.021426120772957802, 0.035429697483778, -0.009225185960531235, -0.04338657483458519, 0.025591494515538216, 0.0324360616505146, -0.042654938995838165, -0.020347516983747482, 0.02923448383808136, -0.047269564121961594, 0.03884897381067276, -0.03141365572810173, 0.024221904575824738, -0.010990394279360771, -0.047779716551303864, 0.011608600616455078, -0.021497806534171104, 0.03748130053281784, 0.02687772549688816, -0.046332333236932755, -0.004780718591064215, -0.0480438657104969, -0.01969822868704796, -0.011676155962049961, -0.01196375209838152, 0.027505457401275635, -0.022575033828616142, -0.026700781658291817, 0.0423709936439991, -0.016158809885382652, -0.0033850448671728373, -0.0029953953344374895, -0.033363647758960724, -0.006977312732487917, 0.007171903736889362, 0.009734941646456718, -0.022230882197618484, -0.0020306562073528767, -0.03760575130581856, 0.0067101432941854, -0.013293089345097542, -0.03732245787978172, -0.03457362577319145, 0.004583918489515781, -0.02136341854929924, -0.01972893252968788, -0.05273057147860527, -0.008721373043954372, -0.018656887114048004, -0.0027289397548884153, -0.0028992057777941227, 0.008156223222613335, 0.004506214056164026, 0.06428059190511703, -0.04832743853330612, 0.04064929857850075, 0.020783187821507454, -0.043677154928445816, -0.018236298114061356, 0.020217441022396088, 0.002349025569856167, 0.048288360238075256, -0.010227276012301445, -0.00799252837896347, -0.039806339889764786, -0.05137472599744797, -0.003270766930654645, -0.046844493597745895, -0.017561301589012146, -0.05219991132616997, -0.031538598239421844, -0.021165577694773674, 0.032799892127513885, -0.008324130438268185, -0.0057240864261984825, 0.02235661819577217, -0.06932299584150314, 0.022351600229740143, -0.04250185191631317, -0.05179421603679657, -0.033446043729782104, -0.009237559512257576, -0.01620190404355526, 0.06177821755409241, 0.020841261371970177, 0.026638871058821678, 0.04183344542980194, 0.02420658990740776, 0.003481165738776326, -0.00974487978965044, -0.05307241156697273, -0.053360335528850555, -0.0026006384287029505, 0.004612634889781475, -0.0126621313393116, -0.013749874196946621, -0.020425213500857353, 0.045643046498298645, -0.05207231640815735, -0.02268010750412941, -0.03322644159197807, -0.01950465328991413, 0.009835419245064259, 0.03275280445814133, 0.061128273606300354, -0.032418206334114075, 0.004252299666404724, -0.022556353360414505, 0.05828842148184776, 0.031728118658065796, 0.007278372533619404, -0.02934965118765831, -0.04100273549556732, -0.03332950174808502, -0.02155710943043232, 0.035629332065582275, -0.045061931014060974, -0.015746016055345535, -0.05824245885014534, 0.0015228836564347148, 0.03204301744699478, 0.00799264945089817, 0.011206748895347118, 0.054655976593494415, -0.029022935777902603, 0.0071054017171263695, 0.011088987812399864, 0.02599937841296196, 0.022550763562321663, -0.008455542847514153, -0.01308443583548069, -0.006045643240213394, -0.011856818571686745, 0.038380034267902374, -0.014108731411397457, -0.07187813520431519, -0.061126526445150375, 0.0028378956485539675, 0.058636777102947235, -0.013499322347342968, 0.04927068576216698, -0.013249469920992851, -0.03389977663755417, -0.05409497022628784, 0.050058454275131226, 0.024906892329454422, -0.00018694148457143456, 0.056521378457546234, -0.009776566177606583, -0.016203561797738075, 0.028275510296225548, 0.0004937607445754111, 0.03686043992638588, -0.0471850261092186, 0.07414848357439041, -0.016614172607660294, -0.04153253883123398, 0.01174229197204113, 0.07800104469060898, -0.08345117419958115, -0.059759121388196945, -0.01832260563969612, 0.01382542122155428, -0.003775526536628604, -0.011813120916485786, -0.005471622571349144, -0.00773192010819912, -0.021356426179409027, -0.010483666323125362, 0.05053531378507614, 0.018884144723415375, 0.04625469073653221, 0.007967986166477203, 0.024020833894610405, -0.06348816305398941, 0.006872064899653196, 0.016238976269960403, -0.010463034734129906, -0.01363602839410305, -0.006200962699949741, -0.018850546330213547, 0.010574236512184143, -0.0047380379401147366, 0.047054488211870193, -0.020651180297136307, 0.018023965880274773, 0.041876547038555145, -0.04193366318941116, 0.039404504001140594, 0.001992390723899007, 0.0030064156744629145, 0.0011602691374719143, -0.020091893151402473, -0.05372808873653412, -0.0339030884206295, 0.034144870936870575, -0.014395863749086857, 0.03664354607462883, -0.013828389346599579, -0.002572353696450591, 0.046812478452920914, 0.0239680465310812, 0.005849070847034454, -0.05203963443636894, -0.0323089063167572, -0.036941029131412506, -0.04567622020840645, -0.04661746695637703, 0.00012385837908368558, 0.018518684431910515, 0.019083919003605843, -0.0044737341813743114, -0.03571474924683571, 0.01936175487935543, -0.0009857305558398366, 0.0032298804726451635, 0.027219567447900772, -0.040082208812236786, 0.019088488072156906, -0.03681449964642525, -0.06644370406866074, -0.04556264355778694, -0.02483234740793705, 0.0051106782630085945, 0.018391508609056473, 0.01783571019768715, 0.0388435497879982, -0.02754330262541771, 0.030102642253041267, 0.0018967307405546308, 0.002205976750701666, -0.0008584716124460101, -0.04634625092148781, -0.03794180974364281, 0.05604412779211998, 0.029839538037776947, 0.03365165367722511, 0.03174113482236862, -0.010122577659785748, 0.03455054759979248, 0.02113543637096882, -0.012845361605286598, -0.025541529059410095, -0.0012523183831945062, -0.006637620273977518, -0.01823354698717594, -0.016054803505539894, -0.052902404218912125, -0.025784863159060478, -0.028178902342915535, 0.03989738970994949, 0.010186141356825829, 0.006790276151150465, -0.0016376343555748463, -0.029593665152788162, -0.010321035049855709, 0.059927091002464294, -0.0017114506335929036, 0.050944603979587555, 0.033860694617033005, 0.04095281660556793, 0.028538130223751068, -0.02938028797507286, 0.00917365588247776, 0.005997136700898409, 0.03187256306409836, -0.006544748321175575, 0.013596675358712673, 0.026870030909776688, 0.0030071227811276913, 0.047056764364242554, -0.013600707985460758, -0.03599238768219948, -0.06174183264374733, -0.04358978942036629, 0.004256635904312134, 0.04410143569111824, -0.03746223449707031, -0.0005354582099243999, 0.043336231261491776, -0.003909399267286062, -0.05282173678278923, -0.022196318954229355, -0.05445839464664459, -0.01675894483923912, 0.019904812797904015, -0.044655051082372665, -0.03478100150823593, -0.01987641490995884, -0.020725900307297707, 0.01432133000344038, -0.001149428659118712, 0.004711356479674578, -0.013081289827823639, -0.0027531366795301437, -0.009012331254780293, 0.039929378777742386, 0.02314474992454052, -0.0003714105114340782, -0.0038219387643039227, 0.04395798593759537, -0.027539357542991638, -0.04289872199296951, 0.010401059873402119, 0.02824803814291954, -0.0030848856549710035, -0.0069313980638980865, -0.01903841644525528, 0.01679021120071411, 0.0013953218003734946, -0.007395005784928799, -0.0037802010774612427, 0.015418068505823612, -0.02745956927537918, 0.030338745564222336, 0.004142194986343384, 0.012937174178659916, -0.05133243650197983, 0.05316520854830742, -0.005760337226092815, -0.035914648324251175, -0.01723097823560238, 0.007816998288035393, 0.006567575968801975, -0.04072638228535652, 0.023870062083005905, 0.007680866401642561, 0.038655590265989304, -0.019753241911530495, 0.03128655627369881, -0.011083425022661686, 0.01623617485165596, 0.0062790862284600735, 0.035907845944166183, 0.01109666470438242, 0.01283231470733881, 0.0365879163146019, -0.012782608158886433, -0.003222802886739373, 0.031547196209430695, 0.025471027940511703, -0.05424829572439194, 0.0432601273059845, -0.035568807274103165, 0.008878190070390701, -0.0017783425282686949, -0.024354903027415276, 0.006729639135301113, -0.02226877026259899, -0.015560860745608807, -0.013916387222707272, 0.0057763694785535336, 0.04121506214141846, -0.024609621614217758, 0.023574311286211014, -0.004444151185452938, -0.028546083718538284, -0.0008310466655530035, 0.026600493118166924, 0.0033408014569431543, 0.014902877621352673, 0.03874045982956886, 0.013221031986176968, -0.021893002092838287, 0.028532391414046288, 0.005868288688361645, -0.015240385197103024, -0.03519083559513092, 0.012969925999641418, 0.017809800803661346, -0.01174398697912693, -0.002311856020241976, 0.0009533176198601723, -0.03220374882221222, 0.016351815313100815, -0.007592429872602224, 0.010054053738713264, 0.0272186528891325, -0.035301558673381805, -0.02701733075082302, -0.05117851495742798, 0.03309955820441246, -0.018453318625688553, 0.012704038992524147, 0.020521609112620354, 0.011876708827912807, 0.02524174563586712, 0.04643954336643219, 0.012745802290737629, 0.02008022367954254, -0.00023543280258309096, 0.055273592472076416, 0.013410723768174648, 0.009887688793241978, 0.025974493473768234, -0.03390445560216904, -0.03145751729607582, 0.029585611075162888, -0.012610000558197498, -0.06270426511764526, -0.01871025189757347, -0.021904345601797104, 0.0207532811909914, -0.010242318734526634, -0.022455547004938126, -0.009116453118622303, 0.03683663532137871, -0.025963379070162773, -0.04403655230998993, 0.02595479041337967, 0.005062551237642765, -0.05242094397544861, -0.016077255830168724, 0.025355307385325432, 0.0514359213411808, -0.0033268032129853964, -0.008747081272304058, 0.0027320508379489183, -0.020847689360380173, -0.03301871567964554, -0.05111489072442055, 0.03612890839576721, -0.018003853037953377, -0.010255836881697178, -0.02646140195429325, -0.043480854481458664, -0.027298780158162117, 0.008839664980769157, -0.029221834614872932, -0.07001221925020218, 0.04863155260682106, 0.06911015510559082, -0.0011782164219766855, 0.041734371334314346, -0.040726061910390854, 0.02474629506468773, 0.030884651467204094, 0.09507955610752106, 0.01245674304664135, -0.0064248680137097836, 0.04304153844714165, -0.02335657924413681, 0.043114662170410156, -0.03719332069158554, 0.02363833226263523, -0.012802179902791977, -0.02170339785516262, -0.027292760089039803, 0.01905621401965618, -0.03484461084008217, -0.0833815261721611, 0.01667936146259308, 0.02347991243004799, -0.00886776577681303, -0.01581091433763504, -0.07105325162410736, -0.006743773818016052, -0.05221681669354439, -0.00513856764882803, -0.03677963465452194, 0.02364133857190609, 0.01947258971631527, 0.008963528089225292, 0.009248216636478901, -0.05799302086234093, 0.1424873173236847, 0.0378451868891716, 0.01875426061451435, 0.007058253511786461, 0.025971652939915657, 0.04592684656381607, 0.003490761388093233, -0.0061048474162817, -0.013019655831158161, -0.0363314151763916, 0.05080318823456764, -0.03322795405983925, 0.027973290532827377, 0.021207261830568314, -0.009386529214680195, 0.052737198770046234, -0.02061256766319275, 0.04814684018492699, 0.006634926423430443, -0.03352166712284088, -0.03860582411289215, 0.002053867094218731, 0.004382256418466568, 0.011310642585158348, 0.0071889255195856094, 0.028348911553621292, -0.012438825331628323, -0.022904047742486, 0.002633363474160433, -0.018262062221765518, 0.009411743842065334, -0.014513245783746243, 0.031762972474098206, -0.017925003543496132, -0.031799331307411194, 0.046778418123722076, 0.023451264947652817, -0.01553499884903431, 0.02610456570982933, 0.013056120835244656, -0.025692541152238846, 0.04216202720999718, 0.03165530785918236, -0.060999855399131775, 0.036959972232580185, 0.03300562500953674, -0.022029750049114227, 0.002647804096341133, 0.01645323447883129, -0.05214688926935196, 0.07631145417690277, -0.025725839659571648, 0.044474873691797256, -0.02097230590879917, -0.035241734236478806, 0.006374266464263201, -0.0009087680955417454, -0.0284306388348341, -0.006143573671579361, 0.021468177437782288, 0.048063233494758606, 0.027355413883924484, -0.016637545078992844, -0.019217321649193764, -0.05169055238366127, 0.038892775774002075, 0.020052362233400345, 0.0037453495897352695, -0.031200936064124107, -0.021127816289663315, -0.00811004638671875, -0.03696572408080101, 0.012931416742503643, -0.014327303506433964, 0.02693113312125206, 0.03925911709666252, -0.02596796117722988, 0.0237044058740139, 0.009366428479552269, -0.024635933339595795, 0.001624150900170207, -0.04609491676092148, 0.006524025462567806, -0.01749812439084053, 0.026919538155198097, 0.030977850779891014, -0.04939797893166542, -0.010209030471742153, -0.018842071294784546, 0.07240822166204453, 0.046411000192165375, 0.024641674011945724, -0.014987368136644363, 0.004694228060543537, -0.034224364906549454 ]
Iran is different from what you hear in Media Contrary to their governments, the citizens of the societies usually have another means of living and communication. Like any people in a dynamic modern society, Iranians live their lives in accordance with what their heart says. While generally they remain warm and welcome the outsiders, there are some musts they never forget: the importance of religious faith, the significance of family, and a proud attachment to national culture and traditions. Culture of Iran The rooted Culture of Iran, also known as the Culture of Persia, is one of the most influential ones of the world. Due to its dominant geo-political position and culture in the world, Iran has heavily influenced other cultures and peoples of all the four sides, geographically. Openness has been always open to other cultures and traditions, especially those aligned with their owns. This should be, for the exchange of cultures means a bilateral deal; in which the both sides at the same time of giving are also taking! And for Iranian this is what has been always considered.A sort of eclectic cultural elasticity has been said to be one of the keys defining traits of the Iranian identity which is in fact a clue to its historical longevity, the same thing that all Iranian are proud of. How Iranian Live Even today, Iranian Lives are a collection of tradition and customs added with modernity. They have saved both faces well, and run their lives through respecting both sides. In Iran, people hardly work (men and women side by side) to be able to even cover the celebrations, no matter how much they cost. For example, as Sepandār Mazgān is celebrated, they also consider the valentine day. Family life is of supreme importance to Iranians and often a family will include children, parents, grandparents and other elderly relatives. As a result, Iranian Society is more multi-generational than Western Society, something that's most obvious on holidays and weekends; during which, you'll see several generations walking, laughing and picnicking together.For Iranian living alone is extremely unusual; as unmarried children usually only leave home to attend university in another town or for work. For the most part, the average Iranian family is a robust stable unit and, despite economic and social differences, most operate in broadly the same way. Education is highly regarded (especially in present time); adult literacy is well above average for the region at 86.8% (91.2% for men, 82.5% for women), according to UNESCO. Many middle-class teenagers spend up to two years studying for university entrance exams, though once out of university, there is yet another big battle to find a situation to work. Nevertheless, there's a breathtaking flow of studying, instructing and learning among the whole people (no matter which group of ages they belong to). Though Iranian have a hand in different sport courses and even usually attain the top ranks of the world's, yet as a common fever, football is a national obsession. In football, Iran has been competing internationally since 1941, winning three Asian Cups during the '60s and '70s and qualifying for four World Cups (1978, 1998, 2006 and 2014). Many Iranians of a certain generation are that much fan of football, that even can tell you where they were, when for instance Iran defeated Australia in dramatic fashion to qualify for the 1998 World Cup. Usually the kids are seen playing football in streets and squares across Iran, but without many pitches; that is mostly because of religious issues! Modern-day restrictions aside, Iran does have an interesting sporting history. For example, Polo is believed to have originated in Iran and was certainly played during the reign of Darius the Great. Shah Abbas the Great also enjoyed polo, and today you can still see the burly stone goal posts at either end of Esfahan's Naqsh-e Jahan (Imam) Sq. Another ancient sport peculiar to Iran is the Zurkhaneh Sport (literally: 'house of strength'), that is a form of traditional ones. Women in Iran Historically, women of Iran have lived in a relatively progressive society and enjoyed more equality and freedom than their neighbors. They are able to sit in parliament, drive, vote, buy property and work. A visit to an Iranian Home will leave you in no doubt as who is really in charge of the family life; which is arguably the most important issue in Iran. Anyway, in many grounds the women of Iran have a bolded footprint. Iranian Women's various Roles • In Persian Literature Over the past two centuries, women have played a prominent role in Persian Literature. Contemporary Iranian Poets include Forough Farrokhzad, Simin Behbahani, Parvin Etesami, and contemporary authors include Simin Daneshvar, Mahshid Amirshahi, Shahrnush Pârsipur, Moniru Ravânipur and Zoya Pirzad to name a few. • In Persian Music Perhaps Qamar ol-Molouk Vaziri was the first female master of Persian Music who introduced a new style of music, praised by other masters of Persian Music of the time. Several years later, Mahmoud Karimi trained women students: Arfa Atrai, Soosan Matloobi, Fatemeh Vaezi, Masoomeh Mehr-Ali and Soosan Aslani, who later became masters of Persian traditional music. Soodabeh Salem and Sima Bina developed Iranian Children's Music and Iranian Folk Music respectively. Innovations made by Iranian women are not restricted to Persian Music. For instance, Lily Afshar is working on a combination of Persian and Western Classical Music. • In Cinema Iranian women have played an important role in introducing Iranian Women's Arts and gaining international recognition for it, especially on Iranian Cinema field.In the last two decades, the percentage of Iranian film directors who are women has exceeded the percentage of women film directors in most Western countries. The success of the pioneering director Rakhshan Bani-Etemad declares that many women directors in Iran were working hard on films for a long time. Rakhshan Bani-Etemad is probably Iran's best known and certainly most prolific female filmmaker, making documentaries and films about social pathology. Another best-known female film director in the country today is Samira Makhmalbaf, who directed her first film, The Apple, when she was only 17 years old. Samira Makhmalbaf won the 2000 Cannes Jury Prize for Blackboards, a film about the trials of two traveling teachers in Kurdistan.
[ -0.04049450159072876, -0.01748778484761715, -0.04562801122665405, -0.024779632687568665, -0.009709741920232773, 0.0015444399323314428, -0.007027155719697475, 0.03511597588658333, 0.025522492825984955, 0.009161198511719704, 0.025761565193533897, -0.007601720746606588, 0.0011958673130720854, -0.04126031696796417, -0.03256554529070854, -0.015201609581708908, -0.039708562195301056, -0.013450700789690018, -0.01585126854479313, -0.003211013972759247, 0.014236809685826302, 0.013929734006524086, -0.05577797815203667, -0.0026595063973218203, -0.026649564504623413, 0.04779212921857834, 0.00944130402058363, 0.002965243998914957, 0.052988696843385696, 0.04823692888021469, -0.017802899703383446, -0.019884461537003517, 0.044250939041376114, -0.07249747961759567, 0.00219583697617054, -0.03681858628988266, 0.03553715720772743, -0.046749699860811234, -0.01998644322156906, -0.05022995546460152, 0.029939061030745506, -0.0281042642891407, 0.028552189469337463, -0.006302133668214083, -0.04286457225680351, 0.002194016007706523, -0.02820740081369877, -0.03300231695175171, 0.005880414508283138, -0.013424467295408249, 0.0068943384103477, -0.029055900871753693, 0.0033639250323176384, 0.00828890036791563, 0.011268788948655128, 0.03141079097986221, 0.03806614875793457, 0.010735120624303818, -0.015195206739008427, 0.056966982781887054, 0.016420986503362656, -0.024064483121037483, 0.04183042049407959, -0.04614521935582161, 0.03249773383140564, -0.004354250151664019, 0.01528263185173273, -0.010975562036037445, 0.04435964673757553, -0.03481004759669304, 0.03350776433944702, 0.0010280077112838626, -0.0003348154714331031, -0.008000637404620647, -0.029033370316028595, 0.02687079645693302, -0.002354695461690426, 0.026743289083242416, 0.003916703164577484, -0.02270716056227684, 0.023640990257263184, 0.04379941150546074, -0.03484359383583069, 0.004157790448516607, -0.05736800283193588, -0.000123872552649118, -0.009028634987771511, 0.030730362981557846, -0.007511043921113014, 0.03253542259335518, 0.007157010026276112, 0.06780306994915009, -0.00564762344583869, -0.004055025056004524, 0.0463317334651947, 0.06712529808282852, -0.039112381637096405, 0.02984957955777645, 0.007749100681394339, 0.01998201385140419, 0.038376469165086746, 0.006863076239824295, -0.005088418256491423, 0.04485495015978813, -0.04266316816210747, 0.015205579809844494, 0.026239294558763504, -0.024587953463196754, -0.006656392943114042, -0.023423921316862106, 0.0006810256163589656, -0.033321768045425415, 0.004213796928524971, 0.01233862154185772, -0.008336905390024185, 0.045279424637556076, 0.002662144135683775, 0.011981354095041752, -0.04931175336241722, 0.022594911977648735, -0.0009404784068465233, 0.007982511073350906, 0.060308896005153656, -0.015627169981598854, -0.008382313884794712, -0.033166490495204926, -0.02003556676208973, 0.06298137456178665, -0.022026237100362778, -0.017989201471209526, -0.0022397569846361876, -0.021906381472945213, 0.010119588114321232, 0.023039154708385468, -0.004140750505030155, 0.03413566201925278, -0.014721660874783993, 0.010252228006720543, -0.01445701066404581, -0.05201951786875725, 0.04442160204052925, 0.02751271054148674, 0.0011083920253440738, 0.07845142483711243, 0.05470610409975052, -0.00020151291391812265, 0.013328403234481812, -0.017053714022040367, -0.007606283761560917, 0.02782558463513851, -0.004169072024524212, -0.0021918807178735733, -0.03263229876756668, 0.010301374830305576, -0.007292167283594608, -0.02241971530020237, -0.014378568157553673, 0.008245636709034443, 0.014545711688697338, 0.014960141852498055, -0.018948368728160858, -0.0003189189010299742, -0.004999382887035608, 0.05981629714369774, -0.017328934744000435, 0.013688452541828156, -0.03303421288728714, -0.0174397025257349, 0.00213024509139359, -0.04007253795862198, 0.03149469196796417, -0.012900433503091335, -0.016946159303188324, -0.004816202912479639, 0.025452811270952225, 0.07423760741949081, 0.02237747237086296, -0.01622157357633114, 0.04699525982141495, 0.01846776157617569, -0.03675602748990059, 0.005412330850958824, 0.001111899851821363, 0.050859712064266205, 0.0261363722383976, 0.0035755354911088943, -0.035877496004104614, -0.021421797573566437, -0.04778408259153366, -0.03177729621529579, -0.00858030840754509, 0.04342373088002205, 0.0007602055557072163, 0.036867015063762665, 0.014997337944805622, 0.009885642677545547, -0.011236541904509068, -0.006608291063457727, -0.03372035548090935, -0.04995475336909294, -0.026304110884666443, 0.049128372222185135, -0.018413374200463295, 0.023423638194799423, -0.0066148266196250916, -0.014062520116567612, 0.04184321314096451, 0.06029343232512474, -0.02630436047911644, -0.0069452314637601376, 0.05419229343533516, -0.015012118965387344, -0.007337820716202259, -0.009379373863339424, 0.005713253747671843, -0.017640095204114914, -0.03760311007499695, 0.04851934313774109, -0.04783535748720169, 0.007023302372545004, -0.003571571782231331, 0.03467322513461113, 0.018759913742542267, 0.006824463605880737, -0.01890810951590538, -0.0009842709405347705, 0.03131959214806557, 0.024328425526618958, -0.02716021239757538, -0.01943594217300415, -0.0035436812322586775, 0.060169003903865814, 0.03231674060225487, 0.03526854142546654, 0.06043045222759247, 0.0338481143116951, 0.032066959887742996, 0.014734592288732529, 0.007177288178354502, 0.022062284871935844, 0.020783912390470505, -0.003704862203449011, 0.05973295122385025, 0.024042785167694092, -0.007031927350908518, 0.0345202311873436, -0.009692653082311153, -0.0018259361386299133, 0.008360825479030609, 0.04615873843431473, 0.00692748324945569, 0.027615243569016457, 0.04675288125872612, 0.07622578740119934, 0.0072782933712005615, 0.014152144081890583, 0.04644591733813286, 0.06383001059293747, -0.019085874781012535, -0.030714722350239754, 0.010211692191660404, 0.026321036741137505, 0.0033911573700606823, 0.021901438012719154, 0.02092626877129078, 0.014288386330008507, 0.009050128981471062, 0.023418249562382698, -0.02427106723189354, -0.03537851944565773, -0.040270447731018066, -0.06423718482255936, -0.03198283165693283, -0.03629783168435097, -0.047720421105623245, 0.020378494635224342, 0.043916717171669006, -0.05518803745508194, 0.026421962305903435, -0.009356367401778698, -0.031767040491104126, -0.01195716392248869, -0.0208471417427063, 0.04671408236026764, 0.0263076052069664, 0.026983333751559258, -0.02590988203883171, 0.056465115398168564, 0.01885882392525673, 0.02393566071987152, 0.0007487696711905301, -0.0007069027051329613, -0.007779811043292284, -0.047825515270233154, 0.052091628313064575, 0.00668655801564455, 0.013970548287034035, 0.015960995107889175, -0.03363294154405594, -0.057390984147787094, 0.009040341712534428, 0.020818695425987244, -0.01854279823601246, 0.00904589518904686, -0.04381323605775833, 0.05769924446940422, 0.003465326502919197, -0.027367722243070602, 0.013149198144674301, 0.056977201253175735, -0.04771450534462929, 0.04602314531803131, 0.013469862751662731, 0.04838886111974716, -0.03720914199948311, 0.044404104351997375, 0.010805644094944, 0.0067837475799024105, -0.007735539227724075, -0.014750584959983826, -0.0373234897851944, -0.018369389697909355, 0.04598097875714302, -0.0019573732279241085, -0.011068766005337238, 0.036696936935186386, 0.02729063667356968, -0.08617563545703888, 0.022984739392995834, -0.018107641488313675, -0.036961253732442856, -0.036338455975055695, -0.052991971373558044, 0.034009821712970734, 0.026273628696799278, -0.021482154726982117, 0.0030291685834527016, -0.026014458388090134, 0.016351910308003426, 0.01104158814996481, -0.00925032515078783, -0.009049997664988041, 0.023593826219439507, 0.030405579134821892, 0.014093143865466118, -0.004588068928569555, 0.024959037080407143, -0.010166427120566368, -0.013897161930799484, 0.0277551282197237, 0.007689098361879587, 0.0055034770630300045, 0.03998151794075966, 0.023157300427556038, -0.010447036474943161, 0.061114225536584854, -0.030479589477181435, 0.0004297897685319185, 0.010766743682324886, 0.02147701382637024, -0.0014145764289423823, 0.006928976159542799, 0.012067108415067196, -0.00972141046077013, -0.03409801796078682, -0.04077467322349548, 0.02181374467909336, -0.020716000348329544, 0.06430927664041519, -0.08888977766036987, 0.06590660661458969, -0.0077624451369047165, -0.03144875168800354, 0.05620192363858223, -0.04669749736785889, -0.004677718039602041, 0.04785744100809097, -0.007351804058998823, 0.06693536788225174, -0.05273256450891495, 0.012114128097891808, -0.039538055658340454, 0.019375136122107506, 0.021588504314422607, -0.020545437932014465, 0.003919193055480719, -0.024657057598233223, -0.030459603294730186, -0.001410089898854494, -0.022353604435920715, -0.012075461447238922, -0.02623341605067253, -0.01895543374121189, -0.024641569703817368, -0.048697516322135925, -0.05986804515123367, 0.07513774931430817, 0.019454225897789, 0.043242715299129486, -0.037506408989429474, 0.04018648713827133, 0.014311417937278748, 0.005567168351262808, 0.0025824280455708504, -0.01918906345963478, 0.01264296006411314, -0.058519333600997925, 0.03451463580131531, 0.03310779482126236, -0.033157091587781906, -0.022510958835482597, -0.04350357875227928, -0.02679901383817196, 0.04071502014994621, 0.006656005047261715, -0.004613772034645081, -0.022180553525686264, -0.002579011721536517, 0.00194075470790267, 0.054854616522789, -0.03905409574508667, 0.012714513577520847, -0.003661363385617733, 0.02225944772362709, 0.01375002134591341, -0.05488411337137222, -0.015554629266262054, -0.02628197893500328, 0.047905128449201584, 0.03331635892391205, 0.0038017178885638714, -0.050387702882289886, -0.036638155579566956, -0.008248049765825272, -0.02879989519715309, -0.04057760536670685, 0.04961758852005005, 0.002187086036428809, -0.013668051920831203, -0.03835553303360939, 0.006276069674640894, 0.0401032529771328, 0.005757248029112816, 0.011679798364639282, -0.012717043049633503, 0.03477567061781883, 0.002552720718085766, 0.035019002854824066, -0.039731256663799286, -0.01071364525705576, 0.030571674928069115, -0.04823002964258194, -0.019390897825360298, -0.017619075253605843, 0.0015748693840578198, -0.0076639121398329735, -0.025974228978157043, -0.00622119614854455, 0.02962283417582512, -0.02834314852952957, -0.00982168409973383, -0.01581241376698017, 0.06646028161048889, -0.031905535608530045, -0.016477448865771294, 0.06505358964204788, -0.021158264949917793, -0.03803524747490883, 0.018951846286654472, 0.04388084262609482, 0.03896939754486084, 0.006892830599099398, 0.013627841137349606, -0.04353483021259308, 0.02226666361093521, -0.04691940173506737, -0.0030431419145315886, -0.026700999587774277, -0.03457183763384819, -0.0015609289985150099, -0.03247738257050514, 0.027145104482769966, 0.015362587757408619, -0.019812755286693573, -0.05767723172903061, -0.05263487622141838, -0.013042622245848179, 0.03140179067850113, -0.014466919004917145, 0.048380713909864426, -0.017053164541721344, -0.04400058463215828, -0.014213661663234234, 0.0009703109972178936, 0.0034134546294808388, -0.0016021248884499073, 0.006055671721696854, 0.002134221140295267, 0.02656099759042263, -0.01784198358654976, 0.014540135860443115, -0.0014436986530199647, -0.028296349570155144, -0.04598161205649376, 0.011484012939035892, -0.016848597675561905, -0.03460328280925751, 0.013871404342353344, -0.014407225884497166, -0.007274342700839043, -0.023717964068055153, -0.007555067073553801, -0.00924974586814642, 0.024709271267056465, 0.0018352987244725227, -0.019831040874123573, -0.023234644904732704, 0.008727015927433968, -0.018168052658438683, 0.03292008861899376, 0.0039470321498811245, -0.04646388441324234, -0.026070518419146538, 0.015653513371944427, -0.03869205713272095, 0.03345940634608269, -0.021002773195505142, -0.016342179849743843, -0.07987973839044571, -0.06953977048397064, -0.0400775782763958, -0.033912088721990585, -0.013409282080829144, -0.022715410217642784, 0.012625557370483875, -0.009149820543825626, 0.05306128412485123, 0.02581441029906273, 0.003936946392059326, -0.01181342639029026, -0.022392556071281433, 0.0005362884257920086, -0.04313280060887337, -0.020608948543667793, -0.003818462835624814, -0.036135777831077576, -0.03899890556931496, 0.049180205911397934, -0.008289441466331482, 0.02047411911189556, -0.015775511041283607, 0.011774039827287197, 0.02251826412975788, -0.04632558673620224, -0.03230326995253563, -0.04417264088988304, -0.008044110611081123, 0.030571503564715385, 0.006988211534917355, -0.019173698499798775, -0.04600091278553009, 0.060803450644016266, -0.022991739213466644, -0.0335487499833107, -0.040252115577459335, -0.030318165197968483, -0.029657678678631783, 0.0017923550913110375, 0.06489169597625732, -0.027420468628406525, 0.02291448414325714, -0.031032023951411247, 0.02921711839735508, 0.04041597247123718, -0.013425320386886597, -0.052143119275569916, -0.006223473697900772, -0.05541647598147392, -0.06665603071451187, 0.03195573389530182, -0.012776197865605354, -0.011024251580238342, -0.020162297412753105, 0.01862981542944908, 0.03842518478631973, -0.014343705959618092, 0.04551936686038971, 0.040654104202985764, -0.017060061916708946, -0.013336322270333767, -0.05255793035030365, 0.06446518748998642, 0.016190920025110245, -0.04522991180419922, 0.0056291562505066395, -0.02304846979677677, -0.039660412818193436, 0.014774623326957226, -0.02754025347530842, -0.041681814938783646, -0.03748821094632149, -0.008902348577976227, 0.07090678066015244, -0.0150126488879323, 0.03898220509290695, 0.005306831561028957, -0.04294411838054657, -0.018152600154280663, 0.03928711265325546, -0.011632870882749557, 0.013344626873731613, 0.06617401540279388, -0.005048967897891998, -0.007723296992480755, 0.006889952812343836, -0.001072383252903819, 0.036634840071201324, -0.03846174478530884, 0.013101033866405487, 0.0034221888054162264, -0.04680928960442543, 0.00537866959348321, 0.032764729112386703, -0.07247447967529297, -0.0493185892701149, -0.011550117284059525, 0.017471468076109886, -0.002356574172154069, -0.025496134534478188, 0.030916471034288406, -0.015198771841824055, 0.04068689048290253, 0.028429724276065826, 0.03773925080895424, -0.00526068452745676, 0.04743547365069389, 0.024682028219103813, 0.02393127791583538, -0.020125720649957657, 0.013690229505300522, 0.020628755912184715, -0.027516264468431473, -0.022502196952700615, -0.013011307455599308, 0.008643250912427902, -0.026009198278188705, -0.009112756699323654, 0.02585405856370926, -0.048456013202667236, 0.010930757969617844, 0.03474981710314751, -0.01795821823179722, 0.01380996499210596, 0.007319682277739048, -0.005161703564226627, 0.02196507155895233, -0.03342553600668907, -0.05479356274008751, -0.04639119282364845, 0.040796514600515366, -0.00067526800557971, 0.026327116414904594, -0.0203104168176651, 0.0228671133518219, 0.04649302735924721, -0.016677623614668846, -0.007545316591858864, -0.0328572541475296, -0.03786425292491913, -0.030018704012036324, -0.05890801176428795, -0.036046210676431656, -0.009589213877916336, 0.005349268671125174, 0.024721741676330566, 0.020595917478203773, -0.036959268152713776, -0.022602587938308716, 0.02465134859085083, -0.029931247234344482, 0.007827225141227245, -0.036905836313962936, 0.0351063534617424, -0.029101762920618057, -0.0673600286245346, -0.0355302095413208, -0.025837866589426994, -0.036488521844148636, 0.005095057189464569, -0.0038595893420279026, 0.01309902686625719, -0.003984029870480299, 0.017852196469902992, 0.011213800869882107, 0.011356822215020657, 0.0027170770335942507, -0.025281360372900963, -0.0036457651294767857, 0.022274885326623917, 0.030320553109049797, 0.04773902893066406, 0.038599610328674316, -0.012087616138160229, 0.012849243357777596, -0.0038021919317543507, -0.06091301888227463, -0.010683278553187847, -0.00349314883351326, 0.006348966155201197, 0.01987556181848049, -0.03736112639307976, 0.0006761803524568677, 0.006665252149105072, -0.03745674341917038, 0.010660986416041851, -0.006889008451253176, 0.04231622442603111, -0.01568637043237686, -0.02237546443939209, -0.005029129330068827, 0.0646761879324913, -0.0063225701451301575, 0.03846079856157303, 0.010535204783082008, 0.05566198751330376, 0.01364145614206791, -0.03284264728426933, 0.03947924077510834, 0.03222033381462097, 0.05211786925792694, -0.016227979212999344, -0.02686266414821148, 0.0038143766578286886, -0.0111258365213871, 0.029320772737264633, -0.040868453681468964, -0.02515507861971855, -0.03662947565317154, -0.027340488508343697, 0.007320045027881861, 0.02838892862200737, 0.029677122831344604, -0.009738920256495476, 0.0432906374335289, -0.025371339172124863, -0.01649744249880314, -0.012825527228415012, -0.0372900627553463, -0.020880669355392456, 0.03538092225790024, -0.041411176323890686, -0.002909304341301322, -0.0016998564824461937, -0.04075433686375618, 0.026349518448114395, -0.0028122500516474247, -0.017299680039286613, -0.015507039614021778, 0.03505993261933327, -0.02434113435447216, 0.047288183122873306, -0.007379880640655756, 0.0035343787167221308, 0.01573658175766468, 0.034066274762153625, -0.024781590327620506, -0.05516310781240463, 0.04150639474391937, 0.013760312460362911, -0.00002226021206297446, 0.01779727265238762, -0.007117598783224821, 0.030797267332673073, -0.01470266655087471, -0.011418299749493599, 0.027362024411559105, -0.012677248567342758, -0.007463897578418255, 0.02120042033493519, 0.005170469172298908, 0.0073163630440831184, -0.03635939210653305, 0.06505818665027618, 0.013196492567658424, -0.05482577532529831, -0.059463538229465485, 0.04444824159145355, 0.03561925143003464, -0.00312446360476315, 0.042927563190460205, 0.015668515115976334, 0.027077514678239822, -0.0032492608297616243, 0.013028942048549652, 0.008977382443845272, 0.03417719528079033, 0.017092769965529442, 0.024569643661379814, 0.0077993012964725494, 0.012563085183501244, 0.03783619776368141, 0.008891268633306026, -0.009277474135160446, 0.032949015498161316, 0.042599551379680634, -0.02674560621380806, -0.007847683504223824, -0.03968934342265129, 0.026094898581504822, 0.02138085663318634, -0.0047831349074840546, -0.01943693310022354, -0.021084332838654518, 0.0009672961314208806, -0.021237432956695557, -0.008851668797433376, 0.042100489139556885, -0.02761826291680336, 0.024911735206842422, -0.017863955348730087, -0.014530184678733349, 0.015575992874801159, 0.03901539370417595, 0.029559563845396042, -0.004065817221999168, 0.03565818443894386, 0.011517364531755447, -0.01676248200237751, 0.047612711787223816, 0.0018755214987322688, 0.0024467480834573507, -0.02481403574347496, 0.01789199747145176, 0.03525795415043831, -0.007421578746289015, -0.009958804585039616, -0.022454161196947098, -0.029982974752783775, 0.018766144290566444, -0.062409620732069016, -0.01075820904225111, 0.0018168319948017597, -0.06700502336025238, -0.004839195404201746, -0.058953505009412766, 0.05626950412988663, -0.03441141918301582, -0.034856606274843216, -0.005668691825121641, -0.002805109601467848, -0.007170001044869423, 0.02553854137659073, -0.0023967851884663105, 0.054847776889801025, 0.038202445954084396, 0.034217216074466705, -0.020562607795000076, 0.03688707575201988, 0.05253256484866142, -0.02585616707801819, 0.0006004030583426356, -0.014623986557126045, 0.001184659544378519, -0.034548915922641754, 0.014961069449782372, -0.037151582539081573, 0.0012783616548404098, -0.0014554375084117055, -0.001399460481479764, -0.00224316562525928, 0.05037544295191765, -0.02175101265311241, -0.052251242101192474, 0.0007531011942774057, 0.0350981168448925, -0.032444924116134644, 0.009281257167458534, 0.008421995677053928, 0.021255120635032654, -0.01645357348024845, 0.0037429428193718195, -0.03410769999027252, -0.043730009347200394, -0.008279306814074516, -0.06505222618579865, 0.05126919597387314, 0.00973337609320879, -0.03585987165570259, -0.02636302076280117, -0.05180390924215317, -0.028125489130616188, 0.01374012976884842, -0.035536687821149826, -0.04788154363632202, 0.024406148120760918, 0.03372938930988312, 0.010964123532176018, -0.01658111810684204, -0.022600991651415825, -0.007856125943362713, 0.04302800074219704, 0.058294907212257385, 0.0058638714253902435, 0.03244732692837715, 0.0415307842195034, -0.004041238222271204, 0.0575997531414032, -0.030465884134173393, 0.030347993597388268, -0.018279915675520897, -0.007249386049807072, -0.004981726873666048, 0.020999044179916382, -0.010315745137631893, -0.03667069599032402, 0.024348430335521698, 0.01971440576016903, 0.00963872391730547, -0.019323254004120827, -0.10684965550899506, -0.030005676671862602, -0.02653014101088047, 0.008455771021544933, -0.06397995352745056, 0.027649739757180214, -0.0028196845669299364, 0.0010450854897499084, -0.00027989380760118365, -0.06080499663949013, 0.14859963953495026, 0.05127384141087532, 0.028532305732369423, -0.007136788684874773, 0.03330953046679497, 0.07083144783973694, 0.00979958288371563, -0.00031239810050465167, 0.04641733318567276, -0.02451828494668007, 0.026000147685408592, -0.03551531583070755, 0.029956156387925148, 0.01071634516119957, 0.024116825312376022, 0.059900566935539246, -0.030179062858223915, -0.004843161441385746, 0.011580393649637699, -0.03595179319381714, -0.08369402587413788, -0.004484084434807301, 0.012298371642827988, 0.01630307547748089, -0.005399309564381838, 0.0011900508543476462, 0.04162541404366493, -0.04034195840358734, 0.02105165645480156, 0.003933949861675501, 0.029394792392849922, -0.036226291209459305, 0.030110584571957588, -0.016875989735126495, -0.04919664189219475, 0.05736353620886803, -0.014005143195390701, -0.04766719788312912, 0.024302955716848373, 0.04682712256908417, -0.03476646542549133, -0.005246926564723253, 0.06671056151390076, -0.03518522530794144, -0.0036632376722991467, 0.04599124938249588, -0.03140097111463547, 0.0034395214170217514, 0.015021711587905884, -0.031230470165610313, 0.06360510736703873, -0.06905216723680496, 0.03233063220977783, 0.012302440591156483, -0.0377696231007576, 0.025348160415887833, 0.0032237886916846037, -0.02965339832007885, -0.02005075104534626, -0.00924622267484665, 0.039645154029130936, 0.011372959241271019, -0.004364216700196266, -0.016324318945407867, -0.017612705007195473, 0.003811307717114687, 0.027439769357442856, -0.0006622062646783888, -0.012395080178976059, -0.031995028257369995, -0.0011399921495467424, -0.012308984063565731, -0.01131595391780138, -0.021133583039045334, 0.05642629414796829, 0.005341798532754183, -0.042525824159383774, 0.027136867865920067, -0.003138393396511674, -0.03756525367498398, -0.009703929536044598, -0.06150348484516144, -0.027997391298413277, -0.006874660961329937, 0.040682971477508545, 0.05498398095369339, -0.02773386985063553, -0.027769779786467552, -0.02194982022047043, 0.052800558507442474, 0.04185056686401367, 0.021801086142659187, -0.007642726413905621, -0.02401226945221424, -0.016888050362467766 ]
Current pageGet food and essentials to street reclaimers in South Africa Get food and essentials to street reclaimers in South Africa Informal recyclers working on streets and in landfills are responsible for collecting over 90% of all materials that are recycled in South Africa. These 'reclaimers' play a crucial role in protecting the environment, but for the first six weeks of lockdown they were not allowed to work, leaving families with no steady income. What can we do about it? African Reclaimers Organisation (ARO) was formed to recognise and represent reclaimers and the essential role they play in the waste management system. During lockdown, donations to ARO helped to provide reclaimers and their families with food and basic necessities. Since May, reclaimers were finally allowed to start working again, but business remains slow. It will take time for companies to start buying large quantities of materials from reclaimers, and there is currently no demand for plastic at all. Many reclaimers are still not able to earn enough to feed their families and remain in desperate need of support. Your donations will directly help thousands of reclaimers and their families with essential supplies during this difficult time. Offer financial help to reclaimers in the wake of Covid-19 Donate to ARO You will be redirected to the initiative owners third-party site to take action. Please note that this third-party site may not be in English. Please return to the Take Action Hub to find more initiatives! Share this initiative Similar ways to take action (10 items) (1 of 10) Reconnect with nature in the Forest for Change 0 of 10 Speak up and share the change you want to see in the world Fight poverty by volunteering with Oxfam 1 of 10 Join us and play your part in fighting poverty Delicious recipes that are better for you and the planet 2 of 10 Join the #KnorrFuture50Foods movement today Fight for our forests with the food that we eat 3 of 10 Five easy ways to fight deforestation in our food Our journey towards a future free of hunger 4 of 10 Learn more about The State of Global Food Banking Help families facing food shortages in East Africa 5 of 10 Make a donation to help save children worldwide Sustainable solutions to the world's development challenges 6 of 10 TRANSFORM the lives of millions in sub-Saharan Africa and South Asia Get food and essentials to street reclaimers in South Africa 7 of 10 Dig deep to defeat hunger and change lives worldwide 8 of 10 Help empower food banks to thrive around the world Invest in a world where no one goes hungry 9 of 10 Become a friend of food banking and change lives around the world Protect & regenerate nature Petition and Pledge More from Unilever Building a clean green foam-production machine When we started using a revolutionary sustainable foaming agent in our Quix hand dishwash liquid in 2019, it was a world first. Now, working in partnership with Evonik, we are taking this pioneering green ingredient global. Plastic pollution is fixable, but the world needs a plan Many governments and organisations are working hard to deal with plastic waste and pollution. But the problem's getting worse and efforts aren't keeping pace. We believe the world needs a UN treaty to truly tackle the issue. When the second wave of Covid hit Hindustan Unilever Nightingales were part of the solution Magnum's new vegan mini range offers bite-sized introduction to Veganuary How's this for a perfect start to a plant-forward new year? Magnum has launched a mini-sized multi-pack of vegan ice creams and a new and improved recipe to its vegan core range. Two great reasons to introduce your tastebuds to non-dairy this Veganuary.
[ -0.008477330207824707, 0.019746091216802597, -0.06533075869083405, 0.049783166497945786, -0.015224180184304714, -0.009259741753339767, -0.0017457660287618637, 0.026131197810173035, 0.02801544964313507, 0.024719420820474625, 0.035892896354198456, -0.004644556902348995, 0.030900144949555397, -0.019463393837213516, -0.020526468753814697, -0.0020404369570314884, -0.010641620494425297, -0.025327185168862343, -0.02034168131649494, -0.02883542887866497, 0.0036405425053089857, -0.0036337454803287983, -0.025160113349556923, -0.04986939951777458, -0.016889631748199463, 0.03974590450525284, 0.017950212582945824, -0.008785387501120567, 0.05310017243027687, 0.07093767076730728, -0.04945199564099312, -0.05524176359176636, 0.022852132096886635, -0.05286632478237152, -0.0016879921313375235, -0.020259656012058258, 0.022003447636961937, -0.021808944642543793, -0.01895049586892128, -0.047839656472206116, 0.012168065644800663, -0.06296520680189133, 0.04075387865304947, -0.019996821880340576, -0.05166631191968918, 0.006215895991772413, -0.017651274800300598, -0.018471240997314453, 0.0091294189915061, -0.02988310344517231, 0.02478772960603237, 0.0045273699797689915, 0.025435306131839752, 0.00022804552281741053, 0.007999269291758537, 0.003888614708557725, 0.011873188428580761, -0.01299863588064909, -0.03785350173711777, 0.008066406473517418, 0.03457950800657272, 0.011586853303015232, 0.025681421160697937, -0.04427063837647438, 0.01789710856974125, 0.02744010090827942, -0.03893271088600159, -0.0045104059390723705, -0.006511697079986334, -0.022088471800088882, 0.0015817349776625633, 0.023685993626713753, -0.024715442210435867, -0.03973165154457092, 0.016183659434318542, -0.016777517274022102, 0.013350110501050949, -0.012789732776582241, -0.022993501275777817, 0.016478227451443672, 0.013541577383875847, 0.05785193666815758, 0.037501011043787, 0.027351869270205498, -0.06259983032941818, 0.01214616559445858, 0.009734049439430237, 0.01054585911333561, 0.024359531700611115, -0.023051995784044266, -0.024072270840406418, 0.05188114568591118, -0.009516197256743908, -0.002744389930739999, 0.02888193167746067, 0.04128403216600418, -0.05378560349345207, 0.013651576824486256, 0.005039036739617586, -0.0027673011645674706, 0.04882575944066048, 0.033917348831892014, -0.00876400712877512, 0.05313912034034729, -0.02031121589243412, 0.006112975068390369, 0.005304413381963968, -0.041698820888996124, -0.007840086705982685, -0.013444599695503712, -0.01177679467946291, -0.02371908724308014, 0.00848135631531477, -0.004729968961328268, 0.02561555989086628, 0.06480434536933899, -0.006966372951865196, 0.0158691368997097, -0.020153207704424858, 0.02886791341006756, 0.009889109060168266, -0.002091239206492901, 0.04612439125776291, -0.014809994027018547, 0.0008758222684264183, -0.029417691752314568, -0.010756437666714191, 0.032807607203722, -0.026767311617732048, -0.006759130861610174, 0.003573537804186344, -0.049766018986701965, -0.0046165413223207, 0.0015350993489846587, -0.03242093324661255, 0.015182208269834518, -0.0012978226877748966, 0.0465601421892643, 0.00524646183475852, -0.024351326748728752, 0.06400011479854584, 0.003135969862341881, 0.007690551225095987, 0.07823187112808228, -0.01644347794353962, 0.030579473823308945, 0.00243418593890965, -0.0015313060721382499, -0.044908422976732254, 0.023082278668880463, -0.014373241923749447, 0.0167680811136961, -0.00688338465988636, 0.025262949988245964, -0.0038117850199341774, 0.011595888994634151, -0.02009650133550167, 0.0223688967525959, 0.015301230363547802, 0.02658678963780403, -0.029813900589942932, 0.013199991546571255, -0.008326040580868721, 0.06072022020816803, -0.009469953365623951, 0.05579657480120659, 0.004683798179030418, -0.021793242543935776, 0.004619682673364878, -0.018564721569418907, 0.011637799441814423, -0.03425814211368561, -0.028061117976903915, 0.027583042159676552, 0.007348387967795134, 0.03882728889584541, 0.0457000695168972, 0.0014705703360959888, 0.04460964351892471, 0.02336406148970127, -0.0226702019572258, 0.00028943587676621974, -0.027464184910058975, 0.06313281506299973, -0.020493822172284126, 0.00618285546079278, -0.021721569821238518, -0.007641084957867861, -0.021551931276917458, -0.04255051538348198, -0.002474177163094282, 0.0432075671851635, -0.012636036612093449, 0.012762249447405338, 0.02129383385181427, 0.0004943977110087872, 0.004406276624649763, -0.008638495579361916, -0.009863483719527721, -0.05183490365743637, -0.0229498278349638, 0.042105186730623245, 0.0012053753016516566, 0.02757309004664421, 0.017012357711791992, -0.01653234288096428, 0.05626455694437027, 0.0474119707942009, -0.04430003836750984, 0.011712875217199326, 0.05509862303733826, 0.020512325689196587, -0.02221682295203209, -0.020624971017241478, 0.003865118371322751, -0.01762966811656952, -0.016077177599072456, 0.045324549078941345, -0.023074921220541, -0.047896429896354675, 0.0010323065798729658, 0.002588066039606929, 0.03626132011413574, 0.03510616719722748, 0.022126732394099236, 0.021872347220778465, 0.018777774646878242, 0.06090986728668213, -0.02324160933494568, -0.020084116607904434, -0.027473226189613342, 0.05144704878330231, 0.05918263643980026, 0.04469860717654228, 0.04440067335963249, 0.006821500603109598, 0.05702826753258705, 0.05734866112470627, 0.021059410646557808, 0.03395143896341324, 0.021945597603917122, 0.016974065452814102, 0.03756376728415489, -0.0019530964782461524, -0.009260307066142559, 0.017871860414743423, -0.021959321573376656, -0.009672876447439194, -0.004019045736640692, 0.05168722942471504, -0.005623947363346815, 0.04576769471168518, 0.0023043942637741566, 0.050784338265657425, -0.05510162562131882, -0.02499127760529518, 0.02121621184051037, 0.042827557772397995, -0.016546769067645073, -0.005774771329015493, 0.01789220981299877, 0.04433875158429146, 0.02038395218551159, 0.01431943941861391, 0.04069310799241066, 0.0171725582331419, -0.036618009209632874, 0.03732261061668396, -0.02288508228957653, -0.032905228435993195, -0.03845369070768356, -0.03638657554984093, -0.05591532960534096, -0.03372041508555412, -0.04989061504602432, 0.023293036967515945, 0.03150026500225067, -0.03043593466281891, -0.010264885611832142, -0.010145156644284725, -0.01013385783880949, -0.02098982222378254, -0.007794434670358896, 0.03050580993294716, 0.045919157564640045, 0.024897931143641472, -0.05238086357712746, 0.01166887953877449, 0.017496854066848755, 0.009291645139455795, -0.029913557693362236, -0.024273844435811043, 0.005953305400907993, -0.051905110478401184, 0.018564097583293915, 0.00499461404979229, -0.020924197509884834, 0.0030979590956121683, -0.01742228865623474, -0.026408370584249496, -0.022164765745401382, 0.021350231021642685, -0.05616931989789009, -0.005019204691052437, -0.038393113762140274, 0.03430313989520073, 0.010000056587159634, -0.02603936567902565, 0.05069614201784134, 0.029469581320881844, -0.01704343594610691, 0.07977064698934555, 0.011944616213440895, -0.006800010334700346, -0.039312418550252914, 0.0413627028465271, 0.06082521378993988, 0.0003931644023396075, -0.03611011803150177, 0.005369835067540407, -0.01976972632110119, 0.0046539162285625935, 0.02484976500272751, -0.030397647991776466, -0.023843226954340935, 0.05181879177689552, 0.003041315358132124, -0.06313034892082214, 0.05208855867385864, -0.03461367264389992, -0.04570132493972778, -0.027017634361982346, -0.014018937945365906, -0.007907460443675518, 0.052804261445999146, 0.03607211261987686, 0.012232526205480099, -0.021351978182792664, -0.026616720482707024, -0.0027918824926018715, 0.058994099497795105, -0.04678911343216896, 0.03853766620159149, 0.03847493231296539, 0.017090411856770515, 0.008378716185688972, 0.01962244138121605, 0.005985497962683439, -0.026889290660619736, 0.03195982798933983, 0.006838385481387377, 0.04253045469522476, 0.03400423750281334, 0.024016989395022392, 0.02241833321750164, 0.05248936638236046, -0.034569598734378815, 0.009241961874067783, 0.0025189348962157965, 0.06941204518079758, 0.04248872771859169, 0.014573866501450539, 0.014493780210614204, -0.03080676682293415, -0.062281232327222824, -0.02942928858101368, -0.006244829390197992, 0.024841079488396645, 0.04033523052930832, -0.06758160144090652, 0.06065916642546654, -0.019910849630832672, -0.026700373739004135, 0.026495225727558136, -0.0596497468650341, 0.011790178716182709, 0.04653012380003929, -0.016667820513248444, 0.04785677418112755, -0.06400568783283234, 0.027873361483216286, -0.02227797545492649, 0.027274208143353462, 0.008997879922389984, -0.0032129809260368347, 0.03594156727194786, -0.007549705915153027, -0.017828477546572685, -0.022672267630696297, -0.04690948501229286, 0.0074681732803583145, -0.03712092712521553, 0.016671035438776016, 0.005878550466150045, -0.03922904282808304, -0.026823226362466812, 0.0446774885058403, -0.009725760668516159, 0.05982000008225441, 0.004513476975262165, 0.01211458444595337, 0.03437512740492821, 0.010399486869573593, 0.03394478186964989, -0.016465384513139725, 0.005188359878957272, -0.028999119997024536, 0.04519426450133324, 0.016059359535574913, -0.038528092205524445, -0.02931932359933853, -0.025864798575639725, -0.038203056901693344, 0.04243882745504379, -0.008540133945643902, -0.023426789790391922, -0.045805424451828, 0.011310145258903503, -0.0166353490203619, 0.009633648209273815, -0.02084960788488388, -0.03420520946383476, -0.027744268998503685, 0.02606714330613613, 0.04518886283040047, -0.03910905867815018, 0.02265418879687786, -0.04723739996552467, 0.04042438417673111, 0.04434453323483467, -0.019171159714460373, -0.05116342008113861, -0.053085945546627045, -0.01236768439412117, -0.024205615743994713, 0.02053169719874859, 0.007626994512975216, -0.00857366994023323, -0.0014306693337857723, -0.060530513525009155, 0.02260673977434635, 0.011943243443965912, -0.014033851213753223, -0.007143290247768164, -0.008594855666160583, 0.03635092452168465, -0.012765022926032543, 0.03751080110669136, -0.019862264394760132, -0.009681320749223232, 0.009450574405491352, -0.028026821091771126, 0.0023460709489881992, 0.015643702819943428, 0.0052830190397799015, -0.00867861695587635, 0.004646405577659607, 0.035895541310310364, 0.020115844905376434, -0.02448921836912632, -0.023841751739382744, -0.004443829879164696, 0.01775803044438362, -0.043498069047927856, -0.04931589215993881, 0.06450630724430084, 0.011297670193016529, -0.04976273328065872, 0.03940187022089958, 0.03671310842037201, -0.010542837902903557, 0.05145282298326492, 0.03307623043656349, -0.0679108202457428, 0.0034214667975902557, -0.023867281153798103, -0.00015272400924004614, -0.017052702605724335, -0.027435515075922012, 0.03557213768362999, -0.020302830263972282, 0.04846914857625961, 0.012840049341320992, -0.034422729164361954, -0.03134353458881378, -0.05213954299688339, -0.009816928766667843, 0.031230615451931953, -0.010183408856391907, 0.031133590266108513, 0.011539592407643795, 0.009741331450641155, -0.0127881383523345, 0.022673236206173897, 0.02111024782061577, -0.025695331394672394, 0.0029866204131394625, -0.0054174913093447685, 0.02634660340845585, 0.005153357982635498, 0.01970602571964264, 0.004570812452584505, -0.0637328028678894, 0.00382661703042686, 0.00428717490285635, -0.03229592740535736, -0.0352763831615448, -0.004449631553143263, -0.038839809596538544, -0.005275375209748745, -0.009036047384142876, 0.013438649475574493, -0.013484681956470013, -0.007558869663625956, 0.024121372029185295, 0.018109675496816635, 0.008842015638947487, 0.004729905631393194, -0.010817631147801876, 0.05069679021835327, 0.009197648614645004, -0.06010414659976959, -0.026048952713608742, 0.04208707809448242, -0.00013861485058441758, 0.05289562791585922, 0.00241577229462564, 0.002564827213063836, -0.05019184201955795, -0.061481453478336334, -0.025683384388685226, -0.06220623850822449, -0.017409125342965126, -0.03666950762271881, -0.043497610837221146, -0.004972133319824934, 0.037931591272354126, 0.03574209660291672, -0.010698284022510052, 0.0028643221594393253, -0.05562318116426468, 0.0313982293009758, -0.020588798448443413, -0.03552065044641495, -0.02609788067638874, -0.04106495529413223, 0.008398079313337803, 0.057521287351846695, 0.009734610095620155, 0.01817202940583229, 0.019349902868270874, 0.010058979503810406, 0.005478708539158106, -0.023084158077836037, -0.02325638197362423, -0.02721712924540043, -0.029019659385085106, 0.009814192540943623, 0.016220614314079285, -0.011293099261820316, -0.028132425621151924, 0.06844982504844666, -0.026510654017329216, 0.00042813949403353035, -0.02503308467566967, -0.017715368419885635, 0.0061241500079631805, -0.0003109044919256121, 0.050617244094610214, 0.03135713189840317, 0.02718096785247326, -0.03934294730424881, 0.04179614782333374, 0.03529223054647446, -0.013407398015260696, -0.016898076981306076, -0.02908904291689396, -0.06001001223921776, -0.05264203995466232, 0.023832794278860092, -0.03763265162706375, -0.0037717530503869057, -0.04955938458442688, -0.0030324480030685663, 0.03837583214044571, -0.003210541093721986, 0.034175384789705276, 0.03320052847266197, -0.029137644916772842, -0.01829904317855835, -0.012340527027845383, 0.05265427753329277, 0.026144981384277344, -0.032107073813676834, -0.026486147195100784, -0.010889910161495209, -0.036143962293863297, 0.012043877504765987, -0.03075837530195713, -0.018950076773762703, -0.03707499802112579, -0.00755362818017602, 0.0503024123609066, -0.019398001953959465, 0.03589843958616257, -0.0477912500500679, -0.027783285826444626, -0.0521685853600502, 0.009351769462227821, 0.013635081239044666, 0.023096999153494835, 0.049716345965862274, -0.000053141877287998796, -0.0029414002783596516, 0.024093259125947952, 0.005864162463694811, 0.03540900722146034, -0.025205696001648903, 0.06894049793481827, -0.001076222164556384, -0.033068012446165085, 0.011288621462881565, 0.055263131856918335, -0.05721919983625412, -0.0333409458398819, -0.02551686391234398, -0.004895044490695, -0.013507327996194363, -0.019155358895659447, 0.017869504168629646, -0.0050297994166612625, 0.016144895926117897, 0.016404062509536743, 0.049889009445905685, -0.0168231800198555, 0.02102694846689701, 0.03190834820270538, 0.055648453533649445, -0.0436251237988472, -0.010213583707809448, 0.04692772403359413, -0.011449374258518219, -0.04933655634522438, -0.005378856789320707, -0.0048600248992443085, -0.006913775112479925, -0.004312464036047459, 0.045864082872867584, -0.022492043673992157, 0.015059496276080608, -0.011543059721589088, -0.007644446566700935, 0.021936289966106415, 0.00933744851499796, -0.016995644196867943, 0.044168081134557724, -0.016648204997181892, -0.05611555650830269, -0.02506323531270027, 0.018066538497805595, -0.004205454606562853, 0.017214972525835037, -0.04802163317799568, -0.0018384215654805303, 0.044893596321344376, 0.0016971322475001216, 0.011122803203761578, -0.035998791456222534, -0.02330627106130123, -0.041385579854249954, -0.03826187551021576, -0.05583519861102104, -0.04454997181892395, 0.0023734772112220526, 0.00977009255439043, 0.0025917477905750275, -0.03891828656196594, 0.010175869800150394, 0.0079746562987566, -0.037974800914525986, -0.021651750430464745, -0.029670219868421555, 0.035048943012952805, -0.0277936439961195, -0.060438305139541626, -0.05020676180720329, 0.013017655350267887, -0.028442731127142906, 0.020048066973686218, -0.03761206567287445, 0.0365259051322937, 0.0398271381855011, 0.025854894891381264, 0.025676148012280464, 0.032246582210063934, -0.029253171756863594, -0.02220001630485058, -0.008174961432814598, 0.049048975110054016, -0.0221474077552557, 0.027206966653466225, 0.021381264552474022, -0.014392202720046043, 0.036855489015579224, -0.010342692956328392, -0.012800588272511959, -0.015808001160621643, 0.021979395300149918, 0.01463727094233036, -0.00569790368899703, -0.03756704926490784, -0.003739413805305958, -0.004078273195773363, -0.05240746960043907, -0.012622307986021042, -0.04190094769001007, 0.006677266210317612, 0.01608424261212349, 0.017416084185242653, 0.008135921321809292, 0.05428074300289154, -0.004139045253396034, 0.018954509869217873, -0.0009027809137478471, 0.03823668509721756, -0.008854583837091923, -0.015397840179502964, 0.00009901096200337633, 0.014740870334208012, 0.0014702138723805547, -0.03686552494764328, 0.010511159896850586, 0.03899960592389107, -0.008145817555487156, 0.01247114222496748, -0.02647136151790619, -0.030172303318977356, -0.03714582324028015, -0.0359632670879364, 0.009865614585578442, 0.03387719392776489, -0.0030525927431881428, -0.00006121202750364318, 0.041876889765262604, -0.03198689594864845, -0.032741863280534744, -0.008435321971774101, -0.07383552193641663, -0.020313842222094536, 0.028400441631674767, -0.015609011054039001, -0.03495250642299652, -0.015749022364616394, -0.025765489786863327, 0.0002636916469782591, -0.041941095143556595, -0.026453405618667603, -0.0006811365601606667, -0.01847052201628685, -0.021694285795092583, 0.03282158076763153, -0.024839600548148155, -0.0028587172273546457, 0.0026322633493691683, 0.04904312267899513, -0.06316225230693817, -0.05176873132586479, 0.0068955994211137295, 0.0240324717015028, 0.012066774070262909, -0.01891425810754299, -0.024182328954339027, -0.003069136990234256, -0.02025183103978634, 0.04141923785209656, 0.010769516229629517, 0.008928748778998852, -0.00040842502494342625, 0.046916406601667404, 0.00485427537932992, -0.0038365900982171297, -0.014779469929635525, 0.04377879947423935, -0.010146797634661198, -0.07316873222589493, -0.02034950815141201, 0.045440640300512314, 0.04324205592274666, -0.01107481773942709, 0.04589632898569107, -0.01107651088386774, 0.017654716968536377, -0.04046863317489624, 0.041558969765901566, -0.01570085622370243, 0.05948838219046593, -0.0001342717296211049, 0.03063902072608471, -0.003539706114679575, 0.022715188562870026, 0.03787567839026451, -0.009137899614870548, -0.03598680719733238, -0.00019863764464389533, 0.04114236682653427, -0.02285555936396122, -0.005787011701613665, -0.03418779745697975, -0.022922450676560402, 0.010752036236226559, -0.033039551228284836, 0.030806327238678932, -0.019835256040096283, -0.007159073371440172, -0.022564753890037537, 0.007825268432497978, 0.0632016509771347, -0.014469491317868233, 0.026766568422317505, 0.020008888095617294, -0.016680190339684486, -0.004873374477028847, 0.04831073060631752, -0.016217336058616638, 0.04068876802921295, 0.05977276340126991, 0.02893550507724285, -0.02652469463646412, 0.037984464317560196, 0.024018196389079094, 0.00754435732960701, -0.04039779305458069, 0.000058523142797639593, 0.022958366200327873, -0.003315081587061286, -0.0025401231832802296, -0.004864108748733997, -0.03434094414114952, 0.030851297080516815, -0.022178562358021736, -0.03921593353152275, 0.02895994484424591, -0.0363551527261734, -0.02872898429632187, -0.056851133704185486, 0.027006812393665314, -0.06618845462799072, 0.0272808950394392, 0.015009325928986073, -0.001685885712504387, -0.025967372581362724, 0.041027966886758804, 0.024655386805534363, 0.043821170926094055, 0.0038705659098923206, 0.05008866637945175, -0.030606675893068314, 0.009324961341917515, 0.03478129208087921, -0.031561318784952164, -0.003970008809119463, -0.0049180747009813786, -0.013826330192387104, -0.04319128766655922, -0.0034967265091836452, -0.0312204472720623, -0.030786661431193352, -0.015696177259087563, -0.030743999406695366, -0.011282348074018955, 0.05133309215307236, 0.01738051325082779, -0.0512370765209198, 0.012993300333619118, 0.010198447853326797, -0.05487443506717682, -0.006288636010140181, -0.017998186871409416, 0.03445909544825554, -0.015606855042278767, -0.005190432537347078, -0.036849379539489746, -0.016279133036732674, 0.026499154046177864, -0.04822254180908203, 0.06952778249979019, -0.019387146458029747, -0.01205181423574686, -0.04469051957130432, -0.05483796447515488, -0.022110462188720703, 0.025296056643128395, -0.030972788110375404, -0.04829128086566925, 0.02032725140452385, 0.03840135782957077, -0.015972180292010307, -0.013795671053230762, -0.0162507276982069, -0.013880507089197636, 0.06424868106842041, 0.06533265858888626, -0.007990016601979733, 0.040087051689624786, 0.020714936777949333, -0.016084542497992516, 0.021400433033704758, -0.02205139398574829, 0.012669474817812443, -0.03322453796863556, -0.02508097141981125, -0.03650429844856262, 0.02569269761443138, -0.03400902822613716, -0.06023060530424118, 0.022277841344475746, 0.011362975463271141, -0.0006061983876861632, -0.0207559484988451, -0.05627971142530441, -0.028675636276602745, -0.07347343116998672, -0.012075064703822136, -0.04814336448907852, 0.028475407510995865, -0.01867428608238697, -0.0003329020692035556, 0.014774779789149761, -0.05849580466747284, 0.14463482797145844, 0.04084727540612221, 0.02854568511247635, 0.03655579313635826, 0.021227579563856125, 0.05543431639671326, 0.02710115909576416, -0.011221298947930336, 0.005368120037019253, -0.0426422581076622, 0.01845805160701275, 0.004295805469155312, 0.013624767772853374, -0.013932089321315289, 0.016799621284008026, 0.06574411690235138, -0.043982021510601044, 0.030503200367093086, 0.02681400440633297, -0.05706924945116043, -0.04639171436429024, 0.02044612355530262, -0.0038281793240457773, 0.01471248734742403, -0.010510516352951527, 0.05433182418346405, 0.035224951803684235, -0.040267132222652435, -0.0007510102004744112, -0.00881780032068491, 0.0374542772769928, -0.027568016201257706, 0.03553507477045059, -0.013737810775637627, -0.03128792345523834, 0.07752202451229095, -0.0036345585249364376, -0.06055610626935959, 0.01923508010804653, 0.021894007921218872, -0.0036953394301235676, -0.010510420426726341, 0.041063543409109116, -0.05572882667183876, 0.0306367389857769, 0.02927359938621521, -0.02216176502406597, -0.005871864035725594, 0.04308757558465004, -0.03619823232293129, 0.04388289153575897, -0.036524489521980286, 0.025625037029385567, -0.01372541207820177, -0.0268370620906353, 0.010376657359302044, 0.0044021341018378735, -0.03562341630458832, -0.0030633213464170694, -0.034999024122953415, 0.055771276354789734, 0.010948854498565197, 0.015666626393795013, 0.020583568140864372, -0.01581382006406784, -0.007536665070801973, 0.03626629710197449, 0.016449639573693275, -0.005446276161819696, -0.010324981063604355, -0.02889922633767128, -0.031641885638237, -0.001306125894188881, -0.004538760054856539, 0.02543722279369831, 0.03531288728117943, -0.017066068947315216, 0.03157954290509224, -0.002140225376933813, -0.037546273320913315, -0.00508074788376689, -0.06837449967861176, -0.03498270735144615, 0.01141979917883873, 0.054908446967601776, 0.048153720796108246, -0.05490351468324661, -0.044718146324157715, -0.013592926785349846, 0.043345216661691666, 0.07121171802282333, 0.007948446087539196, -0.038458775728940964, -0.012278381735086441, 0.011124305427074432 ]
Did ABC Brass Allow Whitney Houston's Voice to be 'Corrected' Before Airing? Gawker is reporting that ABC producers in Los Angeles allowed Good Morning, America to digitally correct singer Whitney Houston's vocal track during her performance in Central Park this morning. Relying on an unnamed source, Gawker's Andrew Belonsky writes that GMA post-production "went to extreme measures, including digital 'sweetening,' to rescue what was supposed to be the singer's comeback performance in Central Park." Continues Belonsky: "Ultimately, GMA entertainment producer Karen Rhee convinced the ABC brass in L.A. -- and over the objections of the ABC News executives in New York" to correct her vocals. Since Good Morning, America is a product of the ABC News department, rather than the entertainment division, the enhancement is tantamount to Photoshopping a news photo or excising someone out of a tape. It's hard to tell on this crowd recording, but at around 2:11 she yowls. Then again at 2:40 she misses some notes. As far as West Coast Sound is concerned, it matters little whether Whitney can actually hit the notes or not. We hope that she can, and continues to rebuild her voice to the remarkable stature it once was. That's not the point.
[ 0.007681299466639757, 0.005484499037265778, -0.00889375526458025, 0.0357222855091095, -0.0010400499450042844, -0.015505156479775906, -0.015792757272720337, 0.011128827929496765, 0.02551884762942791, -0.006750364322215319, 0.052113473415374756, -0.02189023233950138, 0.000774664746131748, -0.042623862624168396, -0.023700447753071785, -0.01347739901393652, -0.014569083228707314, -0.0282825268805027, -0.013436073437333107, -0.014507478103041649, -0.008285981602966785, -0.019447240978479385, -0.05262577906250954, -0.003363301046192646, -0.013445683754980564, 0.059713028371334076, 0.024560535326600075, -0.01758984476327896, 0.054851654917001724, 0.035675596445798874, -0.03111632727086544, -0.025018097832798958, 0.020172765478491783, -0.05062708258628845, 0.015379766933619976, -0.04884724318981171, 0.04979683831334114, -0.005908997729420662, -0.020990226417779922, -0.02956618368625641, -0.009278758428990841, -0.028689062222838402, 0.03288203850388527, -0.020554037764668465, -0.04994634538888931, 0.008255844004452229, -0.020320212468504906, 0.004712929483503103, 0.018292170017957687, -0.020458495244383812, -0.027953704819083214, -0.028145993128418922, 0.007663154974579811, 0.018881672993302345, -0.003908877726644278, 0.018157539889216423, 0.0010346578201279044, -0.03221435099840164, -0.04131072759628296, -0.005104345269501209, 0.011362808756530285, 0.021397260949015617, 0.015958121046423912, -0.06435193121433258, 0.0024001942947506905, 0.015663903206586838, -0.0010408384259790182, -0.015867186710238457, -0.015670329332351685, -0.016054775565862656, -0.0018175937002524734, 0.02627267688512802, -0.01821536011993885, -0.02070445939898491, 0.012236782349646091, -0.015311973169445992, -0.03090565837919712, -0.014464817009866238, 0.006593441125005484, 0.02262728475034237, -0.026635387912392616, 0.038792915642261505, 0.03657230734825134, 0.02275468409061432, -0.029756715521216393, -0.01975111849606037, -0.005300403572618961, -0.013998690992593765, 0.027284525334835052, 0.016957219690084457, -0.01986195333302021, 0.0531279556453228, -0.017388133332133293, -0.026596102863550186, 0.053087975829839706, 0.04434935003519058, -0.029241124168038368, 0.014471543952822685, 0.01230359636247158, 0.021381352096796036, 0.04053376987576485, 0.012499895878136158, -0.018084917217493057, 0.05017926171422005, -0.06291301548480988, -0.03298291936516762, 0.02094230428338051, -0.031523074954748154, -0.01712535321712494, -0.01839115098118782, 0.019738266244530678, -0.037156086415052414, 0.029720982536673546, 0.005223665852099657, -0.03895466402173042, 0.0435214601457119, 0.029829861596226692, 0.04778744652867317, -0.0439826138317585, 0.013414246030151844, 0.027331093326210976, 0.012101533822715282, 0.03192686662077904, -0.011784601025283337, 0.018679948523640633, -0.010833026841282845, -0.03923030197620392, 0.049765344709157944, -0.06223864108324051, 0.004131035879254341, 0.0020300843752920628, -0.009866836480796337, -0.011614182032644749, 0.0001683542795944959, -0.025377850979566574, 0.009382576681673527, -0.0013299004640430212, 0.018906353041529655, 0.038380369544029236, -0.05642971768975258, 0.04630259424448013, 0.0376981683075428, -0.013518904335796833, 0.08815126866102219, -0.006323712412267923, 0.011592048220336437, -0.0010062538785859942, 0.026377525180578232, -0.019009234383702278, 0.006902149412781, -0.0359797365963459, 0.038091618567705154, 0.002542252652347088, 0.017557431012392044, -0.01793377846479416, 0.0006945783970877528, -0.009834888391196728, -0.017439140006899834, 0.01808740757405758, 0.033596038818359375, -0.02212378941476345, 0.008363082073628902, -0.03993029519915581, 0.02674534171819687, -0.005113119259476662, 0.03650912642478943, -0.021508116275072098, 0.00010605146962916479, 0.008252402767539024, -0.02952158823609352, 0.018723035231232643, -0.029647156596183777, -0.015737522393465042, 0.015904510393738747, -0.008193532936275005, 0.026805030182003975, 0.008338057436048985, -0.014521433040499687, 0.03326338902115822, 0.03811457008123398, -0.03419776260852814, -0.028810998424887657, -0.0050589595921337605, 0.04934298247098923, -0.026600562036037445, -0.008324941620230675, 0.0027710360009223223, -0.03213595598936081, -0.05931200087070465, -0.012435643933713436, -0.024096982553601265, 0.03313756361603737, -0.041551779955625534, 0.03595976158976555, -0.008200017735362053, 0.009817914105951786, 0.006217231508344412, -0.0315389558672905, 0.02686162106692791, -0.04210265725851059, -0.010556266643106937, 0.043846495449543, -0.05868685618042946, 0.02648380771279335, -0.011691901832818985, -0.02587048150599003, 0.005920999683439732, 0.06574197858572006, -0.0246218740940094, 0.054558202624320984, 0.03455870971083641, 0.01441191416233778, -0.018979668617248535, -0.004419140983372927, -0.010871564969420433, -0.028990818187594414, 0.03611600399017334, 0.055512599647045135, 0.009513702243566513, 0.009351280517876148, 0.007628350518643856, 0.009918528608977795, 0.045534390956163406, 0.06806442141532898, 0.029817700386047363, 0.012035741470754147, 0.05118795856833458, 0.035558294504880905, -0.025820357725024223, -0.027521120384335518, 0.030652867630124092, 0.04097529500722885, 0.06341294199228287, 0.034736115485429764, 0.015154312364757061, 0.025946319103240967, 0.06706813722848892, 0.027917901054024696, -0.011373558081686497, 0.008850887417793274, -0.01684965007007122, 0.005566829349845648, 0.05846966430544853, 0.05101052299141884, 0.008869734592735767, 0.023037932813167572, 0.002057477831840515, -0.02200067974627018, 0.012954682111740112, -0.002021889667958021, 0.005675400607287884, 0.049733731895685196, 0.03872807323932648, 0.05463021248579025, -0.025446992367506027, 0.005434664897620678, 0.0432487390935421, 0.07016140222549438, -0.009851917624473572, -0.034736812114715576, 0.0261189304292202, 0.02246021293103695, -0.0394270122051239, -0.013091194443404675, 0.004058700520545244, 0.00437407149001956, -0.023351600393652916, 0.03563753515481949, -0.019175315275788307, -0.04181605577468872, -0.029142949730157852, -0.07622729986906052, -0.035582322627305984, -0.02098129689693451, -0.025074472650885582, -0.008510861545801163, 0.013026363216340542, -0.06199191138148308, 0.042194705456495285, 0.008290061727166176, -0.03591650724411011, -0.015061873011291027, -0.028421564027667046, 0.04367239400744438, 0.03644151985645294, 0.025469599291682243, -0.027539517730474472, 0.02880142256617546, 0.052739713340997696, 0.05165030062198639, -0.009808254428207874, -0.04319912940263748, -0.012329649180173874, -0.0035759680904448032, 0.023789068683981895, -0.007996669970452785, 0.002531582722440362, 0.010460741817951202, -0.0537804551422596, -0.062138449400663376, 0.012445812113583088, 0.03358486667275429, -0.00394781306385994, -0.006012730300426483, -0.011015502735972404, 0.04259994253516197, 0.01856783963739872, -0.04093582183122635, 0.04035947844386101, 0.04722166806459427, -0.024507753551006317, 0.07484183460474014, 0.05122001841664314, 0.0232230257242918, -0.04578450322151184, 0.022946946322917938, 0.03176508843898773, 0.012128999456763268, -0.03255453333258629, -0.01843659207224846, -0.06362899392843246, -0.011237218976020813, 0.017333602532744408, -0.009739314205944538, -0.046776462346315384, 0.037205811589956284, 0.00893580075353384, -0.066957987844944, 0.038506582379341125, -0.07839474081993103, -0.0038212041836231947, -0.030406342819333076, -0.026013372465968132, 0.011121886782348156, 0.07333780825138092, 0.024846376851201057, 0.006766194477677345, 0.012029868550598621, -0.0042200288735330105, 0.029531758278608322, 0.046963881701231, -0.005394313018769026, 0.013444934040307999, 0.030151797458529472, -0.00986422412097454, 0.051789816468954086, -0.001254448899999261, 0.004736586008220911, 0.004041863139718771, 0.01785813830792904, -0.01430217083543539, -0.00032186531461775303, -0.005362856201827526, 0.004668049514293671, 0.04723487049341202, 0.025000985711812973, -0.0185396745800972, -0.006275633815675974, 0.005813323426991701, 0.011026686988770962, 0.019462402909994125, 0.010434333235025406, 0.03601403161883354, -0.028581731021404266, -0.0018763120751827955, -0.044796425849199295, 0.031951699405908585, 0.0028356595430523157, 0.05967137590050697, -0.025961747393012047, 0.03895490989089012, -0.02680814266204834, -0.05573055148124695, 0.045220136642456055, -0.06765992194414139, 0.006345869041979313, 0.09089352935552597, -0.02286994643509388, 0.03749474510550499, -0.06463458389043808, 0.03520427644252777, -0.015389115549623966, 0.014497723430395126, 0.04898926243185997, 0.02188628353178501, -0.0034186735283583403, -0.058475423604249954, -0.030548712238669395, 0.0006668057176284492, -0.027772223576903343, 0.0004957776982337236, -0.014302603900432587, 0.0012999611208215356, -0.022599579766392708, -0.04203500226140022, -0.07525656372308731, 0.01751653663814068, 0.021856781095266342, 0.04327637702226639, 0.025299541652202606, 0.03293658047914505, 0.011616409756243229, 0.03762062266469002, 0.023099107667803764, -0.02590441145002842, -0.01862914487719536, -0.057668402791023254, 0.0365268737077713, -0.004810194950550795, -0.053491950035095215, -0.002264624461531639, -0.025055881589651108, -0.028594383969902992, 0.04406716302037239, -0.006605461239814758, -0.004967825021594763, -0.038051851093769073, 0.03217576816678047, -0.015251344069838524, 0.0258638933300972, -0.05425752326846123, -0.031817153096199036, -0.020734645426273346, 0.03808044269680977, 0.020559445023536682, -0.08400624990463257, 0.03208291530609131, -0.04466328024864197, 0.0646381825208664, 0.026142841205000877, -0.020179497078061104, -0.038327209651470184, -0.03395882993936539, -0.051132652908563614, -0.03887227177619934, 0.024376872926950455, 0.03663892298936844, 0.009304765611886978, 0.010960916057229042, -0.04299269616603851, 0.031438834965229034, 0.048125363886356354, -0.02798197604715824, 0.019892428070306778, -0.0036442887503653765, 0.007012168411165476, 0.0240325890481472, 0.035479508340358734, -0.01567104458808899, -0.05389852076768875, 0.02862817794084549, -0.045350655913352966, 0.023801714181900024, 0.00021461371215991676, -0.021593499928712845, -0.017893075942993164, 0.04127344489097595, -0.018507223576307297, 0.033853694796562195, 0.00601376686245203, -0.01626795157790184, -0.0006080538150854409, 0.058150265365839005, -0.03703274205327034, -0.03063545748591423, 0.04657326638698578, 0.018633637577295303, -0.017329400405287743, 0.02201671153306961, 0.0608045794069767, -0.010074520483613014, -0.0014534293441101909, 0.010265029035508633, -0.044709768146276474, 0.038048550486564636, -0.056768856942653656, 0.013291449286043644, -0.013609754852950573, -0.06267832219600677, 0.011370036751031876, -0.030511461198329926, 0.0022831351961940527, -0.03333352878689766, -0.0500812754034996, -0.02281319350004196, -0.029331523925065994, -0.0068754395470023155, 0.0028350017964839935, -0.021384278312325478, 0.01528282929211855, 0.03442773222923279, -0.007428393233567476, -0.003376378444954753, -0.010007484816014767, -0.02016131952404976, -0.0001836127194110304, -0.01731029897928238, -0.008616733364760876, 0.004054374992847443, -0.017898811027407646, 0.030978670343756676, -0.04710798338055611, -0.024080945178866386, 0.035551611334085464, 0.006940558087080717, -0.03311712294816971, -0.03962043300271034, -0.012291098944842815, -0.010433710180222988, -0.011354412883520126, -0.03944563865661621, 0.024773450568318367, -0.02553309127688408, 0.03374847397208214, 0.03912603110074997, -0.0038222074508666992, 0.012432246468961239, -0.00442507304251194, -0.03850015625357628, 0.05545802414417267, 0.03138066083192825, -0.035520557314157486, -0.033515576273202896, 0.025115447118878365, -0.00828628521412611, 0.052234601229429245, -0.016927611082792282, -0.039780374616384506, -0.022339850664138794, -0.04077085107564926, 0.024947956204414368, -0.02856193482875824, -0.039137277752161026, -0.030190827324986458, -0.033292949199676514, -0.03321622684597969, 0.043365996330976486, 0.014852750115096569, 0.009955018758773804, 0.0030167479999363422, -0.025526441633701324, 0.018098905682563782, -0.05127475783228874, -0.038955945521593094, -0.014798387885093689, -0.0031773040536791086, -0.007459184620529413, 0.046631064265966415, 0.004191834479570389, -0.005894973408430815, 0.016167132183909416, 0.0005413369508460164, 0.02382812276482582, -0.050259675830602646, -0.03504735231399536, -0.029366690665483475, 0.01349681243300438, 0.01036832109093666, 0.02309769205749035, 0.014669651165604591, -0.014490955509245396, 0.061983563005924225, -0.03902766481041908, 0.03557736799120903, -0.0005599153810180724, 0.03470587730407715, 0.009307845495641232, -0.03578140586614609, 0.07495680451393127, -0.05235270783305168, 0.008012592792510986, -0.024724550545215607, 0.03530135750770569, 0.0436929427087307, -0.0020751284901052713, -0.04399479553103447, -0.005786771420389414, -0.027514398097991943, -0.05074823275208473, 0.029415607452392578, -0.0396033376455307, -0.015833649784326553, -0.04360701143741608, -0.004503541626036167, 0.037503186613321304, -0.003247614251449704, 0.03392847999930382, 0.044786565005779266, 0.014325406402349472, 0.0003745874564629048, -0.051589254289865494, 0.003280902747064829, 0.035647835582494736, -0.010811853222548962, -0.026588233187794685, -0.006250421982258558, -0.029511526226997375, -0.038518812507390976, -0.0453677661716938, -0.01012828852981329, -0.022274626418948174, -0.03886963427066803, 0.05033649876713753, 0.001561553217470646, 0.031879160553216934, 0.002850230783224106, -0.039535727351903915, -0.03257651999592781, 0.021878501400351524, 0.0052892598323524, 0.005780052859336138, 0.03947204723954201, 0.019637957215309143, -0.03844396397471428, 0.008410647511482239, -0.027402648702263832, -0.02792464755475521, -0.017114557325839996, 0.03643958643078804, -0.029707150533795357, -0.05532300844788551, 0.036771323531866074, 0.0355219691991806, -0.061356011778116226, -0.04668845236301422, -0.019540540874004364, -0.03225001320242882, -0.010836954228579998, -0.008450286462903023, 0.020947899669408798, 0.002367075067013502, -0.006797790993005037, -0.00328918662853539, 0.03270603343844414, -0.014377851039171219, 0.0301391389220953, -0.008930012583732605, 0.04374263063073158, -0.038509711623191833, 0.012495086528360844, 0.046515025198459625, -0.012534220702946186, -0.027606967836618423, -0.02605944685637951, -0.02309090830385685, 0.01392804179340601, -0.009461513720452785, 0.04800359532237053, -0.011060415767133236, 0.017864616587758064, 0.02170940488576889, -0.014251290820538998, 0.02008945308625698, -0.0064177061431109905, 0.021946994587779045, 0.01754392683506012, -0.003865571226924658, -0.04318588227033615, -0.03649758920073509, 0.03235693648457527, -0.006977588403970003, 0.03289811685681343, -0.05443134903907776, -0.010624764487147331, 0.03094610385596752, -0.0015085979830473661, 0.020667463541030884, -0.03339273855090141, -0.03611550107598305, -0.0344122089445591, -0.06198079138994217, -0.018424158915877342, -0.013791609555482864, 0.02068454585969448, 0.04151526838541031, 0.008550968952476978, -0.024679357185959816, -0.010764586739242077, -0.011034156195819378, -0.037867460399866104, -0.014685266651213169, -0.020344767719507217, 0.010825080797076225, -0.017887204885482788, -0.04477541148662567, -0.038690775632858276, -0.035670582205057144, -0.011278635822236538, -0.021190200001001358, 0.01532694511115551, 0.03951646387577057, -0.03311164304614067, 0.05868023261427879, 0.003933202009648085, 0.013615015894174576, -0.01194537803530693, -0.01946350187063217, -0.0009039939031936228, 0.03290409967303276, -0.018634876236319542, 0.0553579181432724, 0.0524236224591732, -0.04919065907597542, 0.02856880985200405, -0.003930107690393925, -0.019245434552431107, -0.021054351702332497, -0.020918747410178185, 0.01372845284640789, 0.00497521972283721, -0.024200042709708214, -0.030579812824726105, -0.009792625904083252, -0.025216849520802498, 0.03056466393172741, -0.0006669752765446901, 0.024601032957434654, 0.020990440621972084, -0.015485995449125767, 0.004496884532272816, 0.06201659142971039, -0.006629827432334423, 0.0295184925198555, -0.0219123512506485, 0.011778569780290127, 0.027162250131368637, 0.046765051782131195, 0.056315936148166656, 0.017349964007735252, 0.030453352257609367, -0.04654558375477791, 0.011693309061229229, 0.008692629635334015, 0.019901301711797714, 0.035637516528367996, -0.012159178964793682, -0.04702456295490265, -0.04379419609904289, -0.037338148802518845, 0.02977949194610119, 0.043851081281900406, 0.0397908054292202, -0.010870516300201416, 0.013057894073426723, -0.0165055301040411, -0.04923810064792633, 0.031144682317972183, -0.05711722373962402, -0.022328093647956848, 0.04975700005888939, 0.0016638146480545402, 0.013421686366200447, -0.014480112120509148, -0.04213959351181984, -0.009303899481892586, -0.023386403918266296, -0.01165078580379486, -0.01949036866426468, 0.034584783017635345, -0.003191988915205002, 0.026756158098578453, -0.020857112482190132, -0.010911866091191769, -0.0040896800346672535, 0.04175030067563057, -0.031673260033130646, -0.059065379202365875, 0.018617527559399605, 0.03509385883808136, 0.026741547510027885, -0.024768058210611343, -0.014267035759985447, 0.04171787202358246, -0.0011353354202583432, -0.00033936777617782354, 0.0024142346810549498, 0.013303335756063461, 0.022192157804965973, 0.017131663858890533, -0.0061599258333444595, -0.012253816239535809, -0.024670295417308807, 0.008703918196260929, 0.0023060417734086514, -0.028629250824451447, -0.008761350996792316, 0.05035001039505005, 0.03384901583194733, -0.0008155303657986224, 0.03936179727315903, 0.023490149527788162, 0.04021800309419632, -0.029416047036647797, 0.03259311988949776, -0.001324062468484044, 0.04629390314221382, 0.02749263308942318, 0.01589251309633255, -0.017460893839597702, 0.02515247091650963, 0.05510317534208298, -0.0178472138941288, 0.007655296474695206, 0.01936659775674343, 0.016767723485827446, -0.022162359207868576, -0.02955957129597664, -0.02225329540669918, -0.017484823241829872, -0.007590439170598984, -0.024096611887216568, -0.004123316612094641, 0.002427461324259639, -0.007252638228237629, -0.019911296665668488, -0.021375885233283043, 0.04375838115811348, -0.044380560517311096, -0.002245987532660365, -0.016023455187678337, -0.019957471638917923, 0.0013653025962412357, 0.04216288775205612, 0.009376727975904942, 0.022466832771897316, 0.032427068799734116, 0.026324257254600525, 0.011119278147816658, 0.041902389377355576, 0.034220434725284576, 0.0008183542522601783, -0.03212177753448486, 0.009737689979374409, 0.013923927210271358, -0.015876272693276405, -0.015567947179079056, 0.015369758941233158, -0.026675574481487274, 0.03588842228055, -0.009246044792234898, -0.020647212862968445, 0.04099153354763985, -0.03880990669131279, -0.021083517000079155, -0.056720662862062454, 0.06303266435861588, -0.0717364251613617, 0.0012369955657050014, 0.02006615698337555, -0.011928053572773933, -0.034211643040180206, 0.05747989937663078, 0.009902426972985268, 0.038585346192121506, 0.009788193739950657, 0.050036780536174774, 0.019872326403856277, 0.026726244017481804, 0.05137123912572861, -0.02622414194047451, -0.01677200198173523, 0.038418617099523544, -0.02027287147939205, -0.0752689316868782, -0.03352244198322296, -0.00769379734992981, -0.015157108195126057, 0.002660465892404318, -0.01559291873127222, -0.030795497819781303, 0.019213294610381126, 0.0182659849524498, -0.046470776200294495, -0.0028311205096542835, 0.01170350518077612, -0.037022918462753296, -0.0014987795148044825, 0.012512270361185074, 0.047938235104084015, -0.004531029611825943, -0.016624517738819122, -0.03999984264373779, -0.049884457141160965, 0.03174233436584473, -0.0013938964111730456, 0.04229847341775894, -0.022927476093173027, -0.01684471033513546, -0.014285550452768803, -0.05864764750003815, -0.01173639576882124, 0.014239607378840446, -0.04051053896546364, -0.038221150636672974, 0.016589932143688202, 0.04963678866624832, 0.011790326796472073, 0.048465486615896225, -0.019818997010588646, 0.014121928252279758, 0.014956195838749409, 0.06555677205324173, -0.012025019153952599, 0.05029793828725815, 0.03337129205465317, -0.012188538908958435, 0.002145383507013321, -0.03764939680695534, 0.01405967865139246, -0.04904553294181824, 0.012679383158683777, -0.031042754650115967, 0.01877744309604168, -0.030888671055436134, -0.0647580474615097, 0.013716207817196846, 0.04008125141263008, 0.02399383671581745, -0.08168546110391617, -0.0772576630115509, 0.0017826681723818183, -0.04027141258120537, -0.015601345337927341, -0.027872808277606964, 0.0539400540292263, 0.01082668174058199, 0.019760455936193466, -0.004938923753798008, -0.05575285106897354, 0.15049798786640167, 0.032680120319128036, 0.016758335754275322, 0.018674731254577637, 0.053194258362054825, 0.04101097583770752, 0.02951134368777275, -0.002012523589655757, -0.01603955216705799, -0.021703889593482018, 0.014265542849898338, -0.007554175332188606, 0.04384223371744156, 0.02451145090162754, 0.00616647582501173, 0.03998512029647827, -0.03158136084675789, -0.022222934290766716, 0.0365225188434124, -0.051598452031612396, -0.06788843870162964, 0.006671248935163021, 0.009563160128891468, 0.04389023780822754, -0.0188655573874712, 0.0027368420269340277, 0.00968963373452425, -0.04380544647574425, -0.01993451826274395, -0.013621681369841099, 0.0321962870657444, -0.04102106764912605, 0.04884811490774155, 0.0019443912897258997, -0.032762739807367325, 0.055808231234550476, 0.008206553757190704, -0.023363500833511353, 0.024357633665204048, -0.005393119994550943, -0.047194257378578186, 0.02328268438577652, 0.009678295813500881, -0.03948422148823738, -0.009106933139264584, 0.03385632485151291, -0.03661522641777992, 0.00561685673892498, 0.009640931151807308, -0.043293897062540054, 0.055266834795475006, -0.01338133867830038, 0.04612668231129646, -0.014488117769360542, 0.00744536891579628, 0.02280220203101635, -0.024956583976745605, -0.014167801477015018, 0.020668398588895798, -0.0022125528194010258, 0.029527481645345688, 0.023597894236445427, -0.02450309321284294, 0.008014235645532608, -0.03219868242740631, -0.03164258599281311, 0.01609152741730213, -0.016724122688174248, 0.008384517394006252, -0.020054690539836884, -0.026906121522188187, -0.004983256570994854, 0.017993878573179245, -0.0025625128764659166, 0.00008950944902608171, 0.031291414052248, -0.02231203205883503, 0.04896511137485504, -0.01684573106467724, -0.027241265401244164, -0.019377263262867928, -0.036734405905008316, -0.00226289639249444, -0.01790113002061844, 0.049549274146556854, 0.02314486913383007, -0.04506690055131912, -0.037533435970544815, -0.028570253401994705, 0.03524719923734665, 0.04569556936621666, -0.005284840241074562, -0.032472770661115646, -0.011567831039428711, -0.02877989411354065 ]
Q: Need a secure way to bypass License check condition in a public method I have two products A and B. A is a paid tool while B is a free tool. B uses the some dll of A. Now i have a method say public void licenseCheck(bool test){....} this method contains a condition which gives alert "get license" if you dont have one. Now from one of the class of Product B i have to call licenseCheck method for some reason and since B is free and you dont need a license for it, it still gives "get license" Error. I tried i changed the signature of the method licenseCheck( bool test, bool byPasslicense = false) and use the byPasslicense variable to bypass the condition of license checking. I gave default value to it because this method is used at many places. This approach has some security issues as these dlls are used for many other paid products where licensing is required. some one can just call this method and pass "true" value to byPasslicense argument of licenseCheck method. I dont want that. I just want it to bypass for product B Note: this is a completed project and I cant just change the whole method, i just have to bypass the condition responsible for license checking in the licenseCheck method. A: It seems to me that you have broken the S in the SOLID principles, in that the method getLicense does more than just checking the license, otherwise there would be no need to call it if you want it to not check the license. So here is how you should solve this. * *Split the getLicense method into two (at least) by extracting a portion of it into a new method. Leave the part that actually checks the license in the original method, and split the rest out to a new method. Make this new method internal. *Add this attribute to your A project: [assembly: InternalsVisibleTo("B")] *From B, call the new method instead of getLicense, thereby bypassing the license check. Note that an internal method can only be accessed from within the same assembly, A in this instance, of from assemblies that A specifically says that internals are visible to, like B in this instance. 3rd party developers will not have direct access to that method. Example Original class: public class Dohickey { public void getLicense(bool hasLicense) { if (!hasLicense) throw new Exception("Ewups"); SetSomethingThatOtherCodeDependsOn(); SetSomethingElseAsWell(); } } after fix: [assembly: InternalsVisibleTo("B")] // ... public class Dohickey { public void getLicense(bool hasLicense) { if (!hasLicense) throw new Exception("Ewups"); SetThings(); } internal void SetThings() { SetSomethingThatOtherCodeDependsOn(); SetSomethingElseAsWell(); } }
[ -0.011852049268782139, -0.008793740533292294, -0.0026766995433717966, -0.008790739811956882, -0.008314370177686214, 0.006797581911087036, -0.020145179703831673, 0.013930181972682476, -0.005368306301534176, 0.06525034457445145, 0.012471608817577362, 0.02104002982378006, 0.02571977861225605, -0.05603226274251938, -0.006012863013893366, 0.022872138768434525, -0.0048131453804671764, 0.005330638028681278, -0.02101685293018818, 0.029774336144328117, 0.01965544931590557, 0.005415766965597868, -0.07402540743350983, -0.012950040400028229, -0.029146069660782814, -0.008321044035255909, 0.03119138441979885, -0.020847326144576073, 0.06121993437409401, 0.07235687226057053, -0.03655426949262619, -0.027894020080566406, 0.032521121203899384, -0.02625112049281597, -0.02256184071302414, -0.02061745710670948, 0.07890366017818451, -0.03619705140590668, -0.015740394592285156, -0.036323949694633484, -0.002694693161174655, 0.0037662447430193424, 0.046951211988925934, -0.058045487850904465, -0.04893782362341881, -0.023122722283005714, -0.0008352359291166067, -0.003594310488551855, 0.004605030175298452, -0.03034186363220215, -0.007077864836901426, -0.012429406866431236, 0.012270205654203892, 0.004365203436464071, -0.002756028436124325, 0.02279643714427948, 0.02928309701383114, -0.016893522813916206, -0.0497719906270504, 0.02122652344405651, 0.0005960729322396219, 0.010094989091157913, 0.0075898910872638226, -0.06768905371427536, 0.03260153904557228, 0.045546356588602066, -0.012286774814128876, -0.0027702944353222847, 0.0044114370830357075, -0.017396066337823868, -0.02467997558414936, 0.015303341671824455, -0.0034565096721053123, -0.007790029980242252, 0.014200177043676376, 0.0030057383701205254, 0.027128614485263824, 0.012935883365571499, 0.014789518900215626, 0.04067283868789673, -0.005128207616508007, 0.07757988572120667, -0.004620973952114582, -0.0026990845799446106, -0.04492068663239479, -0.02397710457444191, 0.020693322643637657, -0.004558407701551914, 0.0008757597533985972, -0.01177294459193945, -0.03402357175946236, 0.049878183752298355, -0.009126049466431141, 0.004474778659641743, 0.020823709666728973, 0.03995740786194801, -0.022370826452970505, 0.002899128245189786, 0.007633573841303587, -0.027607467025518417, 0.06821092218160629, 0.036562539637088776, -0.0028543893713504076, 0.04446081817150116, -0.027012554928660393, 0.00240709469653666, -0.0017885039560496807, 0.027326783165335655, -0.013897092081606388, -0.032705023884773254, 0.006281253416091204, -0.03065701574087143, -0.008347593247890472, -0.009796341881155968, 0.01881839893758297, 0.02537880465388298, 0.005114782601594925, 0.041987743228673935, -0.02689507231116295, 0.01985403709113598, 0.041709236800670624, -0.007480029482394457, 0.03984237462282181, -0.022607533261179924, 0.036046553403139114, -0.02700304053723812, -0.006387872621417046, 0.045027006417512894, -0.031697433441877365, -0.054510027170181274, 0.01665911078453064, -0.008230777457356453, -0.013019602745771408, 0.04401456564664841, -0.01240078080445528, 0.026120886206626892, 0.016786986961960793, 0.04511379078030586, 0.013673797249794006, -0.05342307686805725, 0.040102969855070114, 0.03650949150323868, 0.005442300345748663, 0.08433642983436584, 0.01473016943782568, 0.022099880501627922, 0.01706017553806305, 0.03536716848611832, -0.06169590726494789, 0.007228903938084841, -0.044267188757658005, 0.0012689381837844849, 0.009921403601765633, 0.0038089314475655556, -0.01570040173828602, -0.007833157666027546, -0.0009344958234578371, -0.00033328888821415603, 0.04225306212902069, 0.032243262976408005, -0.014078980311751366, 0.010104991495609283, -0.001593099907040596, 0.04329271614551544, 0.015551256015896797, 0.040500458329916, -0.054190121591091156, -0.005761715117841959, 0.0160488560795784, -0.01009275671094656, 0.01314616296440363, 0.0011817524209618568, -0.048856642097234726, 0.01855403743684292, 0.03662978112697601, 0.031075403094291687, 0.014313283376395702, -0.006838721223175526, 0.040329910814762115, 0.05609841272234917, -0.04861803352832794, 0.016451260074973106, -0.007649648934602737, 0.056311119347810745, 0.03169819712638855, -0.0016296522226184607, 0.009156579151749611, -0.01645856536924839, -0.030377816408872604, -0.014375893399119377, 0.009269174188375473, 0.022952867671847343, -0.037665631622076035, 0.03359416127204895, 0.006120668724179268, 0.005664634983986616, -0.0564153790473938, 0.020693212747573853, -0.009702055715024471, -0.0769503191113472, -0.04243122413754463, 0.04316917806863785, -0.03404783084988594, 0.036776937544345856, 0.0016337751876562834, -0.03555425629019737, 0.02882634662091732, 0.05219517648220062, -0.04867188259959221, 0.012834924273192883, 0.03673280030488968, 0.01135258562862873, -0.03901157155632973, -0.0283490102738142, 0.0120694013312459, -0.004490194376558065, -0.02947266772389412, 0.05685500055551529, -0.02681204490363598, 0.015369324944913387, 0.023273281753063202, 0.022713368758559227, 0.017839673906564713, 0.015293433330953121, -0.03350261598825455, -0.02652643248438835, 0.005803168751299381, 0.053166743367910385, -0.011526764370501041, 0.021422075107693672, 0.0011951832566410303, 0.06223456561565399, 0.008480317890644073, 0.06052806228399277, 0.024711554870009422, 0.006427772808820009, 0.041048530489206314, 0.0228614192456007, -0.018134521320462227, 0.024930652230978012, -0.03564349561929703, 0.0646158903837204, 0.013316530734300613, 0.025139369070529938, -0.0018749091541394591, 0.004883114714175463, 0.004930771421641111, -0.011825267225503922, 0.01588381640613079, 0.0017874309560284019, -0.035663485527038574, 0.04739609360694885, 0.019606536254286766, 0.04294766113162041, -0.01553506962954998, -0.0010255379602313042, 0.036280930042266846, 0.035019706934690475, -0.03501357510685921, -0.019685707986354828, 0.03719177097082138, 0.04228292033076286, -0.033804845064878464, -0.04095112159848213, 0.01976124383509159, 0.007960479706525803, 0.056348737329244614, -0.0010694143129512668, -0.033091314136981964, -0.046263188123703, -0.03205922245979309, -0.052167512476444244, -0.07121331989765167, -0.014883795753121376, -0.05297800898551941, -0.006059096194803715, 0.027102813124656677, -0.05772911012172699, 0.00872554536908865, -0.0176866352558136, 0.004174192436039448, -0.016581282019615173, -0.018544619902968407, 0.043493952602148056, 0.024900803342461586, 0.019797703251242638, -0.04141281917691231, 0.03564494103193283, 0.012357818894088268, 0.05770552530884743, -0.04958061873912811, -0.002667902037501335, 0.00971182156354189, -0.026974156498908997, 0.01954123005270958, 0.0024474039673805237, 0.004151199012994766, -0.02629956416785717, -0.05809598043560982, -0.027796762064099312, -0.02292802557349205, 0.0011757361935451627, -0.00902250874787569, 0.02754504606127739, -0.04207586124539375, 0.03578133508563042, 0.025809014216065407, -0.05131010711193085, 0.04662138968706131, 0.026966314762830734, -0.06271613389253616, 0.03199540078639984, 0.01211837213486433, -0.020142683759331703, -0.05999381095170975, 0.06019772216677666, 0.042160481214523315, -0.027916481718420982, -0.03183481842279434, -0.014120925217866898, -0.02576720528304577, 0.027753684669733047, -0.005669747944921255, -0.0016191561007872224, -0.04953538253903389, 0.042681869119405746, 0.008464722894132137, -0.06331638246774673, 0.04196363314986229, -0.028681954368948936, 0.013616852462291718, -0.03690557926893234, -0.042490776628255844, 0.03319225460290909, 0.016564738005399704, 0.016259532421827316, 0.01470478530973196, -0.02329576574265957, -0.003544601844623685, 0.03145024552941322, 0.03899853676557541, -0.030670542269945145, 0.04363789036870003, 0.019404932856559753, 0.018411697819828987, 0.020112503319978714, 0.0082857646048069, -0.024843696504831314, -0.005575156770646572, -0.028569020330905914, 0.008208571001887321, 0.010837279260158539, -0.003407026408240199, 0.025717563927173615, 0.019908079877495766, 0.06954678893089294, -0.03970441594719887, 0.010204669088125229, 0.028860803693532944, 0.01796913705766201, 0.0040924157947301865, -0.0024285793770104647, 0.0011526900343596935, -0.012365183793008327, -0.04170447587966919, -0.062384333461523056, -0.000793797371443361, 0.024671539664268494, 0.05432991310954094, -0.054473813623189926, 0.04977991059422493, -0.012648937292397022, -0.02390994504094124, 0.04851597175002098, -0.040544893592596054, -0.01441867370158434, 0.04010983929038048, -0.01244316902011633, 0.04067106172442436, -0.06870423257350922, -0.011450560763478279, -0.009080875664949417, 0.02557920664548874, 0.016038987785577774, 0.021703453734517097, 0.02422119677066803, -0.027456939220428467, 0.004803181160241365, -0.04434594884514809, 0.0014654477126896381, -0.020703991875052452, -0.022093262523412704, 0.0099217863753438, -0.03944448009133339, -0.03689881041646004, -0.05831047520041466, 0.01768670417368412, 0.018083788454532623, 0.047390080988407135, 0.022144850343465805, 0.019102495163679123, 0.00530204689130187, 0.020533548668026924, 0.05085467919707298, -0.024829009547829628, 0.022402694448828697, -0.028149345889687538, 0.02671421319246292, -0.024524003267288208, -0.013388041406869888, -0.03801808878779411, -0.0076673137955367565, -0.007573412265628576, 0.043961863964796066, 0.0016117889899760485, 0.005889004096388817, -0.04227849096059799, -0.004311475902795792, -0.00011997181718470529, 0.02670610137283802, -0.05084454268217087, -0.05588328465819359, -0.03283524885773659, 0.024531064555048943, 0.03488576412200928, -0.027528945356607437, -0.008392454124987125, -0.03420480340719223, 0.029443612322211266, 0.046984970569610596, -0.014065071940422058, -0.05589791759848595, -0.001095064333640039, -0.023122422397136688, -0.05703209713101387, 0.006788863800466061, 0.059363219887018204, -0.01963069662451744, 0.01236943993717432, -0.03926921263337135, 0.0012396118836477399, 0.019913017749786377, -0.024582572281360626, -0.013248343020677567, -0.0051156762056052685, 0.02053019404411316, -0.010170447640120983, 0.0270785354077816, -0.04022020846605301, -0.02473621442914009, 0.02309078723192215, -0.06630514562129974, -0.009755049832165241, -0.026767106726765633, -0.026100076735019684, -0.007809952367097139, 0.016831107437610626, -0.0039626783691346645, 0.035455770790576935, -0.03843888267874718, -0.020249586552381516, -0.01504970621317625, 0.03320399671792984, -0.055569637566804886, -0.03959871828556061, 0.05585097894072533, -0.025438690558075905, -0.043175600469112396, 0.05131937563419342, 0.037765804678201675, -0.027837909758090973, 0.022429797798395157, 0.01408912893384695, -0.05621661618351936, 0.025336062535643578, -0.06340724974870682, 0.019281629472970963, -0.023030519485473633, -0.02605532482266426, 0.01081895362585783, -0.05434824898838997, 0.08103474974632263, 0.004878665786236525, -0.015863392502069473, -0.03315901756286621, -0.050574660301208496, -0.020990101620554924, -0.022112693637609482, -0.0041895173490047455, 0.04370660334825516, -0.008148139342665672, -0.009815012104809284, 0.000897090882062912, 0.003546027699485421, 0.0025947592221200466, -0.008699542842805386, 0.0024868056643754244, -0.029614491388201714, 0.00822373479604721, 0.023927127942442894, 0.03387442231178284, -0.0052911099046468735, -0.04811638966202736, -0.022765913978219032, 0.018275005742907524, -0.02964547649025917, -0.013020442798733711, -0.0021804547868669033, -0.012573245912790298, -0.015286147594451904, -0.04324822127819061, 0.026087282225489616, -0.03247291222214699, 0.01230323500931263, 0.0479755625128746, 0.012231535278260708, 0.029637930914759636, 0.023336276412010193, -0.04775919392704964, 0.023781979456543922, 0.05659103766083717, -0.04659157246351242, -0.03367489203810692, 0.007986304350197315, -0.0032948285806924105, 0.02746272087097168, 0.00904054008424282, -0.03527262806892395, -0.02793738804757595, -0.022713113576173782, 0.02159671112895012, -0.016731128096580505, -0.010749324224889278, -0.05459431931376457, -0.025207098573446274, -0.012804091908037663, 0.05288926884531975, 0.01579047366976738, -0.045569758862257004, -0.003981365822255611, -0.036932703107595444, 0.019585013389587402, -0.049246352165937424, 0.012088257819414139, -0.04951129108667374, -0.003778227139264345, 0.01678689382970333, 0.0551358163356781, 0.016461417078971863, 0.022210363298654556, -0.037104882299900055, 0.026822349056601524, 0.02329273521900177, -0.01071510836482048, -0.021900389343500137, -0.044488031417131424, -0.009014999493956566, 0.0299837626516819, -0.018180271610617638, 0.03812870383262634, -0.06076909974217415, 0.02417486160993576, -0.02597939781844616, 0.023417625576257706, -0.009747843258082867, 0.008745074272155762, -0.008672347292304039, 0.020407916978001595, 0.04655006527900696, -0.014899267815053463, 0.01797954924404621, -0.03651042655110359, 0.06567393243312836, 0.03133024647831917, -0.006667965557426214, -0.0367768257856369, -0.017527874559164047, -0.07818140089511871, -0.06201661750674248, 0.03158113732933998, -0.02346654422581196, -0.013307084329426289, -0.016111668199300766, -0.025831859558820724, 0.05838102847337723, -0.02226496860384941, 0.025826260447502136, 0.061316002160310745, 0.0520804263651371, -0.024613259360194206, -0.01824989728629589, 0.03830432519316673, 0.052634961903095245, -0.061075083911418915, 0.0031620741356164217, 0.004400426987558603, -0.01135474443435669, -0.024277623742818832, -0.014169408939778805, -0.027332700788974762, -0.05992892012000084, 0.01016546692699194, 0.05131298676133156, 0.0018537992145866156, 0.023494325578212738, 0.007259991019964218, -0.05026925355195999, -0.04441915079951286, 0.04391155391931534, -0.020108936354517937, 0.02481870725750923, 0.06106046214699745, -0.007843698374927044, -0.03576241806149483, 0.004306669346988201, -0.019970856606960297, -0.0033479740377515554, -0.04342019557952881, 0.05379551649093628, -0.0046803271397948265, -0.047676678746938705, 0.014198368415236473, 0.050259657204151154, -0.07707341015338898, -0.029258670285344124, 0.0008722433121874928, 0.0043442584574222565, -0.0052283830009400845, -0.03060782328248024, -0.027717115357518196, -0.009419756010174751, 0.00281811086460948, -0.0006394312367774546, 0.03752417117357254, -0.005033489316701889, 0.01198334340006113, 0.006350710988044739, 0.04909655451774597, -0.0316426157951355, 0.01576322689652443, 0.03415770083665848, -0.0013704391894862056, -0.012160428799688816, -0.0621485598385334, -0.008446505293250084, 0.0022029816173017025, 0.02020752802491188, 0.03937271982431412, -0.012263428419828415, 0.026966115459799767, 0.034234315156936646, -0.0014400662621483207, 0.0690646842122078, -0.006071959622204304, 0.0069303689524531364, -0.0030106650665402412, -0.06589731574058533, -0.05188500136137009, -0.016576141119003296, -0.00438544899225235, 0.003236891468986869, 0.006003673654049635, -0.05174101144075394, 0.004715512972325087, 0.04805135726928711, 0.0318804569542408, 0.00024894525995478034, -0.03670569136738777, -0.04690125584602356, -0.045307379215955734, -0.03030511550605297, -0.01728575862944126, -0.004156697075814009, -0.016258442774415016, 0.005493168253451586, 0.013674105517566204, -0.018241090700030327, 0.006601759232580662, 0.007785850670188665, -0.0031047046650201082, 0.01504326332360506, -0.05317976698279381, 0.02483600191771984, -0.023505743592977524, -0.066734179854393, -0.04542471468448639, 0.006344343535602093, -0.03446459025144577, -0.0075457445345819, 0.0012406045570969582, 0.018376365303993225, -0.02606889232993126, 0.034869953989982605, -0.0029230471700429916, 0.01191568560898304, -0.0205742996186018, -0.027968712151050568, 0.006076611578464508, 0.015366040170192719, -0.019004790112376213, 0.06425977498292923, 0.01857532560825348, 0.001914351130835712, 0.02921970561146736, -0.018414897844195366, -0.020727917551994324, -0.02976333536207676, 0.03584932163357735, -0.003848126158118248, 0.014209777116775513, -0.0081336610019207, -0.031126346439123154, -0.027618009597063065, -0.012111879885196686, 0.030598370358347893, -0.016915392130613327, 0.0234183669090271, 0.022079437971115112, -0.0032744978088885546, -0.00406634621322155, 0.05129426717758179, -0.01174163818359375, 0.03518933802843094, -0.00098264473490417, 0.02421264909207821, 0.053976912051439285, 0.03122512809932232, 0.008704988285899162, 0.03362680599093437, 0.004826206248253584, 0.013208750635385513, -0.01115701999515295, 0.013159854337573051, -0.024278445169329643, 0.029974456876516342, -0.011134479194879532, -0.015677765011787415, -0.047739073634147644, -0.0010913393925875425, -0.01703505963087082, 0.05657866597175598, 0.038627445697784424, 0.0074625760316848755, 0.00026496010832488537, -0.04276324436068535, -0.025886058807373047, 0.013670987449586391, -0.07241477817296982, -0.048941705375909805, 0.015059007331728935, -0.02721027098596096, -0.015203981660306454, -0.004831744357943535, -0.02188679575920105, -0.022535962983965874, 0.00931284949183464, -0.026551304385066032, -0.0068839360028505325, 0.02697795443236828, 0.022076794877648354, 0.060248225927352905, 0.006142104975879192, 0.005391300190240145, 0.0004888428375124931, 0.037059612572193146, -0.04565778747200966, -0.06421257555484772, -0.005171542521566153, 0.03943563625216484, 0.007365040481090546, 0.018999425694346428, -0.000005030069587519392, 0.012520943768322468, -0.013989092782139778, 0.03683963790535927, 0.010210271924734116, -0.005271978676319122, -0.0224851556122303, 0.0003999237669631839, -0.035157520323991776, 0.015436938032507896, -0.044401589781045914, 0.014215154573321342, -0.004325330723077059, -0.02460717037320137, -0.028923457488417625, 0.06416336447000504, 0.026532182469964027, -0.0034927462693303823, 0.03639445826411247, 0.03174585476517677, 0.057268716394901276, -0.00960035901516676, 0.019860194995999336, -0.009480711072683334, 0.04464885964989662, 0.043956659734249115, 0.049136750400066376, -0.01345191989094019, 0.02219400741159916, 0.037692759186029434, -0.0028206417337059975, 0.007598639000207186, 0.025974078103899956, 0.021647591143846512, -0.04962911456823349, 0.004090771544724703, -0.0155741972848773, 0.020218348130583763, -0.012150757014751434, -0.01037395279854536, 0.0110071562230587, -0.05397006869316101, -0.009070354513823986, -0.04061753675341606, -0.04309341311454773, 0.034799158573150635, -0.012953359633684158, 0.008068526163697243, -0.0008974922238849103, -0.030788961797952652, 0.01724785566329956, 0.026759255677461624, -0.0008932940545491874, -0.020129548385739326, 0.04489728808403015, 0.02870139665901661, -0.0066647822968661785, 0.03207752853631973, 0.03008658066391945, -0.00418873131275177, -0.03605552762746811, 0.004217554349452257, 0.007838080637156963, 0.02463681995868683, -0.03179838880896568, -0.0018635251326486468, -0.02437746152281761, 0.02414465881884098, -0.0377843901515007, -0.003576665883883834, 0.02611498534679413, -0.051892541348934174, 0.02103167213499546, -0.031205816194415092, 0.05041776970028877, -0.03380071371793747, -0.021139711141586304, 0.0324389822781086, -0.011836198158562183, -0.03082502819597721, 0.06575750559568405, 0.023841146379709244, 0.040061917155981064, 0.021034162491559982, 0.054708581417798996, 0.006080936174839735, 0.03100467287003994, 0.05563540756702423, -0.027464482933282852, -0.00005891844193683937, 0.01960413157939911, -0.02696826122701168, -0.03143903240561485, 0.004438749980181456, -0.041480064392089844, -0.0006576749146915972, -0.00701197749003768, -0.004586020950227976, -0.01206941343843937, 0.017667237669229507, -0.00430794944986701, -0.01291404664516449, 0.0037505393847823143, 0.0366901196539402, -0.060545094311237335, 0.018064891919493675, 0.025347871705889702, 0.0292307510972023, 0.030475977808237076, -0.022198572754859924, -0.016034653410315514, -0.03821326047182083, 0.02339060604572296, -0.07367100566625595, 0.052333127707242966, -0.010437148623168468, -0.041703470051288605, -0.040735527873039246, -0.03465444594621658, -0.039504773914813995, 0.008516998961567879, -0.020056018605828285, -0.041533347219228745, 0.02578829787671566, 0.04093218222260475, 0.003162043634802103, 0.016465747728943825, -0.025624196976423264, 0.002380369696766138, 0.03015795163810253, 0.01971374824643135, 0.010191833600401878, 0.07834839820861816, 0.031084425747394562, -0.016090285032987595, 0.03677114471793175, -0.042605623602867126, -0.011450466699898243, -0.03198973834514618, -0.012879937887191772, 0.00602592620998621, 0.015692509710788727, -0.033728938549757004, -0.051754046231508255, -0.027484389021992683, 0.04349331557750702, -0.004766063764691353, -0.010836614295840263, -0.08891724795103073, -0.01061786338686943, -0.06873977929353714, -0.008558450266718864, -0.03342403098940849, -0.01644119620323181, -0.0015255234902724624, -0.024362338706851006, 0.00253081601113081, -0.03752198442816734, 0.16325579583644867, 0.032033491879701614, 0.043455902487039566, 0.01667962409555912, 0.055695004761219025, 0.06940508633852005, -0.04280775412917137, 0.011204150505363941, 0.008626473136246204, -0.03211505338549614, 0.04226696491241455, -0.003471974516287446, 0.03159068524837494, 0.02448400668799877, 0.012833029963076115, 0.035231541842222214, -0.03175092488527298, -0.005616755690425634, 0.028561055660247803, -0.06134869158267975, -0.0464637465775013, 0.023212136700749397, 0.025123564526438713, 0.02712947688996792, -0.004827946424484253, 0.0017511191545054317, 0.03396625444293022, -0.04765922576189041, -0.011511730030179024, -0.01001227181404829, 0.009216089732944965, -0.011285042390227318, 0.04976530000567436, -0.015166799537837505, -0.0036394016351550817, 0.012317042797803879, 0.015824314206838608, -0.009512987919151783, -0.007176766637712717, -0.012175153940916061, -0.012255855835974216, -0.008300784043967724, -0.014872513711452484, -0.018675217404961586, 0.005065244156867266, 0.01823883131146431, -0.04052194207906723, 0.03886610269546509, 0.014118868857622147, -0.01767580583691597, 0.05573015287518501, -0.02313658595085144, 0.0478469543159008, -0.007160955108702183, -0.03197426348924637, 0.00534976739436388, -0.019454576075077057, -0.0007744486210867763, -0.008881326764822006, 0.011674441397190094, 0.01534662302583456, 0.0006164450896903872, -0.009413110092282295, 0.011919304728507996, -0.03821002319455147, -0.020691588521003723, 0.03495577722787857, 0.004733589477837086, -0.01001540943980217, -0.012163969688117504, -0.014979752711951733, 0.008885420858860016, 0.014186123386025429, -0.05216175317764282, 0.02247973345220089, 0.008654676377773285, -0.018975980579853058, 0.05003117024898529, 0.02413851208984852, -0.012024124152958393, 0.00041753536788746715, -0.04811900481581688, -0.0010106635745614767, -0.008108451962471008, 0.019239798188209534, 0.02396719716489315, -0.04440585523843765, -0.03641720116138458, -0.029939597472548485, 0.010525924153625965, 0.04142110422253609, 0.01907764934003353, 0.0053094010800123215, -0.017830384895205498, -0.01116212923079729 ]
Hi there! I'm Rebecca, and welcome to my home on the internet. This site is not me; it's a website. openly track my slow journeys [Bit by Bit]. bring attention to my values in everyday moments and small decisions. My latest happenings can always be found at [Lately]. If you want to learn a little bit about me, head to [About] or check out my [Values]. And for the ebooks, zines, and goodies I've created, visit [Resources]. I appreciate you being here and wish you an excellent day.
[ -0.03872312977910042, -0.007412768434733152, -0.02568841353058815, -0.001474191783927381, -0.011225751601159573, -0.019272303208708763, 0.00810651108622551, 0.01960146613419056, -0.0000699116790201515, 0.016852157190442085, 0.018108950927853584, 0.013235957361757755, 0.005426859017461538, -0.02311338484287262, -0.020614920184016228, -0.023422928526997566, -0.012395202182233334, -0.041244376450777054, -0.043374452739953995, 0.004220832604914904, -0.006302465219050646, 0.01399767491966486, -0.05199207365512848, -0.04147902876138687, -0.014238213188946247, 0.051667794585227966, 0.02170783281326294, -0.006344877649098635, 0.04580685868859291, 0.05832415819168091, 0.005676243919879198, -0.01143727358430624, 0.017961110919713974, -0.05829537659883499, -0.01558179222047329, -0.009945770725607872, 0.02533728815615177, -0.0011587734334170818, -0.028125565499067307, -0.04104861617088318, 0.019565561786293983, -0.012516283430159092, 0.044761065393686295, -0.02030976116657257, -0.05961618572473526, -0.003297223476693034, -0.04878024384379387, -0.01462955679744482, 0.025307651609182358, -0.03964671865105629, 0.026744255796074867, -0.011317167431116104, 0.004846096504479647, -0.0038156197406351566, -0.005926494486629963, -0.0032553754281252623, 0.015244106762111187, 0.012601629830896854, -0.0035203469451516867, 0.02635282464325428, 0.010332508012652397, 0.021175561472773552, 0.030498985201120377, -0.0986071527004242, 0.010125743225216866, 0.014491931535303593, -0.016697444021701813, -0.04952561482787132, 0.009575833566486835, -0.034989554435014725, -0.012235027737915516, 0.004838862922042608, -0.0006909684743732214, -0.02462923899292946, -0.03303629159927368, 0.017704347148537636, 0.004025314003229141, -0.010089823044836521, 0.00028386834310367703, -0.013726183213293552, 0.010342001914978027, 0.04902616888284683, -0.006231748498976231, 0.02969331108033657, -0.05504453182220459, -0.0040427143685519695, -0.008502904325723648, 0.03402899205684662, -0.0023235827684402466, 0.0049623469822108746, 0.03908592835068703, 0.06161370873451233, 0.009014686569571495, -0.002687726402655244, 0.02229730412364006, 0.05317797511816025, -0.03737584874033928, 0.035232000052928925, 0.016716524958610535, 0.026506826281547546, 0.038182295858860016, 0.012967824004590511, 0.0034095728769898415, 0.03365335240960121, -0.06553731858730316, 0.017970485612750053, 0.000918774981983006, -0.025435712188482285, -0.01968511939048767, -0.014052892103791237, -0.014911161735653877, -0.01814916357398033, -0.0014204662293195724, -0.0013612685725092888, -0.008774742484092712, 0.056089840829372406, 0.0020216323900967836, 0.03941885381937027, -0.04180033877491951, 0.010906526818871498, 0.02168494276702404, 0.012594320811331272, 0.03120557777583599, -0.01575036160647869, 0.00976687204092741, -0.05254392698407173, 0.0034857983700931072, 0.043133437633514404, -0.008202774450182915, -0.030782004818320274, -0.019319981336593628, -0.04053886607289314, 0.026029100641608238, -0.0032405934762209654, 0.0018061586888507009, 0.03495297208428383, -0.009212473407387733, 0.05284429341554642, 0.030952269211411476, -0.0772915706038475, 0.04152016341686249, 0.006085832603275776, 0.020465921610593796, 0.07508262991905212, -0.004006959497928619, 0.03538955748081207, -0.01787315309047699, -0.013042913749814034, -0.020092550665140152, 0.0153244873508811, -0.022882824763655663, 0.04046892747282982, -0.005312924273312092, 0.035533107817173004, 0.006758274510502815, -0.01346322987228632, 0.0089782839640975, 0.0294401403516531, -0.020545190200209618, 0.02577057294547558, -0.02933495119214058, 0.02165580727159977, 0.03364822268486023, 0.042027171701192856, -0.029843412339687347, 0.03227140009403229, -0.019937722012400627, -0.006584769114851952, -0.03381611779332161, -0.030542055144906044, 0.0313156396150589, -0.02693421021103859, -0.04344702884554863, 0.008992331102490425, -0.012154599651694298, 0.0386769138276577, 0.001154331723228097, 0.03428937867283821, 0.06712556630373001, 0.03887398913502693, -0.03266223892569542, 0.0041001420468091965, -0.024627123028039932, 0.06492358446121216, 0.021220820024609566, -0.04079635068774223, 0.013366608880460262, -0.0361618846654892, -0.050706762820482254, -0.04284720495343208, -0.009815799072384834, 0.025510568171739578, -0.030121255666017532, 0.026115912944078445, 0.04331768676638603, 0.01344585232436657, -0.014349251054227352, -0.006848845165222883, -0.02699834294617176, -0.07259707897901535, -0.029837515205144882, 0.03991756960749626, -0.03908058628439903, 0.02473759464919567, 0.013723946176469326, -0.0056916531175374985, 0.02092592790722847, 0.06295076757669449, -0.04452262818813324, -0.008004304952919483, 0.0057392125017941, -0.006989844609051943, -0.024973297491669655, -0.022966280579566956, -0.015217776410281658, -0.016563527286052704, -0.02919214591383934, 0.05767814815044403, -0.025989722460508347, -0.002203613054007292, 0.022404344752430916, 0.005225205793976784, 0.08238639682531357, 0.035033393651247025, -0.0009257092606276274, 0.008326385170221329, 0.013063784688711166, 0.01657240092754364, -0.03827543929219246, -0.05493602901697159, 0.004053526557981968, 0.04919898137450218, -0.00810666661709547, 0.04404899477958679, 0.058848682790994644, 0.047234609723091125, 0.03005778230726719, 0.06791854649782181, -0.013669034466147423, 0.01894225738942623, -0.021471761167049408, 0.013536483980715275, 0.05584089457988739, 0.04244641214609146, 0.0031837881542742252, 0.007199783343821764, 0.009513923898339272, 0.004316025413572788, -0.008851000107824802, 0.023086978122591972, -0.028581513091921806, 0.01838536001741886, 0.023874837905168533, 0.014118644408881664, -0.036113567650318146, -0.0029496171046048403, 0.05618101730942726, 0.04640985280275345, -0.033688612282276154, 0.018246283754706383, 0.009879285469651222, 0.027685973793268204, 0.00440396461635828, 0.021556388586759567, 0.040133699774742126, 0.02750341035425663, 0.010706598870456219, 0.04403571039438248, -0.018584128469228745, -0.054753463715314865, -0.024391770362854004, -0.03687937557697296, -0.027819078415632248, -0.03585628792643547, -0.045418333262205124, -0.004014741629362106, 0.03330216184258461, -0.03278977423906326, 0.033384133130311966, -0.0092127975076437, -0.00426316075026989, -0.04174910858273506, 0.007818092592060566, 0.00769308814778924, 0.02058558538556099, 0.01786573976278305, -0.022153429687023163, 0.04377437010407448, -0.013716685585677624, 0.04701390117406845, -0.0335865244269371, -0.025838453322649002, 0.00895942747592926, -0.0065942020155489445, 0.024511806666851044, 0.03015209548175335, -0.01128657627850771, -0.019863184541463852, -0.03694949671626091, -0.051731694489717484, 0.003116968320682645, -0.01500266045331955, -0.01415294036269188, 0.017451239749789238, -0.03699653595685959, 0.029759762808680534, 0.02313537895679474, -0.019688379019498825, 0.04164959862828255, 0.03923537954688072, -0.03810587897896767, 0.048587702214717865, 0.027906425297260284, 0.018473969772458076, -0.03765064850449562, 0.054078761488199234, 0.04210576042532921, 0.013526830822229385, -0.0431852824985981, -0.023927899077534676, -0.023211415857076645, 0.0021268967539072037, 0.008614187128841877, -0.007938546128571033, -0.015547102317214012, 0.03274025395512581, 0.022665927186608315, -0.08021552115678787, 0.009152781218290329, -0.044350847601890564, -0.03516298159956932, -0.009170512668788433, -0.006013802252709866, 0.026831362396478653, 0.02175748161971569, 0.020272092893719673, 0.006701905746012926, -0.026893891394138336, 0.023216042667627335, -0.013333981856703758, 0.055373433977365494, -0.043964143842458725, 0.012610017322003841, 0.0440279021859169, -0.021602647379040718, 0.02486450970172882, 0.007758235093206167, -0.026894018054008484, -0.04683476686477661, 0.0035743853077292442, 0.011140535585582256, -0.0017099921824410558, 0.026934010908007622, 0.006732250098139048, 0.01916392706334591, 0.038244035094976425, -0.05127960816025734, 0.006785872392356396, 0.039531830698251724, -0.0025267181918025017, 0.02143888920545578, 0.030070049688220024, 0.015436329878866673, -0.04968433827161789, -0.04517535865306854, -0.05661766231060028, 0.01821805164217949, 0.00622883066534996, 0.07144073396921158, -0.05029930919408798, 0.08406342566013336, -0.022699512541294098, -0.023318856954574585, 0.009272950701415539, -0.06401258707046509, 0.005260668229311705, 0.032808709889650345, -0.034846436232328415, 0.0496121346950531, -0.049173686653375626, 0.02524195797741413, -0.02050013840198517, 0.004711144603788853, 0.056578878313302994, -0.003180745290592313, 0.03215987607836723, -0.039404600858688354, 0.001004922203719616, 0.010179582983255386, -0.03907233849167824, -0.03534156084060669, 0.013569104485213757, 0.006901585031300783, 0.00521121546626091, -0.05572112649679184, -0.07760133594274521, 0.03716325759887695, 0.020363179966807365, 0.04325319081544876, -0.024658922106027603, 0.05334189906716347, 0.033694490790367126, 0.027290821075439453, 0.028379416093230247, -0.004375522490590811, 0.00854578148573637, -0.052097391337156296, 0.03689268231391907, 0.017597483471035957, -0.0018371879123151302, -0.012536211870610714, -0.03197771683335304, -0.029050428420305252, 0.03826851025223732, 0.020886575803160667, -0.026022741571068764, -0.024354133754968643, 0.005387349519878626, 0.006761156488209963, 0.029487639665603638, -0.055970143526792526, -0.006455033086240292, -0.0012554852291941643, 0.018374117091298103, 0.030800173059105873, -0.05886140465736389, -0.005426779389381409, -0.004703538957983255, 0.0506097637116909, 0.04448018968105316, 0.014311780221760273, -0.0371655635535717, -0.02119213342666626, -0.03472268953919411, -0.020600035786628723, 0.0013312709052115679, 0.032052330672740936, 0.01572285406291485, 0.021982582286000252, -0.047069862484931946, 0.05844113975763321, 0.025613876059651375, -0.0018023563316091895, 0.007037498988211155, -0.006220375653356314, 0.015748780220746994, -0.013364196754992008, 0.03880530223250389, 0.009167262353003025, -0.028246894478797913, 0.027895456179976463, -0.0696387067437172, 0.005815825890749693, 0.019081635400652885, -0.011548686772584915, -0.010261585004627705, 0.007333827670663595, 0.03494982421398163, 0.03714888542890549, -0.0124822948127985, 0.03198077529668808, -0.021560002118349075, 0.043660182505846024, -0.018544984981417656, -0.03347146138548851, 0.015687724575400352, 0.011881657876074314, -0.02665672078728676, 0.042838528752326965, 0.047145046293735504, 0.013067689724266529, 0.000019762472220463678, 0.021046429872512817, -0.05924165993928909, 0.02145536057651043, -0.024433352053165436, -0.005728766322135925, -0.009753523394465446, -0.02693954110145569, -0.005531870294362307, -0.03579607233405113, 0.040226154029369354, 0.010728149674832821, -0.016422217711806297, -0.02763228677213192, -0.06326021254062653, -0.014874032698571682, 0.021563192829489708, -0.01410003937780857, 0.025508137419819832, -0.0068198516964912415, -0.04626435413956642, -0.02912159264087677, 0.001361785107292235, -0.0010088490089401603, 0.01994774118065834, -0.03082570619881153, -0.005067368503659964, -0.0009586248197592795, 0.020538443699479103, 0.0253010131418705, -0.007273050025105476, -0.04532189294695854, -0.014680295251309872, 0.0023663172032684088, -0.025242185220122337, -0.03859623894095421, 0.01325721200555563, -0.004573871847242117, -0.013356511481106281, 0.02200539968907833, -0.02134503610432148, 0.002178036607801914, 0.03510911390185356, 0.011668753810226917, 0.034268978983163834, 0.029276002198457718, 0.02242542989552021, -0.019247153773903847, 0.03145024925470352, 0.014731630682945251, -0.0659230574965477, -0.031112903729081154, 0.045022670179605484, -0.0339306965470314, 0.04916900023818016, 0.0034576035104691982, -0.005739249289035797, -0.03531971201300621, -0.03855501487851143, -0.0011633996618911624, -0.02760252356529236, -0.034593723714351654, -0.042020924389362335, -0.033311937004327774, -0.019252091646194458, 0.052482813596725464, -0.0037084356881678104, -0.03880811855196953, 0.002001038985326886, -0.044623252004384995, 0.03375574201345444, -0.027180993929505348, -0.030584445223212242, -0.04022993519902229, 0.0009918190771713853, -0.013517342507839203, 0.04964142292737961, -0.029070917516946793, 0.027216508984565735, 0.021174833178520203, 0.028911102563142776, -0.009071010164916515, -0.014269908890128136, -0.05298476293683052, -0.0359475277364254, -0.021253036335110664, 0.014781545847654343, 0.022588102146983147, -0.019339444115757942, -0.030305098742246628, 0.03377452492713928, -0.02827185019850731, -0.0010773121612146497, -0.01390497013926506, 0.0020180251449346542, -0.030016548931598663, 0.011395889334380627, 0.039163071662187576, -0.0444275327026844, 0.017330100759863853, -0.010758241638541222, 0.05588507652282715, 0.009811487048864365, -0.027972178533673286, -0.018590396270155907, -0.0471402108669281, -0.056262630969285965, -0.0382462739944458, 0.009111347608268261, -0.04035508632659912, -0.00169015780556947, -0.04612119495868683, -0.029446259140968323, 0.019017618149518967, -0.024792853742837906, 0.036382343620061874, 0.06556982547044754, 0.01689806394279003, -0.008856294676661491, -0.05603967607021332, 0.007530053146183491, 0.032346535474061966, -0.008283643051981926, 0.03572789579629898, -0.024980206042528152, -0.004267330281436443, -0.0038806525990366936, -0.034279629588127136, -0.037015363574028015, -0.04754100739955902, -0.02576894313097, 0.03557641804218292, -0.00025723394355736673, 0.05098734050989151, 0.010633663274347782, -0.04022659361362457, -0.041341423988342285, 0.027437303215265274, 0.002310160081833601, 0.05304986611008644, 0.056993450969457626, 0.006708023604005575, 0.003944212105125189, -0.0033285466488450766, 0.010009972378611565, -0.01645665429532528, -0.028127796947956085, 0.0566101036965847, 0.00635987613350153, -0.04239431768655777, 0.01336138416081667, 0.07332932204008102, -0.05934874713420868, -0.040044646710157394, 0.005974629893898964, 0.01834501139819622, 0.039580196142196655, -0.04014893248677254, -0.015242165885865688, -0.019381653517484665, -0.016833672299981117, 0.010206853970885277, 0.022481175139546394, -0.0267329178750515, 0.06775418668985367, 0.03104880452156067, 0.006574596744030714, -0.040897782891988754, 0.017269937321543694, 0.03150707110762596, -0.0030803747940808535, -0.03570706024765968, -0.024840153753757477, 0.010477196425199509, 0.008929416537284851, -0.004080541897565126, 0.024709217250347137, -0.005194338969886303, 0.031575463712215424, 0.023895984515547752, -0.00008517725655110553, 0.012289226986467838, 0.015353699214756489, 0.017468005418777466, 0.006831359583884478, -0.05952762812376022, -0.050177201628685, -0.03805812820792198, 0.046930547803640366, -0.010524763725697994, 0.031238850206136703, -0.05317551642656326, 0.008221544325351715, 0.013962311670184135, -0.002688551787286997, -0.02154560014605522, -0.04424295946955681, -0.033662501722574234, -0.05444508045911789, -0.04222377762198448, -0.06566616892814636, -0.01762353628873825, 0.0082685686647892, 0.02156871370971203, -0.0008681873441673815, -0.007323550991714001, -0.030914228409528732, 0.02517353557050228, 0.0029277221765369177, 0.013596484437584877, -0.05255590379238129, 0.03502056747674942, -0.03493999317288399, -0.05534862354397774, -0.06072629615664482, -0.027361350134015083, 0.0029962395783513784, -0.015063470229506493, -0.02982553280889988, 0.020617088302969933, -0.03979559615254402, 0.07845790684223175, -0.004296696744859219, 0.000454465567599982, -0.03286289423704147, -0.03270701691508293, 0.003610950196161866, 0.02300756797194481, 0.0012671379372477531, 0.021175604313611984, 0.03315287083387375, -0.01714455895125866, 0.026141662150621414, 0.004246932454407215, -0.07488039880990982, -0.013059087097644806, 0.02660912461578846, 0.00548214977607131, 0.009829065762460232, -0.0486387237906456, -0.006258696783334017, -0.009966853074729443, -0.047916121780872345, 0.016556790098547935, -0.005484921392053366, 0.0060746679082512856, 0.019535554572939873, 0.0067018610425293446, -0.0230352021753788, 0.06289073079824448, -0.012078940868377686, 0.01993035338819027, 0.0010182061232626438, 0.03789139166474342, 0.00984407402575016, 0.0032182501163333654, 0.022048158571124077, 0.010377708822488785, 0.02746114321053028, -0.007941626012325287, 0.014431917108595371, -0.011322029866278172, -0.006613162811845541, 0.031160393729805946, -0.032648056745529175, -0.018647925928235054, -0.05531783401966095, -0.018605155870318413, -0.03146522864699364, 0.02395136095583439, 0.015588604845106602, -0.0015362713020294905, -0.007666940800845623, -0.04712940379977226, -0.03174157813191414, 0.05968373268842697, -0.03579436615109444, -0.024430258199572563, 0.05144435167312622, -0.0028520883060991764, -0.010320630855858326, -0.024836821481585503, -0.018175341188907623, 0.018417835235595703, -0.0116421515122056, -0.004898888524621725, -0.04314190894365311, 0.021194858476519585, -0.015839925035834312, 0.02269633859395981, -0.0022308393381536007, -0.02181420661509037, 0.020575743168592453, 0.03058459609746933, -0.02133670076727867, -0.059718649834394455, 0.0010393478441983461, 0.015045120380818844, 0.027029450982809067, -0.02319500595331192, -0.004004398360848427, -0.005033805035054684, -0.007139404769986868, 0.016233686357736588, 0.03545865789055824, 0.032438844442367554, 0.011903590522706509, 0.017481345683336258, 0.021087221801280975, 0.02320970594882965, -0.02422400377690792, 0.019188454374670982, -0.009566756896674633, -0.01550954021513462, 0.0056329271756112576, 0.047014471143484116, 0.029872091487050056, -0.027479827404022217, 0.03045555390417576, 0.022608047351241112, 0.03340006619691849, -0.00448513962328434, 0.023063240572810173, 0.013495690189301968, 0.06371574103832245, 0.03479699417948723, 0.04903638735413551, -0.01315026544034481, 0.030176233500242233, 0.049511369317770004, -0.01324058510363102, 0.0003992320562247187, 0.04999927803874016, 0.023111486807465553, -0.024738119915127754, -0.027182865887880325, -0.03583628684282303, -0.004729242064058781, 0.006660043261945248, 0.006032522767782211, -0.017850834876298904, -0.029149064794182777, -0.024481836706399918, -0.012499515898525715, -0.03288042172789574, 0.08521895110607147, -0.015132522210478783, 0.025290783494710922, -0.001662709633819759, -0.011891794390976429, -0.006806573364883661, 0.04541122913360596, -0.005871489644050598, 0.03294243663549423, 0.025831671431660652, 0.027934705838561058, -0.01903657242655754, 0.0486203096807003, 0.03333352133631706, 0.025159811601042747, -0.024042321369051933, 0.008503238670527935, 0.02170560136437416, -0.006929376628249884, -0.02700110711157322, -0.015536618418991566, -0.02169964089989662, 0.022037725895643234, -0.04389627277851105, -0.026960760354995728, 0.03977864608168602, -0.059401556849479675, -0.010374056175351143, -0.057613927870988846, 0.07238683849573135, -0.014575337059795856, -0.007155581843107939, 0.030111048370599747, 0.005868269596248865, -0.011099851690232754, 0.056084901094436646, 0.01782889850437641, 0.05507650598883629, -0.005472790915518999, 0.026763642206788063, -0.018893208354711533, 0.04620010033249855, 0.0451388880610466, -0.007807187270373106, -0.009520582854747772, 0.014549831859767437, -0.006208817940205336, -0.026385752484202385, -0.01082424633204937, -0.07524814456701279, -0.0059871855191886425, -0.003580397227779031, -0.0016654954524710774, 0.02394757978618145, 0.038906026631593704, 0.020073330029845238, -0.04848504066467285, 0.005896158516407013, 0.028777940198779106, -0.04598112404346466, 0.02214137651026249, 0.0203250665217638, 0.041390758007764816, -0.001198905985802412, -0.0036348355934023857, -0.013779034838080406, -0.03803093358874321, 0.010383699089288712, -0.03509097918868065, 0.04138724505901337, -0.002707925857976079, -0.026702241972088814, -0.04893830791115761, -0.06620672345161438, -0.02233290672302246, -0.004981426056474447, -0.0014114887453615665, -0.05435610190033913, 0.03131113573908806, 0.03345330059528351, -0.003472765674814582, -0.008391079492866993, -0.04198434203863144, 0.002725150901824236, 0.029407409951090813, 0.06957235932350159, 0.011935650371015072, 0.040238045156002045, 0.04738640785217285, -0.0023989747278392315, 0.02301677316427231, -0.034106891602277756, 0.03024737350642681, -0.03427566960453987, -0.03740718960762024, -0.027265457436442375, -0.0029460329096764326, -0.00279613072052598, -0.055987950414419174, 0.016733655706048012, 0.018618660047650337, 0.02874569036066532, -0.015648003667593002, -0.06803453713655472, -0.008234763517975807, -0.05139273777604103, -0.0011483615962788463, -0.06666383892297745, 0.007907030172646046, 0.011072764173150063, -0.010653899051249027, 0.014780431054532528, -0.05847602337598801, 0.12098942697048187, 0.05391285568475723, 0.04051313176751137, -0.010731912218034267, 0.04630220681428909, 0.04781743511557579, 0.012005431577563286, 0.008795966394245625, 0.003247190034016967, -0.025838008150458336, 0.03409983217716217, 0.0019866100046783686, 0.04482017084956169, 0.0010937683982774615, 0.03883128985762596, 0.06893012672662735, -0.019782494753599167, 0.01445724070072174, 0.018231969326734543, -0.051128730177879333, -0.08014548569917679, -0.004374930169433355, 0.010564598254859447, 0.018257148563861847, -0.010408135131001472, 0.011908363550901413, 0.02409457042813301, -0.06781940162181854, -0.006107540801167488, -0.030224280431866646, 0.03380928561091423, 0.0017336877062916756, 0.05248471722006798, -0.021933481097221375, -0.05747441202402115, 0.02324722521007061, -0.007404400035738945, -0.005809764377772808, 0.015459936112165451, 0.03362344205379486, -0.01680098846554756, -0.011219955049455166, 0.01868435926735401, -0.03261620178818703, 0.01842971332371235, 0.030669519677758217, -0.0601440854370594, 0.007852194830775261, 0.003520222846418619, -0.017369728535413742, 0.06382893770933151, -0.03656218945980072, 0.042444806545972824, -0.033547542989254, -0.017116639763116837, 0.0017078131204470992, 0.010580461472272873, 0.0031333696097135544, -0.040625639259815216, -0.0030437263194471598, -0.0003802413702942431, 0.024774543941020966, -0.006865792442113161, -0.03162506967782974, -0.029468972235918045, 0.021265320479869843, 0.036021385341882706, 0.029326489195227623, -0.020545462146401405, -0.031980957835912704, -0.05759969726204872, -0.03381567820906639, -0.02957373857498169, -0.02929139882326126, 0.015109553933143616, 0.028631646186113358, -0.05495985597372055, 0.04896024987101555, -0.004301270004361868, -0.016271106898784637, 0.002600455889478326, -0.03826034069061279, -0.002255099592730403, 0.010031281039118767, 0.045940790325403214, 0.031962502747774124, -0.05583817884325981, -0.01897035911679268, -0.031017744913697243, 0.06525342166423798, 0.03852441906929016, 0.02338213101029396, -0.022454941645264626, 0.013847188092768192, -0.01697918400168419 ]
Holy Week is the time from Palm Sunday through Good Friday. The Moravian Church has a tradition of nightly reading services during this most sacred week. The readings are a compilation of the four Gospel accounts of the last week of Christ's life. Reading services are interspersed with the singing of selected hymn stanzas which form the congregation's response to the gospel story. These services are cherished by Moravians as a time to draw closer to God in preparation for Easter. On Maundy Thursday the congregtion celebrates Christ's institution of the Lord's Supper as we participate in the Holy Communion. Holy Week services are held nightly at 7:00 pm, Palm Sunday through Good Friday. This somber service recognizes the reconciling act of Christ's crucifixion whereby He allowed us to receive forgiveness for our sins. The Good Friday afternoon readings include the account of the trial, sufferings and death of Christ. The service concludes with the tolling of Calvary's bell 33 times commemorating the 33 years of Christ's life. There is no benediction or organ postlude at this service. Instead, the congregation departs in silence to contemplate the meaning of Christ's sacrificial death. The Crucifixion Service is held each Good Friday at 2:15 pm. Having honored the saving work achieved by Christ's sacrifice we celebrate that evening with a lovefeast. The Good Friday Lovefeast includes the gospel accounts of Christ's burial. The congregation departs the service in silence in anticipation of the good news of resurrection on Easter Day. The Good Friday Lovefeast is held each Good Friday at 7:00 pm.
[ -0.018998848274350166, -0.024452846497297287, 0.016890136525034904, -0.012774714268743992, 0.022936252877116203, 0.02319158986210823, 0.0023067768197506666, 0.020641684532165527, 0.015767060220241547, 0.0011226317146793008, 0.03345451503992081, 0.015527707524597645, 0.030935296788811684, -0.046978484839200974, -0.02389547973871231, -0.027963807806372643, -0.03501826524734497, -0.031677115708589554, -0.010204335674643517, 0.009437327273190022, -0.023899365216493607, 0.015451173298060894, -0.06810185313224792, -0.008966655470430851, -0.031577374786138535, 0.03791472688317299, 0.004375089425593615, -0.018838178366422653, 0.04612410068511963, 0.062045466154813766, -0.04686104133725166, -0.017320092767477036, 0.03587565943598747, -0.07788146287202835, -0.0030027497559785843, -0.04450700432062149, 0.03781512379646301, -0.030237777158617973, 0.004325805231928825, -0.06920124590396881, 0.0025770883075892925, 0.0021530247759073973, -0.005029747262597084, -0.014788824133574963, -0.010776298120617867, -0.011891687288880348, -0.00879078172147274, -0.021910689771175385, 0.01517567504197359, -0.04521822929382324, 0.023012589663267136, -0.029855288565158844, -0.009694686159491539, -0.02630876749753952, 0.02757529728114605, 0.02775520458817482, 0.015727665275335312, -0.027492886409163475, -0.01133826095610857, 0.04617447033524513, 0.03977784514427185, 0.024602409452199936, 0.00407805060967803, -0.06753323972225189, -0.0025114109739661217, 0.02748764306306839, -0.020791592076420784, 0.017028307542204857, 0.044480644166469574, -0.04677107557654381, 0.011340218596160412, -0.0033978973515331745, -0.0191050972789526, -0.022147512063384056, 0.02061103656888008, -0.018810778856277466, -0.011579512618482113, 0.007348356302827597, 0.007439950946718454, 0.011210626922547817, 0.004307531286031008, 0.020114736631512642, 0.0028659761883318424, 0.04095339775085449, -0.05293004587292671, -0.015995945781469345, -0.038816001266241074, 0.0015162983909249306, 0.01159521285444498, -0.01617533527314663, -0.023388590663671494, 0.04412059113383293, -0.01003914512693882, -0.029244346544146538, 0.03904230147600174, 0.04368196427822113, -0.04786752536892891, 0.046568382531404495, -0.020243529230356216, 0.007668972946703434, 0.018389906734228134, 0.01774650625884533, -0.024283945560455322, 0.04441136121749878, -0.07274636626243591, -0.01757410168647766, 0.0038772253319621086, 0.006667858920991421, -0.006425484549254179, -0.049736734479665756, 0.007432568818330765, -0.015575392171740532, 0.042587801814079285, 0.016722265630960464, 0.04620185121893883, 0.05238642916083336, -0.043261971324682236, 0.041836466640233994, -0.03471318259835243, -0.004626942332834005, 0.04006383568048477, 0.026104211807250977, 0.0498005636036396, -0.05494778975844383, 0.01596950553357601, -0.01593032293021679, -0.02974860370159149, 0.029054388403892517, -0.03264647349715233, -0.008266689255833626, -0.004049185663461685, -0.04140709340572357, -0.011725720018148422, 0.01586150750517845, -0.0130072720348835, 0.003216484561562538, 0.005791360512375832, -0.012035282328724861, 0.015908803790807724, -0.049481865018606186, 0.03849901258945465, -0.026622751727700233, 0.010542082600295544, 0.10325649380683899, 0.009324303828179836, -0.010413658805191517, 0.006261284928768873, 0.02013862133026123, -0.01744966395199299, 0.05485500022768974, -0.026354461908340454, 0.030330747365951538, 0.025843137875199318, 0.009989645332098007, 0.01622743159532547, -0.011005871929228306, -0.003068884601816535, -0.014556122943758965, 0.02013269253075123, 0.0466625951230526, -0.03215361759066582, 0.0021332241594791412, -0.012355510145425797, 0.037338338792324066, 0.02003606967628002, 0.04371899366378784, -0.024360081180930138, -0.028807904571294785, -0.026161184534430504, -0.06026875600218773, 0.013029024004936218, -0.009652219712734222, -0.01954018324613571, 0.02240714244544506, 0.018914388492703438, 0.01912425085902214, 0.0164472758769989, -0.004483546130359173, 0.026258043944835663, 0.03526515141129494, -0.045355480164289474, 0.01306315790861845, -0.0010196843650192022, 0.056743402034044266, 0.015618170611560345, -0.02841792441904545, -0.023134341463446617, -0.011179049499332905, -0.02590050920844078, -0.020929984748363495, -0.030735649168491364, 0.03967641666531563, -0.007258179597556591, 0.012865472584962845, 0.02681395225226879, -0.0026926423888653517, -0.01776348426938057, -0.016591116786003113, -0.03327229991555214, -0.04744112119078636, -0.03804997354745865, 0.06413842737674713, -0.01727263256907463, 0.06052222102880478, -0.017962230369448662, -0.023559443652629852, 0.053565144538879395, 0.07117438316345215, -0.026707643643021584, -0.016712887212634087, 0.04030187427997589, -0.0003871463122777641, -0.03736626356840134, 0.01714709959924221, 0.005698562134057283, 0.0019455357687547803, -0.048128824681043625, 0.020373547449707985, -0.039197422564029694, -0.01956327073276043, 0.000974946771748364, 0.016478577628731728, 0.01589190401136875, 0.02674129791557789, -0.02924739569425583, -0.004312972072511911, 0.019903261214494705, 0.05232175812125206, -0.007235531695187092, -0.008775699883699417, -0.009813711978495121, 0.035077016800642014, 0.030322469770908356, 0.048591677099466324, 0.028004823252558708, 0.02415866032242775, 0.018200116232037544, 0.022243840619921684, -0.007295079529285431, 0.028356580063700676, -0.016348423436284065, -0.008653809316456318, 0.05216805264353752, 0.03571183979511261, -0.023731360211968422, 0.03765881434082985, 0.011520886793732643, -0.012055814266204834, -0.023625826463103294, 0.03601214662194252, 0.005115816835314035, 0.033296581357717514, 0.005301269236952066, 0.05834728106856346, -0.020077485591173172, 0.005750291049480438, 0.017940746620297432, 0.04768431559205055, -0.03232509642839432, 0.0066928318701684475, -0.008315536193549633, 0.028177866712212563, 0.005953853018581867, 0.015674656257033348, 0.015163701958954334, 0.0009980973554775119, 0.025840559974312782, 0.00024043233133852482, -0.009896104224026203, -0.06945694983005524, -0.008034519851207733, -0.06221473217010498, -0.026230840012431145, -0.025711363181471825, -0.06376001983880997, 0.012878729030489922, 0.03415912017226219, -0.046697307378053665, 0.03589697182178497, 0.02237807959318161, -0.02093440666794777, -0.00661892257630825, -0.009803474880754948, 0.046959374099969864, 0.02892111800611019, 0.04924757778644562, -0.04641776159405708, 0.035805173218250275, 0.00011970971536356956, 0.012905745767056942, -0.01056668534874916, 0.003040627110749483, 0.019450068473815918, -0.029121743515133858, 0.04829791933298111, -0.056710146367549896, -0.033074475824832916, 0.009157298132777214, -0.02097790129482746, -0.061162251979112625, 0.0019416544819250703, -0.005476708989590406, -0.008271999657154083, 0.027444565668702126, -0.0282595157623291, 0.04036004841327667, 0.00024820113321766257, -0.05239279940724373, 0.04252646490931511, 0.031191132962703705, -0.03438626602292061, 0.03708089143037796, 0.03288979455828667, -0.013766220770776272, -0.039682067930698395, 0.05539850518107414, 0.05944584682583809, 0.024201808497309685, -0.003284931881353259, -0.026117729023098946, -0.033849071711301804, -0.03089536912739277, 0.01928149163722992, -0.009967402555048466, -0.05004674568772316, 0.055236995220184326, -0.004124082624912262, -0.059066034853458405, 0.026983169838786125, -0.009323997423052788, -0.033079080283641815, -0.031404800713062286, -0.03142816200852394, 0.024830447509884834, 0.022236129269003868, 0.031105495989322662, -0.015648530796170235, -0.013210579752922058, -0.0012918227585032582, 0.0467570498585701, 0.04528896510601044, 0.0031281705014407635, -0.01213433500379324, 0.04206869378685951, 0.006406109780073166, 0.004745629150420427, 0.041527289897203445, -0.0031166670378297567, -0.003987557720392942, 0.003379017813131213, -0.007840464822947979, 0.014284194447100163, 0.04657832905650139, 0.017436452209949493, 0.006513307336717844, 0.05415064096450806, -0.03573346510529518, -0.012964083813130856, 0.02159901149570942, 0.03627156466245651, 0.04185467213392258, 0.006818609312176704, 0.023738643154501915, -0.012593124993145466, -0.026095058768987656, -0.04236309975385666, 0.01610296405851841, 0.01075001060962677, 0.05806262418627739, -0.05559801682829857, 0.05904432758688927, 0.015879584476351738, -0.028997894376516342, 0.03371803089976311, -0.08001890778541565, 0.01806778274476528, 0.05922146514058113, 0.0029433309100568295, 0.051628634333610535, 0.012267177924513817, 0.0459560826420784, -0.045664817094802856, 0.00933613907545805, 0.016546929255127907, -0.013313437812030315, 0.025243563577532768, -0.021069280803203583, -0.012456361204385757, -0.02556692808866501, -0.0016306869219988585, -0.01018846407532692, -0.03478803113102913, 0.024593349546194077, -0.02063189446926117, -0.03858596086502075, -0.05095871537923813, 0.03039623238146305, -0.020171504467725754, 0.01446834672242403, -0.015974991023540497, 0.029868507757782936, 0.023641077801585197, 0.00329231983050704, 0.050207797437906265, -0.005379992071539164, 0.005525535438209772, -0.04780708625912666, 0.04051351919770241, -0.014321791008114815, -0.025888236239552498, -0.025033071637153625, -0.019784722477197647, -0.025349345058202744, 0.025527190417051315, 0.02880588360130787, -0.024392319843173027, -0.047374848276376724, 0.025588810443878174, 0.007682406809180975, -0.010236593894660473, -0.015601352788507938, -0.0034118567127734423, 0.027330884709954262, 0.038498859852552414, 0.03939566761255264, -0.055759113281965256, 0.01294531486928463, -0.03139401599764824, 0.04091373831033707, 0.05652504414319992, -0.026801180094480515, -0.017545275390148163, -0.01793844811618328, -0.04158825799822807, -0.031802698969841, 0.030167559161782265, 0.03255968168377876, -0.026438049972057343, 0.01191785465925932, -0.04574665054678917, 0.028484901413321495, 0.03469526395201683, -0.0001523320097476244, -0.007848357781767845, 0.009951011277735233, 0.02777090109884739, 0.019275033846497536, 0.021085090935230255, -0.0018223277293145657, -0.02538261003792286, 0.01893656700849533, -0.06248248741030693, 0.003919072449207306, -0.014483005739748478, -0.005130413919687271, 0.025276338681578636, 0.012850171886384487, 0.003464138600975275, 0.03412298113107681, -0.006304013077169657, 0.040313366800546646, 0.0010417571756988764, 0.017712490633130074, -0.05013780668377876, -0.006513065658509731, 0.0537138357758522, 0.014475904405117035, -0.04037945345044136, 0.03917974978685379, 0.028043251484632492, -0.008123169653117657, -0.0041670589707791805, 0.04327285662293434, -0.01264423131942749, 0.026213934645056725, -0.04306149482727051, -0.003651732113212347, 0.00513572059571743, -0.01731155440211296, -0.011036906391382217, -0.0006709667504765093, 0.030939579010009766, -0.02269732765853405, 0.006106708198785782, -0.03283189982175827, -0.05454961210489273, -0.0069964793510735035, 0.0034977130126208067, -0.011446663178503513, 0.011492031626403332, 0.015637164935469627, 0.0022352261003106833, -0.043967992067337036, -0.01098345872014761, 0.019747193902730942, -0.01827889308333397, -0.028116118162870407, 0.01883271336555481, -0.007866191677749157, 0.02701275795698166, 0.02198847569525242, -0.008491309359669685, -0.02318580076098442, 0.011894077993929386, -0.025338081642985344, -0.023212740197777748, -0.038259897381067276, -0.0020491608884185553, -0.03451656177639961, -0.02911076322197914, -0.008059270679950714, -0.004113608971238136, 0.0019499700283631682, 0.02902425266802311, 0.0030446951277554035, 0.0157949049025774, 0.025261102244257927, 0.0291876420378685, -0.04418421909213066, 0.037204496562480927, 0.03725249320268631, -0.06622615456581116, 0.0019525644602254033, 0.013465017080307007, -0.04111262410879135, 0.04160694032907486, 0.007559729274362326, 0.009088543243706226, -0.050719525665044785, -0.07158073037862778, -0.021408572793006897, -0.05013958364725113, -0.03151266649365425, -0.04924970120191574, -0.022883215919137, -0.02651333250105381, 0.02165355533361435, -0.008635908365249634, 0.00924130342900753, -0.015976030379533768, -0.05250389128923416, 0.0025836951099336147, -0.020383354276418686, -0.034736089408397675, -0.03438704088330269, -0.00329230772331357, -0.032589007169008255, 0.058548640459775925, 0.00418064882978797, 0.01740160956978798, -0.0269135981798172, -0.007673300337046385, 0.006440599448978901, -0.027100810781121254, -0.04977377876639366, -0.03163458779454231, -0.00007339769217651337, 0.01079538930207491, 0.027689944952726364, 0.001472454983741045, -0.03263046219944954, 0.06929446011781693, -0.04762896150350571, -0.004194899927824736, -0.046626873314380646, -0.02492760308086872, -0.019156677648425102, 0.01886451430618763, 0.031093915924429893, -0.024707671254873276, -0.00007888809341238812, -0.0038351784460246563, 0.04340468719601631, 0.03750251606106758, -0.026370396837592125, -0.0031616734340786934, -0.03254435211420059, -0.037976816296577454, -0.035619597882032394, 0.03161272779107094, -0.02074519172310829, -0.019927507266402245, -0.025913182646036148, 0.0015342124970629811, 0.025425422936677933, 0.006743361707776785, 0.03468378260731697, 0.04397434741258621, -0.03493759036064148, -0.02425968274474144, -0.041747596114873886, 0.04226957634091377, 0.0394221656024456, 0.0011449492303654552, 0.01517785806208849, -0.05737191438674927, -0.00007855980220483616, 0.011292842216789722, -0.031893108040094376, -0.060442373156547546, -0.02845756709575653, 0.0072653391398489475, 0.057661112397909164, 0.02868763543665409, 0.05350762978196144, -0.0028862401377409697, -0.045409370213747025, -0.04402962699532509, 0.05112921819090843, 0.015225841663777828, 0.002223528688773513, 0.050472330302000046, -0.03518451377749443, -0.021110160276293755, -0.012153721414506435, 0.004749859217554331, -0.010053840465843678, -0.022379843518137932, 0.05016903206706047, -0.01551539171487093, -0.05515763536095619, 0.019861094653606415, 0.0342881940305233, -0.05107845366001129, -0.01718241348862648, 0.007008408661931753, 0.014399511739611626, 0.00195175944827497, -0.010942363180220127, -0.009354626759886742, -0.028690645471215248, 0.002622098196297884, 0.027670014649629593, 0.005023168865591288, -0.015257952734827995, 0.06039799749851227, 0.023441463708877563, 0.04104461148381233, -0.01204338576644659, 0.022381041198968887, 0.01808013953268528, -0.020986810326576233, -0.03542667254805565, -0.022184524685144424, -0.01758936420083046, -0.001490293419919908, -0.021091362461447716, 0.021308522671461105, -0.015692858025431633, 0.006015111692249775, 0.0525057390332222, -0.004298045765608549, 0.03531653434038162, 0.0021649885457009077, -0.02517913654446602, 0.024724461138248444, -0.03419933468103409, -0.053489476442337036, -0.03264680132269859, 0.014504407532513142, 0.01770966872572899, 0.02280731126666069, -0.04049888998270035, 0.011586329899728298, 0.062241218984127045, -0.00931785348802805, 0.0007108713034540415, -0.03857986629009247, -0.030538829043507576, -0.0371008925139904, -0.05858832597732544, -0.04510176554322243, -0.016140295192599297, 0.006513590924441814, 0.026015467941761017, -0.0028257754165679216, -0.06353498250246048, -0.027695968747138977, 0.023510664701461792, -0.047359976917505264, 0.001423693378455937, -0.03609781712293625, 0.03119504451751709, -0.027417508885264397, -0.09584162384271622, -0.018802423030138016, -0.012150862254202366, -0.009533445350825787, 0.008908949792385101, -0.03121587447822094, 0.008439748547971249, -0.009735258296132088, 0.023923279717564583, 0.03710939735174179, 0.019343681633472443, -0.00919333379715681, -0.0395936593413353, 0.01568213850259781, 0.047702062875032425, -0.006633743643760681, 0.041194360703229904, 0.03584367781877518, -0.03657575324177742, 0.012176924385130405, 0.01043863408267498, -0.03674216940999031, -0.010540471412241459, 0.013415107503533363, 0.00371288089081645, 0.006198293529450893, -0.058293893933296204, -0.031437959522008896, -0.0026873406022787094, -0.05891961604356766, 0.020043687894940376, -0.026031939312815666, -0.011876136995851994, 0.011114648543298244, -0.009363739751279354, 0.02057618461549282, 0.07642847299575806, 0.019952930510044098, 0.03930019587278366, 0.0008721373160369694, 0.021151864901185036, 0.012439633719623089, 0.02651176229119301, 0.044110625982284546, 0.02748284302651882, 0.02351703681051731, 0.003293878398835659, 0.009717753157019615, -0.027821753174066544, -0.034653209149837494, 0.0381796769797802, -0.02798103354871273, -0.053826022893190384, -0.04856326803565025, -0.02871357835829258, 0.017633596435189247, 0.04190220683813095, 0.025302667170763016, -0.049750152975320816, 0.02248009666800499, -0.03209929168224335, -0.05470957234501839, 0.018008526414632797, -0.06644400954246521, -0.012175602838397026, 0.03940137103199959, 0.0005465589347295463, 0.0003586580278351903, -0.03246553614735603, -0.050174955278635025, 0.00937724206596613, -0.014986563473939896, -0.012767436914145947, -0.03408363461494446, 0.03308852016925812, -0.000995079753920436, 0.06027637794613838, 0.007945850491523743, 0.01646442338824272, 0.007385727949440479, 0.03416065499186516, -0.0574309267103672, -0.038649942725896835, 0.036882590502500534, 0.024601461365818977, 0.014627289026975632, 0.003461435902863741, -0.00831185095012188, -0.00665699178352952, 0.005954289808869362, 0.009681702591478825, 0.00034667973523028195, 0.015696708112955093, 0.007452806457877159, 0.027590636163949966, -0.0078624552115798, -0.018829604610800743, -0.02260812744498253, 0.024422049522399902, -0.03238809108734131, -0.023683255538344383, -0.02896779403090477, 0.044851385056972504, 0.02983819879591465, -0.01055552251636982, 0.0446181483566761, 0.031116636469960213, 0.04265240952372551, -0.00610981835052371, -0.022464856505393982, 0.01788630336523056, 0.029100310057401657, 0.013111847452819347, 0.042885713279247284, 0.004001902416348457, 0.019219113513827324, 0.04449198767542839, 0.015944747254252434, 0.009716838598251343, 0.017438771203160286, 0.02378152310848236, -0.010579881258308887, 0.00024300040968228132, -0.023414988070726395, 0.007820390164852142, 0.030936265364289284, -0.03294949606060982, 0.00304498546756804, -0.01246850099414587, 0.0097187589854002, -0.01425593625754118, -0.009670928120613098, 0.06010960787534714, -0.04143502190709114, 0.002436768962070346, -0.018956227228045464, 0.015937115997076035, 0.027284856885671616, 0.06523220241069794, 0.0014944266295060515, 0.028823303058743477, 0.04164382070302963, 0.029981326311826706, -0.019555430859327316, 0.05938856303691864, 0.017430171370506287, -0.016768435016274452, -0.03308795765042305, 0.01188842672854662, 0.027826594188809395, 0.006975450087338686, -0.04156872630119324, 0.013914222829043865, -0.019880544394254684, 0.024607686325907707, -0.06182735785841942, 0.007383094634860754, 0.027613965794444084, -0.026701733469963074, -0.02813650667667389, -0.06644424796104431, 0.03162720054388046, -0.026825133711099625, -0.011558773927390575, 0.01854303479194641, -0.005415645893663168, 0.0002443663834128529, 0.04908614605665207, 0.007758020423352718, 0.019432224333286285, 0.014017787761986256, 0.04754156619310379, -0.020667314529418945, 0.0051041096448898315, 0.04147610813379288, -0.04795674979686737, -0.047375913709402084, 0.007145826704800129, 0.006825339514762163, -0.057535260915756226, -0.029017213732004166, -0.024143759161233902, -0.013170002028346062, 0.004723285790532827, 0.002759058028459549, 0.0018056802218779922, 0.04186885058879852, -0.010275207459926605, -0.03939298167824745, 0.02890898659825325, -0.002191452542319894, -0.08001989871263504, 0.04347798973321915, 0.024409355595707893, 0.04325321316719055, -0.004398151766508818, -0.007612443529069424, -0.034102972596883774, -0.03781336173415184, -0.025057757273316383, -0.021282870322465897, 0.034925851970911026, -0.009330850094556808, 0.0008570989593863487, -0.037241920828819275, -0.06775101274251938, -0.019627656787633896, -0.019160548225045204, -0.045282237231731415, -0.05199979618191719, 0.05111241340637207, 0.0531250536441803, -0.00812713336199522, 0.007219122722744942, -0.02424013800919056, 0.009761858731508255, 0.035853393375873566, 0.045492760837078094, 0.005587823688983917, 0.040542829781770706, 0.050490595400333405, -0.01193943154066801, 0.014704965986311436, -0.0384734570980072, 0.05097941309213638, -0.0018337027868255973, -0.032917723059654236, -0.020874032750725746, 0.01828606426715851, -0.018679926171898842, -0.04401916638016701, 0.026693707332015038, 0.04019920527935028, 0.0034102355130016804, -0.013890925794839859, -0.08487959951162338, 0.01078709028661251, -0.05242040753364563, 0.009235361590981483, -0.049055423587560654, 0.024385282769799232, 0.03545622155070305, 0.0030724911484867334, -0.03913362696766853, -0.06657112389802933, 0.14878444373607635, 0.028130704537034035, 0.04356936737895012, 0.017995666712522507, 0.01730947010219097, 0.06179085001349449, 0.02741062082350254, 0.0028491192497313023, -0.0012131695402786136, -0.04447362199425697, 0.05430195853114128, -0.010243218392133713, 0.033521395176649094, 0.006009004544466734, 0.020465044304728508, 0.07790374010801315, -0.033919017761945724, 0.015799496322870255, 0.024618694558739662, -0.04560863599181175, -0.07994866371154785, 0.01634051837027073, 0.006783484481275082, 0.02468678168952465, -0.023106595501303673, 0.03574366122484207, 0.016992198303341866, -0.03481989726424217, -0.03874360769987106, -0.01573944464325905, 0.02190338633954525, -0.018461154773831367, 0.027810348197817802, -0.011696829460561275, -0.04288289323449135, 0.05953073129057884, 0.0024053489323705435, -0.03565483167767525, 0.018498089164495468, -0.01689244620501995, -0.023734791204333305, 0.027547886595129967, 0.03130538761615753, -0.011146660894155502, 0.04433293268084526, 0.043257687240839005, -0.04053886607289314, -0.032397277653217316, 0.015457859262824059, -0.030340638011693954, 0.054561909288167953, -0.021705739200115204, 0.007755038794130087, 0.0018300628289580345, -0.05096755549311638, -0.013291006907820702, 0.029487639665603638, -0.03645109757781029, 0.0302538201212883, 0.003548511303961277, 0.036913931369781494, 0.014446849003434181, -0.0018204462248831987, -0.014595060609281063, -0.020730694755911827, 0.010143394581973553, 0.011819967068731785, 0.018273336812853813, -0.02516745589673519, -0.021558482199907303, -0.02282731793820858, -0.013810502365231514, -0.0143643319606781, -0.021525228396058083, 0.019267790019512177, 0.04123000428080559, -0.021221401169896126, 0.012164833024144173, 0.010286890901625156, -0.04411797970533371, -0.008990023285150528, -0.04221464321017265, 0.024047527462244034, -0.013171575963497162, 0.050308387726545334, 0.046339597553014755, -0.021407725289463997, -0.04153307154774666, -0.03927631676197052, 0.036433733999729156, 0.06641407310962677, 0.025205742567777634, 0.0012768605956807733, -0.034180980175733566, 0.00045245225192047656 ]
GRAMMY-nominated record producer (Katy Perry, T.I., Mariah Carey, Gym Class Heroes). 1/2 part of production and songwriting team Bravo Ocean. Owner of Bravo Ocean Studios. Dreamer. Visionary. Strategist. Music Lover. Soccer fanatic. Amateur chef. Enthusiastic dancer. Believer in love, friendship, loyalty ...and that all dogs do go to heaven. Let's work! Big Rock Studio Technologies teaches you the art of recording so that you can make the magic happen effortlessly... We have experience with both Analog and Digital recording and can help you make your recordings come to life.
[ 0.008357116021215916, 0.02681923843920231, -0.02527991123497486, 0.006245210766792297, -0.004580057226121426, -0.01554099190980196, 0.013287723064422607, 0.03386584296822548, 0.01895017921924591, -0.004596959333866835, 0.02646263875067234, -0.0005332118016667664, 0.010074276477098465, -0.026480386033654213, -0.012792482040822506, -0.0032225283794105053, -0.03091505914926529, -0.034643784165382385, -0.02328960783779621, -0.014330162666738033, 0.00012852503277827054, -0.0157639030367136, -0.02930721454322338, -0.025129377841949463, -0.01447715051472187, 0.041651662439107895, 0.020819421857595444, 0.026436666026711464, 0.06848353892564774, 0.03796809911727905, -0.031829316169023514, -0.03881057724356651, 0.022715652361512184, -0.07638247311115265, 0.004384816158562899, -0.01138043962419033, 0.0552525520324707, -0.01823345571756363, -0.03850073739886284, -0.052744437009096146, 0.0005962455761618912, -0.01741454191505909, 0.021957019343972206, -0.036652822047472, -0.06408355385065079, -0.003472440643236041, -0.02776852436363697, -0.02825024165213108, 0.004091540817171335, -0.022941451519727707, -0.013797302730381489, 0.0039161029271781445, 0.018452957272529602, 0.03235608711838722, 0.02598671056330204, 0.006538290064781904, -0.00511861452832818, -0.007564560975879431, -0.014765326865017414, 0.03212697431445122, -0.014393283054232597, -0.012953229248523712, 0.035400811582803726, -0.07348915189504623, 0.006175386253744364, 0.02270788513123989, -0.004739501513540745, -0.04215826094150543, 0.018803633749485016, -0.01847938820719719, -0.0060799079947173595, 0.014321048744022846, -0.019782796502113342, -0.022804783657193184, -0.021401317790150642, -0.008261173032224178, 0.00027387277805246413, -0.006242020055651665, 0.0029102200642228127, -0.007390330545604229, 0.026709256693720818, 0.08142514526844025, 0.008092086762189865, 0.03196665272116661, -0.05151950195431709, -0.028503339737653732, -0.007602871395647526, 0.021308934316039085, -0.0008526020683348179, -0.004677252843976021, 0.0155996885150671, 0.05728155001997948, 0.004029132425785065, 0.00014953300706110895, 0.044033776968717575, 0.022934716194868088, -0.027401570230722427, 0.01860448345541954, -0.00881408154964447, -0.004897699691355228, 0.03287823498249054, 0.06910862028598785, 0.014481497928500175, 0.04560307785868645, -0.04427981376647949, -0.004572962876409292, 0.0077470410615205765, 0.016489028930664062, 0.005018397234380245, -0.04151682183146477, 0.007170533295720816, -0.04080463945865631, 0.023678550496697426, -0.011925052851438522, -0.004058069083839655, 0.05566565319895744, 0.010626038536429405, 0.045221392065286636, -0.06647025048732758, -0.0058547877706587315, -0.004426089581102133, 0.013486410491168499, 0.037400927394628525, -0.03507782518863678, 0.00985574722290039, -0.04973088577389717, -0.03141220659017563, 0.047417301684617996, -0.04689799249172211, -0.026788979768753052, -0.003053442807868123, -0.041898634284734726, -0.00032402557553723454, -0.0016680125845596194, 0.0005289404070936143, 0.021483570337295532, 0.00203537056222558, 0.018832894042134285, 0.00022338249254971743, -0.07467600703239441, 0.04660530388355255, 0.027308302000164986, -0.012739520519971848, 0.07992390543222427, -0.022751884534955025, 0.053529273718595505, -0.015266179107129574, -0.004343815613538027, -0.022352121770381927, 0.021692877635359764, -0.04202931746840477, 0.0067612361162900925, -0.008800841867923737, 0.04030095785856247, 0.007869419641792774, -0.01141689158976078, -0.025281261652708054, 0.008105557411909103, 0.020581340417265892, 0.02673509530723095, -0.00798817165195942, -0.0015247114934027195, -0.0003339841205161065, 0.034979768097400665, -0.025663508102297783, 0.022999456152319908, -0.0055320835672318935, -0.026064248755574226, -0.006505133118480444, -0.04039844870567322, 0.039472389966249466, -0.004129432141780853, -0.027617644518613815, 0.012236399576067924, 0.01262086071074009, 0.051749635487794876, 0.06418808549642563, 0.001956581138074398, 0.01441243290901184, 0.015779685229063034, -0.029769843444228172, -0.01834835298359394, 0.022991659119725227, 0.0783141553401947, -0.02212556265294552, -0.0023545303847640753, -0.017577091231942177, -0.012054895982146263, -0.04417114332318306, -0.006474487017840147, -0.010809513740241528, 0.03839955851435661, -0.04241269454360008, -0.0021356719080358744, -0.009883379563689232, -0.010839970782399178, -0.005540467798709869, -0.00046210462460294366, -0.034927379339933395, -0.07463880628347397, -0.01755351386964321, 0.060665734112262726, -0.042660728096961975, 0.01460640411823988, -0.030200952664017677, -0.017668424174189568, 0.011974148452281952, 0.059522438794374466, -0.052870362997055054, 0.010865990072488785, 0.0389615036547184, 0.006032854318618774, -0.024080179631710052, -0.014228797517716885, -0.026809608563780785, -0.0064963968470692635, 0.01078736875206232, 0.03574547544121742, 0.011627264320850372, 0.01349278911948204, 0.00707151647657156, 0.007729017175734043, 0.05605679750442505, 0.050377245992422104, 0.024499565362930298, 0.01682185009121895, -0.004184294957667589, 0.0404970683157444, -0.032862428575754166, -0.04060234874486923, -0.008660512045025826, 0.05018823593854904, 0.018483208492398262, 0.06274005770683289, 0.04003705456852913, 0.02201455645263195, 0.06894493848085403, 0.02586173266172409, -0.002876224461942911, 0.006776413880288601, -0.03459964692592621, 0.0002518587280064821, 0.05064598470926285, 0.023985344916582108, 0.0003991246921941638, 0.022743983194231987, -0.005863698665052652, -0.007648747880011797, -0.016979606822133064, 0.013593104667961597, -0.0038967363070696592, 0.05168581008911133, 0.03975583612918854, 0.029112178832292557, -0.04072029888629913, 0.018323857337236404, 0.038621723651885986, 0.06589718163013458, -0.028885507956147194, 0.007446098607033491, -0.017472611740231514, 0.009754358790814877, -0.027080174535512924, 0.02099456638097763, 0.05590749904513359, 0.025717947632074356, -0.032404858618974686, 0.03793652355670929, -0.013946721330285072, -0.051775652915239334, -0.0372200571000576, -0.04731985926628113, -0.029526762664318085, -0.02268245257437229, -0.011547495611011982, 0.015904702246189117, 0.04744110628962517, -0.007581240031868219, 0.0176404919475317, 0.015837088227272034, -0.020427117124199867, -0.020150411874055862, -0.017203446477651596, 0.03257935494184494, 0.009061060845851898, 0.04049376770853996, -0.033139318227767944, 0.028798937797546387, 0.007661447860300541, 0.04110289365053177, -0.03197864815592766, -0.013404511846601963, -0.022006826475262642, -0.013462945818901062, 0.017359206452965736, -0.007886293344199657, -0.006917087826877832, 0.01071405503898859, -0.06413119286298752, -0.011722630821168423, 0.028992269188165665, 0.020145820453763008, -0.017127851024270058, 0.005533562507480383, -0.049809329211711884, 0.05832413583993912, 0.011950728483498096, -0.031501322984695435, 0.05712801590561867, 0.04088044539093971, -0.053152162581682205, 0.068092480301857, 0.03321381285786629, 0.019637243822216988, -0.052796803414821625, 0.043389178812503815, 0.04008990153670311, -0.008318638429045677, -0.04504269361495972, 0.002243520226329565, 0.003472934477031231, 0.01735493540763855, -0.006581432186067104, -0.016057917848229408, -0.06263262033462524, 0.06983034312725067, 0.041507042944431305, -0.06244656816124916, 0.032223012298345566, -0.04355400800704956, -0.04352707415819168, -0.03585098311305046, -0.021424464881420135, 0.020123733207583427, 0.027440957725048065, 0.016387581825256348, -0.025191038846969604, -0.008919998072087765, -0.01048757042735815, 0.03449955955147743, 0.03322027251124382, -0.030144020915031433, 0.03501448780298233, 0.03175570070743561, -0.04900629445910454, 0.03702515736222267, 0.011785434558987617, -0.007232047151774168, -0.03156347572803497, 0.02664695680141449, -0.02437385730445385, -0.012069864198565483, 0.007352870889008045, -0.011538997292518616, 0.01914677955210209, 0.06792361289262772, -0.030368592590093613, -0.0005516738747246563, 0.03359273821115494, 0.01585511863231659, 0.02349928393959999, -0.0135840754956007, 0.016314594075083733, -0.00528836390003562, -0.04177822917699814, -0.05025852099061012, 0.01014644093811512, 0.01474374532699585, 0.03275802731513977, -0.03563637658953667, 0.04764596000313759, 0.013477189466357231, -0.05633306875824928, 0.024324607104063034, -0.06023938208818436, -0.003916244953870773, 0.031340591609478, -0.014402282424271107, 0.027088219299912453, -0.021120797842741013, 0.03171047940850258, -0.024394549429416656, -0.008566498756408691, 0.03389108553528786, 0.008352926932275295, 0.02791737951338291, -0.014044968411326408, -0.021037740632891655, 0.0004977789358235896, -0.010317386128008366, -0.01658526062965393, -0.033821940422058105, -0.00490163080394268, -0.038425806909799576, -0.04348699375987053, -0.050922684371471405, 0.025917280465364456, 0.011767201125621796, 0.025722896680235863, -0.019886251538991928, 0.036192476749420166, 0.005834184121340513, 0.017239708453416824, 0.039422620087862015, -0.026463983580470085, 0.009713415987789631, -0.045267339795827866, 0.010066935792565346, 0.027700619772076607, -0.012793551199138165, -0.018699301406741142, -0.025039177387952805, -0.04027513414621353, 0.02728033810853958, -0.005833979696035385, -0.04852190986275673, -0.013621440157294273, 0.030757145956158638, -0.03966802731156349, 0.028079312294721603, -0.0475345253944397, -0.04760625958442688, -0.02566554769873619, 0.03783578425645828, 0.011406660079956055, -0.06047607213258743, 0.008181294426321983, -0.04497687891125679, 0.06580207496881485, 0.061391592025756836, -0.023721540346741676, -0.01581532135605812, -0.015291223302483559, -0.03785648196935654, -0.016117872670292854, -0.00502904923632741, 0.04933105409145355, -0.00043957203160971403, 0.025664618238806725, -0.03882748633623123, 0.01762250065803528, 0.04037996754050255, -0.002253706334158778, -0.022979440167546272, 0.006331322714686394, 0.03138776868581772, 0.00529819680377841, 0.030594144016504288, -0.00002662379847606644, -0.04057806730270386, 0.021390147507190704, -0.06689305603504181, 0.00909362081438303, 0.022640537470579147, -0.028812196105718613, 0.003149195574223995, -0.008495082147419453, 0.0290802214294672, 0.044014330953359604, 0.020266160368919373, -0.00368139217607677, -0.008395510725677013, 0.06756473332643509, -0.033046185970306396, -0.03152216970920563, 0.04122976213693619, 0.0010887390235438943, -0.021599486470222473, 0.023329243063926697, 0.06290488690137863, -0.010298918932676315, 0.0037307627499103546, -0.006325023714452982, -0.0321408249437809, 0.0442136749625206, -0.06654253602027893, 0.004551128018647432, -0.01920655556023121, -0.03380347415804863, 0.0070091960951685905, -0.0072875116020441055, 0.032868724316358566, 0.002253730781376362, -0.021319065243005753, -0.021521029993891716, -0.05746118351817131, -0.009616648778319359, 0.01391160860657692, -0.010215221904218197, 0.012732000090181828, 0.004653434734791517, 0.006805137265473604, 0.00749345775693655, -0.03446090966463089, 0.03149586543440819, 0.01731123775243759, -0.04584922268986702, 0.019663207232952118, 0.013931414112448692, 0.010568395256996155, 0.007229320239275694, -0.01368442177772522, -0.02402348816394806, 0.018581906333565712, -0.008117792196571827, -0.007932968437671661, -0.05652916803956032, 0.020899221301078796, -0.030871868133544922, 0.017060723155736923, 0.002806912874802947, 0.02324865385890007, -0.004021297208964825, 0.013572288677096367, 0.023416021838784218, -0.009371831081807613, -0.0020341298077255487, -0.014777186326682568, -0.040593866258859634, 0.04238792508840561, 0.03583516180515289, -0.011201156303286552, -0.025977829471230507, 0.08245190978050232, -0.012530122883617878, 0.027325762435793877, -0.025195173919200897, -0.021692898124456406, -0.04104269668459892, -0.04282967373728752, 0.006949209608137608, -0.029971281066536903, -0.023454278707504272, -0.02947559952735901, -0.025140196084976196, -0.04283168911933899, 0.04539666324853897, 0.0035182214342057705, -0.009514146484434605, 0.036915913224220276, -0.021250061690807343, -0.0011099412804469466, -0.03363896161317825, -0.02170458436012268, -0.028160331770777702, 0.014976529404520988, -0.030141742900013924, 0.03307100012898445, -0.03530241549015045, 0.016842713579535484, -0.011720644310116768, 0.03962070122361183, 0.049686819314956665, 0.00373826758004725, -0.06697148084640503, -0.04444283992052078, -0.013409730978310108, -0.004780118353664875, 0.0202689990401268, 0.01606055721640587, -0.0258976761251688, 0.03899958357214928, -0.018724534660577774, 0.022878918796777725, -0.03169461712241173, -0.0016179857775568962, -0.022282849997282028, 0.00331122032366693, 0.040570322424173355, -0.006525781936943531, 0.012734443880617619, -0.03177700936794281, 0.05770086124539375, 0.052720777690410614, 0.0061581311747431755, -0.02671409770846367, -0.0325968973338604, -0.024577980861067772, -0.04987815394997597, 0.018514562398195267, -0.028018351644277573, -0.022866107523441315, -0.038062259554862976, -0.0020339388865977526, 0.02566589042544365, 0.0042035263031721115, 0.04857667163014412, 0.035301074385643005, 0.011581187136471272, -0.03131583705544472, -0.032492995262145996, 0.004621839616447687, 0.034391436725854874, -0.014578580856323242, -0.02489434741437435, -0.015990277752280235, -0.023022888228297234, -0.007432979065924883, -0.0619766041636467, -0.0465271957218647, -0.049073975533246994, -0.04275226593017578, 0.046779561787843704, -0.019432978704571724, 0.024858226999640465, -0.01673644222319126, -0.0329461507499218, -0.04608308523893356, 0.0582977831363678, 0.003957575652748346, 0.013411245308816433, 0.029987342655658722, -0.0017767855897545815, -0.019953323528170586, 0.015476676635444164, -0.0172867514193058, 0.009685425087809563, -0.04519808664917946, 0.05869358032941818, -0.0020863234531134367, -0.046737413853406906, 0.03651504963636398, 0.060047391802072525, -0.05695594474673271, -0.052025411278009415, 0.027489760890603065, -0.0019923013169318438, 0.007529089692980051, -0.04632993042469025, 0.01743360608816147, 0.017631620168685913, -0.021285440772771835, 0.007320853881537914, 0.07472116500139236, 0.008175782859325409, 0.03553741052746773, -0.009298057295382023, 0.039722755551338196, -0.03667101636528969, -0.017492184415459633, 0.031947288662195206, -0.0030756730120629072, -0.03463370352983475, -0.04972774535417557, -0.044912293553352356, -0.008269265294075012, -0.0005283938371576369, 0.018868358805775642, 0.007896862924098969, 0.01145076472312212, 0.03530584275722504, -0.0009133021812886, 0.030400361865758896, -0.0025039713364094496, 0.005915774963796139, -0.004879166837781668, -0.047386422753334045, -0.06536079943180084, -0.041522376239299774, 0.021810360252857208, -0.009306431747972965, 0.010608588345348835, -0.060329142957925797, -0.028912285342812538, 0.02720591053366661, 0.012636774219572544, -0.0034693360794335604, -0.043136607855558395, -0.024291399866342545, -0.029621077701449394, -0.03962383791804314, -0.028523268178105354, -0.020440300926566124, -0.005461008287966251, 0.013016105629503727, 0.04803179204463959, -0.028266802430152893, -0.0014868491562083364, -0.018744943663477898, -0.020324483513832092, 0.004537527449429035, -0.02841792069375515, 0.0349617563188076, -0.02243914268910885, -0.018991190940141678, -0.0559026300907135, -0.0056073772720992565, -0.037725865840911865, -0.0023182949516922235, 0.005273210816085339, 0.009318128228187561, 0.0037210213486105204, 0.036411017179489136, -0.009602299891412258, 0.013735741376876831, -0.011042327620089054, -0.04612487927079201, 0.0012362163979560137, 0.04227655753493309, -0.010778569616377354, 0.05175967514514923, 0.034356482326984406, -0.03246712684631348, 0.03482070192694664, 0.012562846764922142, -0.03596915304660797, -0.010482017882168293, 0.013841238804161549, -0.010237358510494232, 0.0411774143576622, -0.03222416341304779, -0.028269832953810692, -0.0018439064733684063, -0.04305442422628403, 0.04709579795598984, 0.032163698226213455, 0.013269779272377491, 0.01607488840818405, -0.005051378160715103, -0.019232632592320442, 0.07755950093269348, -0.0251872967928648, 0.03473522886633873, 0.004303714260458946, 0.027177339419722557, 0.015487678349018097, -0.013331117108464241, 0.038579005748033524, 0.04503273218870163, -0.00012067208444932476, -0.023516763001680374, 0.0018077236600220203, 0.013936043716967106, 0.0016278560506179929, 0.024142125621438026, -0.03708170726895332, -0.03645794466137886, -0.04479612037539482, -0.0449383519589901, 0.02842165157198906, 0.04125189781188965, -0.026134653016924858, -0.019812220707535744, 0.0035192423965781927, -0.035732463002204895, -0.018975822255015373, 0.02148023433983326, -0.07309402525424957, -0.025272183120250702, 0.038011278957128525, -0.009200838394463062, 0.006018347106873989, -0.025320492684841156, -0.008702359162271023, -0.030383821576833725, 0.021447336301207542, -0.005054911598563194, -0.05872774124145508, 0.043479979038238525, 0.01826460473239422, 0.015554872341454029, -0.0032235444523394108, -0.012374096550047398, 0.006274520885199308, 0.05063522979617119, -0.03143581002950668, -0.03134419396519661, 0.02340490184724331, 0.043884120881557465, 0.015161082148551941, -0.0153550636023283, 0.018842415884137154, 0.01208589132875204, 0.005849594250321388, 0.0010758471908047795, -0.01224090252071619, 0.03490009531378746, 0.031896140426397324, 0.025095460936427116, 0.02373986318707466, 0.03901199251413345, -0.024014612659811974, 0.05305015668272972, 0.01576416566967964, -0.009206360206007957, -0.012028781697154045, 0.02806703932583332, 0.0047928947024047375, -0.020113147795200348, 0.04287981986999512, 0.021082837134599686, 0.057416971772909164, -0.012242855504155159, 0.037004489451646805, 0.007299845106899738, 0.06725378334522247, 0.03496851027011871, 0.03656630218029022, -0.045194536447525024, 0.02879001945257187, 0.05213295295834541, -0.011810582131147385, -0.007102909032255411, 0.03465167060494423, 0.054201170802116394, -0.07630912214517593, -0.016554808244109154, -0.009398622438311577, -0.005627784878015518, -0.0012031090445816517, -0.017897726967930794, -0.005622877739369869, -0.01052631251513958, -0.028624199330806732, -0.02232741191983223, -0.022046511992812157, 0.03379349410533905, -0.00379171478562057, 0.009189821779727936, 0.01353488303720951, 0.0005082977004349232, -0.021208640187978745, 0.022900065407156944, 0.015952173620462418, 0.0036768591962754726, 0.05322204902768135, 0.03768501058220863, -0.009943440556526184, 0.043751493096351624, 0.010496584698557854, 0.027550840750336647, -0.012807834893465042, 0.023965071886777878, 0.03460593894124031, -0.01416798960417509, -0.038492754101753235, 0.010378612205386162, -0.04110712930560112, 0.03403754159808159, -0.016700921580195427, -0.040899608284235, 0.03682617098093033, -0.0380592979490757, -0.020524073392152786, -0.05995991453528404, 0.030305633321404457, -0.049570124596357346, 0.0012227013939991593, 0.026313625276088715, -0.0010930305579677224, -0.034041743725538254, 0.04685063287615776, 0.00654562609270215, 0.024509189650416374, -0.0018035928951576352, 0.06487582623958588, -0.013824636116623878, 0.0331653468310833, 0.041815709322690964, -0.05337802320718765, -0.007913129404187202, 0.03138062357902527, -0.0701858177781105, -0.04753066971898079, -0.019795596599578857, -0.05441149324178696, -0.0004385024367365986, -0.004183166194707155, -0.021747034043073654, 0.005743357352912426, 0.05536189302802086, -0.019557377323508263, -0.03689594194293022, -0.00009731513273436576, 0.04434337094426155, -0.030539151281118393, 0.014833067543804646, 0.016444839537143707, 0.03590629622340202, -0.000228540797252208, -0.019636986777186394, -0.010743328370153904, -0.02429889142513275, 0.028918687254190445, -0.041278526186943054, 0.007828096859157085, -0.018806826323270798, -0.039799030870199203, -0.04416444152593613, -0.04709518700838089, -0.0398910753428936, 0.0010236786911264062, -0.02280750684440136, -0.04906178638339043, 0.04306347295641899, 0.06500480324029922, -0.005791499279439449, 0.004000443499535322, -0.037681419402360916, -0.01077564898878336, 0.04798928648233414, 0.07969444245100021, 0.0003501947212498635, 0.0600808821618557, 0.04598153755068779, 0.01740669645369053, 0.011528427712619305, -0.026628879830241203, 0.006367065012454987, -0.014706535264849663, -0.010261500254273415, -0.015584527514874935, 0.03421095386147499, -0.028855590149760246, -0.05724656954407692, 0.021970294415950775, 0.02157096192240715, 0.024438653141260147, -0.043912336230278015, -0.06324674189090729, 0.018509605899453163, -0.06926999241113663, -0.04302409291267395, -0.02541247382760048, 0.025858569890260696, 0.008888239972293377, -0.02261964976787567, 0.0009000127320177853, -0.04447329416871071, 0.1341947317123413, 0.019112328067421913, 0.013316381722688675, 0.020152028650045395, 0.018857760354876518, 0.03849472105503082, 0.03739694133400917, 0.015359006822109222, -0.00891367718577385, -0.044291090220212936, 0.049553919583559036, -0.00975706148892641, 0.012987936846911907, -0.011479093693196774, 0.0049963747151196, 0.04778124764561653, -0.014238176867365837, -0.01514506433159113, 0.016952579841017723, -0.05568308010697365, -0.059719253331422806, 0.023975452408194542, 0.027540864422917366, -0.0056862966157495975, -0.006542668677866459, -0.008083331398665905, 0.018625488504767418, -0.015997491776943207, 0.007461857050657272, -0.008907369337975979, -0.007040690165013075, -0.020313290879130363, 0.051452767103910446, -0.048545703291893005, -0.01132403314113617, 0.04736390337347984, 0.003882355522364378, -0.02575572207570076, 0.011752264574170113, 0.0153097715228796, -0.010489163920283318, 0.009731083177030087, 0.01373887900263071, -0.030309520661830902, 0.0054411571472883224, 0.025107085704803467, -0.050494980067014694, 0.013415968976914883, 0.02047698386013508, -0.044931504875421524, 0.0572054460644722, -0.0319787934422493, 0.04405954107642174, -0.013409968465566635, -0.019992314279079437, 0.03678856045007706, -0.026861879974603653, 0.0028475699946284294, -0.029748650267720222, 0.014163944870233536, 0.02830955758690834, 0.01271889265626669, -0.027328098192811012, 0.02451208047568798, -0.023771369829773903, -0.0025837814901024103, 0.014158336445689201, 0.005850593093782663, -0.04356764256954193, -0.04207787662744522, -0.012225087732076645, -0.01547353807836771, 0.003310252446681261, -0.0322146974503994, 0.02975534461438656, 0.041602276265621185, -0.00399075448513031, 0.06622537225484848, -0.0027276184409856796, -0.005524768028408289, -0.01962144486606121, -0.017854316160082817, 0.047024115920066833, -0.0014742000494152308, 0.040929876267910004, 0.016934510320425034, -0.029045863077044487, -0.03254996985197067, -0.028682172298431396, 0.05922480300068855, 0.07800832390785217, 0.02216091938316822, -0.035102151334285736, -0.008627668023109436, -0.01977573335170746 ]
Choosing the livelihood doesn't mean settling. You desire an excellent and attractive resume if you should be asking for employment to get a cosmetologist. Moreover, an cosmetologist's job won't ever cause you to feel tired. You may possibly want to speak using them all daily In the event you have the job. Finally you realize having the fantasy occupation. You ought to bear in your mind your resume could capture interest During the time you're trying to obtain employment. You might find a job at Walmart here! Be certain you list what you have completed in a job or in school in order for the employer is aware you've skills that are true. All industrial art jobs available on the market. Predicated on the person, particular work can be very good outlet for creativity. Then, the actual work commences. Working in the sweetness company is really actually a dream occupation for several because it has an opportunity to exploit creative electricity and get paid for it. After you wind up looking to get work, you certainly must do remember your restart could capture focus for 1 minute of 2. Like businesses that are diverse food occupations can be complete instant or in your free time. Of being a real cosmetologist, Even the Resume Samplesjob requires having a fantastic deal of knowledge and also training. Grasp cosmetologists are likely to detect a more steady increase of job opportunities contrary to the overall public during the next decade because of a greater interest in decorative augmentation. It will be possible that you get a look in the sample cosmetologist resume. Cosmetologists who've visited beauty school are preferred for entry roles, therefore be sure that you include your instruction. You'll find a large amount of attainable staff searching for openings, and also a number of chances waiting for the proper prospects. There are a number of different job chances to get a licensed cosmetologist that it might earn an individual's mind spin. You are able to incorporate your practical experience at which you functioned how long in addition along with a devotion and expand your company. Spending some time in a salon sweeping hair up will reveal that you just know something about how the business works and that you're prepared to do any such thing to be effective in your organization. The most first thing you are going to have to focus with is creating a resume whenever you're in demand of function. It is possible to also look at Application Utilities. It's possible to conveniently locate templates on line, that will be able to help you in creating a receipt. You are going to be capable of by using a cash receipt template to help you with this specific and the reason they paid it, Once you are attempting to help some body remember. A reception template has features that might be very acceptable for a broad range of businesses. The money receipt template will learn the factual statements about a transaction. Club application form templates might be properly used by numerous clubs for carrying details of all the membership candidates. To create a account, it is recommended to analyze samples that are free and templates as you can to grow the amount of one's knowledge of resume writing. To make an extremely very good profile, it is prudent to research as trials and themes as possible to improve the thickness of your own familiarity with resume composing. If your positions were directly linked to the location you're searching for, then you're going to want to begin together with your own position . Normally, subsequently start with probably the experience you have got to the position open and arrange your own information which way. Thus as soon as you fill out an application for a location, be sure that your abilities are emphasized correctly on your resume. Customize your invoice whenever you employ to have yourself a Cosmetologist position. You need to go for this In the event you feel an object is able to assist you communicate your value better. Writing an effective resume isn't too much! Your entrance level cosmetology restart can make a difference in whether you receive function. The very most useful approach would be to evaluate your own present quantity of knowledge and qualifications and then apply to tasks at which your strengths will probably stand out. In the resume sample, you want to state expertise and your own skills . Don't forget your capabilities can not be written by you they need to truly have a base that is fantastic. You are going to wish to condense your own skills and adventures to the ones which are about the location where you're employing. In order to safeguard your own claim whatever things that you can certainly do , you need to learn concerning hereare a couple pointers for things you can do. What is the ideal way for forward for the declare if this is true. If youattempt to learn as you are going through the process, and've never had a personal accident maintain ahead, it is exceedingly challenging to outsmart those professionals that do it. The place where there is an injury claim demanded, a plaintiff is going to question. There are several sorts for example all out of auto accidents and slip and fall promises to harms brought on by inappropriate medical treatment given by means of a health care supplier. They have been far more easy once the party has sufficient insurance plan. Accidental injury claims retain a typical statute of limitations of 2 decades or less, dependent around the specifics of the circumstance. You are in a position to change relocate and banks resources, if you're mindful of the suit. So once a litigation is filed for by you, ensure the situation is fresh as the brand new the circumstance, the greater your assortment of harms that are observable witness statement along with accident position thought. Thus that you recognize a lawsuit may be filed for by you, it will become important that you find yourself and monitor the facets and wherever your position stands. Throughout the consultation, the lawyer will chat about legal decisions, injuries, and your own crash. So it is usually recommended to take your trauma attorney given that they've got good negotiation skills that they can socialize with them superior in relation to you. You need to find a personal injury attorney once possible following your injury attorney. Your own situation will be managed by our attorneys from beginning to end and there's never a charge unless we repay your case. Possessing a personal injury attorney that is expert and knowledgeable representing you can considerably improve your odds to be compensated. It's your injury attorney that is Newton along with your decision to comprehend that the mistake . In the event that you need an attorney, you may wonder, or you could possibly worry about the price tag. Legal counsel might reach specialty in certain areas including offense, animal welfare, individual bankruptcy, insurance, and so on. A personal injury lawyer can offer a demanding estimate regarding the worthiness of an instance. He will review documentation, circumstances and instance info to determine proof damages resulting from the flaw in whole or in part. Currently , there is a good deal of myths within your own personal injury case and also some which ways you need to go without even the following through it. Personal-injury cases can get complicated if not dealt with in time, even also , even just a exact simple instance can prove to be troublesome having a ridiculous mistake so that it's best that you just hire Newton injury lawyer who'd make sure you never create the incorrect alternative. There is still a coughing existing if you're qualified for a litigation or its nothing Whenever you believe you've got a personal injury instance. Assortments of accidents can cause wrongful loss of life. No matter how injured you will feel following a episode, once you've finished addressing authorities as well as witnesses, you need to look for treatment. When you are in a crash, then it's way too important to become attentive to the steps that you ought to take after having a crash, usually covering an injury case is simple, you should undergo plenty of documentation. If you accountable for the injuries, you may possibly be granted reimbursement. some other physiological injury which might be brought on to your employees it covers Additionally. Whether there are injuries as a effect of the crash, then you can count on a stunning rise in expenditures, even difficulty and perhaps lost time from work on account of the injuries. This type of harm can be really a foreseeable consequence of the driver's activity. Turning into part of the mishap and Receiving accidents major or modest kinds is extremely prevalent nowadays. Your company must improve the price tag on your own maintain In the event you have no general liability insurance. Standard Liability insurance plan policies is basically utilized by businesses that have the chance of being sued by their own clients because of deficiency of performance of solutions. A general liability small business insurance, together with all the person, may be regarded as absolutely the most fundamental kind of company insurance plan coverage , and that every firm operator should purchase. For your design resume to shine, you will need to take into account which it's supposed as well as what's prepared. You have the ability to take a whole look at some layouts on my own website. You prefer to get ready when you become designer of a job opening to ship your style. The style should continue staying delicate enough so it doesn't distract, but as an alternative enhances. When studying howto create a graphic design resume, it's vital to try to keep in mind the easy truth that the possible employer is very likely to present your resume a speedy appearance to learn what exactly makes you different in dozens or hundreds of different applicants who compete to receive the same location. You may look at a few of the best designs. A developer may be qualified in Photoshop, but that does not imply that they are still creative. A movement graphic designer resume should incorporate the proper picture designer project description and also the above template will be able to let you acquire the description according to your requirement. Inspite of how there would be a graphic designer resume only the first crucial step up landing your fantasy posture, it . You have the capability to test other picture designer hints about internet web sites to locate a thought of credentials to market. Time Management artists are continuously currently juggling several projects. They need to understand howto create kind that is legible, well-designed. Creativity graphic artists have to be innovative thinkers. Every designer should have a superior comprehension of typography. In case you would like to really be a internet designer, then you should highlight the online design job you do rather than spending tons of time to the deadend job you want to ditch. Designers may understand including the Adobe Create Suite is a fantastic starting place. The net has the decision to provide you satisfaction when it's to complete with all the group of designer resumes regardless of whether you're on the lookout for fresher or experienced designer resume. Technology Graphic designers have to understand various sorts of technologies in the world that is . Your website is the place to fairly share what employers need to view personally in a way that's right for your style and requirements in the you. Keep in mind that even though fostering design can seem amazing, it could easily be overdone, which could bring to use internet site. Several sites supply you with complimentary resume templates. Designing sites is an massive high due to the fact I really like visiting my customers' responses. Personalizing your resume is so as to raise your chances of securing an interview which you could do. Your resume or CV may be. Resumes have gotten popular, when completed 14, plus they can be effective. That you simply are able to create without a design experience whatsoever, take a peek at our Powerful Resumes web page, In the event you prefer to view resumes made using Enhancv. Thus it is required to get a method to generate your resume stick out from tons of unique resumes, specially if you're in design. Samples will be the ideal means to understand what will be expected of you when it has to do with resumes for graphic designers . There really are a range of tactics to generate your resume much a lot more intriguing and grabbing any occupation you desire. The majority of as soon as, whenever you submit an application to get work, your resume will probably want to get followed with a covering letter. Start with listing a number of the skills the job posting necessitates. The sample jobs may pay a visit to the sample style exactly the best. You need to make lots of resumes, each targeting a certain role and the type of skills and expertise the future employers would like to purchase if you should be using for a number of jobs. Even whenever you aren't actively on the lookout your resume would be quite a piece of one's digital portfolio. Needless to say, each job will probably telephone for adventures and various skills, so be sure you examine the task description attentively and pay attention to the relevant skills listed by the company. You are going to become landing that fantasy design occupation in almost no time. Adhere to a conventional list or bullet tip structure to underline the skills you've got, and also only leave out the ones that you don't. Communicating skills are essential to the occupation. What knowledge produce a designer designtaxi what abilities make an outstanding designer. It is a more customary skill for designers, but it essential. To give a personal touch to it, be sure you write the letter on your words. Writing one is easy and quick After you comprehend the six aspects of an organization correspondence. An organization letter could be ordered per techniques. It's an official letter that's six components that are specific. Whenever you're trying to seek out information or assistance A letter of petition should really be written. The contribution request letter should be at a posture to draw on a graphic of this origin that you are related to. The format of this correspondence is dependent upon the heart of also the person as well as the situation who you're inviting. The format for business letter writing can be really a little different here in terms of how in which the info is presented, so make sure to review business letter. Having a large selection of correspondence writing templates readily available, you may use. It is very important to comprehend the structure of an organization letter, or so it is read by that the receiver takes it badly. It's important to maintain a structure of closing the correspondence. You should have Elegantly Framed Clipboard formats you can customize readily based on your letter's requirement. Letters are distinctive and unique. They permit one to say things that are embarrassing or way too awkward to say inperson. Do not neglect to use transitions for your letter reads easily. As you are ready to make certain the correspondence is composed by you as professionally. You need to begin considering exactly what things to include in the waiver letter Prior to starting to compose. A very letter follows a bunch of tips. The correspondence may arrive for the punctually and allow you to obtain instantaneous response. In the event of the company Writer letter, then you need to begin the letter using a accountable into the offended party. Beneath, you may discover our letter. Commonly, an official letter is brief and has just a handful principal body sentences, but in the event that you want to investigate of a string information it will be potential to include it all in the body, then disperse over a few paragraphs. Writing an official invitation letter will be indeed simpler compared to casual kinds. Utilize brief headings or bullet points to create the letter more straightforward for read. Letter writing etiquette is still vital from the world of conversation. At case of a correspondence that is private or friendly, you have to focus on a sorry. In addition, a friendly correspondence should be all written from the ideal format that sentences are not jammed right to an formal design. It is a sort of correspondence that is personal, therefore it is not important how you produce it. So now you're aware of how to get started creating a favorable correspondence. You will deliver out a hand written friendly letter as it is going to boost the personal touch. The important subject of the letter contains the message, the main reason why supporting the correspondence, and also some other related or even irrelevant info. You'll find two types of question letters. While producing a letter to your own warrior isn't challenging, you're definitely going to want to create it in order for your pastor knows it and can shoot actions that is suitable. The secret to composing a letter that is prosperous is to stick to the proper format, which is clarified in those methods. A political fundraising letter is written by means of an undercover candidate to his pals and family relations. Provide a review of the points you're going to be generating at your letter. Hence, it's very vital to comprehend how exactly to compose a correspondence that is readable and distinct. Letter writing template is actually an fantastic correspondence which you're able to utilize to position your thoughts into exact and apparent words. The correspondence must shut . If you're writing the correspondence as an alternative to typing, ensure that the handwriting is clear and legible. The correspondence is going to be filed on your employees file, to which you are not going to need entry, Hurwitz clarified. There are. A cover letter could possibly be and you also need to become sure you produce a great perception. For you to convince someone to hire one, given a cover letter ought to be no longer than a full page , it has a space that is relatively confined. A resume employment cover letter that is mediocre can perform more harm than good so make sure your resume cover letter is. Customizing your cover letter The correspondence should be published dependent on the company's requirements and wants. The resume cover letter is a step of the task application processto discover work. Why you personally, across the remaining part of the applicants, are all worth carrying the opportunity to discover more 24, A great cover letter points out. In the event that you'd like to get cover letter AND a resume, then you must work about it's hard. Cover letters might still be a true pain to produce. A cover letter is comprised in case you're passing your resume to employ to get work. Producing a cover letter is much simpler in the event you own helpful information. Remember, you're unlikely to rewrite the cover letter! Protect letters are incredibly critical on your work search. The thing with a resume cover letter is to make certain that it is speech into a personal. Normally a correspondence containing a number of short sentences, the cover letter is before your manuscript's first page when you are mailing your submission. So that you almost certainly want to understand howto generate a resume cover letter stick . The resume cover letter is the manifestation of your personal sincerity regarding your intention into this company. When requesting the ideal solution to make the manner stands out from is to ensure it's private. To assist you structure your cover letter, following is a template containing instances which raise your likelihood of receiving a scheduled appointment and also you may use to impress hiring recruiters and managers. It can be challenging to replicate the record all if you are mailing a letter dealing together with a envelope out. A whole good deal of people assume a pay letter is about you personally. There is A resume cover letter one of the utter most important matters that you want to make as a way to grab the eye of your prospective business. Then you need to download a template out of the web that will aid you, if you're unsure how to begin with writing a cover letter. In the event you are feeling stuck about how to begin with, templates may be kick start newcomer. Once you've got a restart template, you still don't need to worry concerning specifications. Templates have guidelines on what things to publish about that site. The coverletter template's previous section will even state that you simply desire a meeting. You may discover several cover letter templates on line. The correspondence is currently offered to the man that includes a say on those who find themselves hired. Pay attention to exactly what you desire your correspondence Just before you begin. Just alter it will appear considerably more private. The employment cover letter is the toughest facet of of the application form procedure. It's first thing that employers will consider at. You can decide on your pay letter to temporarily explain the reason you are browsing for parttime job. You're able to use a pay letter for industry program or entirely any national it is likely to fax or email. The templates are all helpful as it will let you create a resume that is specialist once that you don't have the idea about formatting an customized restart that will comprise the vital advice. You have the ability to pick your preferred template and continue on with workout. Constructing a own template can be wise. A resume cover letter is not planning to resolve your problems. With all the aid of the template you're going to be in a position to come up with a resume that is flawless. You are going to observe there is a instruction in a type of a correspondence which you need to 24, when you download the template . A cover letter template will provide you with a complete the blank format you may employ to produce your own personal correspondence to send together along with your resume whenever you submit an application for work. It permits one to have a better idea. Customizing the template is very important! Employment cover letter templates are put to use with women and men that would like employment for decades. A cover letter template will direct you towards composing the cover letter that is ideal to discover that much sought after appointment. In the event you take advantage of a cover letter template, fundamentally you could need to supply are the advice. A template may incorporate. What with resume cover letter template is it could confuse your employer that is possible. You might be ready to track down a lot of cover letter templates. Such templates are provided a format and also afew of this articles elements which are needed from resignation letters. Although created for Excel, these templates are at present able to be downloaded as Word documents. It will be possible to use templates of suggestion correspondence for ways to save lots of your time and energy. The employee resignation letter template can be an normal resignation letter which contains a letter template which could be employed by any employee. Several of the negative resignation templates are designed for folks that are leaving their jobs bad terms. It's necessary for you to put it to quit your work properly. It's true, you are habituated in the job, which means that your resignation letter ought to be medicated as with almost any other parcel of organization correspondence. It is beneficial should you need to start your occupation once potential. My project is going to be a pro motion that will possess a lot of problems, but in addition. Accepting a heat of the moment resignation may possibly have a detrimental influence in your firm. From the human anatomy of this resignation letter, you may wish to explain the reason behind your resignation. At the same point that you may concern a verbal resignation, it's nonetheless excellent practice to write an official letter of resignation, plus a couple companies will nonetheless require one. The letter may easily be sent by electronic mail or mail, though, a notice that was delivered is thought to be absolutely the absolute most professional ways. A touch of resignation can be a letter which may be utilised in exit scenarios. It's a good concept to recognise what you oughtn't put into a in depth resignation letter. It's important to compose a terrific resignation correspondence for many factors. The sort of correspondence is intended to demonstrate appreciation and admiration . A more retirement hint begins with a formal declaration that you if followed closely about your career so will resign. This kind of letters are formally drafted and have to abide by the perfect format. Whilst to save your own time, there are letter of advice templates which you can choose from. The correspondence therefore must be quite succinct as well as guide. The correspondence of resignation is truly a formal letter, which can be also a powerful standard document for use legally at the event. Your own resignation letter will be held on record, so be sure that it's really a testament to your professionalism and maturity. A normal resignation letter is to ensure to a employer you'll be departing. The teacher skilled resignation letter to template in PDF is utilized by educators trying to step out of their occupation to retirement's use for a teacher out of faculty. You could give a succinct statement describing your decision. Statement of intent has to be . A resignation letter is always to let the firm know you're very likely to depart from. A letter of resignation can be an record that might be used in most depart situations. Sample resignation letter you will follow's form depends largely on your own personal situation, and also the amount of notice you're in a position prior to making the current host to occupation to give. Being a consequence, it really is sensible to go through the sample letters to come across a comprehension of a resignation letter should be written to create the process simpler and faster. For obtaining the thought of how precisely you have to create a resignation letter you ought to utilize the sample resignation letters. If you are all set to operate on your note that is complete you definitely will want touse the template. Seek advice from the hospital's occupation plan to learn how far in progress as it is going to alter to the following, your notice should be given. If it is given too far beforehand, you can run the risk of being let it go , as is your company's best. It really is well worth considering why you're handing on your note at the first spot. Possessing a resignation request isn't a requirement. In the event that you choose, you will have the ability to enter details concerning why it is that you might be leaving your job as well as the direction you would like to help out transition or you intend to take care of the rest of work out.
[ 0.006298130843788385, -0.013914606533944607, -0.019890544936060905, -0.016023868694901466, -0.03345654159784317, -0.023091230541467667, 0.017285354435443878, 0.012117056176066399, 0.01839045248925686, 0.022187549620866776, 0.05686818063259125, -0.012181284837424755, 0.023345544934272766, -0.026679370552301407, 0.02114025503396988, -0.002887582639232278, -0.014281725510954857, -0.02660864219069481, -0.03541451692581177, -0.013802945613861084, -0.003067153273150325, 0.001086725853383541, -0.02372191660106182, -0.03292795643210411, -0.04313400015234947, 0.03428949788212776, 0.0198421198874712, -0.00798294972628355, 0.04691527038812637, 0.06790085881948471, -0.042316734790802, 0.0052176169119775295, 0.03294229134917259, -0.06004495918750763, -0.021790778264403343, -0.008956016972661018, 0.02275889366865158, -0.06290102005004883, -0.0035056460183113813, -0.056886620819568634, 0.0020681340247392654, -0.025333471596240997, 0.027772532775998116, -0.04812372475862503, -0.028810445219278336, 0.0022933955769985914, -0.03953949362039566, -0.023378703743219376, 0.015101943165063858, -0.05117912217974663, 0.011820797808468342, 0.012290284968912601, 0.011827945709228516, 0.025872625410556793, 0.010810013860464096, 0.008498553186655045, 0.03804032877087593, -0.0016385281924158335, 0.009244227781891823, 0.02920326590538025, 0.009444182738661766, 0.024643195793032646, 0.018466832116246223, -0.041156500577926636, 0.00946362130343914, 0.024502050131559372, 0.0033792085014283657, 0.01796901971101761, 0.013787065632641315, -0.01919602043926716, -0.015122653916478157, -0.014357120729982853, -0.006235430017113686, -0.015282330103218555, 0.003787009743973613, -0.03387385234236717, 0.0010227853199467063, -0.020282922312617302, 0.030474362894892693, 0.009409054182469845, 0.007925138808786869, 0.01933576911687851, 0.020421598106622696, 0.016198722645640373, -0.04721358045935631, -0.014693648554384708, 0.02152598649263382, 0.026690345257520676, 0.05405379459261894, 0.001044793170876801, 0.008793230168521404, 0.044896285980939865, -0.020332319661974907, -0.004484009929001331, 0.01738252490758896, 0.03927311673760414, -0.023609580472111702, 0.05155458673834801, 0.029382770881056786, 0.002311571966856718, 0.015962887555360794, 0.03200523555278778, -0.0044431863352656364, 0.04184482619166374, -0.04759882390499115, 0.00006869209028081968, -0.030817324295639992, -0.007000301033258438, 0.006574959494173527, -0.01914198510348797, 0.0021142507903277874, -0.025293733924627304, 0.02006935141980648, -0.006060366984456778, -0.01419670321047306, 0.07754448801279068, 0.024671779945492744, 0.027908645570278168, -0.00046742300037294626, 0.02007066085934639, -0.00409217644482851, 0.028018804267048836, 0.044510263949632645, -0.039835959672927856, 0.028535284101963043, -0.03611500933766365, -0.02842092327773571, 0.057468485087156296, -0.03978412225842476, 0.000804212992079556, -0.004972165450453758, -0.0344894602894783, 0.008131470531225204, 0.0027517008129507303, -0.007805664092302322, 0.01933283358812332, 0.016262555494904518, 0.0396307148039341, -0.015318506397306919, -0.05946696177124977, 0.020392565056681633, 0.041322190314531326, -0.008319888263940811, 0.08966485410928726, 0.006199705880135298, 0.0037203184328973293, -0.0012364843860268593, -0.002292906865477562, -0.033538177609443665, 0.01846538670361042, -0.022693535313010216, 0.017744503915309906, -0.00251773651689291, 0.0102940509095788, -0.015857044607400894, 0.0006127236993052065, 0.010876676999032497, 0.017976241186261177, 0.013750535435974598, 0.03387128561735153, -0.01711517944931984, -0.002264725510030985, 0.004959932528436184, 0.04112999513745308, 0.01653398759663105, 0.023810073733329773, -0.0003716839710250497, 0.013203298673033714, -0.013717313297092915, -0.03913091495633125, -0.00640153931453824, -0.005439305678009987, -0.01988464966416359, 0.006196662783622742, -0.00845511257648468, 0.034197304397821426, 0.03596993535757065, 0.013182822614908218, 0.012327970936894417, 0.037337999790906906, -0.0694761574268341, -0.03654257208108902, 0.005163408350199461, 0.08411556482315063, 0.010308511555194855, -0.03716997057199478, 0.020637569949030876, -0.051922280341386795, -0.007176832761615515, -0.03572672978043556, -0.024721084162592888, 0.05203962326049805, -0.013888047076761723, 0.03800307959318161, 0.01697169989347458, -0.01538813952356577, -0.0068407924845814705, -0.006093781441450119, -0.016309829428792, -0.05921657010912895, -0.017021136358380318, 0.05457210913300514, -0.04288514330983162, 0.03556515648961067, 0.016097528859972954, -0.014295714907348156, 0.012098543345928192, 0.06235070899128914, -0.04820847138762474, 0.02244456484913826, 0.01737639494240284, 0.01845196634531021, -0.01432469766587019, -0.04553496465086937, 0.01221134327352047, 0.0029748352244496346, -0.018063263967633247, 0.06027539074420929, 0.020645741373300552, -0.023412469774484634, 0.02917088381946087, -0.006163899786770344, 0.033993206918239594, 0.025817666202783585, -0.014039326459169388, 0.016306141391396523, 0.014944039285182953, 0.0210890956223011, -0.005621957592666149, 0.014441438019275665, -0.0313572883605957, 0.05824596434831619, 0.03555469959974289, 0.03601411357522011, 0.03387722000479698, 0.013389905914664268, 0.03456016629934311, 0.06233614310622215, 0.015869010239839554, 0.028221020475029945, 0.0009082711185328662, 0.027922548353672028, 0.04877414181828499, 0.02931820973753929, -0.017329510301351547, 0.03260047733783722, -0.022834589704871178, -0.013167665340006351, 0.008764408528804779, 0.05146497115492821, -0.01622462272644043, 0.0637301430106163, 0.016610195860266685, 0.06482966989278793, -0.05118187144398689, 0.0038890517316758633, 0.04339015111327171, 0.07733499258756638, -0.007564069703221321, -0.03936435282230377, -0.015628254041075706, 0.01441474724560976, -0.0077759986743330956, -0.00985504686832428, 0.030084237456321716, -0.006901144981384277, 0.006420890334993601, 0.044153206050395966, 0.007368437945842743, -0.03776254132390022, -0.03229936584830284, -0.049819063395261765, -0.05353079363703728, -0.030710391700267792, -0.03201746195554733, 0.007173806894570589, 0.028183674439787865, -0.036339059472084045, 0.058902718126773834, -0.011697064153850079, -0.03216473013162613, -0.01201708149164915, -0.007189114578068256, 0.02706483006477356, 0.008766376413404942, 0.020833825692534447, -0.024815097451210022, 0.01880185306072235, -0.00032067042775452137, 0.061937738209962845, -0.016898276284337044, -0.0377010814845562, -0.021600114181637764, 0.0024774211924523115, 0.030063701793551445, -0.006497550290077925, 0.0017574322409927845, -0.015569731593132019, -0.05003751069307327, -0.06014390289783478, 0.0049780202098190784, -0.0042325942777097225, -0.021581605076789856, -0.01742974855005741, -0.0038915579207241535, 0.039898037910461426, 0.021253196522593498, -0.03348182886838913, 0.02773117646574974, 0.04721317067742348, -0.0454329214990139, 0.026248987764120102, 0.02022964134812355, 0.007419834844768047, -0.02909098193049431, 0.04747195541858673, 0.05883842706680298, 0.001703606452792883, -0.027511633932590485, -0.0352148674428463, -0.01569877751171589, 0.005605875514447689, 0.03908102214336395, -0.013379202224314213, -0.017307139933109283, 0.02429908514022827, 0.01069067232310772, -0.08362773060798645, 0.029239948838949203, -0.04946059361100197, -0.03913870453834534, -0.06388455629348755, -0.021204844117164612, 0.021958930417895317, 0.01708363927900791, 0.029035475105047226, 0.010086620226502419, -0.01892697624862194, 0.00642402283847332, 0.0022516322787851095, 0.03140001371502876, -0.02172018215060234, 0.016960961744189262, 0.05623486638069153, 0.02279752679169178, 0.03076063096523285, 0.023345744237303734, -0.04341552406549454, 0.0076903956942260265, 0.013473001308739185, 0.003306852886453271, 0.025457287207245827, 0.031862273812294006, 0.0310397706925869, 0.03127879649400711, 0.052995361387729645, -0.03714409098029137, -0.0046378024853765965, -0.0027137501165270805, 0.03337747976183891, -0.007106616161763668, 0.017851773649454117, 0.0062392777763307095, -0.025987600907683372, -0.03698929026722908, -0.02553505264222622, -0.012780184857547283, 0.009683700278401375, 0.08354707807302475, -0.07416361570358276, 0.058929476886987686, -0.009910848923027515, -0.04227090999484062, 0.024740200489759445, -0.025902315974235535, -0.03300681337714195, 0.05085514485836029, 0.009172248654067516, 0.04342716932296753, -0.0412946455180645, 0.022370191290974617, -0.04963821917772293, 0.026783334091305733, 0.003949356265366077, -0.059647105634212494, 0.03363187238574028, -0.012567291967570782, -0.021853169426321983, -0.012568331323564053, -0.03193820267915726, -0.018583698198199272, -0.03686932474374771, 0.009231548756361008, -0.01625860296189785, -0.03464645892381668, -0.053317271173000336, 0.03224887326359749, 0.022738903760910034, 0.06219089403748512, -0.010553739964962006, 0.009529147297143936, 0.02767369896173477, 0.01148278173059225, 0.014907585456967354, -0.02210746519267559, 0.021466366946697235, -0.04427359253168106, 0.034248631447553635, -0.010065322741866112, -0.005384274758398533, -0.03524307906627655, -0.00512477895244956, -0.025023968890309334, 0.04986732453107834, -0.005165979266166687, -0.04581819102168083, -0.017000712454319, 0.015134146437048912, -0.021586410701274872, 0.045181456953287125, -0.047558918595314026, 0.004730277694761753, -0.027445964515209198, 0.04986099526286125, 0.014753050170838833, -0.044035475701093674, -0.015107535757124424, -0.031865935772657394, 0.02694801054894924, 0.027637025341391563, -0.002520174952223897, -0.06316561996936798, 0.009224273264408112, -0.029414266347885132, -0.04743992164731026, -0.03102516382932663, 0.05470837280154228, -0.01669037900865078, 0.001531579764559865, -0.03314054384827614, 0.03402125835418701, -0.011836918070912361, -0.015029684640467167, -0.006733924616128206, -0.015678035095334053, 0.021687235683202744, -0.022298181429505348, 0.04239962622523308, -0.001327088219113648, -0.009454503655433655, -0.006065037101507187, -0.047397129237651825, 0.02832656539976597, -0.01872439496219158, 0.0014328154502436519, -0.006649067625403404, -0.01438693143427372, 0.024875910952687263, 0.04569266363978386, -0.020790759474039078, 0.0094522163271904, -0.0061817290261387825, 0.07594236731529236, -0.05384569987654686, -0.03429572656750679, 0.05450093001127243, 0.014834239147603512, -0.02654045633971691, 0.018237749114632607, 0.04160677641630173, 0.0024113617837429047, -0.005260031670331955, 0.008510077372193336, -0.060896649956703186, 0.021279145032167435, -0.017095550894737244, 0.0102751599624753, -0.008624893613159657, -0.04278254881501198, 0.009228512644767761, -0.04142705723643303, 0.032346904277801514, 0.024494998157024384, -0.03222580626606941, -0.05092836916446686, -0.02482691965997219, -0.01801680400967598, -0.013512085191905499, -0.02689008228480816, -0.0022896116133779287, 0.01287107914686203, -0.03682130202651024, -0.006145124323666096, -0.026800723746418953, -0.0028250215109437704, 0.00048400499508716166, -0.006880176719278097, 0.02661215141415596, -0.0093507319688797, 0.023312242701649666, -0.0015389748150482774, -0.022197730839252472, -0.007944293320178986, -0.03183221071958542, -0.007176023907959461, -0.014585756696760654, -0.050639864057302475, 0.0007636604714207351, -0.03885970637202263, -0.010034959763288498, -0.03515779599547386, 0.008766615763306618, 0.00040281476685777307, 0.024175966158509254, 0.032683201134204865, -0.017402470111846924, -0.02497106045484543, 0.040666960179805756, -0.03868517652153969, 0.03727293387055397, 0.025818392634391785, -0.06151136755943298, -0.03341122344136238, 0.05711061507463455, -0.013180535286664963, 0.05060163885354996, -0.01891624554991722, 0.002168073086068034, -0.027623821049928665, -0.047074094414711, -0.012280943803489208, -0.032299384474754333, -0.022318081930279732, -0.04724256321787834, -0.015434752218425274, -0.00006989466055529192, 0.04612760245800018, 0.010257015936076641, -0.01776592619717121, 0.021077901124954224, -0.05937070772051811, 0.02623877301812172, -0.0444055013358593, -0.018694454804062843, -0.0169169083237648, -0.010646418668329716, 0.00967959500849247, 0.044781360775232315, 0.019721345975995064, 0.03504751995205879, -0.017598208039999008, 0.01690453477203846, 0.01605970971286297, -0.04609132558107376, -0.042505595833063126, -0.038096461445093155, -0.0061121741309762, 0.00040392836672253907, 0.03262711688876152, 0.0289053525775671, -0.04137127473950386, 0.03701165318489075, -0.030030792579054832, -0.0004053422308061272, -0.0161451306194067, -0.025519590824842453, -0.005475547164678574, 0.02599523961544037, 0.055251482874155045, -0.013613810762763023, -0.013239809311926365, -0.041212376207113266, 0.06758775562047958, 0.0727219358086586, 0.01835946924984455, 0.0055519514717161655, -0.05463254451751709, -0.056818827986717224, -0.05723094195127487, 0.029064439237117767, 0.004254254512488842, -0.01980404742062092, -0.026123210787773132, -0.0326702818274498, 0.026889914646744728, -0.012398403137922287, 0.022587688639760017, 0.027665486559271812, 0.00771487457677722, 0.00924304872751236, -0.019951779395341873, 0.010433515533804893, 0.0296668391674757, -0.022157568484544754, 0.0008991386275738478, -0.012580064125359058, -0.03898954764008522, -0.009847849607467651, -0.045007381588220596, -0.025811972096562386, -0.05406305193901062, 0.004585582297295332, 0.03335036709904671, -0.019410105422139168, 0.0438111275434494, 0.005181968677788973, -0.05554378032684326, -0.013727465644478798, 0.05080501735210419, -0.009966691955924034, -0.007556954864412546, 0.042199499905109406, 0.02601858787238598, -0.04052674397826195, -0.0031402339227497578, -0.027066875249147415, 0.0065926662646234035, -0.035093631595373154, 0.0982900857925415, 0.02131311036646366, -0.03092808648943901, 0.04004795849323273, 0.049259986728429794, -0.05410599336028099, -0.0689120665192604, 0.010468228720128536, -0.003609349252656102, -0.005426791030913591, -0.02905045822262764, 0.013503114692866802, 0.005313904955983162, 0.02542661502957344, 0.03818211331963539, 0.031526077538728714, -0.04977358877658844, 0.028050528839230537, 0.007001260761171579, 0.013349778018891811, -0.046438105404376984, -0.010611624456942081, 0.031039441004395485, -0.011170384474098682, -0.053604453802108765, -0.028156490996479988, -0.0023023728281259537, -0.009687945246696472, 0.0006152068381197751, 0.03372768685221672, -0.01566988416016102, 0.013641228899359703, 0.04840293154120445, -0.01978151500225067, 0.05284680426120758, -0.0016779182478785515, -0.002393036149442196, 0.008404117077589035, -0.005311607848852873, -0.04381377622485161, -0.04214482009410858, 0.026714587584137917, 0.01015010941773653, 0.032572101801633835, -0.06737227737903595, -0.0023821548093110323, 0.014240022748708725, 0.013755114749073982, -0.008231793530285358, -0.022999797016382217, -0.017516927793622017, -0.05800795927643776, -0.057617831975221634, -0.026486586779356003, -0.014020995236933231, 0.003446979448199272, 0.028104467317461967, 0.00448489747941494, -0.01852700673043728, -0.008130433037877083, 0.03368539363145828, 0.01419049222022295, 0.020318899303674698, -0.025705629959702492, 0.064122773706913, -0.020898764953017235, -0.0405106395483017, -0.025635549798607826, 0.023711547255516052, -0.02283855713903904, -0.021726271137595177, -0.023473519831895828, -0.0018552923575043678, 0.023040900006890297, 0.019926436245441437, 0.000048931520723272115, 0.00749030988663435, 0.0048587326891720295, -0.056014131754636765, 0.0014961074339225888, 0.04305027797818184, -0.030534591525793076, 0.021056851372122765, 0.030441028997302055, -0.017251206561923027, 0.049833957105875015, 0.00948073249310255, -0.020556772127747536, -0.019593654200434685, 0.004837352782487869, 0.023851905018091202, -0.003262682817876339, -0.0174644123762846, -0.02547977864742279, -0.03371573984622955, -0.053448472172021866, 0.019443025812506676, 0.00854305550456047, 0.0023872661404311657, 0.020227810367941856, 0.012213473208248615, -0.0068056536838412285, 0.041609521955251694, -0.008439742028713226, 0.008084328845143318, 0.027150630950927734, 0.018154585734009743, 0.04655597358942032, -0.023253904655575752, 0.013506478630006313, 0.021316690370440483, 0.018193595111370087, -0.004686309024691582, 0.02195165865123272, 0.0040335459634661674, -0.009720450267195702, 0.028761539608240128, -0.03053775057196617, -0.012820097617805004, -0.04429848492145538, -0.0251767598092556, -0.002735842950642109, 0.05306190997362137, 0.021555181592702866, -0.018626607954502106, 0.05089922621846199, -0.051506586372852325, -0.031059758737683296, 0.018484411761164665, -0.07458275556564331, -0.053843896836042404, 0.010467290878295898, -0.05051451921463013, -0.01187540590763092, -0.006298817228525877, -0.04375959560275078, 0.013706869445741177, -0.02474609948694706, 0.018340636044740677, -0.018739989027380943, -0.017764700576663017, 0.00024167561787180603, 0.0016591703752055764, -0.02038607746362686, -0.01929142326116562, 0.014943906106054783, 0.04405495524406433, -0.0017755570588633418, -0.05387718230485916, 0.010568588972091675, -0.03853118419647217, 0.027619782835245132, -0.019369492307305336, 0.018050210550427437, 0.019962675869464874, 0.007799256592988968, 0.035211753100156784, -0.005478035192936659, 0.02250831574201584, -0.018359724432229996, 0.024641413241624832, 0.040305860340595245, 0.003205422544851899, -0.01769147999584675, 0.03189600631594658, 0.01558625791221857, -0.04054199531674385, -0.03854890540242195, -0.010514460504055023, 0.013462863862514496, 0.01777561940252781, 0.036452241241931915, 0.007448079530149698, 0.03566906973719597, -0.028260011225938797, -0.002780964830890298, 0.009150279685854912, 0.037801291793584824, 0.05619039386510849, 0.025431156158447266, -0.024412700906395912, 0.0034452159889042377, 0.07597118616104126, 0.01343508530408144, -0.021148664876818657, 0.06769562512636185, 0.02739894576370716, -0.04795174300670624, -0.010767138563096523, -0.011707575060427189, 0.006932358723133802, 0.008090714924037457, -0.0016753477975726128, 0.0094688655808568, -0.029300721362233162, -0.008633526973426342, -0.018247967585921288, -0.03445190563797951, 0.036980923265218735, -0.040307484567165375, 0.022158704698085785, -0.025725042447447777, -0.016466399654746056, -0.03740307316184044, 0.04057775065302849, 0.0031254873611032963, 0.0028109399136155844, 0.019327744841575623, 0.028600556775927544, -0.020414983853697777, 0.04463660344481468, 0.01051750872284174, -0.009897180832922459, -0.00539085827767849, 0.025486771017313004, 0.012197157368063927, -0.011185226030647755, -0.02316150814294815, 0.007968144491314888, -0.046333856880664825, 0.0579523965716362, -0.022014299407601357, -0.019430914893746376, 0.0361325778067112, -0.06567296385765076, -0.025839637964963913, -0.03427429869771004, 0.050762224942445755, -0.004151534289121628, -0.024905085563659668, 0.037179190665483475, -0.024145036935806274, -0.049037329852581024, 0.035161375999450684, -0.018768880516290665, 0.04757733270525932, 0.025303201749920845, 0.052255190908908844, -0.018825575709342957, 0.040672656148672104, 0.05242219194769859, -0.0492822639644146, 0.0026588160544633865, 0.011952657252550125, -0.0012383649591356516, -0.04068785533308983, -0.002914209384471178, -0.036708444356918335, -0.012739825062453747, -0.041233569383621216, 0.008977529592812061, -0.0003143016656395048, 0.041609399020671844, -0.012706965208053589, -0.06390504539012909, -0.04511651769280434, 0.02581789903342724, -0.00982931349426508, 0.003466834546998143, 0.026556966826319695, 0.05986863002181053, -0.003065892495214939, -0.0012458759592846036, -0.02536003664135933, -0.0009182895882986486, -0.009105589240789413, -0.03160820156335831, 0.06041388958692551, 0.023170171305537224, -0.02809547446668148, -0.045783862471580505, -0.04546087607741356, 0.019386589527130127, 0.02099686674773693, -0.028366809710860252, -0.04448532313108444, 0.03919561207294464, 0.050034016370773315, 0.006185844540596008, -0.031416963785886765, -0.07286889851093292, -0.008101371116936207, 0.023079656064510345, 0.0911625474691391, 0.007155207451432943, 0.054038386791944504, 0.004358069039881229, -0.021014420315623283, 0.040748462080955505, -0.005144006572663784, 0.019236652180552483, -0.022008748725056648, -0.010001815855503082, -0.015779417008161545, 0.02206607535481453, -0.019237810745835304, -0.059175118803977966, -0.0035025521647185087, 0.03868800401687622, 0.008982572704553604, -0.0029561847914010286, -0.0690426453948021, -0.0007598283118568361, -0.05318170413374901, 0.016158098354935646, -0.044463690370321274, 0.018881546333432198, 0.0032669242937117815, -0.01957838237285614, 0.014530477114021778, -0.07464678585529327, 0.15829798579216003, 0.04907585307955742, 0.03196670860052109, 0.023622725158929825, 0.02800559252500534, 0.04058095067739487, 0.04613263159990311, 0.006848324090242386, 0.019256779924035072, -0.020476702600717545, -0.0051979245617985725, -0.020972825586795807, 0.03442099690437317, 0.01628285087645054, 0.02776145190000534, 0.061020031571388245, -0.059118133038282394, -0.011230765841901302, 0.04027007147669792, -0.04750519245862961, -0.09147194772958755, 0.03591378778219223, 0.02640155516564846, 0.01572791114449501, -0.01732969842851162, 0.009154364466667175, -0.0012420746497809887, -0.04793184995651245, -0.028676223009824753, -0.020824246108531952, 0.05258795619010925, -0.04934052750468254, 0.01919816993176937, -0.021039264276623726, -0.030442701652646065, 0.03258911892771721, 0.013793905265629292, -0.000729480292648077, 0.020479757338762283, 0.008117469027638435, -0.0012699776561930776, 0.0029553582426160574, 0.026795005425810814, -0.015680834650993347, -0.000023076339857652783, 0.012865284457802773, -0.057243842631578445, 0.0038853585720062256, -0.01727777160704136, -0.047662392258644104, 0.043432097882032394, -0.05704036355018616, 0.048824530094861984, -0.021434538066387177, -0.018314125016331673, 0.023836901411414146, -0.007296978496015072, -0.034840069711208344, -0.010700318962335587, -0.0026880349032580853, -0.015232664532959461, -0.0029121586121618748, -0.011903787031769753, 0.02077304571866989, -0.020007092505693436, -0.020683547481894493, 0.025384696200489998, -0.018672866746783257, -0.0005866519059054554, -0.01471545547246933, -0.017061134800314903, -0.011074060574173927, 0.017296329140663147, -0.03040868043899536, 0.03386992961168289, 0.010785802267491817, -0.02120855823159218, 0.045001447200775146, -0.021131105720996857, -0.036128245294094086, -0.009664471261203289, -0.015508771874010563, -0.021252993494272232, -0.004082965664565563, 0.008169973269104958, 0.05029372125864029, -0.06274458020925522, 0.0023052769247442484, -0.01778472401201725, 0.0612976960837841, 0.053114451467990875, 0.02618257701396942, 0.003721731249243021, -0.011572410352528095, -0.015663383528590202 ]
Did Vajrayudha Existed Only After Goddess Parvati's Curse ? Everyone Know About Importance Of Sri Valluramma Ammavari Temple? Reason Why Lord Shiva Goes For Bhiksha? How Lord Shiva Is Self-Existed Himself In Kumbakonam? Who Is Goddess Vengamamba And How She Became A Super Goddess?
[ 0.002120609162375331, -0.011300556361675262, -0.02767854742705822, -0.0008879632805474102, -0.016971372067928314, 0.014527037739753723, 0.013087826780974865, 0.027651753276586533, 0.017250770702958107, 0.00888808537274599, 0.04490770027041435, 0.01742064766585827, 0.0053735049441456795, -0.04909868538379669, -0.025017883628606796, 0.008406911976635456, -0.033046357333660126, -0.04207761585712433, -0.02866021730005741, -0.014439399354159832, -0.0006028107018209994, 0.03623148426413536, -0.06616857647895813, -0.02483096346259117, 0.006920849438756704, 0.045385271310806274, 0.02011173404753208, -0.00626740325242281, 0.04456344246864319, 0.06610115617513657, -0.008422201499342918, -0.014338728971779346, 0.030881742015480995, -0.058119937777519226, -0.023283690214157104, 0.0065787904895842075, 0.018231865018606186, -0.03552955016493797, -0.025297626852989197, -0.03812624141573906, 0.01960933394730091, -0.029590371996164322, 0.013117540627717972, -0.05029846727848053, -0.03267841786146164, 0.022183576598763466, -0.0419713631272316, -0.02598661556839943, -0.007751080673187971, -0.02378223091363907, 0.008648186922073364, -0.01778380572795868, -0.026635775342583656, 0.014883304014801979, -0.02603732980787754, -0.043623678386211395, -0.014236156828701496, -0.0007176474900916219, -0.007109181955456734, 0.04211406409740448, 0.02739899605512619, 0.015492198057472706, 0.024110199883580208, -0.05881650373339653, -0.009529327973723412, 0.029282083734869957, -0.014280222356319427, -0.00536926556378603, 0.0039048849139362574, -0.021827930584549904, 0.008096870966255665, 0.008568123914301395, -0.004804004915058613, -0.02633114531636238, -0.02543940395116806, -0.004469614941626787, -0.012004531919956207, 0.011035319417715073, 0.015414664521813393, 0.010580183006823063, 0.014674377627670765, 0.04348267987370491, -0.006123015191406012, 0.009363518096506596, -0.06033586710691452, -0.033874522894620895, -0.0549299493432045, 0.032261744141578674, -0.008891451172530651, 0.028076408430933952, 0.007974464446306229, 0.03246408700942993, 0.014004487544298172, 0.03697462007403374, 0.041366029530763626, 0.053230512887239456, -0.05126356706023216, 0.025330182164907455, 0.014863698743283749, 0.00894591398537159, 0.04328374192118645, 0.010350249707698822, -0.011879131197929382, 0.020532654598355293, -0.03364001214504242, -0.010645974427461624, -0.010212893597781658, 0.02438259869813919, -0.0027194933500140905, -0.034026455134153366, 0.017499873414635658, -0.032729268074035645, 0.011998985894024372, 0.011498397216200829, 0.017466019839048386, 0.046025004237890244, -0.013698666356503963, 0.023791495710611343, -0.06735672801733017, 0.004738559015095234, 0.020420586690306664, 0.0115883219987154, 0.02246054820716381, -0.011894969269633293, 0.032968852669000626, -0.002036167774349451, -0.023922529071569443, 0.0410703644156456, -0.014478319324553013, 0.00532541424036026, 0.009487796574831009, -0.036213040351867676, 0.004388040397316217, 0.022237475961446762, -0.01743822544813156, -0.004608555231243372, 0.010883636772632599, 0.042867884039878845, 0.0401596836745739, -0.040271494537591934, 0.03647015243768692, -0.00837158877402544, 0.016542837023735046, 0.09850068390369415, -0.0048651606775820255, 0.033553075045347214, 0.028125153854489326, -0.009873739443719387, -0.021776456385850906, 0.036849599331617355, 0.011381306685507298, 0.002754623768851161, 0.027942344546318054, 0.02096339501440525, 0.010805448517203331, 0.002242334419861436, -0.00762511882930994, 0.02632758393883705, 0.01590871438384056, 0.025433354079723358, -0.0019923050422221422, 0.020987030118703842, 0.00509027810767293, 0.023924604058265686, -0.023601125925779343, 0.04610959440469742, -0.046686213463544846, -0.024141615256667137, 0.018503693863749504, -0.05053534731268883, 0.020446201786398888, -0.0002819982764776796, -0.014211853966116905, 0.018368709832429886, 0.02195676788687706, 0.03496399521827698, 0.023215658962726593, 0.0010475355666130781, 0.022340595722198486, 0.05082527920603752, 0.00015417237591464072, 0.017621653154492378, 0.01037582103163004, 0.08821161091327667, 0.04684417322278023, -0.009320159442722797, -0.014648601412773132, -0.006056531798094511, 0.0018783204723149538, 0.002099048811942339, -0.011437861248850822, 0.03531000018119812, -0.0242354404181242, 0.04176601022481918, 0.032088831067085266, 0.010347756557166576, -0.005952673964202404, -0.031808968633413315, 0.009374815970659256, -0.05216094106435776, -0.00248505175113678, 0.05101399123668671, -0.030889686197042465, 0.021789897233247757, 0.02148883044719696, -0.01723588816821575, -0.02439684234559536, 0.06592247635126114, -0.02394963800907135, 0.01697389967739582, 0.048490267246961594, -0.013095770962536335, 0.026922738179564476, -0.01843242719769478, 0.018489385023713112, -0.021771371364593506, -0.012875237502157688, 0.06598088890314102, -0.008951959200203419, 0.008012593723833561, 0.00024567684158682823, 0.06366541236639023, 0.02574681118130684, 0.04497389495372772, -0.023200748488307, 0.014294411055743694, 0.0015686379047110677, 0.03501797839999199, -0.04777302220463753, -0.03763343393802643, -0.0017427048878744245, 0.01746695674955845, 0.05949004366993904, 0.046200163662433624, 0.03302012011408806, 0.03159807249903679, 0.0244430098682642, 0.018517041578888893, 0.013516679406166077, 0.013567550107836723, 0.010774350725114346, 0.03847501054406166, 0.05425611883401871, 0.006783443037420511, -0.011734267696738243, 0.042173001915216446, -0.01405299361795187, -0.029398661106824875, -0.036372631788253784, 0.07831443846225739, 0.008036987856030464, 0.04082509130239487, 0.006215994246304035, 0.05570855736732483, -0.026469385251402855, 0.016709383577108383, 0.05846831947565079, 0.019906682893633842, -0.006601257249712944, -0.053462423384189606, 0.0011950195766985416, 0.003199191065505147, -0.02613428607583046, -0.015254712663590908, 0.018565503880381584, -0.004092745948582888, 0.010558241978287697, 0.01736249215900898, -0.010865381918847561, -0.07117484509944916, -0.04277593269944191, -0.0214549470692873, -0.03642984479665756, -0.051219481974840164, -0.0008019056404009461, 0.004571182187646627, 0.04086800292134285, -0.034537628293037415, 0.017803767696022987, 0.023977259173989296, 0.015975140035152435, -0.02071191743016243, 0.013414992019534111, 0.029184449464082718, 0.008073663339018822, 0.06437912583351135, -0.014775975607335567, 0.06057792901992798, -0.026728764176368713, 0.02269955538213253, -0.03012210875749588, -0.010699477978050709, -0.025146279484033585, -0.025087332352995872, 0.03291095793247223, 0.008227045647799969, 0.015255884267389774, -0.013171681202948093, -0.04324106127023697, -0.07662127912044525, 0.0051830061711370945, -0.01873859576880932, 0.01786116324365139, 0.026693619787693024, -0.04997333139181137, 0.047911204397678375, 0.032110441476106644, -0.008542663417756557, 0.03512795269489288, 0.03512932360172272, -0.028343986719846725, 0.058403875678777695, 0.02198120392858982, 0.0077528515830636024, -0.059431660920381546, 0.0394667387008667, 0.05127191171050072, 0.012562282383441925, -0.042771924287080765, -0.025309968739748, -0.020565781742334366, 0.012386741116642952, 0.01522197388112545, -0.025382904335856438, -0.022039778530597687, 0.0279433261603117, 0.017110494896769524, -0.08406402170658112, 0.011988901533186436, -0.040941983461380005, -0.02971893548965454, -0.02045707032084465, -0.006124485284090042, 0.002662209328263998, 0.023033486679196358, 0.014691375195980072, -0.000775749038439244, -0.011453577317297459, -0.028634920716285706, -0.0061839609406888485, 0.029733499512076378, -0.02048078365623951, 0.004773040302097797, 0.035768620669841766, -0.02749260701239109, 0.002185431309044361, 0.03655876964330673, 0.007013385184109211, -0.007902641780674458, 0.011667389422655106, -0.020597685128450394, 0.011335557326674461, 0.016898538917303085, -0.0037033511325716972, 0.017270971089601517, 0.058167681097984314, -0.045289043337106705, -0.014818988740444183, -0.007329493295401335, 0.02479882538318634, -0.021840572357177734, 0.02490588277578354, 0.018694261088967323, -0.027089715003967285, -0.021724600344896317, -0.04069235548377037, -0.0038334664423018694, 0.007879474200308323, 0.07565213739871979, -0.028100695461034775, 0.06706859171390533, -0.0381510853767395, -0.045144323259592056, 0.03372258320450783, -0.058027494698762894, 0.007318199146538973, 0.04773920774459839, 0.0003076340944971889, 0.025361759588122368, -0.025856297463178635, 0.013084275647997856, -0.0380793958902359, -0.010172858834266663, 0.039879217743873596, -0.016678886488080025, 0.04463048279285431, -0.018014565110206604, -0.03148803487420082, 0.00714896060526371, -0.0002926095621660352, -0.02713117003440857, -0.016915535554289818, 0.016233930364251137, -0.05402727425098419, -0.04442104324698448, -0.06987357139587402, 0.02861992083489895, 0.007081064395606518, 0.0210581012070179, -0.012047105468809605, -0.005266915541142225, 0.02220841683447361, 0.012860150076448917, 0.055453646928071976, -0.024786703288555145, 0.03243983909487724, -0.050494395196437836, 0.04654834792017937, 0.03164713457226753, -0.01825096271932125, -0.03590122237801552, -0.0015052095986902714, -0.041937436908483505, -0.015412715263664722, 0.022681836038827896, -0.03367422893643379, -0.07322932779788971, 0.030583977699279785, 0.009149394929409027, 0.03248782828450203, -0.03809554502367973, -0.025260331109166145, 0.010078297927975655, 0.021050333976745605, -0.000572764896787703, -0.04407193884253502, 0.0038828018587082624, -0.030979705974459648, 0.070103719830513, 0.033662308007478714, 0.01504804939031601, -0.033203210681676865, -0.009787517599761486, -0.0026291743852198124, -0.027255048975348473, -0.011911890469491482, 0.051604773849248886, -0.019196540117263794, 0.003977066371589899, -0.05281471088528633, 0.052818115800619125, 0.023694511502981186, 0.0020775890443474054, -0.020797764882445335, -0.006278187967836857, 0.06103235483169556, 0.0008753121364861727, 0.032268766313791275, -0.023580100387334824, -0.01143006980419159, 0.027551667764782906, -0.055286988615989685, 0.014078476466238499, 0.014780368655920029, -0.004285120405256748, -0.01258915662765503, 0.0008605757029727101, 0.03742949664592743, 0.028071697801351547, -0.015900898724794388, 0.026169966906309128, 0.002497765002772212, 0.0192475114017725, -0.03238982334733009, -0.0019583774264901876, 0.038060449063777924, -0.006722267251461744, -0.026893818750977516, 0.02038314938545227, 0.030949030071496964, -0.005905963014811277, 0.006342326290905476, 0.01024692039936781, -0.06814481317996979, 0.049230195581912994, -0.017905596643686295, 0.002343061612918973, 0.023844098672270775, -0.019273987039923668, -0.00633799284696579, -0.015139407478272915, 0.044079262763261795, 0.0370054766535759, -0.004212738946080208, -0.030053021386265755, -0.06008456274867058, -0.001025493605993688, 0.018194109201431274, -0.02172515168786049, 0.027465248480439186, 0.02243342436850071, -0.03953411430120468, -0.014850761741399765, 0.008477358147501945, -0.003705122973769903, -0.0011427679564803839, -0.019872043281793594, -0.005588522646576166, 0.023138130083680153, 0.010121302679181099, 0.02388094924390316, 0.01982084847986698, -0.007690161932259798, 0.0022237985394895077, -0.012635160237550735, -0.0068901535123586655, -0.0400957316160202, -0.01673705503344536, -0.04547460749745369, -0.00974956527352333, -0.040133725851774216, -0.012554251588881016, -0.015760362148284912, 0.024301808327436447, 0.03641970828175545, -0.01814332604408264, 0.02558973990380764, 0.013676672242581844, -0.03392869606614113, 0.060950130224227905, 0.037564340978860855, -0.054223790764808655, -0.02564254216849804, 0.03026016429066658, -0.004813787527382374, 0.04439135268330574, 0.008747925981879234, -0.04312196746468544, -0.05225981026887894, -0.0788402333855629, 0.005122104659676552, -0.040614236146211624, -0.025078868493437767, -0.03988905996084213, -0.03469681739807129, -0.025247538462281227, 0.030451130121946335, -0.013013985008001328, -0.03731519728899002, -0.0170454028993845, -0.038289520889520645, -0.013411691412329674, -0.01871773600578308, 0.02497333474457264, -0.053770408034324646, -0.02062183804810047, 0.012303224764764309, 0.05401882529258728, 0.013638343662023544, 0.030039047822356224, -0.0014956642407923937, -0.015850819647312164, 0.032058581709861755, -0.04020101577043533, -0.054954566061496735, -0.0328642874956131, -0.013369198888540268, -0.022358588874340057, -0.005794008262455463, 0.028642915189266205, -0.07268264889717102, 0.05882381647825241, -0.041933465749025345, -0.023122413083910942, -0.01465289294719696, -0.026076138019561768, -0.012573176063597202, -0.04104090854525566, 0.02663573995232582, -0.033407654613256454, 0.0013095448957756162, -0.01734292320907116, 0.03269883617758751, 0.019960353150963783, -0.0034847536589950323, -0.03704261779785156, -0.04306686669588089, -0.04396558552980423, -0.059738293290138245, 0.044371262192726135, -0.044553905725479126, -0.02588719315826893, -0.035706646740436554, 0.023860933259129524, 0.03703216463327408, -0.004070701543241739, 0.0376758873462677, 0.04044320434331894, 0.039560288190841675, 0.01476665772497654, -0.0020806945394724607, 0.00524560222402215, 0.05156537517905235, -0.020219145342707634, 0.0058513907715678215, -0.02370019257068634, -0.030291782692074776, -0.02247447334229946, -0.031005732715129852, -0.030494851991534233, -0.027524609118700027, 0.0012535221176221967, 0.06103573739528656, -0.02288975939154625, 0.03577291592955589, 0.02171524427831173, -0.07705216109752655, -0.053019821643829346, 0.04002733901143074, 0.015188843011856079, -0.005400747526437044, 0.07035800069570541, 0.0009226195979863405, -0.023917904123663902, 0.015216493979096413, 0.014097227714955807, 0.014613560400903225, -0.04097872972488403, 0.040428683161735535, 0.009700133465230465, -0.05311669781804085, 0.03195559233427048, 0.03849601000547409, -0.052106957882642746, -0.03384164348244667, -0.03770444169640541, -0.02220049500465393, 0.003596090478822589, 0.004367215093225241, 0.008524776436388493, -0.022402791306376457, 0.014838521368801594, 0.015196645632386208, 0.05000258982181549, -0.007230096496641636, 0.04121241718530655, 0.011209165677428246, 0.0182059146463871, -0.042431190609931946, 0.036276236176490784, 0.029468601569533348, 0.0015589710092172027, -0.06553136557340622, -0.04028032347559929, -0.018194356933236122, -0.0015499535948038101, -0.008449960500001907, 0.024597296491265297, -0.05226042494177818, 0.040509242564439774, 0.001670986763201654, 0.01314262393862009, 0.024909183382987976, 0.006196832749992609, 0.006708345841616392, -0.006734682247042656, -0.04470178857445717, -0.041269559413194656, -0.029558423906564713, 0.0003999347100034356, 0.007098705507814884, 0.03816999867558479, -0.030054625123739243, 0.01443015318363905, 0.0005020212265662849, 0.005328287836164236, -0.0064192055724561214, -0.04000527784228325, -0.06853878498077393, -0.06560692936182022, -0.0629584938287735, -0.04747937247157097, -0.026828965172171593, 0.010721040889620781, 0.03058098442852497, -0.037165552377700806, -0.0374944694340229, 0.012151951901614666, 0.028014151379466057, -0.04258257523179054, 0.020775221288204193, -0.03070068359375, 0.03996779024600983, -0.08125192672014236, -0.06840880215167999, -0.05230220779776573, -0.00009568512177793309, -0.002535107545554638, 0.016113687306642532, -0.016979262232780457, 0.029618026688694954, -0.004931015428155661, 0.028359513729810715, 0.017252378165721893, 0.03819762170314789, -0.00836420338600874, -0.024654872715473175, 0.011162552051246166, 0.053660012781620026, 0.0029523223638534546, -0.0053285569883883, 0.03946363925933838, -0.03895898535847664, 0.017360717058181763, -0.023014850914478302, -0.02883196994662285, 0.0015680174110457301, -0.008503821678459644, 0.0006838846602477133, 0.013541769236326218, -0.039726801216602325, -0.01505131646990776, 0.010707015171647072, -0.04365682601928711, 0.01975313015282154, -0.009938067756593227, -0.0015024601016193628, 0.008669969625771046, -0.00982616562396288, -0.0025321831926703453, 0.0591273158788681, 0.026660040020942688, 0.022744882851839066, 0.016161596402525902, 0.011888524517416954, 0.033846594393253326, 0.01756182499229908, 0.04884800314903259, 0.03562643751502037, 0.03810735419392586, -0.01437132153660059, 0.006594622042030096, 0.008185891434550285, -0.013801611959934235, 0.043291058391332626, -0.009509705007076263, -0.029427452012896538, -0.04892267286777496, -0.030835701152682304, 0.0013546765549108386, 0.04177141189575195, 0.012336651794612408, -0.015401854179799557, -0.0037340426351875067, -0.06487784534692764, -0.018042415380477905, 0.0033434415236115456, -0.06708568334579468, -0.02897224761545658, 0.03223714232444763, -0.01123583409935236, -0.013334468007087708, 0.001489148591645062, -0.02869308553636074, 0.02168912999331951, 0.0023034578189253807, -0.017561616376042366, -0.01576765812933445, 0.03276704624295235, -0.007052528206259012, 0.03802649304270744, -0.02283015288412571, -0.003590973326936364, -0.019035257399082184, 0.04880091920495033, -0.06844773888587952, -0.022592060267925262, -0.0010670784395188093, 0.03531693294644356, 0.03241909295320511, -0.016675114631652832, -0.01969778910279274, 0.0003502403269521892, -0.037072815001010895, 0.02920451946556568, 0.010249752551317215, 0.014931044541299343, -0.013956830836832523, 0.028094973415136337, -0.035122040659189224, 0.017134543508291245, -0.06176299601793289, -0.008869525976479053, 0.0067994119599461555, 0.021341044455766678, -0.06281270831823349, 0.03969871625304222, 0.06107150763273239, -0.012017852626740932, 0.044629670679569244, 0.029053743928670883, 0.03810613974928856, 0.012537671253085136, 0.010627778246998787, -0.010116281919181347, 0.044225823134183884, 0.012530592270195484, 0.024680236354470253, -0.03370245173573494, 0.03545494005084038, 0.055314693599939346, 0.004838155582547188, 0.006191606167703867, 0.003711435943841934, 0.031064726412296295, -0.038958918303251266, -0.00024803937412798405, 0.0075319549068808556, 0.0026219177525490522, 0.02867359109222889, -0.032839979976415634, 0.007150512188673019, -0.019900066778063774, 0.010757689364254475, -0.024084728211164474, -0.011752582155168056, 0.03673465549945831, -0.04783926531672478, 0.03878302127122879, -0.021703023463487625, -0.03698839992284775, 0.022935964167118073, 0.02513168565928936, -0.015262334607541561, -0.02759484574198723, -0.0070925322361290455, 0.03261394798755646, -0.0044363415800035, 0.03530092164874077, 0.010017745196819305, 0.001276677125133574, -0.00199057231657207, -0.0052947853691875935, 0.0176906269043684, -0.0039979396387934685, -0.0393054336309433, -0.0016619901871308684, -0.02550666220486164, 0.04495837539434433, -0.03989853709936142, -0.026905996724963188, 0.034527819603681564, -0.027432039380073547, -0.039199937134981155, -0.050103556364774704, 0.032265063375234604, -0.021588383242487907, -0.006003051996231079, 0.032501935958862305, 0.007815193384885788, -0.022192206233739853, 0.03468742221593857, 0.01703714393079281, 0.04953482747077942, 0.006283978000283241, 0.009875603951513767, -0.031387608498334885, 0.025881722569465637, 0.0406893789768219, -0.010739180259406567, -0.029850976541638374, 0.00024403266434092075, -0.012475552968680859, -0.03247230499982834, -0.00550431152805686, -0.017410194501280785, -0.011693626642227173, -0.008454283699393272, -0.014483734034001827, -0.019982175901532173, 0.02978654019534588, 0.013478424400091171, -0.09513159841299057, 0.015450929291546345, 0.037145890295505524, -0.05438385158777237, 0.03456544503569603, -0.02530563250184059, 0.02370234951376915, -0.023819586262106895, 0.02708800509572029, -0.023206328973174095, -0.036332786083221436, -0.025536291301250458, -0.07706396281719208, 0.04679723083972931, 0.00755736418068409, -0.02339949458837509, -0.051223356276750565, -0.053586993366479874, 0.0016982053639367223, 0.006232175510376692, -0.0023515152279287577, -0.02233283966779709, 0.004999884404242039, 0.05748029053211212, 0.018489878624677658, 0.004825766663998365, -0.04020792245864868, -0.004469290375709534, 0.02185739576816559, 0.05696866661310196, -0.009699550457298756, -0.0015683609526604414, 0.016997825354337692, -0.00837115477770567, 0.003822276834398508, -0.017363974824547768, 0.03560824319720268, 0.010773001238703728, -0.01009621936827898, -0.011871692724525928, 0.021836401894688606, -0.0235417652875185, -0.06188380345702171, 0.035288043320178986, 0.028768684715032578, 0.011862442828714848, -0.006083418149501085, -0.06877125799655914, 0.004664531443268061, -0.05129676312208176, 0.02549302764236927, -0.04784457013010979, 0.011732562445104122, 0.026663390919566154, -0.029909469187259674, -0.025968428701162338, -0.06665118038654327, 0.15882626175880432, 0.050396163016557693, 0.026557372882962227, 0.018006106838583946, 0.04767905920743942, 0.08358266949653625, 0.03371704742312431, -0.012144475243985653, 0.023036722093820572, -0.03329049423336983, 0.026458855718374252, 0.017947843298316002, 0.021049320697784424, 0.02064160257577896, 0.009952687658369541, 0.028735600411891937, -0.04317270219326019, 0.035016369074583054, 0.0037472150288522243, -0.029154082760214806, -0.08301446586847305, 0.022674482315778732, -0.0007720260764472187, -0.005266660824418068, -0.05037231743335724, 0.020047888159751892, 0.005870721768587828, -0.03193194791674614, -0.016447443515062332, -0.03168241307139397, 0.027373146265745163, -0.037662871181964874, 0.04592519626021385, 0.014264767058193684, -0.06340210139751434, 0.05762030556797981, -0.004140630830079317, -0.022858774289488792, 0.018127255141735077, 0.015459966845810413, -0.012966793961822987, -0.02084180898964405, 0.016623007133603096, -0.02122625522315502, 0.014427950605750084, 0.053894445300102234, -0.036789920181035995, -0.02043476700782776, -0.02224520593881607, -0.016330676153302193, 0.0696023553609848, -0.034058112651109695, 0.02480950579047203, -0.017769817262887955, -0.05762535333633423, -0.00018361836555413902, 0.035546623170375824, -0.010776777751743793, -0.04682160168886185, -0.01477250549942255, 0.03476093336939812, -0.006690052803605795, -0.022675087675452232, 0.016852084547281265, -0.03371056914329529, 0.0005951547063887119, -0.016317907720804214, -0.0029896495398133993, -0.015568914823234081, 0.00676807900890708, -0.014701220206916332, -0.01489003375172615, -0.0001631907798582688, -0.03369901329278946, 0.02926602028310299, 0.021253911778330803, -0.006301207933574915, 0.03530021756887436, -0.01679936796426773, 0.013460063375532627, 0.008401034399867058, 0.00756620429456234, 0.020467279478907585, 0.01226249523460865, 0.03073500283062458, 0.021891945973038673, -0.01360801700502634, -0.020415617153048515, -0.024013932794332504, 0.051321469247341156, 0.05063055083155632, 0.04530179128050804, -0.00009452024823985994, -0.04057472571730614, -0.0025768813211470842 ]
BAUAW NEWSLETTER - MONDAY, MAY 12, 2008 ILWU May Day Protest--San Francisco http://www.youtube.com/watch?v=BspANxukBgg PLEASE, CIRCULATE THIS MESSAGE WIDELY. NO on state Prop. 98! San Francisco Tenants Union (415) 282-5525 www.sftu.org Wealthy landlords and other right-wing operatives placed Prop. 98 on the state ballot. This is a dangerous and deceptive measure. Disguised as an effort to reform eminent domain laws and protect homeowners, Prop. 98 would abolish tenant protections such as rent control and just-cause eviction laws, and would end a number of other environmental protection and land use laws. SAVE RENT CONTROL! NO ON PROP. 98! http://leftinsf.com/blog/index.php/archives/2492 We All Hate that 98! http://www.youtube.com/watch?v=_Phrt5zVGn0 [The catch is, that while it's true that the landlord can increase rents to whatever he or she wants once a property becomes vacant, the current rent-control law now ensures that the new tenants are still under rent-control for their, albeit higher, rent. Under the new law, there simply will be no rent control when the new tenant moves in so their much higher rent-rate can increase as much as the landlord chooses each year from then on!!! So, no more rent-control at all!!! Tricky, huh?...BW] Prop 98, a statewide measure on the June 3 ballot will end rent control and just cause eviction protections for renters. San Francisco will see massive displacement and the city will change forever if 98 passes. READ ALL OF PROP. 98 at: http://yesprop98.com/read/?_adctlid=v%7Cwynx8c5jjesxsb%7Cwziq39twoqov52 Stop fumigation of citizens without their consent in California Target: Governor Arnold Schwarzenegger, Senator Joe Simitian, Assemblymember Loni Hancock, Assemblymember John Laird, Senator Abel Maldonado Sponsored by: John Russo http://www.thepetitionsite.com/1/stop-fumigation-of-citizens-without-their-consent-in-california Additional information is available at http://www.stopthespray.org National Assembly to End the Iraq War and Occupation natassembly.org Dear Antiwar Activists, You are invited to attend a special Bay Area meeting of antiwar activists who support or want to learn more about the National Assembly to End the Iraq War and Occupation. The meeting is set for: Saturday, May 17, 2:00 P.M. ILWU Local 6 Hall 255 Ninth Street, near Howard, San Francisco The National Assembly to End the Iraq War and Occupation (website: natassembly.org) is planning an open national antiwar conference in Cleveland, Ohio on June 28-29 at the Crown Plaza Hotel. To date almost 450 local, state and national organizations and prominent individuals have endorsed this first open antiwar conference. The complete list is on the website as well as the conference statement of purpose, schedule, workshops and all the rest. Conference endorsers include the Cleveland AFL-CIO, the San Francisco and Los Angeles teachers unions, the Progressive Democrats of America, Veterans for Peace, Cindy Sheehan, Howard Zinn, Jonathan Hutto, U.S. Labor Against the War, National Lawyers Guild, Los Angeles Country Federation of Labor/AFL-CIO, The Iraq Moratorium, Green Party of Ohio, Mumia Abu-Jamal, New England United Against the War, Peace and Freedom Party, Peninsula Peace and Justice Center, Greater Boston Stop the War Coalition, Ohio State Council/Here/Unite, Northeast Ohio American Friends Service Committee, Thomas Merton Center/Pittsburgh, the ANSWER Coalition, Middle East Children's Alliance, San Jose Peace and Justice Center, National Education Peace and Justice Caucus, Connecticut United for Peace, Labor Council for Latin American Advancement/Sacramento and hundreds of others. The purpose of the Bay Area meeting is to promote support for and attendance at the Cleveland conference, to update the progress toward a united antiwar movement, and to seek new endorsers for the conference. The National Assembly was formed as a network aimed at fostering a united, mass action-oriented, independent and democratic antiwar movement to Bring the Troops Home Now. Speakers at the Cleveland conference include national leaders of the major antiwar coalitions, UFPJ (Leslie Cagan), ANSWER (Brian Becker), Jeremy Scahill, Navy Petty Officer Jonathan Hutto, Donna DeWitt, Pres., South Carolina, AFO-CIO, Cindy Sheehan (via satellite hookup) as well as leaders of several of the nation's most prominent antiwar and social justice groups. The National Assembly was formed as an effort to achieve unity in action among the broad forces in the antiwar movement in order to close the gap between the mass antiwar sentiment and the still modest numbers that actively participate in the movement's activities. As the Statement of Purpose states: "We therefore invite everyone, every organization, every coalition, everywhere in the U.S. - all who oppose the war and occupation - to attend an open democratic U.S. national antiwar conference and join with us in advancing and promoting the coming together of an antiwar movement in this country with the power to make a mighty contribution toward ending the war and occupation of Iraq now. "Everyone is welcome. The objective is to place on the agenda of the entire U.S. antiwar movement a proposal for the largest possible united mass mobilization(s) in the future to stop the war and end the occupation." The San Francisco meeting is initiated by representatives of the Bay Area groups that participate on the 40-person Coordinating Committee of the National Assembly. Paul George, Director, Peninsula Peace and Justice Center Patty Mote, National Network on Cuba Tom Lacey, Peace and Freedom Party Alan Benjamin, Executive Board, San Francisco Labor Council Jeff Mackler, founder, Mobilization for Peace, Jobs and Justice Todd Chretien, International Socialist Organization Bill Leumer, Workers International League Millie Phillips, Socialist Organizer Join us in Cleveland on June 28-29 for the conference. Crown Plaza Hotel Sponsored by the National Assembly to End the Iraq War and Occupation P.O. Box 21008; Cleveland, OH 44121; Voice Mail: 216-736-4704; Email: [email protected] The Call for National Assembly: http://natassembly.org/thecall/ List of Endorsers: Endorse the conference: http://natassembly.org/endorse/ Mumia Abu-Jamal: Innocent Man on Death Row! We Accept Nothing Less Than His Freedom! Sunday, May 18, 2008, 2:00 pm ILWU Local 6, 255 Ninth Street, near Howard, San Francisco Hear: Cynthia McKinney, former Congresswoman from Georgia Soffiyah Elijah, Deputy Director, Criminal Justice Institute, Harvard Law School. Legal counsel for Sundiata Acoli, Marilyn Buck, Kwame Ture', Nuh Washington and Jihad Abdul-Mumit Cindy Sheehan, founding member, Gold Star Families for Peace, an organization founded in January 2005 by individuals who lost family members in the U.S. war on Iraq Walter Turner, Host, Africa Today, Pacifica Radio/KPFA Jeff Mackler, Director, Mobilization to Free Mumia Abu-Jamal Alan Benjamin, Exec. Bd., San Francisco Labor Council Kali Akuno, Director, Malcolm X Grassroots Movement devorah major & Jack Hirschman, Former Poets Laureate of San Francisco Mesha Monge Irizarry, Founder, Idriss Stelley Foundation, Admission $10 sliding scale Apologies: Bathrooms not wheelchair accessible. Sponsor: Mobilization to Free Mumia Abu-Jamal, [email protected] 510-268-9429. Send contributions to: Mobilization to Free Mumia Abu-Jamal, P.O. Box 10328, Oakland, CA 94610 Freemumia.org, Tables: $25 UPDATE: SIXTH AL-AWDA CONVENTION TO MARK 60 YEARS OF PALESTINIAN NAKBA Embassy Suites Hotel Anaheim South, 11767 Harbor Boulevard, Garden Grove, California, 92840 The 6th Annual International Al-Awda Convention will mark a devastating event in the long history of the Palestinian people. We call it our Nakba. Confirmed speakers include Bishop Atallah Hanna, Supreme Justice Dr. Sheikh Taiseer Al Tamimi, Dr. Adel Samara, Dr. Salman Abu Sitta, Dr. Ghada Karmi, Dr. As'ad Abu Khalil, Dr. Saree Makdisi, and Ramzy Baroud. Former Prime Minister of Lebanon Salim El Hos and Palestinian Legislative Council member Khalida Jarrar have also been invited. Al-Awda, The Palestine Right to Return Coalition Carlsbad, CA 92013, USA E-mail: info@al-awda. org WWW: http://al-awda. org Al-Awda, The Palestine Right to Return Coalition (PRRC) is the largest network of grassroots activists and students dedicated to Palestinian human rights. We are a not for profit tax-exempt educational and charitable 501(c)(3) organization as defined by the Internal Revenue Service (IRS) of the United States of America. Under IRS guidelines, your donations to PRRC are tax-deductible. ARTICLES IN FULL: 1) Juan Crow in Georgia By Roberto Lovato "We've globalized money, we've globalized trade and commerce, but we haven't globalized fairness toward work and labor. The solution to the 'problem' of immigration and other problems is globalization of justice." — Rev. Joseph Lowery, leader of the Georgia Coalition for the People's Agenda —The Nation, May 8, 2008 http://www.thenation.com/doc/20080526/lovato 2) Racial Inequity and Drug Arrests http://www.nytimes.com/2008/05/10/opinion/10sat1.html?hp 3) Growing ocean dead zones leave fish gasping NewScientist.com news service http://environment.newscientist.com/article.ns?id=dn13818&print=true 4) The Oil Nonbubble http://www.nytimes.com/2008/05/12/opinion/12krugman.html?_r=1&hp∨ef=slogin 5) Saying No to Everything http://www.nytimes.com/2008/05/12/opinion/12mon2.html?hp 6) What Social Security Isn't Meant to Do 7) Wall Street Journal: Unions Forge Secret Pacts With Major Employers The Wall Street Journal: By Kris Maher http://www.seiuvoice.org/2008/05/wall-street-journal-unions-forge-secret.html 8) Voter ID Battle Shifts to Proof of Citizenship By IAN URBINA http://www.nytimes.com/2008/05/12/us/politics/12vote.html?hp 9) Ecuador Opposes Outpost in American War on Drugs Manta Journal http://www.nytimes.com/2008/05/12/world/americas/12manta.html?ref=world 10)To Curb Truancy, Dallas Tries Electronic Monitoring By GRETEL C. KOVACH http://www.nytimes.com/2008/05/12/education/12dallas.html?ref=us 11) Police in Gun Searches Face Disbelief in Court By BENJAMIN WEISER http://www.nytimes.com/2008/05/12/nyregion/12guns.html?ref=nyregion Justeen Mancha's dream of becoming a psychologist was born of the tropical heat and exploitation that have shaped farmworker life around Reidsville, Georgia, for centuries. The wiry, freckle-faced 17-year-old high school junior has toiled in drought-dry onion fields to help her mother, Maria Christina Martinez. But early one September morning in 2006, Mancha's dream was abruptly deferred. From the living room of the battered trailer she and her mother call home, Mancha described what happened when she came out of the shower that morning. "My mother went out, and I was alone," she said. "I was getting ready for school, getting dressed, when I heard this noise. I thought it was my mother coming back." She went on in the Tex-Mex Spanish-inflected Georgia accent now heard throughout Dixie: "Some people were slamming car doors outside the trailer. I heard footsteps and then a loud boom and then somebody screaming, asking if we were 'illegals,' 'Mexicans.' These big men were standing in my living room holding guns. One man blocked my doorway. Another guy grabbed a gun on his side. I freaked out. 'Oh, my God!' I yelled." As more than twenty Immigration and Customs Enforcement (ICE) agents surrounded the trailer, said Mancha, agents inside interrogated her. They asked her where her mother was; they wanted to know if her mother was "Mexican" and whether she had "papers" or a green card. They told her they were looking for "illegals." After about five minutes of interrogation, the agents—who, according to the women's lawyer, Mary Bauer of the Southern Poverty Law Center, showed no warrants and had neither probable cause nor consent to enter the home—simply left. They left in all likelihood because Mancha and her mother didn't fit the profile of the workers at the nearby Crider poultry plant, who had been targeted by the raid in nearby Stilwell. They were the wrong kind of "Mexicans"; they were U.S. citizens. Though she had experienced discrimination before the raid—in the fields, in the supermarket and in school—Mancha, who testified before Congress in February, never imagined such an incident would befall her, since she and her mother had migrated from Texas to Reidsville. Best known for harvesting poultry and agricultural products, Reidsville, a farm town about 200 miles southeast of Atlanta, is also known for harvesting Klan culture behind the walls of the state's oldest and largest prison. But its most famous former inmate is Jim Crow slayer and dreamer Martin Luther King Jr. His example inspires Mancha's new dream: lawyering "for the poor." The toll this increasingly oppressive climate has taken on Mancha represents but a small part of its effects on noncitizen immigrants, especially undocumented immigrants, and other Latinos. Mancha and the younger children of the mostly immigrant Latinos in Georgia are learning and internalizing that they are different from white—and black—children not just because they have the wrong skin color but also because many of their parents lack the right papers. They are growing up in a racial and political climate in which Latinos' subordinate status in Georgia and in the Deep South bears more than a passing resemblance to that of African-Americans who were living under Jim Crow. Call it Juan Crow: the matrix of laws, social customs, economic institutions and symbolic systems enabling the physical and psychic isolation needed to control and exploit undocumented immigrants. Listening to the effects of Juan Crow on immigrants and citizens like Mancha ("I can't sleep sometimes because of nightmares," she says. "My arms still twitch. I see ICE agents and men in uniform, and it still scares me") reminds me of the trauma I heard among the men, women and children controlled and exploited by state violence in wartime El Salvador. Juan Crow has roots in the U.S. South, but it stirs traumas bred in the hemispheric South. In fact, the surge in Latino migration (the Southeast is home to the fastest-growing Latino population in the United States) is moving many of the institutions and actors responsible for enforcing Jim Crow to resurrect and reconfigure themselves in line with new demographics. Along with the almost daily arrests, raids and home invasions by federal, state and other authorities, newly resurgent civilian groups like the Ku Klux Klan, in addition to more than 144 new "nativist extremist" groups and 300 anti-immigrant organizations born in the past three years, mostly based in the South, are harassing immigrants as a way to grow their ranks. Meanwhile, a legal regime of distinctions between the rights of undocumented immigrants and citizens has emerged and is being continually refined and expanded. A 2006 Georgia law denies undocumented immigrants driver's licenses. Federal laws that allowed local and state authorities to pursue blacks under the Fugitive Slave Act appear to be the model for the Bush Administration's Agreements of Cooperation in Communities to Enhance Safety and Security (ACCESS) program, which allows states to deputize law enforcement officials to chase, detain, arrest and jail the undocumented. Georgia's lowest-paid workers, the undocumented, now occupy a separate, unequal and clandestine place that has made it increasingly difficult for them to work, rent homes or attend school. The pre- and post-Reconstruction regional economic system centered on the stately Southern mansions that once graced Atlanta's storied Peachtree Street has given way to a more global finance-driven system centered on the cold, anonymous skyscrapers that loom over Peachtree today. And in a more hopeful sign, some veterans of the civil rights struggle against Jim Crow are joining Latino immigrants in what will likely be one of the major movements of the twenty-first century. These and other facets of immigrant life in Georgia, the Deep South and the entire country are but a small part of the labyrinthine institutional and cultural arrangements defining the strange career of Juan Crow. The immigrant condition in Georgia worsened in the wake of the failed immigration reform proposal last year. The national immigration debate had the effect of further legitimizing and emboldening the most extreme elements of the anti-immigrant movement in places like Georgia. Since the advent of what he terms "Georgiafornia," for example, D.A. King, a former marine and contributor to the anti-immigrant hate site VDARE, has leapfrogged into the national limelight to become one of the major advocates for deportation and security-only "immigration reform." Strengthened by the defeat of national reform, King, State Senator Chip Rogers and a growing galaxy of formerly fringe groups succeeded in getting some of the country's most draconian anti-immigrant laws passed. These new racial codes are disguised by the national security-infused bureaucratic language of laws with names like the Georgia Security and Immigration Compliance Act (GSICA). Their efforts were egged on by the Bush Administration's implementation of the ACCESS program last August. ACCESS provided new excuses for state and local officials to pursue the undocumented in states like Georgia. In tandem with the federal government, King and Rogers led the push to pass GSICA, which requires law enforcement officers to investigate the citizenship status of anyone charged with a felony or driving under the influence. GSICA and federal efforts laid the foundation on which the other legal and social structures of Juan Crow grow. Georgia's estimated 500,000 undocumented immigrants must think twice before seeking emergency support at hospitals or clinics because of laws that require them to prove their legal status before receiving many state benefits. "No-match letter" regulations requiring all employers to confirm the Social Security numbers of their employees have been issued by the Social Security Administration and have resulted in firings and growing fear among immigrants. But even without the no-match letters, undocumented immigrants in Georgia have many reasons to fear going to work. If they work at a company with more than 500 employees, for example (and most undocumented immigrants are employed in meatpacking, agricultural, carpet and other industries with hundreds, sometimes thousands, of workers), they must worry about laws that punish employers who knowingly hire undocumented immigrants and mandate that firms with state contracts check the immigration status of their employees. Similar laws denying or restricting housing, education, transportation and other aspects of immigrant life are also being instituted across Georgia. For a firsthand look at how the interplay of state and federal policies fuels Juan Crow, one need go no further than the immigrant-heavy area surrounding Buford Highway in DeKalb County, near Atlanta. During the weekend of October 18, 2007, the Georgia Latino Alliance for Human Rights (GLAHR) and other advocacy groups from across the state reported sharp increases in arrests of immigrants in the area. "This weekend alone we received more than 200 phone calls from people telling horrible stories of arrests," said GLAHR executive director Adelina Nicholls of Mexico City. "There are hundreds of Latinos who've been hunted down like animals, taken to jail, and they don't even know why or whether or not they'll be released," said Nicholls more recently. Nicholls and other advocates are working feverishly in response to the exponential increase in official and extra-official profiling of immigrants. Last year there were forty-four reported armed robberies of DeKalb County-area Latino immigrants in August alone. One especially outrageous incident took place just west of Atlanta, in the rural town of Carrollton, last June. Emelina Ramirez, a Honduran immigrant, called local police to report that her roommates were attacking her, punching and kicking her in the stomach. Ramirez was pregnant. Locals say that when police got to Ramirez's apartment, officers handcuffed her, took her to jail and then ran her fingerprints through a federal database. After discovering that she was undocumented, they contacted federal authorities as stipulated under ACCESS and GSICA. Ramirez was then deported. Nicholls says she and GLAHR staff exist in a perpetual state of exhaustion after having to expand their DeKalb County work to deal with cases like Ramirez's. Adding to their load is the situation in nearby Cobb County, where the local jail has 500 adults captured on streets, at work and in their homes. All of these people, says Nicholls, are awaiting deportation. Beneath the growing fear and intensifying racial tensions of Georgia lies the new, more globalized economic system that sustains Juan Crow. At the core of the economy in Dixie are the financial dealings taking place in the shiny towers of Peachtree Street, buildings constructed atop the ashes of plantation houses. Lining Peachtree today are SunTrust, Bank of America and other titans of global finance with major operations in downtown Atlanta. Along with the financial players of Charlotte, North Carolina, the companies occupying the towers on Peachtree are among the prime movers behind the transformation and restructuring of the Georgia economy—and of its race relations. On Peachtree you can find U.S. banks and financial firms investing in companies doing business in post-NAFTA Latin America, where nonunion labor and miserably low wages drive immigration to Georgia and other states. The investment portfolios of many of these companies have grown fat with high-yield investments in the poultry, meatpacking, rug, tourism and other Georgia industries employing undocumented immigrants from Mexico and Latin America. The need to keep down the wages of these undocumented workers is fulfilled with the legal, political and psychological discipline of Juan Crow. Along with the most visible legacy of Jim Crow—Georgia's massive and growing population of black prisoners, housed in Reidsville and other, mostly rural prisons—the Peachtree State's undocumented immigrants find themselves at the bottom of the South's new political and economic order. By keeping down wages of the undocumented and documented workforce, Juan Crow doesn't just pit undocumented Latino workers against black and white workers. It also makes possible every investor's dream of merging Third World wages with First World amenities. Promotional brochures put out by the state's Department of Economic Development, for example, tout Georgia's "below average" wages and its status as a "right to work" (nonunion) state. Georgia's infrastructure, its proximity to U.S. markets and its incentives—nonunion labor, low wages, government subsidies, cheap land—allow the state to position itself as an attractive investment opportunity for foreign companies. While the fortunes of Ford, GM and other U.S. companies have declined in the South, the fortunes of foreign automakers here are rising. Companies like Korean car manufacturer Kia, which plans to open a $1.2 billion plant by 2009, see in Georgia and other Southern states a new pool of cheap labor. Of the $5.7 billion of total new investment in Georgia in 2006, more than 36 percent was from international companies—companies that were also responsible for nearly half of the 24,660 jobs created by government-supported foreign ventures that year. Also critical to the economic strategies formulated in the towers on Peachtree Street is another Latin-centered component: free trade with Latin America. "We are the gateway to the Americas," boasted Kenneth Stewart, commissioner of the Georgia Department of Economic Development. Stewart was among the more than 1,000 people, including three U.S. Cabinet members and finance ministers, trade representatives, investors, corporate executives and politicians from thirty-three countries in the hemisphere, who attended the sold-out Americas Competitiveness Forum at the Marriott on Peachtree Street last June. As an organizer of the event, the gregarious Stewart, like many of the region's economic leaders, considers hosting the forum a critical part of Atlanta's bid to become the secretariat of the Free Trade Area of the Americas organization. Local elites support building a $10 million, privately financed FTAA headquarters complex, possibly in the area near Peachtree and the Sweet Auburn neighborhood. Before being rapidly gentrified by the white-collar employees working in the Peachtree towers, Sweet Auburn, the birthplace of Martin Luther King Jr., was one of the cradles of the African-American freedom struggle. Echoing the connection frequently made here between increased globalization and commerce and improved race relations, Stewart told me that free trade "will benefit citizens of Georgia and the citizens of Mexico and other Latin American countries." But when I asked him about the increased racial tensions, including the murders of some immigrants in Georgia, and about the growing repression of noncitizen Mexican workers, Stewart abruptly ended the interview. For her part, Atlanta Mayor Shirley Franklin—among the most recent in a long line of African-American Atlanta mayors that includes former Martin Luther King colleague and Wal-Mart consultant Andrew Young (who has an office in a Peachtree high-rise)—also linked local freedom struggles with global free trade. Before the Americas Competitiveness Forum, she and other regional elites distributed splashy brochures promoting the city's FTAA bid. Included in the brochure was a picture of the headstone of King's grave, which bears the inscription Free at last. Free at last. Thank God Almighty I'm Free at last. The brochure promoting "the city too busy to hate" also paints a positive, global Kumbaya picture of the plight of Georgia's migrants: "With its attractive quality of life and rapidly expanding job market, Metro Atlanta draws thousands of newcomers every year and has growing Latin, Asian and African American communities." "This is the home of Dr. King," said Franklin in her welcome speech at the packed forum. "It is in the spirit of peace, it is in the spirit of collaboration and it is in the spirit of fairness that we attack this issue of [economic] competitiveness," she told her audience in King-like cadences. But had Franklin taken her foreign visitors on the short stroll from their hotel to Sweet Auburn, they would not have found the racial harmony described in the glossy brochures and spirited speeches. Documented and undocumented Latinos dealing with the economic and political effects of Juan Crow in Georgia (and across the country) find themselves unwitting actors in a centuries-old racial drama, which they must alter if Juan Crow is to be defeated. The major difference today is that Latinos also find themselves having to navigate a racial and political topography that is no longer black and white. Young Latinos, in particular, attend schools that teach them about Jim Crow while giving them a daily dose of Juan Crow. High school senior Ernesto Chávez (a pseudonym) does not look forward to becoming one of the few undocumented students in Georgia to go to a university like Kennesaw State, which requires them to carry student IDs with special color coding, or to a college that denies them aid and forces them to pay exorbitant, nearly impossible-to-pay out-of-state tuition. He has already learned enough about Jim Crow—and Juan Crow—in high school. Chávez, who sports a buzz cut and wears baggy clothes, said that when he studied Jim Crow in school, he identified strongly with the heroic generation of African-American youth who rebelled against it. "They couldn't ride in the same trains, they couldn't drink from the same fountains," he said during an interview in a classroom at Miller Grove High School in the Atlanta suburb of Lithonia. "I felt mad when I read about that, even though they weren't my people," said the soft-spoken Mexican, who is part of the small but growing minority of Latinos at Miller Grove (African-American students make up about 93 percent of the student body). Chávez said he came to know the limits of his physical, social and psychic mobility, thanks to the Georgia law that requires people to show proof of citizenship or legal status in order to obtain a driver's license. "It's hard to describe what it feels like to be 'illegal' here in Georgia. It's like you can't move," he said, his voice cracking slightly. "It feels scary because you know that when you go out to a public place, you might never know if you're going to come back. I'm really scared because my mother drives without a license. She's scared too." Chávez and other Latino students also expressed their shock and dismay at being discriminated against by some of the descendants of those discriminated against by Jim Crow. "When I first got here, I was confused. I went to a mostly white school in Gwinnett County and started noticing the fifth-grade kids saying things to me, racial stuff, asking me questions like, 'Are you illegal?'" said Chávez as he fidgeted nervously in one of those ubiquitous and visibly uncomfortable school desks. "But when I was in seventh grade, I went to Richards Middle School, where it wasn't the white people saying things, it was black people. They didn't like Mexican kids. They would call us 'Mexican border hoppers,' 'wetbacks' and all these things. Every time they'd see me, they yelled at me, threatened to beat me up after school for no reason at all." Asked how it felt, he said, "It's like, now since they have rights, they can discriminate [against] others." Chávez's family, along with many immigrant families in Georgia, will be watching closely to see how the state's justice system deals with the still-pending 2005 case of six Mexican farmworkers killed execution-style in their trailers, which were parked near the cotton and peanut farms they toiled on in Tifton. Pretrial motions began last July in the case, in which prosecutors allege that four African-American men bludgeoned five of the immigrants to death with aluminum baseball bats and shot one in the head while robbing them in their trailer home. Though the face of anti-immigrant racism in the Juan Crow South is still overwhelmingly identified as white by the immigrants I interviewed, some immigrants also see a black face on anti-immigrant hate. Politically, a growing divide has emerged between pro- and anti-immigrant blacks in Georgia. The African-American face of Juan Crow is embodied by State Senator and probable Democratic Atlanta mayoral candidate Kasim Reed (he's also considering a gubernatorial bid). Reed proposed a five-year prison sentence for anyone caught trying to secure employment with a false ID. Local Latino and African-American activists have criticized Reed for what Bruce Dixon of the online Black Agenda Report called his "morally bankrupt attempt to outflank Republicans on the right." Activists like Janvieve Williams of the U.S. Human Rights Network, based in Atlanta, counter the anti-immigrant tide by elevating the tone of the debate and shifting the terms to human rights. As an Afro-Panamanian immigrant, Williams says she feels discrimination from many whites in Georgia, but she also experiences discrimination from mestizo immigrants. Her perception of anti-immigrant sentiments among African-Americans adds another layer to the complex racial dynamics unleashed by Juan Crow. "I'm caught between African-Americans who don't want to understand immigration and immigrants and Latinos who use words like 'moreno,' 'negritos,' 'los negros' and other terms that are not good," says Williams. But rather than see her Afro-Latino identity and her Latin American political experience as a barrier between communities, Williams—who co-hosts Radio Diaspora, a weekly Afro-Latino program that helped promote the 50,000-plus immigrants' rights marches in 2006—uses Latin American media and organizing experience to cross linguistic and political borders. "We need to move from civil rights to human rights. We need to start using the language and tools of human rights around the issue of immigration. It's an international issue that needs an international framework," says Williams, whose organization co-sponsored the visit to Atlanta last May by the United Nations special rapporteur on the human rights of migrants. Williams's organization brought together many groups who shared stories of Juan Crow with the special rapporteur, who took his report to the UN General Assembly. In the same way that the concept of civil rights grew as a response to Jim Crow, the human rights framework advocated by Williams and other immigrants' rights activists in the South and across the country challenges traditional approaches to race and rights. "Some civil rights leaders here don't think human rights affects us in the United States," says Williams. "A lot of the [civil rights] elders of that movement are not linked to the human rights movement, and that also gets in the way of working together." Not all of Georgia's civil rights elders fit thirtysomething Williams's description. The Rev. Joseph Lowery, the lieutenant to Martin Luther King Jr., says he did not perceive the threat that some whites and African-American Georgians felt from the massive immigrant marches of 2006; instead he sees in the millions marching in Atlanta and across the country "instruments of God's will to change this country." Reverend Lowery, who now leads the Georgia Coalition for the People's Agenda, has spoken eloquently and vociferously against what he considers "wicked" immigration policies and has attended pro-immigrant rallies. He believes that massive immigration to the United States came about because of the workings within the tall buildings like those in spitting distance of his office in the historic Atlanta Life building on Auburn Avenue. "We've globalized money, we've globalized trade and commerce, but we haven't globalized fairness toward work and labor. The solution to the 'problem' of immigration and other problems is globalization of justice," he said. Speaking of the relationship between American blacks and Latino immigrants, Lowery said, "There are many differences between our experience and that of immigrant Latinos—but there is a family resemblance between Jim Crow and what is being experienced by immigrants. Both met economic oppression. Both met racial and ethnic hostility. "But the most important thing to remember," said Lowery, as if casting out the demons of Juan and Jim Crow, "is that, though we may have come over on different ships, we're all in the same damn boat now." Lovato Roberto Lovato, a frequent Nation contributor, is a New York-based writer with New America Media The United States prison system keeps marking shameful milestones. In late February, the Pew Center on the States released a report showing that more than 1 in 100 American adults are presently behind bars — an astonishingly high rate of incarceration notably skewed along racial lines. One in nine black men aged 20 to 34 are serving time, as are 1 in 36 adult Hispanic men. Now, two new reports, by The Sentencing Project and Human Rights Watch, have turned a critical spotlight on law enforcement's overwhelming focus on drug use in low-income urban areas. These reports show large disparities in the rate at which blacks and whites are arrested and imprisoned for drug offenses, despite roughly equal rates of illegal drug use. Black men are nearly 12 times as likely to be imprisoned for drug convictions as adult white men, according to one haunting statistic cited by Human Rights Watch. Those who are not imprisoned are often arrested for possession of small quantities of drugs and later released — in some cases with a permanent stain on their records that can make it difficult to get a job or start a young person on a path to future arrests. Similar concerns are voiced by the New York Civil Liberties Union, which issued a separate study of the outsized number of misdemeanor marijuana arrests among people of color in New York City. Between 1980 and 2003, drug arrests for African-Americans in the nation's largest cities rose at three times the rate for whites, a disparity "not explained by corresponding changes in rates of drug use," The Sentencing Project finds. In sum, a dubious anti-drug strategy spawned amid the deadly crack-related urban violence of the 1980s lives on, despite changed circumstances, the existence of cost-saving alternatives to prison for low-risk offenders or the distrust of the justice system sowed in minority communities. Nationally, drug-related arrests continue to climb. In 2006, those arrests totaled 1.89 million, according to federal data, up from 1.85 million in 2005, and 581,000 in 1980. More than four-fifths of the arrests were for possession of banned drugs, rather than for their sale or manufacture. Underscoring law enforcement's misguided priorities, fully 4 in 10 of all drug arrests were for marijuana possession. Those who favor continuing these policies have not met their burden of proving their efficacy in fighting crime. Nor have they have persuasively justified the yawning racial disparities. All is not gloomy. Many states have begun expanding their use of drug treatment as an alternative to prison. New York's historic crime drop has continued even as it has begun to reduce the number of nonviolent drug offenders in prison, attesting to the oft-murky relationship between incarceration and crime control. In December, the United States Sentencing Commission amended the federal sentencing guidelines to begin to lower the disparities between the sentences imposed for crack cocaine, which is more often used by blacks, and those imposed for the powder form of the drug. The looming challenge, says Jeremy Travis, the president of John Jay College of Criminal Justice, is to have arrest and incarceration policies that are both effective for fighting crime and promoting racial justice and respect for the law. As the new findings attest, the nation has a long road to travel to attain that goal. "Dead zones" containing too little oxygen for fish to breathe are growing as global temperatures increase. Warmer water dissolves less oxygen, so as temperatures rise, oxygen vanishes from oceans. Marine biologists are warning that if dead zones continue expanding, oceanic "deserts" could massively deplete marine life and fish stocks. Previous studies have shown that surface layers of the ocean can be depleted of oxygen by pollution draining out from rivers, as in the Gulf of Mexico. However the new study finds depletion at intermediate ocean depths, between 300 and 700 metres. There has also been evidence of oxygen depletion closer to the sea bed in some regions, such as the Arabian Sea, but no one has looked before in detail at intermediate depths. "From our observations we can only tell what happened in the past 50 years, but we need to find out what will happen in the future," says Lothar Stramma of the University of Kiel, Germany. Oxygen shortfall Stramma's team used data from historical records of oceanic oxygen concentrations, collected mainly from research vessels. They combined it with recent data from buoys newly equipped to measure oxygen concentrations, as well as temperature and salinity. "We added our own data from recent cruises and floats where available to continue the older data set to the present," says Stramma. The combined data set shows that, over the past 50 years, large volumes of ocean previously rich in oxygen have become "oxygen minimum zones" (OMZs) containing less than 120 micromoles of oxygen per kilogram of water. These are the concentrations at which fish, squid, crustaceans and other marine creatures begin to suffocate and die. On average, the team calculate that oxygen dropped by between 0.90 and 0.34 micromoles per kilogram of ocean per year. Worst affected of six areas sampled was a tropical region of the Atlantic Ocean to the west of Africa. Between 1960 and 2006, the layer with less than 90 micromoles of oxygen per kilogram of ocean grew dramatically – its vertical thickness increased by 85%, from 370 to 690 metres. The other region of particular concern was in the equatorial Pacific Ocean. Andy Gooday of the UK's National Oceanography Centre in Southampton says that oxygen-deprived zones caused through pollution from human activity - such as those in the Gulf of Mexico or off the coast of Louisiana – are serious, but they're dwarfed in size by the OMZs in the current study. "They're far larger, and so could have a bigger impact if they expanded," he says. But the ultimate impact and cause of the growing deserts is difficult to gauge, say the researchers. Breathless waves Oxygen is delivered to intermediate levels by surface waters which carry more oxygen, and sink through being colder and denser. Since warm water carries less oxygen and sinks less through being lighter, climate change, which has been blamed for increases in sea surface temperatures, could possibly account for the growing OMZs, says Greg Johnson, a co-author at the US National Oceanic and Atmospheric Administration's Marine Environmental Laboratory in Seattle. Gooday stresses that OMZs are a natural phenomenon, and have fluctuated in volume throughout history. They are influenced by natural climatic phenomena such as the cyclical El Niño weather patterns that whip up ocean currents every decade or so. Stramma's team acknowledge this, and point out that oxygen-depleted oceans driven by high levels of atmospheric carbon dioxide were to blame for huge Permian extinctions of marine creatures 250 million years ago. The big questions are whether global warming is making the deserts larger today, and how this affects marine life. Gooday, who has studied how low-oxygen conditions affect marine life at the sea bed, says that mobile creatures can cope best, because they can move elsewhere. Oxygen-poor water tends to become rich in the organic matter of dead organisms, as there's less oxygen available to aid decay. This provides food for fish, although they take risks accessing it because of the lack of oxygen to breathe. "They can swim in and feed and swim out again, figuratively 'holding their breath' till they get out," says Gooday. This explains why marine creatures tend to live at the upper and lower limits of the OMZs, where they can "dip in and dip out", he says. "The Oil Bubble: Set to Burst?" That was the headline of an October 2004 article in National Review, which argued that oil prices, then $50 a barrel, would soon collapse. Ten months later, oil was selling for $70 a barrel. "It's a huge bubble," declared Steve Forbes, the publisher, who warned that the coming crash in oil prices would make the popping of the technology bubble "look like a picnic." All through oil's five-year price surge, which has taken it from $25 a barrel to last week's close above $125, there have been many voices declaring that it's all a bubble, unsupported by the fundamentals of supply and demand. So here are two questions: Are speculators mainly, or even largely, responsible for high oil prices? And if they aren't, why have so many commentators insisted, year after year, that there's an oil bubble? Now, speculators do sometimes push commodity prices far above the level justified by fundamentals. But when that happens, there are telltale signs that just aren't there in today's oil market. Imagine what would happen if the oil market were humming along, with supply and demand balanced at a price of $25 a barrel, and a bunch of speculators came in and drove the price up to $100. Even if this were purely a financial play on the part of the speculators, it would have major consequences in the material world. Faced with higher prices, drivers would cut back on their driving; homeowners would turn down their thermostats; owners of marginal oil wells would put them back into production. As a result, the initial balance between supply and demand would be broken, replaced with a situation in which supply exceeded demand. This excess supply would, in turn, drive prices back down again — unless someone were willing to buy up the excess and take it off the market. The only way speculation can have a persistent effect on oil prices, then, is if it leads to physical hoarding — an increase in private inventories of black gunk. This actually happened in the late 1970s, when the effects of disrupted Iranian supply were amplified by widespread panic stockpiling. But it hasn't happened this time: all through the period of the alleged bubble, inventories have remained at more or less normal levels. This tells us that the rise in oil prices isn't the result of runaway speculation; it's the result of fundamental factors, mainly the growing difficulty of finding oil and the rapid growth of emerging economies like China. The rise in oil prices these past few years had to happen to keep demand growth from exceeding supply growth. Saying that high-priced oil isn't a bubble doesn't mean that oil prices will never decline. I wouldn't be shocked if a pullback in demand, driven by delayed effects of high prices, sends the price of crude back below $100 for a while. But it does mean that speculators aren't at the heart of the story. Why, then, do we keep hearing assertions that they are? Part of the answer may be the undoubted fact that many people are now investing in oil futures — which feeds suspicion that speculators are running the show, even though there's no good evidence that prices have gotten out of line. But there's also a political component. Traditionally, denunciations of speculators come from the left of the political spectrum. In the case of oil prices, however, the most vociferous proponents of the view that it's all the speculators' fault have been conservatives — people whom you wouldn't normally expect to see warning about the nefarious activities of investment banks and hedge funds. The explanation of this seeming paradox is that wishful thinking has trumped pro-market ideology. After all, a realistic view of what's happened over the past few years suggests that we're heading into an era of increasingly scarce, costly oil. The consequences of that scarcity probably won't be apocalyptic: France consumes only half as much oil per capita as America, yet the last time I looked, Paris wasn't a howling wasteland. But the odds are that we're looking at a future in which energy conservation becomes increasingly important, in which many people may even — gasp — take public transit to work. I don't find that vision particularly abhorrent, but a lot of people, especially on the right, do. And so they want to believe that if only Goldman Sachs would stop having such a negative attitude, we'd quickly return to the good old days of abundant oil. Again, I wouldn't be shocked if oil prices dip in the near future — although I also take seriously Goldman's recent warning that the price could go to $200. But let's drop all the talk about an oil bubble. Even before the House passed a new plan last week to prevent foreclosures, President Bush threatened to veto the bill, calling it "overly burdensome." The bill is not burdensome enough. To help an estimated 500,000 borrowers switch to federally insured loans, it relies on the voluntary participation of lenders, an approach that has doomed other foreclosure-prevention efforts. Earlier this year, Mr. Bush derided a modest plan to provide $4 billion to states and localities to buy foreclosed properties, saying that buying up empty homes helps only "the lenders or the speculators." Actually, it protects entire neighborhoods and local economies from the effects of foreclosures by preventing a greater buildup of unsold homes and a further drop in prices. Most egregious, Mr. Bush has resisted efforts to allow bankrupt homeowners to have their mortgages modified under court protection, parroting the mortgage industry's overwrought objections to what is arguably the best way to avoid preventable foreclosures. Letting homeowners have the loans modified in court would keep them in their homes, helping to stabilize the housing market while inflicting the considerable pain of bankruptcy on both lender and borrower. When Mr. Bush hasn't been busy saying no to worthy efforts, he has been endorsing Orwellian-named programs that have failed to address the problem effectively. Hope Now, the mortgage industry alliance that pledged a big effort five months ago to modify subprime loans, has barely made a dent. Project Lifeline, announced last February, has yet to release any results. The Times reported last month that another program much touted by Mr. Bush, FHA Secure, has helped fewer than 2,000 homeowners at risk of foreclosure. Meanwhile, defaults, the first link in the foreclosure chain, are running at an annual pace of 2.2 million so far this year. But the Bush administration's free-market biases have apparently convinced officials that bold action would impede a necessary economic correction. That is misguided. The housing bust is at the root of the economy's problems, and foreclosures are its most serious manifestation. House prices have collapsed to a point where they are creating a negative spiral: price drops provoke foreclosures, which in turn provoke even lower prices, and so on. The danger now is not too much government intervention but too little. The House is to be commended for defying Mr. Bush's veto threat, especially the 39 Republicans who joined all the House Democrats. When the Senate considers a similar measure, Republicans there are likely to face pressure, too. At least the Senate bill will probably not be considered until after Memorial Day. While home for the holiday, senators are sure to hear from constituents about the need for mortgage relief. That might inspire lawmakers to do what Mr. Bush is unwilling to do. To hear some in Congress tell it, the federal government urgently needs to expand its electronic employment verification system, E-Verify, to all corners of the country and force every business to use it. But a hearing in the House last week raised serious questions about the costs and collateral damage of that expansion, the latest scheme by hard-liners to slam the door shut on unauthorized immigrant workers. E-Verify is a voluntary program in which employers can check workers' names against databases kept by the Social Security Administration and the Department of Homeland Security. About 61,000 employers have signed up. A bill by Heath Shuler, a North Carolina Democrat, and Tom Tancredo, the Republican anti-immigration extremist from Colorado, would require each of the 7.4 million employers in the United States to participate in E-Verify — and to fire anyone, citizen or otherwise, who cannot prove that he or she has the right to work. Barbara Kennelly, a former Democratic representative from Connecticut and president of the National Committee to Preserve Social Security and Medicare, warned at the hearing that forcing Social Security to take on the enormous burden of immigration enforcement would be a harmful diversion from its core mission and could strain the bureaucracy to the breaking point. That would have frightening implications for millions of people who are supposed to be served by the Social Security Administration, particularly the elderly and those who are disabled. With Social Security struggling to provide existing services and the sunset of the baby boom approaching, Ms. Kennelly said, now is no time to pile on more responsibilities. The backlog of pending disability cases at the initial level is more than 500,000, and more than 750,000 people who have appealed rejected claims are awaiting decisions. As of February, the average wait on an appeal was more than 500 days. Critics have noted other problems with the bill: the staggering costs to the federal budget — about $40 billion over 10 years, both from increased spending and falling tax revenue as workers are driven off the books — as well as the expense to businesses and the inconvenience and pain for workers caught by its flaws. Because the Social Security database is rotten with errors, the crackdown could force millions of Americans to battle a computerized bureaucracy that tells them, unjustly, that they cannot work. And the Government Accountability Office has cited evidence of employers abusing E-Verify, forcing workers who are tentatively flagged as unauthorized to take pay cuts or work longer hours until they can clear their names. Supporters of Mr. Shuler's and Mr. Tancredo's hard-edged immigrant-deportation strategy have been pushing to get their bill to the floor. With any luck, testimony from experts like Ms. Kennelly will raise enough alarms to slow things down. If and when the government imposes a national employment verification scheme, it must be done with a serious commitment to fairness and accuracy, with ample protections for workers who fall into bureaucratic cracks, and for all who depend on the government to provide other critical services. Such a system cannot be imposed without other immigration reforms, including a path to legalization for undocumented workers who would otherwise be pushed permanently into the shadows by a plan that gives them no way to work or to get right with the law. Two of the nation's largest labor unions have struck confidential agreements with large employers that give the companies the right to designate which of their locations, and how many workers, the unions can seek to organize.Two of the nation's largest labor unions have struck confidential agreements with large employers that give the companies the right to designate which of their locations, and how many workers, the unions can seek to organize. The agreements are raising questions about union transparency and workers' rights. A summary document put together by the unions says it is critical to the success of the partnership "that we honor the confidentiality and not publicly disclose the existence of these agreements." That includes not disclosing them to union members. The agreements involve workers who provide food, laundry and housekeeping services on an outsourced basis. The employers are Sodexho Inc. and the Compass Group USA unit of London-based Compass Group PLC. The unions are the 1.7 million-member Service Employees International Union, or SEIU, and Unite Here. The unions say they negotiated a similar agreement with Aramark Corp. but that Aramark broke the deal last year, and they're trying to reach a new one. An Aramark spokesman declined to comment on that. The unions defend the agreements and their secrecy, saying they've helped workers join unions in growing industries at a time of declining union membership in many sectors. Last year, 7.5% of private-sector workers belonged to unions, compared with 17% 25 years ago. The agreements have "resulted in tens of thousands of workers getting unions" and been a major advance for the labor movement, said the president of Unite Here, Bruce Raynor. He defended keeping them confidential, saying the companies involved insisted on that for competitive reasons. The agreements go a step beyond what are called neutrality agreements. Those agreements give unions the ability to organize workers free of employer opposition. Unions often seek these in conjunction with an agreement to organize workers via card-signing -- a speedier alternative to secret-ballot elections, which can drag on and trigger counter-campaigns by employers. Companies often agree to neutrality after unions bring pressure on the employers from investors, local politicians and community leaders. Labor experts said agreements such as those the SEIU and Unite Here reached open a window on a big debate within organized labor: what kind of tradeoffs to make when forging neutrality deals, and whether to let union members know of the tradeoffs. The SEIU's president, Andy Stern, said the unions sought the agreements after realizing that traditional organizing campaigns at individual sites were proving ineffective. "The old ways aren't working, and we're trying to find different relationships with employers that guarantee workers a voice," he said. He dismissed the idea that the new agreements are undemocratic. "These workers have no unions; that's where we start from," he said. In 2005, the SEIU and Unite Here created a partnership to represent workers that provide food and housekeeping services. Then they approached the companies individually. Since 2005, the unions have organized about 15,000 workers at Aramark, Compass and Sodexho, which collectively employ more than 300,000 people in North America, according to an SEIU spokeswoman. A key question in the agreements is determining at which sites a union can organize. Unite Here's Mr. Raynor said specific sites where unions can organize are selected jointly by the companies and the unions. The agreements reached with Sodexho and Compass in 2005 give the companies "the right to designate the sites" where unions may try to organize workers, according to a confidential summary of the agreements reviewed by the Wall Street Journal. The companies wouldn't comment on how locations were selected for organizing. The agreements, which expire at then end of 2008, stipulate the number of employees that the unions can try to organize: 11,000 Sodexho workers and 20,000 Compass workers. The Right to Strike The unions gave up the right to strike and to post derogatory language about the companies on bulletin boards. With Compass, the unions agreed to these restrictions "anywhere in the world." In exchange, the companies agree not to oppose union organizing at the designated locations. But limits are also set. "Local unions are not free to engage in organizing activities at any Compass or Sodexho locations unless the sites have been designated," says the confidential summary. Mr. Stern said that if workers wanted to join a union at a location the companies had ruled out, having these agreements would enable a union to negotiate on the matter. "If workers want a union we can discuss that," he said. "Trust me, a lot more workers are coming in than being excluded by the agreement." The companies said they reached the agreements because they support their employees' right to unionize. A spokeswoman for Compass, Cheryl Queen, said the agreement "protects the interest of both our associates and our clients, while allowing us to develop positive relationships with those trade unions." A Sodexho spokeswoman, Jaya Bohlmann, said, "We pride ourselves on having a very open dialogue with the union and their representatives." The SEIU has added more members in recent years than any other labor union. But resentment against Mr. Stern has been building among some in the union, who see him as too close to management and too insistent on centralizing power. Some argue that the SEIU is adding new members at the expense of current ones. "We really believe that Stern and the international are putting growth in numbers ahead of any other consideration of what a union means in the lives of working people," said Zev Kvitky, president of a small SEIU local that represents food-service and custodial workers at Stanford University. Mr. Stern, rejecting the criticism, said the union actually is becoming less centralized. 'Not Widespread' Labor experts said it was highly unusual for unions to give employers the ability to choose which employees a union can try to organize. "That's not widespread," said Robert Bruno, associate professor of labor relations at the University of Illinois at Chicago. "When you agree to these kinds of conditions the question is what is lost and what is gained?" The agreements enable the unions to organize workers through a simple card-signing process in which the companies agree to remain neutral, rather than a secret-ballot election. The companies agree to provide the unions with lists of employees and access to workers. The unions give up the ability to strike and agree that they will present issues before a labor-management committee before engaging in leafleting or rallies. The battle over voting rights will expand this week as lawmakers in Missouri are expected to support a proposed constitutional amendment to enable election officials to require proof of citizenship from anyone registering to vote. The measure would allow far more rigorous demands than the voter ID requirement recently upheld by the Supreme Court, in which voters had to prove their identity with a government-issued card. Sponsors of the amendment — which requires the approval of voters to go into effect, possibly in an August referendum — say it is part of an effort to prevent illegal immigrants from affecting the political process. Critics say the measure could lead to the disenfranchisement of tens of thousands of legal residents who would find it difficult to prove their citizenship. Voting experts say the Missouri amendment represents the next logical step for those who have supported stronger voter ID requirements and the next battleground in how elections are conducted. Similar measures requiring proof of citizenship are being considered in at least 19 state legislatures. Bills in Florida, Kansas, Oklahoma and South Carolina have strong support. But only in Missouri does the requirement have a chance of taking effect before the presidential election. In Arizona, the only state that requires proof of citizenship to register to vote, more than 38,000 voter registration applications have been thrown out since the state adopted its measure in 2004. That number was included in election data obtained through a lawsuit filed by voting rights advocates and provided to The New York Times. More than 70 percent of those registrations came from people who stated under oath that they were born in the United States, the data showed. Already, 25 states, including Missouri, require some form of identification at the polls. Seven of those states require or can request photo ID. More states may soon decide to require photo ID now that the Supreme Court has upheld the practice. Democrats have already criticized these requirements as implicitly intended to keep lower-income voters from the polls, and are likely to fight even more fiercely now that the requirements are expanding to include immigration status. "Three forces are converging on the issue: security, immigration and election verification," said Dr. Robert A. Pastor, co-director of the Center for Democracy and Election Management at American University in Washington. This convergence, he said, partly explains why such measures are likely to become more popular and why they will make election administration, which is already a highly partisan issue, even more heated and litigious. The Missouri secretary of state, Robin Carnahan, a Democrat who opposes the measure, estimated that it could disenfranchise up to 240,000 registered voters who would be unable to prove their citizenship. In most of the states that require identification, voters can use utility bills, paychecks, driver's licenses or student or military ID cards to prove their identity. In the Democratic primary election last week in Indiana, several nuns were denied ballots because they lacked the required photo IDs. Measures requiring proof of citizenship raise the bar higher because they offer fewer options for documentation. In most cases, aspiring voters would have to produce an original birth certificate, naturalization papers or a passport. Many residents of Arizona and Missouri already have citizenship information associated with their driver's licenses, and within a few years all states will be required by the federal government to restrict licenses to legal residents. Critics say that when this level of documentation is applied to voting, it becomes more difficult for the poor, disabled, elderly and minorities to participate in the political process. "Everyone has been focusing on voter ID laws generally, but the most pernicious measures and the ones that really promise to prevent the most eligible voters from voting is what we see in Arizona and now in Missouri," said Jon Greenbaum, a former voting rights official at the Department of Justice and now the director of the voting rights project at the Lawyers' Committee for Civil Rights Under Law, a liberal advocacy group. Aside from its immediacy, the action by Missouri is important because it has been a crucial swing state in recent presidential elections, with outcomes often decided by a razor-thin margin. Supporters of the measures cite growing concerns that illegal immigrants will try to vote. They say proof of citizenship measures are an important way to improve the accuracy of registration rolls and the overall voter confidence in the process. State Representative Stanley Cox, a Republican from Sedalia and the sponsor of the amendment, said that the Missouri Constitution already required voters to be citizens and that his amendment was simply meant to better enforce that requirement. "The requirements we have right now are totally inadequate," Mr. Cox said. "You can present a utility bill, and that doesn't prove anything. I could sit here with my nice photocopier and create a thousand utility bills with different names on them." From October 2002 to September 2005, the Justice Department indicted 40 voters for registration fraud or illegal voting, 21 of whom were noncitizens, according to department records. In 2006, the Missouri legislature passed a photo identification bill that the State Supreme Court later ruled unconstitutional because it placed too much of a burden on voters. It was that ruling that has spurred state lawmakers to try to change the constitution. The proposed amendment does not require the signature of the governor but would need to be approved by the voters in the state's August primary in the governor's race to take effect before the presidential election. If passed this week, the amendment clears the way for a pending bill that would require some kind of identification in order to prove citizenship and to register to vote. But many questions about the bill — like whether current registered voters will have to obtain a new form of identification — have not been resolved. Lillie Lewis, a voter who lives in St. Louis and spoke at a news conference last week organized to oppose the amendment, said she already had a difficult time trying to get a photo ID from the state, which asked her for a birth certificate. Ms. Lewis, who was born in Mississippi and said she was 78 years old, said officials of that state sent her a letter stating that they had no record of her birth. "That's downright wrong," Ms. Lewis said. "I have voted in almost all of the presidential races going back I can't remember how long, but if they tell me I need a passport or birth certificate that'll be the end of that." A 2006 federal rule intended to keep illegal immigrants from receiving Medicaid was widely criticized by state officials for shutting out tens of thousands of United States citizens who were unable to find birth certificates or other documents proving their citizenship. Supporters of citizenship requirements, however, say the threat of voting by illegal immigrants is real. Thor Hearne, a lawyer for the American Center for Voting Rights, a conservative advocacy group, cited a California congressional race in 1996 in which a Republican, Bob Dornan, was narrowly defeated. Mr. Dornan contested the results, claiming that illegal immigrants had voted. After a 14-month investigation by state, county and federal officials, a panel concluded that up to 624 noncitizens may have registered to vote. The report came to no firm determination of whether any of those people had actually voted. Mr. Hearne said the requirement would not pose a significant hardship on voters. "There were a lot of the same alarmist charges regarding Indiana voter ID law and how it would disenfranchise so many people," Mr. Hearne said, "and those allegations were not accepted by the Supreme Court." He added that if states actively provided a free form of identification proving citizenship, the number of people who would be disenfranchised would be very low. "To those who have spent great energy opposing some of the voter registration or voter identification requirements, I would say their energy would be much better spent working toward trying to provide identifications to those who need them or assisting these people with getting registered," Mr. Hearne said. But organizations working in Arizona say they are doing just that and running into problems. "The requirement is having a devastating effect on our voter registration work in Latino communities because so many citizens simply don't have a passport or original birth certificate," said Michael Slater, deputy director of Project Vote, a liberal advocacy group that is working with Acorn, a national organizing group, to sign up new voters in Arizona. But Arizona officials say the measure is broadly popular in the state "The voters of Arizona feel strongly about proof of citizenship when registering to vote as a basic eligibility requirement," said the secretary of state, Jan Brewer, a Republican, testifying before Congress in March. MANTA, Ecuador — The scene at the Manta Ray Cafe, a mess hall here at the most prominent American military outpost in South America, suggests all is normal. A television tuned to Fox Sports beams in a golf tournament. Ecuadorean contractors serve sloppy Joes near refrigerators bulging with Dr Pepper and Gatorade. Air Force personnel in jumpsuits preparing to board an Awacs surveillance plane leaf through dog-eared paperbacks. But by next year, if President Rafael Correa gets his way, this base will be gone, and, with it, one of the most festering sources of controversy in Washington's long war on drugs. "It's not panic mode yet," said Steven Tate, 42, a Clearwater, Fla., contractor who moved here two years ago after retiring from the Air Force to help run the base fire station. "I'm hoping a miracle will happen that will allow us to stay." To the Bush administration, the American air station here is a critical component in the war on drugs in the Andes. The 180 service members based here conduct about 100 flights a month over the Pacific looking for drug boats from Colombia, the source of about 90 percent of the cocaine used in the United States. Last year, those flights led to about 200 cocaine seizures, the Air Force said. But to Ecuadoreans, Manta is a flash point in a regional debate over the limits of American power in Latin America. In 1999, American officials negotiated a 10-year agreement with President Jamil Mahuad to set up the elaborate airborne radar detection project at Manta, a port of 250,000. The deal did not require the United States to pay rent to Ecuador. Nor did it allow Americans stationed here to be judged in Ecuadorean courts for crimes committed in Ecuador. Nor was it submitted to the Ecuadorean Congress for approval. Mr. Mahuad was toppled in a military coup a few weeks later. To Mr. Correa, 45, who opposes renewing the agreement allowing the American base at Manta, the base compromises Ecuador's sovereignty. Many Ecuadoreans fear it could end up dragging their nation further into Colombia's long civil war, a fear that was heightened in March, when Colombian forces raided a rebel camp in Ecuadorean territory. Particularly after the Bush administration explicitly sided with Colombia in the diplomatic crisis that erupted after the raid, critics of the United States here see little reason to keep the base. But to Mr. Correa, the debate is personal as well as political. When he was a child in Guayaquil, his father was imprisoned in the United States for several years on smuggling charges. He has no intent of ensnaring Ecuadoreans further in the American war on drugs. He has proposed pardoning couriers with long prison sentences for smuggling small amounts of cocaine. He is also one of the most vocal proponents of creating a Latin American defense council that excludes the United States. In a shake-up of the armed forces in April, Mr. Correa picked Javier Ponce, a poet who advocates less military cooperation with United States, as defense minister. "Should Ecuador have a base in Miami? Or New Jersey?" Mr. Ponce, 59, said. "The decision of the government is not to renew this accord." For now, operations here continue as they have for years. When asked what his mission consists of, Lt. Col. Robert Leonard, the ranking American officer in Ecuador, points to the blue waters of the Pacific. The Awacs sitting on the tarmac at Manta are useless over Colombian soil; the jungle canopy effectively renders them blind for spotting small aircraft, Colonel Leonard explained. But over the ocean, sometimes the Awacs' radar happens upon speedboats, some of which transport Colombian cocaine to points north. If this seems like using a $300 million plane to track down far more primitive and cheaper vessels, the personnel here are the first to acknowledge that it is. "It is a big game of cat and mouse," the colonel said. "We look for dots on a radar screen. Those dots are smuggling drugs." None of the planes here are armed; their mission is detection. The military says it spends $15 million a year for its operations here, although that figure excludes major expenses like fuel. Finding another location would have been easier a decade ago, when American standing in the region was higher and allies were easier to find. For now, American officials are resigned to transferring Manta's operations when the agreement expires in November 2009, most likely to bases in Curaçao and El Salvador. Together, officials here said, those three bases, known in military jargon as F.O.L.'s, or forward operating locations, helped seize $1.1 billion worth of drugs in 2007, with the focus of the seizures on smuggling out of Colombia. The officials had no estimate of how much cocaine eluded them. "We have had a lot of success in the fight against drugs with the F.O.L.," Linda Jewell, the American ambassador to Ecuador, said recently. "We will talk to the government to find ways in which we can continue working together." But some antinarcotics experts in Ecuador and the United States question whether it is worth the cost of maintaining the base, both economically and politically. And many Colombian traffickers have shifted tactics in ways that render Manta less effective. Smugglers, for instance, have begun to rely less on speedboats and more on semi-submersibles, the low-tech subs built for $1 million each in Colombia's jungle that easily elude high-tech Awacs. Russell Crandall, a former White House adviser and an expert on Andean antinarcotics efforts, said interdiction efforts, as well as Colombia's resilient drug trade, would survive without Manta. "Manta is just icing on the cake," he said. "We had the drug war going full speed before Manta, and we'll have it full speed after Manta." Meanwhile, the four-member crews take off each day here for 12-hour sorties. "We have hours of sheer boredom followed by moments of sheer terror," said Lt. Charles Moore, the leader of one Awacs crew. "It is like finding needles in a haystack." DALLAS — Jaime Pacheco rolled out of bed at dawn last week to the blaring chorus of two alarms. Then Jaime, a 15-year-old high school freshman, smoothed his striped comforter, dumped two scoops of kibble for the dogs out back and strapped a G.P.S. monitor to his belt. By 7:15, Jaime was in the passenger seat of his grandmother's sport-utility vehicle, holding the little black monitor out the window for the satellite to register. A few miles down the road, at Bryan Adams High School in East Dallas, he got out of the car, said goodbye to his grandmother and paused to press a button on the unit three times. A green light flashed, and then Jaime headed for the cafeteria with plenty of time before the morning bell. It was not always like this. Jaime used to snooze until 2 p.m. before strolling into school. He fell so far behind that he is failing most of his classes and school officials sent him to truancy court. Instead of juvenile detention, Jaime was selected by a judge to be enrolled in a pilot program at Bryan Adams in which chronically truant students are monitored electronically. Since Jaime started carrying the Global Positioning System unit April 1, he has had perfect attendance. "I'm just glad they didn't take him to jail," said Jaime's grandmother Diana Mendez, who raised him. "He's a good kid. He was just on a crooked path." Educators are struggling to meet stricter state and federal mandates, including those of the No Child Left Behind Act, on attendance and graduation rates. The Dallas school system, which, like other large districts, has found it difficult to manage the large numbers of truant students, is among the first in the nation to experiment with the electronic monitoring. "Ten years ago the issue of truancy just slid by," said Jay Smink, executive director of the National Dropout Prevention Center. "Now the regulations are forcing them to adhere to the policies." Nearly one-third of American students drop out of school, and Dallas has the seventh-worst graduation rate among large school districts, according to a study released in April by America's Promise Alliance, founded by Colin L. Powell, the former secretary of state. At Bryan Adams, 9 of the more than 300 students sent to truancy court this year are enrolled in the six-week pilot program. The effort is financed by a $26,000 grant from Bruce Leadbetter, an equity investor who supports the program's goals. The bulk of the money pays the salary of a full-time case manager, who monitors the students and works with parents and teachers. "I can't do anything with them if they don't come to school," said Cynthia Goodsell, the principal at Bryan Adams. Kyle Ross, who runs the in-school suspension program at Bryan Adams, was skeptical of the electronic monitoring until he saw that it worked. "We're always yearning for something tangible to use as tools to teach self-efficacy," Mr. Ross said. "Everyone's so overwhelmed. We'll try anything." Dallas's experiments in tracking truancy started three years ago. Last year, case managers used a G.P.S. system to locate a truant student on the verge of overdosing on drugs, and they discovered that a student had skipped school because he was contemplating suicide. Ricardo Pacheco, 18, who is no relation to Jaime, said electronic monitoring had helped him get on track last year, despite advice from his friends to "just yank it off." "It was easier to come to school each day, stay out of the streets and be home every night," said Mr. Pacheco, a father of two young children and a former gang leader. Now he is about to become the first male from his father's side of the family to graduate. "They all dropped out or are in jail," Mr. Pacheco said. Paul Pottinger, the chief executive of the company marketing the truancy monitoring system being tested in Dallas, said, "With location verification, they can't sneak through it, they can't game it like they can game their parents and game their teachers and game their friends." Across the state, in Midland, county justice officials started using electronic ankle monitors last summer to track about 14 of the most chronically truant students. The officials hope to double the number of students monitored next year. Truancy experts say the results in Texas are promising. "It's far better than locking a kid up," and is cheaper, said Joanna Heilbrunn, a senior researcher for the National Center for School Engagement. But the future of the Dallas program is uncertain. Mr. Pottinger's company, the Center for Criminal Justice Solutions, is seeking $365,000 from the county to expand the program beyond Bryan Adams. But the effort has met with political opposition after a state senator complained that ankle cuffs used in an earlier version were reminiscent of slave chains. Dave Leis, a spokesman for NovaTracker, which makes the system used in Dallas, said electronic monitoring did not have to be punitive. "You can paint this thing as either Big Brother, or this is a device that connects you to a buddy who wants to keep you safe and help you graduate." Jaime said he did not mind carrying the tracker. "I'm actually happy about it, that I get another chance to do my work and catch up," he said. "I never saw myself getting held back a grade." After listening carefully to the two policemen, the judge had a problem: He did not believe them. The officers, who had stopped a man in the Bronx and found a .22-caliber pistol in his fanny pack, testified that they had several reasons to search him: He was loitering, sweating nervously and had a bulge under his jacket. But the judge, John E. Sprizzo of United States District Court in Manhattan, concluded that the police had simply reached into the pack without cause, found the gun, then "tailored" testimony to justify the illegal search. "You can't have open season on searches," said Judge Sprizzo, who refused to allow the gun as evidence, prompting prosecutors to drop the case last May. Yet for all his disapproval of what the police had done, the judge said he hated to make negative rulings about officers' credibility. "I don't like to jeopardize their career and all the rest of it," he said. He need not have worried. The Police Department never learned of his criticism, and the officers — like many others whose word has been called into question — faced no disciplinary action or inquiry. Over the last six years, the police and prosecutors have cooperated in a broad effort that allows convicted felons found with a firearm to be tried in federal court, where sentences are much harsher than in state court. Officials say the initiative has taken hundreds of armed criminals off the street, mostly in the Bronx and Brooklyn, and turned some into informers who have helped solve more serious crimes. But a closer look at those prosecutions reveals something that has not been trumpeted: more than 20 cases in which judges found police officers' testimony to be unreliable, inconsistent, twisting the truth, or just plain false. The judges' language was often withering: "patently incredible," "riddled with exaggerations," "unworthy of belief." The outrage usually stopped there. With few exceptions, judges did not ask prosecutors to determine whether the officers had broken the law, and prosecutors did not notify police authorities about the judges' findings. The Police Department said it did not monitor the rulings and was aware of only one of them; after it learned about the cases recently from a reporter, a spokesman said the department would decide whether further review was needed. Though the number of cases is small, the lack of consequences for officers may seem surprising, given that a city commission on police corruption in the 1990s pinpointed tainted testimony as a problem so pervasive that the police even had a word for it: "testilying." And these cases may fuel another longtime concern that flared up again in recent days: suspicions that the police routinely subject people to unjustified searches, frisks or stops. Last week, the Police Department reported a spike in street stops, which it said were "an essential law enforcement tool": 145,098 from January through March, more than during any quarter in six years. The judges' rulings emerge from what are called suppression hearings, in which defendants, before trial, can argue that evidence was seized illegally. The Fourth Amendment sets limits on the conditions that permit a search; if they are not met, judges must exclude the evidence, even if that means allowing a guilty person to go free. Prosecutors and police officials say many of the suppressions stem from difficult, split-second judgments that officers must make in potentially dangerous situations about whether to search someone for a weapon — decisions that are not always easy to reconstruct in a courtroom. But one former federal judge, John S. Martin Jr., said the rulings are meant to deter serious abuses by the police. "The reason you suppress," he said, "is to stop cops from going up to people and searching them when they don't have reason." Federal judges rarely suppress evidence, Judge Martin said, and the unusual number of suppressions in New York City gun cases raises questions about whether such tactics may be common. "We don't have the statistics for all the people who are hassled, no gun is found, and they never get into the system," he said. Whatever one makes of the legal debate, these cases offer a revealing glimpse into some police practices — in the street and on the witness stand — that have gone largely unexamined outside the courtroom. 'A Dismal Record' In one case, the officer explained that he had a special technique for detecting who was hiding a gun. He had learned it from a newspaper article that described certain clues to watch for: a hand brushing a pocket, a lopsided gait, a jacket or sweater that seems mismatched or out of season. That was one reason, he told a judge, that he was certain the man he saw outside a Brooklyn housing project last September was concealing a gun. The man, Anthony McCrae, had moved his hand along the front of his waistband, as if moving a weapon, the officer said. Sure enough, a search turned up a gun. The judge, John Gleeson of Brooklyn federal court, asked the officer, Kaz Daughtry, how successful his method had been in other cases. Officer Daughtry replied that over a three-day period, he and his partner had stopped 30 to 50 people. One had a gun. Calling that a "dismal record," the judge said the officer's technique was "little more than guesswork." Moreover, Judge Gleeson said he did not believe that Officer Daughtry could even have seen the gesture he found so suspicious: Mr. McCrae's hand was in front of him and the officer was about 30 feet behind. The judge would not allow the gun as evidence, and on April 24, federal prosecutors dropped the charges. A law enforcement official said the Brooklyn district attorney's office learned of the ruling and was reviewing Officer Daughtry's other cases to see if there were problems. The Police Department declined to make Officer Daughtry, or any other officers, available for comment. The decisions to suppress, which The New York Times found by interviewing lawyers and examining more than 1,000 court dockets since 2002, came from 18 federal judges in Manhattan and Brooklyn. Several rulings involved police raids on homes without warrants — and judges' doubts that the owners had consented to a search, as the police claimed and the law requires. In one case, a group of officers investigating a fatal shooting in 2002 entered an apartment in the Bronx and arrested a man named Justice Taylor after finding a shotgun in a bedroom. Sgt. Brian Branigan, who led the search, testified in federal court in Manhattan that Mr. Taylor had given the officers permission to enter. But Mr. Taylor denied that. Two other officers did not mention his giving consent. And the judge, Jed S. Rakoff, said that Sergeant Branigan "felt the need to embellish his account with details indicating consent that the court finds unbelievable." Judge Rakoff even took issue with the demeanor of the sergeant, "whose cockiness was evident even on the stand." His apparent "disregard for niceties," the judge wrote, made it "wholly plausible" that he had forced his way into the apartment. The case was dismissed, and the city, while denying liability, paid $280,000 to settle a civil rights lawsuit by Mr. Taylor and others in the apartment. In another case, a judge did more than cast doubt on an officer's testimony. She proved it wrong. The judge, Laura Taylor Swain, heard the officer, Sean Lynch, testify that he had shined his flashlight through the window of a parked sport utility vehicle one night in the Bronx and had seen a gun. The driver's lawyer said that Officer Lynch could not have seen the gun because the car's windows were heavily tinted. So after sunset one evening in January 2006, the judge walked outside the Manhattan federal courthouse and shined a flashlight into the vehicle. She could see nothing. Her inspection and other evidence, she wrote, "give the lie" to Officer Lynch's account, which she called "impossible." Prosecutors dropped the case. The police, to be sure, have a difficult job trying to root out guns without overstepping the law. Some judges acknowledged this in court, saying they believed not that officers had lied, but rather that they had failed to recall an event accurately, perhaps because of its brevity, a limited vantage point or the subsequent passage of time. And some expressed sympathy for the police. Judge Gleeson said in one case that while he found two officers' testimony contradictory, he did not want to imply they had lied. "I'm always reluctant in these circumstances, having been in the executive branch myself, having a feel for the consequences of an adverse credibility determination — I'm sensitive to it," he said last November. Judges typically do not discuss cases, but some have said that, in general, it is not their responsibility to follow up their criticisms of officers. The rulings are on the record, for prosecutors or others to act on if they wish. Paul J. Browne, the Police Department's chief spokesman, said that only one of the critical rulings had been reported to the police, by a federal prosecutor in Brooklyn who said he had no doubts about the officer's truthfulness. The police took no action. More broadly, Mr. Browne said an officer's failure to convince a judge that his suspicions were justified "doesn't necessarily mean the officer did something wrong." "In each case," he added, "the suspect in fact had a gun." Federal prosecutors would not comment on individual cases. But Michael J. Garcia, the United States attorney in Manhattan, said his office reviews any negative rulings about an officer's credibility to decide whether any action is necessary. "Any time evidence gets suppressed is a serious thing," he said. In court, prosecutors have vigorously defended the officers' conduct and testimony. In one brief, a prosecutor argued that a police lieutenant had no reason to lie, because that could "jeopardize a fast-moving N.Y.P.D. career." But writing in response, a federal defender, Deirdre von Dornum, cited cases in which officers faced no repercussions — "not the loss of their jobs, not disciplinary action." Still, one judge was so struck by what he said were an officer's lies that he tried to do something about it. Two officers had arrested a man and confiscated a gun in a Bronx apartment in 2002. But Judge Martin, then on the Manhattan federal court, was troubled that one officer had given the district attorney's office an account of how she gained entry to the apartment, then largely contradicted it on the stand. "This has to be one of the most blatant cases of perjury I've seen," Judge Martin, a former United States attorney, said in his courtroom in September 2003. He said he doubted the officer, Kim Carillo, had "any use for the truth." "She will tell it, I think, whatever way it suits her to tell it," he added. The judge told the prosecutor to ask his superiors to review Officer Carillo's testimony. They later replied that they had found no perjury, he said, and that the officer was not at fault. If the fallout for police officers has been slight, the judges' rulings have exacted other costs. For one thing, they may free a weapons offender, and scuttle the chance to win his cooperation in more significant prosecutions, like investigations into violent gangs or gun trafficking. "The lost value of those bigger cases is really incalculable," said Alan Vinegrad, a former United States attorney in Brooklyn. Questions about police credibility can also hamper other cases. When a judge finds, for example, that an officer has lied, prosecutors must alert defense lawyers in other cases involving that officer. Judge David G. Trager of Brooklyn federal court was so indignant over what he called an officer's "blatantly false" testimony in an October 2005 suppression hearing that he told prosecutors, "I hope you won't darken my courtroom with this police officer's testimony again." Judge Trager did not suppress the gun, concluding that some of the officer's testimony had been credible. But the officer, Herbert Martin, was about to testify in a federal trial stemming from another gun arrest. The defense lawyer in that case, Howard Greenberg, said that learning of Judge Trager's findings "was like manna from heaven." When Officer Martin took the stand in that trial, Mr. Greenberg confronted him, asking, "Didn't you commit perjury a week ago when you said in this very building, in an altogether different case, that someone had a gun in his waist?" The officer denied that he had lied. But Mr. Greenberg said he believed that his question made an impression on the jury. His client was acquitted. LINKS AND VERY SHORT STORIES Texas: Prison Settlement Approved National Briefing | Southwest A federal judge has approved a settlement between the Texas Youth Commission and the Justice Department over inmate safety at the state's juvenile prison in Edinburg. The judge, Ricardo Hinojosa of Federal District Court, signed the settlement Monday, and it was announced by the commission Wednesday. Judge Hinojosa had previously rejected a settlement on grounds that it lacked a specific timeline. Federal prosecutors began investigating the prison, the Evins Regional Juvenile Center, in 2006. The settlement establishes parameters for safe conditions and staffing levels, restricts use of youth restraints and guards against retaliation for reporting abuse and misconduct. http://www.nytimes.com/2008/05/08/us/08brfs-PRISONSETTLE_BRF.html?ref=us Michigan: Insurance Ruling National Briefing | Midwest Local governments and state universities cannot offer health insurance to the partners of gay workers, the State Supreme Court ruled. The court ruled 5 to 2 that Michigan's 2004 ban against same-sex marriage also blocks domestic-partner policies affecting gay employees at the University of Michigan and other public-sector employers. The decision affirms a February 2007 appeals court ruling. Up to 20 public universities, community colleges, school districts and local governments in Michigan have benefit policies covering at least 375 gay couples. http://www.nytimes.com/2008/05/08/us/08brfs-INSURANCERUL_BRF.html?ref=us Halliburton Profit Rises HOUSTON (AP) — Increasing its global presence is paying off for the oil field services provider Halliburton, whose first-quarter income rose nearly 6 percent on growing business in the Middle East, Asia and Latin America, the company said Monday. Business in the first three months of 2008 also was better than expected in North America, where higher costs and lower pricing squeezed results at the end of 2007. Halliburton shares closed up 3 cents, at $47.46, on the New York Stock Exchange. Halliburton said it earned $584 million, or 64 cents a share, in the three months that ended March 31, compared with a year-earlier profit of $552 million, or 54 cents a share. Revenue rose to $4.03 billion, from $3.42 billion a year earlier. http://www.nytimes.com/2008/04/22/business/worldbusiness/22halliburton.html?ref=business Illegal Immigrants Who Were Arrested at Poultry Plant in Arkansas to Be Deported Eighteen illegal immigrants arrested at a poultry plant in Batesville will be processed for deportation, but will not serve any jail time for using fake Social Security numbers and state identification cards, federal judges ruled. Magistrate Judge Beth Deere and Judge James Moody of Federal District Court accepted guilty pleas from 17 of those arrested last week at the Pilgrim's Pride plant. Federal prosecutors dismissed the misdemeanor charges against one man, but said they planned to ask Immigration and Customs Enforcement to begin deportation proceedings against him. The guilty pleas will give the 17 people criminal records, which will allow prosecutors to pursue tougher penalties if they illegally return to the United States. They had faced up to up to two years in prison and $205,000 in fines. Jane Duke, a United States attorney, said her office had no interest in seeing those arrested serve jail time, as they were "otherwise law-abiding citizens." National Briefing | South http://www.nytimes.com/2008/04/22/us/22brfs-002.html?ref=us Coal Company Verdict in West Virginia Is Thrown Out By ADAM LIPTAK National Briefing | Mid-Atlantic The State Supreme Court for a second time threw out a $50 million verdict against the coal company Massey Energy. The court decided to rehear the case after the publication of photographs of its chief justice on vacation in Monte Carlo with the company's chief executive, Don L. Blankenship. The chief justice, Elliott E. Maynard, and a second justice disqualified themselves from the rehearing and were replaced by appeals court judges, but the vote was again 3-to-2 in favor of Massey. A third justice, Brent D. Benjamin, who was elected to the court with the help of more than $3 million from Mr. Blankenship, refused to recuse himself. http://www.nytimes.com/2008/04/04/us/04brfs-COALCOMPANYV_BRF.html?ref=us Utah: Miners' Families File Lawsuit National Briefing | Rockies A lawsuit by the families of six men killed in August in a mine cave-in claims the collapse occurred because the mine's owners were harvesting coal unsafely. The suit, filed in Salt Lake City, says the Murray Energy Corporation performed risky retreat mining last summer. It seeks unspecified damages. Three men trying to reach the miners died 10 days after the collapse in another cave-in at the Crandall Canyon Mine. http://www.nytimes.com/2008/04/03/us/03brfs-MINERSFAMILI_BRF.html?ref=us Regimens: Drug Samples Found to Affect Spending By NICHOLAS BAKALAR Having doctors distribute free samples of medicines may do exactly what drug companies hope for — encourage patients to spend more money on drugs. A study in the April issue of Medical Care found that patients who never received free samples spent an average of $178 for six months of prescriptions. Those receiving samples spent $166 in the six months before they obtained free medicine, $244 when they received the handouts and $212 in the six months after that. Researchers studied 5,709 patients, tracking medical histories and drug expenditures; 14 percent of the group received free samples. The study adjusted for prior and current health conditions, race, socioeconomic level and other variables. The authors acknowledge that the study results could be partly explained by unmeasured illness in the group given samples. The lead author, Dr. G. Caleb Alexander, an assistant professor of medicine at the University of Chicago, said although free samples might save some patients money, there were other ways to economize. "Using more generics, prescribing for three months' supply rather than one month's and stopping drugs that may no longer be needed can also save money," Dr. Alexander said. http://www.nytimes.com/2008/04/01/health/policy/01regi.html?ref=health Rhode Island: Order to Combat Illegal Immigration National Briefing | New England Linking the presence of undocumented workers to the state's financial woes, Gov. Donald L. Carcieri signed an executive order that includes steps to combat illegal immigration. The order requires state agencies and companies that do business with the state to verify the legal status of employees. It also directs the state police and prison and parole officials to work harder to find and deport illegal immigrants. The governor, a Republican, said that he understood illegal immigrants faced hardships, but that he did not want them in Rhode Island. Under his order, the state police will enter an agreement with federal immigration authorities permitting them access to specialized immigration databases. North Carolina: Ministers Say Police Destroyed Records Three ministers accused a Greensboro police officer of ordering officers to destroy about 50 boxes of police files related to the fatal shooting of five people at an anti-Ku Klux Klan rally in 1979. The Revs. Cardes Brown, Gregory Headen and Nelson Johnson said an active-duty officer told them he and at least three other officers were told to destroy the records in 2004 or 2005, shortly after a seven-member panel that had been convened to research the shootings requested police files related to them. The ministers did not identify the officer who provided the information. On Nov. 3, 1979, a heavily armed caravan of Klansman and Nazi Party members confronted the rally. Five marchers were killed and 10 were injured. Those charged were later acquitted in state and federal trials. The city and some Klan members were found liable for the deaths in civil litigation. http://www.nytimes.com/2008/02/27/us/27brfs-MINISTERSSAY_BRF.html?ref=us Gaza: Israeli Army Clears Itself in 21 Deaths By ISABEL KERSHNER World Briefing | Middle East The army said no legal action would be taken against military officials over an artillery strike in Beit Hanun in 2006 in which an errant shell hit residential buildings and killed 21 Palestinian civilians. An army investigation concluded that the shell was fired based on information that militants were intending to fire rockets from the area, an army statement said. The civilian deaths, it said, were "directly due to a rare and severe failure" in the artillery control system. The army's military advocate general concluded that there was no need for further investigation. http://www.nytimes.com/2008/02/27/world/middleeast/27briefs-israelistrike.html?ref=world World Briefing | Asia Taiwan: Tons of Fish Wash Up on Beaches About 45 tons of fish have washed up dead along 200 miles of beach on the outlying Penghu Islands after an unusual cold snap. News reports said 10 times as many dead fish were still in the water. http://www.nytimes.com/2008/02/23/world/asia/23briefs-TONSOFFISHWA_BRF.html?ref=world Zimbabwe: Inflation Breaks the Six-Figure Mark By AGENCE FRANCE-PRESSE World Briefing | Africa The government's statistics office said the inflation rate surged to a new record of 100,580 percent in January, up from 66,212 percent in December. Rangarirai Mberi, news editor of the independent Financial Gazette in Harare, said the state of the economy would feature prominently in next month's presidential and parliamentary elections. "Numbers no longer shock people," he said. Zimbabweans have learned to live in a hyperinflationary environment, he added, "but the question is, how long can this continue?" http://www.nytimes.com/2008/02/21/world/africa/21briefs-INFLATIONBRE_BRF.html?ref=world GENERAL ANNOUNCEMENTS AND INFORMATION Russell Means Speaking at the Transform Columbus Day Rally "If voting could do anything it would be illegal!" http://www.youtube.com/watch?v=_8Lri1-6aoY Stop the Termination or the Cherokee Nation http://groups.msn.com/BayAreaIndianCalendar/activismissues.msnw?action=get_message&mview=1&ID_Message=5580 We Didn't Start the Fire http://yeli.us/Flash/Fire.html I Can't Take it No More http://lefti.blogspot.com/2007_11_01_archive.html#9214483115237950361 The Art of Mental Warfare http://artofmentalwarfare.com/pog/artofmentalwarfarecom-the-warning/ http://video. google.com/ videoplay? docid=-905047436 2583451279 http://www.moneyasd ebt.net/ IRAQ FOR SALE Port of Olympia Anti-Militarization Action Nov. 2007 http://www.youtube.com/watch?v=SOkn2Fg7R8w "They have a new gimmick every year. They're going to take one of their boys, black boys, and put him in the cabinet so he can walk around Washington with a cigar. Fire on one end and fool on the other end. And because his immediate personal problem will have been solved he will be the one to tell our people: 'Look how much progress we're making. I'm in Washington, D.C., I can have tea in the White House. I'm your spokesman, I'm your leader.' While our people are still living in Harlem in the slums. Still receiving the worst form of education. "But how many sitting here right now feel that they could [laughs] truly identify with a struggle that was designed to eliminate the basic causes that create the conditions that exist? Not very many. They can jive, but when it comes to identifying yourself with a struggle that is not endorsed by the power structure, that is not acceptable, that the ground rules are not laid down by the society in which you live, in which you are struggling against, you can't identify with that, you step back. "It's easy to become a satellite today without even realizing it. This country can seduce God. Yes, it has that seductive power of economic dollarism. You can cut out colonialism, imperialism and all other kind of ism, but it's hard for you to cut that dollarism. When they drop those dollars on you, you'll fold though." —MALCOLM X, 1965 http://www.accuracy.org/newsrelease.php?articleId=987 A little gem: Michael Moore Faces Off With Stephen Colbert [VIDEO] http://www.alternet.org/blogs/video/57492/ LAPD vs. Immigrants (Video) http://www.sfgate.com/cgi-bin/qws/ff/qr?term=lapd&Submit=S&Go.x=0&Go.y=0&Go=Search&st=s Dr. Julia Hare at the SOBA 2007 http://mysite.verizon.net/vzeo9ewi/proudtobeblack2/ "We are far from that stage today in our era of the absolute lie; the complete and totalitarian lie, spread by the monopolies of press and radio to imprison social consciousness." December 1936, "In 'Socialist' Norway," by Leon Trotsky: "Leon Trotsky in Norway" was transcribed for the Internet by Per I. Matheson [References from original translation removed] http://www.marxists.org/archive/trotsky/1936/12/nor.htm Wealth Inequality Charts http://www.faireconomy.org/research/wealth_charts.html MALCOLM X: Oxford University Debate http://www.youtube.com/watch?v=Dmzaaf-9aHQ "There comes a times when silence is betrayal." --Martin Luther King YouTube clip of Che before the UN in 1964 http://www.youtube.com/watch?v=CtATT8GXkWg&mode=related&search The Wealthiest Americans Ever NYT Interactive chart http://www.nytimes.com/ref/business/20070715_GILDED_GRAPHIC.html New Orleans After the Flood -- A Photo Gallery http://www.dissentmagazine.org/article/?article=795 This email was sent to you as a service, by Roland Sheppard. Visit my website at: http://web.mac.com/rolandgarret [For some levity...Hans Groiner plays Monk http://www.youtube.com/watch?v=51bsCRv6kI0 ...bw] Which country should we invade next? http://www.youtube.com/watch?v=q3g_zqz3VjY My Favorite Mutiny, The Coup http://www.myspace.com/thecoupmusic Michael Moore- The Awful Truth http://www.youtube.com/watch?v=xeOaTpYl8mE Morse v. Frederick Supreme Court arguments http://www.youtube.com/watch?v=n_LsGoDWC0o Free Speech 4 Students Rally - Media Montage http://www.youtube.com/watch?v=RfCjfod8yuw 'My son lived a worthwhile life' In April 2003, 21-year old Tom Hurndall was shot in the head in Gaza by an Israeli soldier as he tried to save the lives of three small children. Nine months later, he died, having never recovered consciousness. Emine Saner talks to his mother Jocelyn about her grief, her fight to make the Israeli army accountable for his death and the book she has written in his memory. http://www.guardian.co.uk/israel/Story/0,,2042968,00.html Introducing...................the Apple iRack http://www.youtube.com/watch?v=o-KWYYIY4jQ "A War Budget Leaves Every Child Behind." [A T-shirt worn by some teachers at Roosevelt High School in L.A. as part of their campaign to rid the school of military recruiters and JROTC--see Article in Full item number 4, below...bw] "200 million children in the world sleep in the streets today. Not one of them is Cuban." (A sign in Havana) View sign at bottom of page at: http://www.cubasolidarity.net/index.html [Thanks to Norma Harrison for sending this...bw] FIGHTBACK! A Collection of Socialist Essays By Sylvia Weinstein http://www.walterlippmann.com/sylvia-weinstein-fightback-intro.html [The Scab "After God had finished the rattlesnake, the toad, and the vampire, he had some awful substance left with which he made a scab." "A scab is a two-legged animal with a corkscrew soul, a water brain, a combination backbone of jelly and glue. Where others have hearts, he carries a tumor of rotten principles." "When a scab comes down the street, men turn their backs and angels weep in heaven, and the devil shuts the gates of hell to keep him out." "No man (or woman) has a right to scab so long as there is a pool of water to drown his carcass in, or a rope long enough to hang his body with. Judas was a gentleman compared with a scab. For betraying his master, he had character enough to hang himself." A scab has not. "Esau sold his birthright for a mess of pottage. Judas sold his Savior for thirty pieces of silver. Benedict Arnold sold his country for a promise of a commision in the british army." The scab sells his birthright, country, his wife, his children and his fellowmen for an unfulfilled promise from his employer. Esau was a traitor to himself; Judas was a traitor to his God; Benedict Arnold was a traitor to his country; a scab is a traitor to his God, his country, his family and his class." Author --- Jack London (1876-1916)...Roland Sheppard http://web.mac.com/rolandgarret] Sand Creek Massacre "THE SAND CREEK MASSACRE" AWARD-WINNING DOCUMENTARY SHORT FEATURED AT NATIVE AMERICAN FILM FESTIVAL: http://www.aberdeennews.com/mld/aberdeennews/news/local/16035305.htm (scroll down when you get there]) "THE SAND CREEK MASSACRE" AWARD-WINNING WRITER/FILMMAKER DONALD L. VASICEK REPORT: http://www.digitalcinemareport.com/sandcreekmassacre.html SHORT FINALIST IN DOCUMENTARY CHANNEL COMPETITION (VIEW HERE): http://www.docupyx.com/index.php?option=com_content&task=view&id=28&Itemid=41 VIEW "THE SAND CREEK MASSACRE" AWARD-WINNING DOCUMENTARY SHORT FILM MOVIE OF THE WEEK FOR FREE HERE: http://twymancreative.com/twymanc.html On November 29, 1864, 700 Colorado troops savagely slaughtered over 450 Cheyenne children, disabled, elders, and women in the southeastern Colorado Territory under its protection. This act became known as the Sand Creek Massacre. This film project ("The Sand Creek Massacre" documentary film project) is an examination of an open wound in the souls of the Cheyenne people as told from their perspective. This project chronicles that horrific 19th century event and its affect on the 21st century struggle for respectful coexistence between white and native plains cultures in the United States of America. Listed below are links on which you can click to get the latest news, products, and view, free, "THE SAND CREEK MASSACRE" award- winning documentary short. In order to create more native awareness, particularly to save the roots of America's history, please read the following: Some people in America are trying to save the world. Bless them. In the meantime, the roots of America are dying. What happens to a plant when the roots die? The plant dies according to my biology teacher in high school. American's roots are its native people. Many of America's native people are dying from drug and alcohol abuse, poverty, hunger, and disease, which was introduced to them by the Caucasian male. Tribal elders are dying. When they die, their oral histories go with them. Our native's oral histories are the essence of the roots of America, what took place before our ancestors came over to America, what is taking place, and what will be taking place. It is time we replenish America's roots with native awareness, else America continues its decaying, and ultimately, its death. You can help. The 22-MINUTE SAND CREEK MASSACRE DOCUMENTARY PRESENTATION/EDUCATIONAL DVD IS READY FOR PURCHASE! (pass the word about this powerful educational tool to friends, family, schools, parents, teachers, and other related people and organizations to contact me ([email protected], 303-903-2103) for information about how they can purchase the DVD and have me come to their children's school to show the film and to interact in a questions and answers discussion about the Sand Creek Massacre. Donald L. Vasicek Olympus Films+, LLC http://us.imdb.com/Name?Vasicek,+Don http://www.donvasicek.com [email protected] http://www.manataka.org/page633.html BuyIndies.com donvasicek.com.Peace Articles at Libraryofpeace.org"> Posted by Bonnie Weinstein at 1:03 PM No comments: BAUAW NEWSLETTER - SATURDAY, MAY 10, 2008
[ 0.005455385893583298, 0.016423452645540237, -0.01054293941706419, 0.023090483620762825, -0.017502816393971443, 0.003238227218389511, -0.00299479509703815, 0.05721991881728172, 0.012675230391323566, 0.022374341264367104, 0.04857656732201576, 0.009907394647598267, 0.034967049956321716, -0.037218235433101654, -0.013374974951148033, -0.02479255385696888, 0.00008820483344607055, -0.01836257614195347, -0.0012056005652993917, 0.002112314570695162, -0.013310897164046764, 0.004937891848385334, -0.05131185054779053, -0.004651213064789772, 0.0032148328609764576, 0.027583643794059753, 0.02721541002392769, -0.01953665353357792, 0.0667433813214302, 0.061735596507787704, -0.01050549652427435, -0.05499005690217018, 0.04750828817486763, -0.04525385797023773, -0.038628049194812775, -0.052056942135095596, 0.02079833298921585, -0.02639526128768921, 0.004055648576468229, -0.03175138682126999, 0.010562221519649029, 0.02315714582800865, 0.047579020261764526, -0.05672064423561096, -0.02894137240946293, -0.00269640632905066, -0.02812650054693222, -0.002145130420103669, 0.00794183649122715, -0.032409243285655975, -0.025450296700000763, -0.010129662230610847, 0.032400596886873245, 0.006167976651340723, 0.01156186405569315, 0.00020569869957398623, -0.022602558135986328, -0.03389860317111015, -0.022229772061109543, 0.035844836384058, 0.018062088638544083, -0.006727691739797592, 0.026300745084881783, -0.029230765998363495, 0.03259769082069397, 0.040083371102809906, -0.0033010628540068865, -0.008491016924381256, 0.014153173193335533, -0.005203269887715578, 0.011895815841853619, -0.0077833435498178005, -0.024848489090800285, -0.011040754616260529, -0.004240358714014292, 0.007143357302993536, 0.007710761856287718, -0.01630617491900921, -0.03325527161359787, 0.004279599990695715, -0.004110775422304869, 0.05617319792509079, -0.009510478936135769, 0.02387295849621296, -0.059687405824661255, -0.01339696254581213, -0.0019056904129683971, 0.03249984607100487, 0.007482107728719711, 0.0015868673799559474, -0.020828988403081894, 0.052743058651685715, 0.01164909079670906, 0.012662790715694427, 0.051653578877449036, 0.03074074722826481, -0.027316927909851074, 0.04805855080485344, 0.028024816885590553, -0.01766517199575901, 0.0312041062861681, 0.032428011298179626, -0.009362895973026752, 0.05806412175297737, -0.029528966173529625, -0.018054313957691193, 0.014665564522147179, -0.012190895155072212, -0.011869216337800026, -0.04649122431874275, -0.018260134384036064, -0.02111441269516945, 0.023237183690071106, 0.01902073621749878, 0.004442680161446333, 0.036031439900398254, -0.02358071878552437, 0.03671655431389809, -0.0509624108672142, 0.020699720829725266, 0.038224317133426666, -0.019455023109912872, 0.028306210413575172, -0.025121955201029778, -0.012806903570890427, -0.03836779296398163, -0.043349489569664, 0.06831465661525726, -0.03627863526344299, 0.013725681230425835, 0.00976671651005745, 0.00029213717789389193, -0.01660062000155449, -0.010932477191090584, 0.027859238907694817, 0.036787405610084534, 0.0014423702377825975, 0.03110208921134472, 0.02462104521691799, -0.044162340462207794, 0.0572768859565258, 0.01341886818408966, 0.017295505851507187, 0.07611548155546188, 0.026237210258841515, 0.04780162498354912, 0.005047140643000603, -0.006817326880991459, -0.007189723197370768, 0.011936652474105358, -0.03166024386882782, 0.02244764380156994, -0.0014671410899609327, 0.035792216658592224, -0.000046449044020846486, -0.0012668885756283998, 0.03479854762554169, 0.007851934060454369, 0.00817186664789915, 0.047119710594415665, -0.02700246497988701, 0.01695510745048523, -0.017087114974856377, 0.02980007790029049, -0.029321586713194847, 0.02642427198588848, -0.013870910741388798, -0.021825497969985008, -0.02803165093064308, -0.044024545699357986, 0.0030653621070086956, -0.016962524503469467, -0.04236265644431114, 0.029039140790700912, 0.02087784931063652, 0.02261047251522541, 0.05265972390770912, 0.0200447179377079, 0.04292671009898186, 0.018904374912381172, -0.02718370035290718, -0.01486873347312212, -0.00045102500007487833, 0.06166931986808777, 0.014571094885468483, -0.011009128764271736, -0.005281262099742889, -0.03295353427529335, -0.03763362765312195, -0.058938827365636826, 0.013510960154235363, -0.001468697446398437, -0.009343817830085754, 0.03880821913480759, 0.02763494849205017, 0.008563324809074402, -0.01014638040214777, 0.008475849404931068, 0.019460545852780342, -0.07711386680603027, -0.027348371222615242, 0.0483291894197464, -0.024347379803657532, 0.04165465384721756, -0.01023093331605196, -0.03165796026587486, 0.0178825706243515, 0.0868840143084526, -0.051252637058496475, 0.010064789094030857, 0.04058864712715149, 0.01067185029387474, -0.017048535868525505, -0.03497450426220894, 0.039413951337337494, 0.013059407472610474, -0.028823107481002808, 0.04765816777944565, 0.01528483722358942, -0.004489564802497625, 0.03799488767981529, 0.02131602354347706, 0.0011561159044504166, 0.03913681209087372, 0.003425042610615492, -0.014912964776158333, 0.04737323150038719, 0.04880460724234581, -0.015110201202332973, -0.01626332476735115, 0.008800157345831394, 0.04812842607498169, 0.04444846138358116, 0.05073588341474533, 0.06025403365492821, -0.0023738848976790905, 0.05667407438158989, 0.04845709726214409, 0.01448750775307417, 0.03355250880122185, -0.0037902123294770718, 0.02136722207069397, 0.025691596791148186, 0.018896400928497314, -0.032685063779354095, 0.012229791842401028, -0.01425325870513916, -0.016132039949297905, -0.015863554552197456, 0.03704570233821869, 0.004188551101833582, 0.03496595472097397, 0.008951134979724884, 0.05867539346218109, -0.021212443709373474, 0.01691444031894207, 0.05468938499689102, 0.045523371547460556, -0.05219362676143646, -0.043894197791814804, -0.02030707709491253, 0.0009232123265974224, 0.004147768020629883, 0.019264860078692436, 0.04527532681822777, -0.0056586978025734425, 0.00975728128105402, 0.006464502774178982, -0.024430567398667336, -0.04555441811680794, -0.03605177626013756, -0.03293125703930855, -0.04688596725463867, -0.038805458694696426, -0.0407274067401886, -0.006686057895421982, 0.029773419722914696, -0.05294567346572876, 0.02514531835913658, -0.029632696881890297, -0.02885093353688717, -0.026327084749937057, -0.0008401451050303876, 0.030072668567299843, 0.03150225803256035, 0.05548936873674393, -0.022719794884324074, 0.03525976091623306, -0.005746107082813978, 0.008535178378224373, -0.03791029378771782, -0.013685903511941433, -0.02956448681652546, 0.014290034770965576, 0.028792139142751694, -0.002622433938086033, 0.00844334065914154, 0.017499132081866264, -0.03430679067969322, -0.046088188886642456, 0.006410999223589897, -0.022845009341835976, -0.008649242110550404, 0.011671666987240314, -0.051634762436151505, 0.03415610268712044, 0.023020340129733086, -0.014768450520932674, 0.031433507800102234, 0.029772017151117325, -0.05994768068194389, 0.04820631071925163, 0.0008642475004307926, 0.038951389491558075, -0.034026823937892914, 0.05239623785018921, 0.04297800362110138, 0.022950954735279083, -0.037095807492733, -0.030743028968572617, -0.02624499425292015, 0.009508898481726646, 0.014631541445851326, -0.023800715804100037, -0.04762225225567818, 0.006842013914138079, 0.03194544091820717, -0.04844758287072182, 0.03218517079949379, -0.042685579508543015, -0.03524965047836304, -0.07365590333938599, -0.02002362534403801, 0.022900836542248726, 0.05398959666490555, 0.04035945236682892, 0.005561961326748133, -0.053063102066516876, -0.0036965548060834408, 0.015551741234958172, 0.03961591050028801, -0.04036971926689148, 0.0474158339202404, 0.03636802360415459, -0.004622357431799173, 0.024850713089108467, 0.008703075349330902, 0.001823691069148481, -0.00456898333504796, 0.0004535325278993696, -0.0005188735667616129, 0.01754404790699482, -0.005551258102059364, 0.002001491840928793, 0.023786913603544235, 0.03848710283637047, -0.04627169296145439, 0.014135339297354221, 0.012720346450805664, 0.015254709869623184, 0.020663702860474586, 0.025081126019358635, 0.0034961537458002567, -0.026945963501930237, -0.06402402371168137, -0.047473132610321045, 0.03203283250331879, 0.003778133075684309, 0.045647263526916504, -0.07168958336114883, 0.055157724767923355, 0.018770674243569374, -0.028150059282779694, 0.06324268877506256, -0.057722676545381546, 0.018679967150092125, 0.028111180290579796, -0.006678146310150623, 0.04288359731435776, -0.03758454695343971, 0.028568819165229797, -0.007452224846929312, 0.036379653960466385, 0.03191349655389786, 0.012153590098023415, 0.02695695124566555, -0.019200822338461876, -0.01716696098446846, -0.01147681474685669, -0.025885136798024178, -0.015829943120479584, -0.04766739904880524, 0.00888185203075409, -0.0026628091000020504, -0.03263400122523308, -0.0785265788435936, 0.023671764880418777, 0.020018626004457474, 0.04862937703728676, 0.025213226675987244, 0.01335835549980402, -0.006739778909832239, 0.014344899915158749, 0.03365655243396759, 0.00708742393180728, 0.009856578893959522, -0.028167106211185455, 0.024551311507821083, 0.019864026457071304, -0.02990586683154106, -0.020097002387046814, -0.0005315582966431975, -0.02208510972559452, 0.03614979609847069, -0.003916245885193348, -0.01965244859457016, -0.05530150234699249, 0.0154052609577775, 0.0041044289246201515, 0.01766299270093441, -0.09079772979021072, -0.04005870223045349, -0.0010320389410480857, 0.03838368505239487, 0.03567538410425186, -0.03999163582921028, 0.039838485419750214, -0.03221637010574341, 0.054921239614486694, 0.06924842298030853, -0.01975112408399582, -0.0320277065038681, -0.027424093335866928, -0.03622567653656006, -0.03749460726976395, 0.0283672958612442, 0.017979955300688744, 0.003457556711509824, -0.016447460278868675, -0.05440109595656395, 0.04161282628774643, 0.01971505396068096, 0.027709269896149635, -0.000937755627091974, -0.011590125970542431, -0.0020431666634976864, -0.02105065993964672, 0.0410456508398056, -0.030962524935603142, -0.03502174839377403, 0.00012536226131487638, -0.049710288643836975, -0.020105697214603424, 0.0025797279085963964, -0.01759916916489601, -0.010296736843883991, 0.018929574638605118, 0.03303354233503342, 0.0435662679374218, -0.025030702352523804, -0.0019004633650183678, -0.004217104986310005, 0.04920254647731781, -0.03211120888590813, -0.013696725480258465, 0.04118417203426361, -0.0012365338625386357, -0.0022670114412903786, 0.03800308331847191, 0.03826045244932175, 0.0014471262693405151, 0.017482498660683632, 0.012781552039086819, -0.05667981505393982, 0.021402299404144287, -0.04432259500026703, -0.014962557703256607, -0.0038374396972358227, -0.03264052793383598, 0.01008828915655613, -0.022413168102502823, 0.012214593589305878, 0.013620162382721901, -0.024523461237549782, -0.04805571958422661, -0.0566900260746479, -0.022278230637311935, -0.003022001124918461, -0.015843089669942856, 0.006244917865842581, 0.027568770572543144, -0.004110618960112333, 0.009280041791498661, -0.023567575961351395, -0.0003911814128514379, 0.028064433485269547, -0.008484535850584507, -0.026519935578107834, 0.019228290766477585, 0.012943360023200512, 0.03972362354397774, 0.018280167132616043, -0.03224589675664902, -0.005166935734450817, -0.018479498103260994, -0.046321842819452286, -0.04807553067803383, 0.001827885047532618, -0.04302069917321205, 0.002595603233203292, -0.016683882102370262, -0.036483705043792725, -0.02359018102288246, 0.032274745404720306, 0.0045151663944125175, 0.012615879997611046, 0.01823628693819046, -0.0025260294787585735, -0.034798525273799896, 0.03867112472653389, 0.01112136710435152, -0.014898757450282574, -0.009113665670156479, 0.011216601356863976, 0.0077149695716798306, 0.031702667474746704, 0.024251066148281097, -0.022752106189727783, -0.0417235791683197, -0.06010841205716133, -0.01579728163778782, -0.042852044105529785, -0.03471725061535835, -0.05426342412829399, -0.03058917634189129, -0.001680151792243123, 0.05287817865610123, 0.01819770410656929, -0.030115025117993355, 0.028007563203573227, -0.0404762402176857, -0.0018541705794632435, -0.05264784395694733, -0.018877794966101646, 0.00014394003665074706, -0.04041071981191635, 0.003725666319951415, 0.03462298959493637, 0.009354323148727417, 0.028586748987436295, -0.017726708203554153, -0.01586703024804592, -0.013384008780121803, -0.03494635224342346, -0.040281958878040314, -0.03140139952301979, -0.01540051307529211, 0.0234037134796381, 0.014845659025013447, 0.016467217355966568, -0.03225937858223915, 0.0456264354288578, -0.04073777422308922, 0.007308937609195709, -0.01943032443523407, 0.008540487848222256, -0.028601402416825294, 0.0037345504388213158, 0.035799622535705566, -0.018051134422421455, 0.026821089908480644, -0.031049072742462158, 0.0729178860783577, 0.019151026383042336, -0.00823480635881424, -0.02250884845852852, -0.014795697294175625, -0.04883000627160072, -0.024902543053030968, 0.04386528953909874, -0.03291798755526543, -0.006125796586275101, -0.042403578758239746, -0.018695002421736717, 0.014169360511004925, -0.03676934540271759, 0.0372275672852993, 0.04257073253393173, -0.01878529042005539, -0.029738083481788635, -0.026769433170557022, 0.04387057200074196, 0.012213019654154778, -0.005890806205570698, -0.022366903722286224, 0.0011582608567550778, -0.03757687658071518, 0.005399559624493122, -0.039187949150800705, -0.03212793171405792, -0.023093603551387787, -0.014378754422068596, 0.06465765088796616, -0.006953348405659199, 0.011673342436552048, -0.026738887652754784, -0.0372229665517807, -0.05087537318468094, 0.05163029581308365, -0.0077943094074726105, 0.0031254123896360397, 0.05111079663038254, 0.014786986634135246, -0.04270845279097557, 0.030940841883420944, 0.02242881990969181, 0.015682881698012352, -0.03238849341869354, 0.079091876745224, -0.010693645104765892, -0.053645431995391846, 0.03486574441194534, 0.04158572107553482, -0.056673817336559296, -0.04904146492481232, -0.014348839409649372, -0.011130844242870808, -0.004790731240063906, -0.010209361091256142, 0.03265717253088951, -0.03552958741784096, -0.009599041193723679, 0.021958934143185616, 0.022245287895202637, 0.021653177216649055, 0.04058651998639107, -0.0005595997790805995, 0.03510325774550438, -0.008369759656488895, -0.01356408093124628, 0.026002969592809677, -0.008822458796203136, -0.03671061992645264, -0.04208296164870262, -0.03292890265583992, 0.027035048231482506, 0.010550498962402344, 0.034936413168907166, -0.027812134474515915, -0.01353396661579609, 0.028203798457980156, -0.005995566491037607, 0.04035727307200432, -0.015532745979726315, 0.006570983678102493, 0.02420220710337162, -0.02717430330812931, -0.04701299965381622, -0.028768319636583328, -0.004554396960884333, 0.02542528323829174, 0.053981900215148926, -0.042060624808073044, 0.008172821253538132, 0.0454988107085228, -0.0027081649750471115, -0.012692930176854134, -0.0667029321193695, -0.021881429478526115, -0.04358897730708122, -0.012760560028254986, -0.013293656520545483, 0.029158562421798706, 0.02169901318848133, 0.030475689098238945, -0.009994762018322945, -0.057256150990724564, -0.01897646114230156, 0.02145785093307495, -0.035869743674993515, -0.0001941555383382365, -0.04884648695588112, -0.005470396485179663, -0.042002204805612564, -0.05920155346393585, -0.0600946769118309, 0.004225871991366148, -0.006629940588027239, -0.026525462046265602, -0.00017728671082295477, 0.05634736269712448, -0.009358168579638004, 0.043322283774614334, 0.0620211623609066, 0.011760407127439976, -0.004550783894956112, -0.05590962618589401, -0.02831263840198517, 0.04317083954811096, -0.016117362305521965, 0.04810887947678566, 0.023571081459522247, -0.007851376198232174, 0.027738351374864578, -0.01564996875822544, -0.022506840527057648, 0.005836717318743467, -0.0027596286963671446, 0.0022425793576985598, 0.012757944874465466, -0.03598214313387871, -0.04792250320315361, 0.006635936442762613, -0.05132872611284256, 0.029864249750971794, -0.002808324294164777, 0.0067648147232830524, 0.011205479502677917, -0.02235611341893673, -0.012020929716527462, 0.05507616698741913, 0.002056258264929056, 0.041794873774051666, -0.0030215836595743895, 0.030853165313601494, 0.044336944818496704, -0.008113386109471321, 0.017500661313533783, -0.006970025599002838, 0.019496837630867958, -0.03316617012023926, 0.021973758935928345, 0.020221898332238197, -0.012033198028802872, 0.04036414995789528, -0.021456634625792503, -0.030335310846567154, -0.03240598738193512, 0.00019613184849731624, -0.024883359670639038, 0.04154336452484131, 0.02212551236152649, -0.00041513072210364044, 0.0049413335509598255, 0.0032239649444818497, -0.06508176028728485, 0.005114874802529812, -0.07263599336147308, -0.008960734121501446, 0.04127213731408119, -0.022172557190060616, -0.018417352810502052, -0.03276491165161133, -0.03961965814232826, -0.0000024686212327651447, -0.01719614304602146, -0.036910295486450195, -0.038666579872369766, 0.013940451666712761, 0.021981343626976013, 0.04513316601514816, -0.01460943091660738, 0.009071435779333115, 0.009633690118789673, 0.05248033255338669, -0.03950303792953491, -0.07504919916391373, 0.0022960042115300894, 0.04363974183797836, -0.010575737804174423, 0.0007597043295390904, -0.0003080519090872258, 0.02553700841963291, -0.03275241702795029, 0.014798363670706749, -0.005806584842503071, 0.03885525092482567, 0.010564189404249191, -0.0005027741426602006, -0.00790953729301691, 0.006543835625052452, -0.013160872273147106, 0.04707452654838562, -0.01809462159872055, -0.051456041634082794, -0.028803296387195587, 0.024569779634475708, 0.033734261989593506, -0.021723587065935135, 0.042230166494846344, 0.017709605395793915, 0.025134658440947533, -0.009140005335211754, 0.009846237488090992, -0.005805798340588808, 0.06553289294242859, 0.05629695951938629, 0.02760835364460945, -0.012402924709022045, 0.036750707775354385, 0.05577825754880905, -0.01050908025354147, 0.0028483376372605562, 0.0014552068896591663, 0.0003127522359136492, -0.02022472769021988, -0.010492847301065922, -0.033902205526828766, -0.00193109514657408, 0.0029605557210743427, -0.040847718715667725, -0.017942138016223907, -0.04062119498848915, 0.017743689939379692, -0.008873159065842628, -0.04587085545063019, 0.044315844774246216, -0.014829199761152267, 0.02740369364619255, -0.006938847713172436, -0.030483955517411232, 0.01544376090168953, 0.04382650554180145, 0.007078268099576235, 0.03256955370306969, 0.023334383964538574, 0.05359334498643875, -0.011223635636270046, 0.04397324100136757, 0.00916821975260973, 0.02657492086291313, -0.021299181506037712, 0.018987996503710747, 0.02732999064028263, -0.009040550328791142, -0.016079915687441826, -0.01987163908779621, -0.01543500181287527, 0.016992148011922836, -0.0234031081199646, -0.03374307602643967, 0.0017697764560580254, -0.03747024014592171, -0.005442461930215359, -0.045546405017375946, 0.022736558690667152, -0.026514893397688866, -0.0008412133320234716, 0.03261464834213257, -0.027638068422675133, -0.010704660788178444, 0.03193040192127228, 0.015287049114704132, 0.061029717326164246, 0.01635856367647648, 0.07083650678396225, -0.023056916892528534, 0.03675276041030884, 0.04935918003320694, -0.0321449413895607, 0.00223969086073339, 0.02841712348163128, 0.004330029245465994, -0.03404032066464424, -0.016557902097702026, -0.056701838970184326, -0.006899658124893904, 0.02842036820948124, -0.016558319330215454, 0.020303869619965553, 0.03470378369092941, -0.0124327652156353, -0.026437906548380852, 0.0013148116413503885, 0.006764545571058989, -0.058638446033000946, -0.0023232244420796633, 0.02657225728034973, 0.024246012791991234, -0.015592457726597786, -0.020992867648601532, -0.018174929544329643, -0.021867871284484863, 0.0016853326233103871, -0.024390295147895813, 0.04056566208600998, 0.0024235823657363653, -0.031108565628528595, -0.042742736637592316, -0.051522091031074524, 0.0005590798100456595, -0.010995980352163315, -0.03607751056551933, -0.04907151311635971, 0.018763910979032516, 0.07306578010320663, -0.008363616652786732, 0.02360093593597412, -0.026302702724933624, -0.005058208480477333, 0.034190207719802856, 0.0633876621723175, 0.01911276765167713, 0.05751677602529526, 0.03571111708879471, 0.01418710220605135, 0.0482897125184536, -0.029456300660967827, 0.037263382226228714, -0.01991177536547184, -0.014833208173513412, -0.040131766349077225, 0.017788587138056755, -0.06442632526159286, -0.059187617152929306, 0.006927156820893288, 0.020714955404400826, 0.016794033348560333, -0.0018376493826508522, -0.05804175138473511, -0.0020129529293626547, -0.021516237407922745, -0.0368758961558342, -0.050286270678043365, 0.0424322672188282, 0.006936265155673027, -0.03498472645878792, 0.000698162941262126, -0.05120294541120529, 0.13895651698112488, 0.0363319106400013, 0.020103218033909798, -0.007946028374135494, 0.017651954665780067, 0.050788648426532745, 0.027103155851364136, 0.028026508167386055, 0.007476150989532471, -0.011284444481134415, 0.0010305577889084816, -0.02919328212738037, 0.02118322253227234, 0.028126418590545654, 0.029194630682468414, 0.03900621086359024, -0.020741498097777367, 0.009852036833763123, 0.003391013713553548, -0.04889697954058647, -0.06174858659505844, -0.019179295748472214, 0.014102106913924217, 0.027706459164619446, 0.00035031375591643155, 0.028852971270680428, 0.009976401925086975, -0.05846947059035301, -0.019002258777618408, -0.05374760553240776, 0.018130511045455933, -0.03798597678542137, 0.04287933185696602, -0.017668792977929115, -0.05156058445572853, 0.07053516060113907, -0.006389196030795574, -0.054600790143013, 0.007434852886945009, 0.00439301785081625, -0.03133388236165047, 0.001719241263344884, -0.001137513667345047, -0.0326099619269371, 0.027738455682992935, 0.0058404686860740185, -0.022499384358525276, -0.0021877840626984835, 0.028748691082000732, -0.021074403077363968, 0.0610235370695591, -0.0026814108714461327, 0.05454692989587784, 0.005127872806042433, -0.08096545189619064, 0.031195374205708504, 0.018269790336489677, -0.010672617703676224, -0.029635565355420113, 0.005000620614737272, 0.01518021896481514, 0.002506235847249627, -0.013890591450035572, -0.000489479280076921, -0.016798995435237885, -0.012030115351080894, 0.010339493863284588, -0.045810580253601074, -0.026606054976582527, -0.017174361273646355, -0.022348783910274506, 0.00012261397205293179, 0.02139911986887455, -0.04006121680140495, 0.036662954837083817, 0.03437827527523041, -0.03192897513508797, 0.04032054916024208, -0.021271102130413055, 0.002789359074085951, -0.032114818692207336, -0.056219130754470825, -0.019996661692857742, -0.025209544226527214, 0.0133401770144701, 0.04339247941970825, -0.026510437950491905, -0.047745514661073685, -0.027371983975172043, 0.045606065541505814, 0.05171987786889076, 0.0329539030790329, -0.019648240879178047, -0.03078266605734825, -0.03315156698226929 ]
We love everything about real estate in Charlotte. The Charlotte metropolitan area (also Metrolina, Charlotte Metro, or Charlotte USA) is a metropolitan area/region of North and South Carolina within and surrounding the city of Charlotte. Located in the Piedmont of the Southeastern United States, the Charlotte metropolitan area is well known for its auto racing history (especially NASCAR). The region is headquarters to 8 Fortune 500 and 7 Fortune 1000 companies including Bank of America, Duke Energy, Sealed Air Corporation, Nucor Steel, and Lowe's Home Improvement Stores, to name a few. It is home to one of the world's busiest airports, Charlotte Douglas International Airport, and is also the Carolinas' largest manufacturing region. The Charlotte MSA is the largest in the Carolinas, and the fourth largest metropolitan area in the Southeastern region of the United States behind, Miami, Atlanta, and Tampa. Metrolina refers to the region that includes the cities of Charlotte, Concord, Gastonia and Rock Hill. The name Metrolina came into fashion when North Carolina's other two large metropolitan areas took on nicknames — the Triangle for Raleigh/Durham/Chapel Hill and the Triad for Greensboro/Winston-Salem/High Point. The official Charlotte metropolitan area includes the Charlotte–Concord–Gastonia MSA (Cabarrus, Gaston, Iredell, Lincoln, Mecklenburg, Rowan, and Union counties in North Carolina; Chester, Lancaster, and York counties in South Carolina).
[ -0.010617000050842762, 0.014091932214796543, -0.02957429736852646, 0.012041354551911354, -0.00765052018687129, 0.021151768043637276, 0.00009344798309030011, 0.023966150358319283, 0.025728046894073486, 0.02203187346458435, 0.012695248238742352, -0.014092870056629181, -0.03580470383167267, -0.04408637806773186, -0.01266644336283207, -0.016685519367456436, -0.0035671216901391745, 0.008120927959680557, -0.010982508771121502, -0.0005968812620267272, 0.012240181677043438, 0.008169085718691349, -0.05065229907631874, -0.03447287157177925, -0.028287405148148537, 0.02049877867102623, 0.01941128447651863, -0.014388728886842728, 0.042419660836458206, 0.06279697269201279, -0.022871173918247223, -0.08296950906515121, 0.004655324853956699, -0.051990825682878494, -0.03007621504366398, -0.0222174059599638, 0.043648991733789444, -0.02866191603243351, -0.019403064623475075, -0.04363492876291275, -0.004154251888394356, -0.03310363367199898, 0.03784387186169624, 0.003565197577700019, -0.021718863397836685, 0.018070174381136894, -0.02366693504154682, -0.007111496292054653, 0.023590359836816788, -0.022715440019965172, 0.023309681564569473, -0.01643613912165165, 0.011105947196483612, -0.002530571073293686, 0.003494309028610587, -0.010020958259701729, 0.005453830119222403, -0.010168022476136684, 0.0075099715031683445, 0.030011245980858803, 0.015539548359811306, 0.0032452635932713747, 0.028206290677189827, -0.06600194424390793, 0.03713387995958328, 0.020368851721286774, -0.004467816557735205, -0.006115924566984177, 0.028817331418395042, -0.02813837304711342, 0.025083910673856735, 0.0027130604721605778, -0.009247004985809326, -0.012401323765516281, -0.011721028946340084, -0.012116244994103909, -0.012341465801000595, 0.004461617674678564, -0.01740906946361065, -0.016947712749242783, 0.023928001523017883, 0.049743928015232086, 0.03284844011068344, 0.023165130987763405, -0.05379977449774742, 0.014960729517042637, -0.02855394035577774, 0.019581671804189682, 0.023803267627954483, 0.0073791323229670525, 0.029378609731793404, 0.04684296250343323, 0.018537942320108414, 0.005004137754440308, 0.0517561137676239, 0.038631707429885864, -0.05445925146341324, 0.030978336930274963, 0.018638217821717262, 0.004230429418385029, 0.010047261603176594, 0.029521731659770012, -0.006970020476728678, 0.061711132526397705, -0.045846499502658844, -0.011952074244618416, 0.009071734733879566, -0.01573066972196102, 0.025627009570598602, -0.016509655863046646, -0.0011880872771143913, -0.02214753068983555, 0.015035365708172321, -0.007995828054845333, -0.008898412808775902, 0.05314728245139122, 0.00037193208117969334, 0.05561891198158264, -0.005300462711602449, 0.005292629357427359, 0.004056059289723635, -0.013109914027154446, 0.02158302068710327, -0.05110979825258255, 0.008230394683778286, -0.029993759468197823, -0.02731757052242756, 0.04641968756914139, -0.06401776522397995, -0.00530881155282259, 0.01595844142138958, -0.047210823744535446, 0.004213949665427208, -0.0001023628719849512, 0.034863829612731934, 0.008278223685920238, -0.008805989287793636, 0.043957874178886414, 0.02260758727788925, -0.047285813838243484, 0.06323891133069992, 0.02428286522626877, 0.023157300427556038, 0.09732197225093842, 0.020472737029194832, 0.03613027185201645, 0.021430395543575287, -0.01244088914245367, -0.03860170394182205, 0.040099769830703735, -0.020779050886631012, 0.037354085594415665, 0.010058016516268253, 0.037730623036623, -0.017493879422545433, -0.028667990118265152, 0.015124266967177391, 0.02432013489305973, 0.017829321324825287, 0.0186258964240551, -0.022106867283582687, 0.015351641923189163, -0.0019014985300600529, 0.028294850140810013, -0.030040981248021126, 0.028149913996458054, -0.03382304310798645, 0.005352981388568878, -0.03379495069384575, -0.03161643445491791, 0.01915082521736622, 0.009934255853295326, -0.008012795820832253, 0.0044647022150456905, 0.022284049540758133, 0.03661979362368584, 0.035973791033029556, -0.05281104892492294, 0.03847561776638031, 0.05365776643157005, -0.076373390853405, -0.021370025351643562, 0.013021813705563545, 0.054786566644907, 0.021762147545814514, -0.02635960467159748, 0.006387775298207998, 0.00554913142696023, -0.050500545650720596, -0.02449009194970131, 0.03569529578089714, 0.05331423133611679, -0.006613393314182758, 0.018205272033810616, -0.01855165883898735, 0.020951570942997932, -0.013956616632640362, -0.029120054095983505, 0.0010103583335876465, -0.030832309275865555, -0.03926806524395943, 0.050024114549160004, -0.011629864573478699, 0.010597764514386654, -0.024191532284021378, -0.02226845547556877, 0.02844032645225525, 0.051121726632118225, -0.04135322943329811, 0.0015092535177245736, 0.08019328117370605, -0.03218812495470047, -0.021038930863142014, -0.0021815442014485598, 0.02329530566930771, 0.009517966769635677, -0.017766883596777916, 0.06954622268676758, -0.01770644821226597, -0.011993528343737125, 0.0370902456343174, 0.023243391886353493, 0.0009264021646231413, 0.06891684234142303, -0.014272807165980339, -0.01341699156910181, 0.008905253373086452, 0.0256806593388319, -0.013926315121352673, 0.006942864507436752, 0.020136982202529907, 0.04145781695842743, 0.02541382797062397, 0.07204603403806686, 0.03274308145046234, 0.007555861957371235, 0.0310946274548769, 0.019041575491428375, -0.011658253148198128, 0.034740518778562546, -0.005869272165000439, 0.031288404017686844, 0.03788198530673981, 0.0380835123360157, -0.011295653879642487, 0.04363987222313881, -0.007836666889488697, -0.027544714510440826, -0.03108951449394226, 0.026688866317272186, -0.013193064369261265, 0.03000105917453766, -0.011194519698619843, 0.07037521153688431, -0.010682457126677036, 0.018803929910063744, 0.03532630205154419, 0.03641236945986748, -0.0560343973338604, -0.005325794219970703, 0.012479821220040321, 0.017329547554254532, -0.041240811347961426, 0.007469748146831989, 0.0160676296800375, 0.033471688628196716, -0.007285557687282562, 0.0014838624047115445, -0.004298887215554714, -0.04362969845533371, -0.03869878873229027, -0.03445334732532501, -0.05084634944796562, -0.03686370700597763, -0.04444381594657898, -0.03346860408782959, 0.05016269534826279, -0.046839430928230286, 0.025238726288080215, -0.011405234225094318, -0.029912792146205902, -0.022129572927951813, -0.003393142018467188, 0.047733284533023834, 0.034064553678035736, 0.044625088572502136, -0.06340960413217545, 0.02371271513402462, 0.0021323137916624546, 0.04337340593338013, -0.03212546184659004, -0.009274737909436226, -0.017610536888241768, 0.015565518289804459, 0.01919488236308098, -0.017079181969165802, 0.019513193517923355, 0.004180163145065308, -0.050579436123371124, -0.06637850403785706, 0.02413620613515377, 0.019565587863326073, -0.0019255648367106915, 0.02574051357805729, -0.031616244465112686, 0.026510125026106834, 0.011885946616530418, 0.001229197601787746, 0.03307217359542847, 0.06459920853376389, -0.05358186364173889, 0.04980156570672989, 0.024360358715057373, -0.0010833204723894596, -0.044811803847551346, 0.037139128893613815, 0.06458568572998047, -0.018003221601247787, -0.017956441268324852, 0.004630976356565952, -0.025035187602043152, 0.0064530870877206326, 0.0036146272905170918, -0.028136858716607094, -0.018708813935518265, 0.03857984393835068, 0.02945835515856743, -0.05902732536196709, 0.03981241583824158, -0.07470696419477463, -0.03415428102016449, -0.01679125241935253, -0.02527935989201069, 0.02863401733338833, 0.02810889668762684, 0.03347601741552353, 0.00218563131056726, -0.015551751479506493, -0.00016063872317317873, 0.018784627318382263, 0.03797134757041931, -0.04698456823825836, 0.02204972133040428, 0.05234377458691597, -0.013977691531181335, 0.013261939398944378, 0.013681872747838497, -0.011007947847247124, -0.010790198110044003, 0.03165528178215027, -0.013896278105676174, -0.006932848133146763, 0.006762608420103788, -0.0033985022455453873, -0.010382878594100475, 0.033854156732559204, -0.022498130798339844, 0.008351597003638744, 0.01296298112720251, 0.01490774191915989, 0.03467433154582977, 0.008504191413521767, -0.0004223548748996109, -0.003427427262067795, -0.05347219482064247, -0.04512927308678627, 0.011053013615310192, -0.000601558422204107, 0.05912400409579277, -0.05356799066066742, 0.06449107080698013, -0.034393198788166046, -0.04979363828897476, 0.04879771173000336, -0.040038272738456726, 0.025318771600723267, 0.01576850190758705, -0.006522832904011011, 0.04454892501235008, -0.03555333614349365, 0.005084743723273277, -0.023994484916329384, 0.034046486020088196, 0.020649351179599762, 0.019525058567523956, 0.027845047414302826, -0.01030376274138689, -0.03284808620810509, -0.03757062926888466, -0.015544476918876171, -0.00576417613774538, -0.007585099432617426, -0.009037977084517479, 0.0049657067283988, -0.031966328620910645, -0.0540875680744648, 0.05837249755859375, 0.07264595478773117, 0.03977517411112785, -0.00015026394976302981, 0.04106646403670311, 0.008533306419849396, 0.014611410908401012, 0.05247403681278229, -0.0030290507711470127, 0.04001731425523758, -0.02582160197198391, 0.04003920778632164, 0.016883647069334984, -0.009058755822479725, -0.03816433250904083, -0.024842530488967896, -0.006753930356353521, 0.0601344108581543, -0.011331106536090374, -0.0012616431340575218, -0.040622055530548096, 0.009075039997696877, -0.011974729597568512, 0.03454584255814552, -0.03792530298233032, 0.023400604724884033, -0.010077971033751965, -0.007392816711217165, 0.010234547778964043, -0.038559261709451675, 0.006922571919858456, -0.02629026211798191, 0.03091460093855858, 0.04792021960020065, -0.008422395214438438, -0.03867805749177933, -0.010617522522807121, -0.002902975073084235, -0.022526614367961884, 0.008478266187012196, 0.021449755877256393, -0.023060617968440056, -0.0015744250267744064, -0.048098787665367126, 0.015081041492521763, 0.039640676230192184, 0.012648535892367363, -0.011948051862418652, 0.00014975252270232886, 0.014475181698799133, -0.0007340387674048543, 0.030321238562464714, -0.007614757865667343, -0.01050280686467886, 0.02064921334385872, -0.03704225271940231, 0.003011995693668723, -0.015621217899024487, -0.017339041456580162, -0.0025478648021817207, 0.019195744767785072, 0.011666066944599152, 0.05046429485082626, -0.021985569968819618, 0.031692858785390854, -0.007910639978945255, 0.03614388033747673, -0.022335361689329147, -0.046384524554014206, 0.06403273344039917, 0.0017367381369695067, -0.014085923321545124, 0.029108701273798943, 0.0466441884636879, -0.033202484250068665, 0.00971404928714037, 0.0020855667535215616, -0.02711874060332775, 0.04155223071575165, -0.03755295276641846, 0.00014624791219830513, -0.031786415725946426, -0.016643762588500977, 0.020533466711640358, -0.02849007397890091, 0.03763436898589134, -0.010014521889388561, -0.012139749713242054, -0.029994767159223557, -0.06341055780649185, -0.028325341641902924, -0.0051710959523916245, 0.014687432907521725, 0.019007738679647446, -0.002140052616596222, -0.008976805955171585, -0.018252119421958923, -0.014155415818095207, -0.001477275975048542, -0.013410048559308052, 0.023589471355080605, 0.02524687722325325, -0.01966962218284607, 0.014136592857539654, 0.026950012892484665, 0.007121307775378227, -0.03924255818128586, -0.01074556726962328, -0.017831388860940933, -0.022817818447947502, -0.0719643384218216, 0.016928881406784058, -0.032139893621206284, -0.00744606414809823, -0.03850914537906647, 0.005823161918669939, -0.030696233734488487, 0.02492506615817547, 0.03540867567062378, 0.019200962036848068, -0.020102698355913162, 0.03662874177098274, -0.03166646510362625, 0.02322455681860447, 0.03194725513458252, -0.031240155920386314, -0.046480752527713776, 0.03242767974734306, -0.012873230502009392, 0.023328259587287903, -0.021546581760048866, -0.02917410247027874, -0.04723015055060387, -0.02904278226196766, 0.025657305493950844, -0.026688801124691963, -0.015174474567174911, -0.04484255984425545, -0.01684396341443062, -0.025700600817799568, 0.026888703927397728, 0.02715092897415161, -0.015169700607657433, 0.015709904953837395, -0.02738581784069538, 0.015967126935720444, -0.031629983335733414, -0.00651622423902154, -0.04423139989376068, -0.028145136311650276, -0.014149465598165989, 0.04428763687610626, -0.03153233230113983, -0.0018451011274009943, -0.014307531528174877, 0.012897154316306114, 0.025466252118349075, -0.048515282571315765, -0.049616869539022446, -0.052643071860075, -0.01927056722342968, -0.014690984040498734, -0.019364697858691216, 0.04547387361526489, -0.012834715656936169, 0.05822501704096794, -0.02262069843709469, -0.0023822765797376633, 0.008053695783019066, 0.024303976446390152, 0.011974586173892021, -0.023618755862116814, 0.05629277601838112, -0.007171852979809046, -0.02580193057656288, -0.02600885182619095, 0.04217100888490677, 0.012695693410933018, -0.00348997232504189, -0.03632071614265442, -0.053795117884874344, -0.044920891523361206, -0.09362141788005829, 0.03761040419340134, -0.02461453340947628, -0.030737558379769325, -0.04281897470355034, -0.027719810605049133, 0.03840579465031624, -0.0086858831346035, 0.05212552100419998, 0.0338151641190052, -0.0010931914439424872, -0.000921525526791811, -0.02905781753361225, 0.029854832217097282, 0.03348150476813316, -0.023650728166103363, 0.007324900943785906, -0.02568461373448372, -0.023409374058246613, 0.018720678985118866, -0.05961349233984947, -0.0625980943441391, -0.05121344327926636, -0.008085792884230614, 0.07395518571138382, -0.023814495652914047, 0.03925973176956177, -0.007165213581174612, -0.05352386459708214, -0.01814636029303074, 0.03848107159137726, -0.015805242583155632, -0.00769104203209281, 0.054571639746427536, -0.007361528929322958, -0.020369678735733032, 0.026307933032512665, 0.012186410836875439, -0.00913674384355545, -0.030650151893496513, 0.04081939160823822, -0.038898956030607224, -0.05858088657259941, 0.030140342190861702, 0.0741395577788353, -0.06935001909732819, -0.032271675765514374, 0.009026208892464638, 0.011016815900802612, 0.006824558135122061, -0.029256094247102737, -0.007788123097270727, 0.011694222688674927, -0.014553749933838844, -0.02118941769003868, 0.025161389261484146, -0.023801449686288834, 0.03227214142680168, -0.010425027459859848, 0.03694945201277733, -0.025300975888967514, -0.001442931592464447, 0.006598254200071096, -0.00264280429109931, -0.001770758186466992, -0.044191405177116394, -0.01659569889307022, -0.0033512578811496496, 0.016947224736213684, 0.04059593379497528, -0.022763235494494438, 0.013959592208266258, 0.023646589368581772, 0.005553741008043289, 0.0419781394302845, -0.002669639652594924, 0.011560757644474506, 0.006852160673588514, -0.013483818620443344, -0.04178629815578461, -0.06596483290195465, 0.010897639207541943, 0.004586016293615103, 0.04120030254125595, -0.034316420555114746, -0.014339973218739033, 0.05379132181406021, -0.03147502243518829, -0.003409312106668949, -0.048872437328100204, -0.031723834574222565, -0.06085505336523056, -0.042585454881191254, -0.05352538824081421, -0.024111764505505562, -0.017323298379778862, 0.04335439205169678, 0.03543824702501297, -0.03167470917105675, 0.0130035150796175, 0.014496756717562675, -0.013389325700700283, 0.005328776780515909, -0.027281157672405243, 0.02201584167778492, -0.05923175811767578, -0.021107738837599754, -0.06183894723653793, 0.001011982443742454, 0.012216214090585709, -0.007603491190820932, -0.0010710592614486814, 0.013870276510715485, 0.005180522333830595, 0.026804547756910324, -0.0032959762029349804, 0.025322813540697098, -0.009890986606478691, -0.06939258426427841, -0.0075060175731778145, 0.020632827654480934, -0.010127908550202847, 0.03893154114484787, 0.05134514719247818, -0.0031820025760680437, 0.024584230035543442, 0.006265281233936548, -0.018130982294678688, -0.016603585332632065, -0.00447968440130353, 0.004967101849615574, -0.004647499416023493, -0.04255932196974754, -0.048644810914993286, -0.01581621915102005, -0.040680717676877975, -0.00856977328658104, 0.007080979645252228, 0.009979307651519775, 0.026697658002376556, -0.003825720166787505, 0.02105829119682312, 0.06478509306907654, -0.012250703759491444, -0.013213863596320152, -0.021684790030121803, 0.019883694127202034, 0.015392472967505455, 0.0046413312666118145, 0.010001587681472301, 0.0452338270843029, 0.0254353117197752, -0.028906648978590965, 0.013612220995128155, 0.0008291123667731881, -0.007849342189729214, 0.029696276411414146, -0.022078068926930428, -0.06850753724575043, -0.04641122370958328, -0.0399569608271122, -0.013659777119755745, 0.05149465426802635, 0.01605064608156681, -0.00044135370990261436, 0.04013492912054062, -0.05192475765943527, -0.06048952043056488, 0.0026029564905911684, -0.046265825629234314, -0.03792079538106918, 0.04136732965707779, -0.003160158870741725, -0.01220651250332594, -0.014005040749907494, -0.0409831665456295, 0.01971392333507538, -0.02694256231188774, -0.014792285859584808, -0.03431345894932747, 0.031177010387182236, -0.00427904911339283, 0.03102852776646614, -0.009259287267923355, -0.001559727475978434, 0.0017227568896487355, 0.058836404234170914, -0.04472419619560242, -0.059411659836769104, 0.0033110901713371277, 0.005811321549117565, 0.04249813035130501, 0.013393997214734554, 0.007819444872438908, -0.01106240414083004, -0.030242491513490677, 0.012976760976016521, 0.013812578283250332, 0.00994875468313694, 0.009050039574503899, 0.0026677476707845926, -0.01935216784477234, 0.02327880822122097, -0.050193775445222855, 0.04349827393889427, -0.016491230577230453, -0.06906843185424805, -0.02711944282054901, 0.029434405267238617, 0.04770325869321823, -0.0013664922444149852, 0.041887592524290085, 0.019713880494236946, 0.028773250058293343, -0.00651451013982296, 0.01475407276302576, 0.00009505463822279125, 0.008724176324903965, 0.043007295578718185, 0.03870873153209686, -0.011006312444806099, 0.011716635897755623, 0.057331912219524384, 0.013668586499989033, 0.005502636544406414, 0.03981495648622513, 0.028663374483585358, -0.018503546714782715, -0.01529195811599493, -0.00290892762131989, -0.014221087098121643, -0.005597271025180817, -0.010554393753409386, 0.014437100850045681, -0.007217276841402054, -0.011386963538825512, -0.0004523331590462476, -0.009581143036484718, 0.048010844737291336, 0.0011820754734799266, -0.01916135847568512, -0.016156528145074844, -0.0016621884424239397, -0.0033418675884604454, 0.009642167016863823, 0.013160430826246738, -0.012503650039434433, 0.04968399927020073, 0.013052402064204216, -0.010795545764267445, 0.02848493866622448, 0.07782823592424393, -0.008255695924162865, -0.04864542558789253, 0.0034568842966109514, 0.0102058295160532, 0.001920847687870264, -0.026437493041157722, 0.028695041313767433, -0.02495337463915348, 0.0433058999478817, -0.017391758039593697, 0.007081884425133467, 0.037583477795124054, -0.050636425614356995, -0.027778545394539833, -0.08031066507101059, 0.06238384544849396, -0.04570915922522545, -0.008072969503700733, 0.03967585042119026, -0.024149876087903976, -0.03437751531600952, 0.058844584971666336, -0.020043393597006798, 0.03243999183177948, 0.02201439067721367, 0.03562597930431366, -0.004503299482166767, 0.060050684958696365, 0.04241983965039253, -0.037983477115631104, -0.03259678930044174, 0.019105076789855957, -0.03540994971990585, -0.043925702571868896, -0.0321083702147007, -0.027662919834256172, -0.008757161907851696, -0.019183915108442307, 0.0011840672232210636, 0.005680444184690714, 0.018184246495366096, -0.006833808962255716, -0.04160526394844055, 0.016481587663292885, 0.057775624096393585, -0.06045219302177429, -0.011037987656891346, 0.050601184368133545, 0.04159143194556236, 0.010308838449418545, -0.007286143023520708, -0.04043672978878021, -0.04800213500857353, 0.027729324996471405, -0.055213116109371185, 0.04466473311185837, -0.02612191252410412, 0.003448236733675003, -0.05044959858059883, -0.0707700178027153, -0.014984473586082458, -0.03110285848379135, -0.048945069313049316, -0.07378918677568436, 0.038938142359256744, 0.051508210599422455, 0.006485258229076862, 0.012185902334749699, -0.04613107815384865, -0.01706814207136631, 0.03860000520944595, 0.06227674335241318, 0.007135709747672081, 0.047282516956329346, 0.038727208971977234, 0.0024549199733883142, 0.0016662280540913343, -0.012134901247918606, 0.012049251236021519, -0.020437998697161674, -0.02788715437054634, -0.03007342480123043, 0.021479887887835503, -0.003798112738877535, -0.07668589800596237, 0.040713436901569366, 0.01245479378849268, -0.002786670345813036, -0.02708953246474266, -0.06213616579771042, 0.0011541125131770968, -0.003915504086762667, -0.0035820461343973875, -0.007627381943166256, 0.028807267546653748, 0.038562409579753876, -0.009627106599509716, 0.001908238627947867, -0.057697515934705734, 0.13336493074893951, 0.02003484219312668, 0.032837364822626114, 0.011221633292734623, 0.04925858601927757, 0.05463689938187599, 0.018508346751332283, 0.008535193279385567, 0.010611576959490776, -0.006791361607611179, 0.022693617269396782, -0.009006519801914692, 0.02297419309616089, 0.014575309120118618, 0.02488628961145878, 0.032626476138830185, -0.041534971445798874, 0.009835856966674328, 0.004491424188017845, -0.06687851250171661, -0.058675944805145264, -0.00688018137589097, 0.03176345303654671, 0.031782153993844986, -0.0039305007085204124, 0.010216398164629936, 0.006929943338036537, -0.05072556063532829, 0.023256754502654076, -0.022339826449751854, -0.017821433022618294, -0.048780929297208786, 0.021573254838585854, -0.002360935090109706, -0.03364333510398865, 0.02562825009226799, 0.00685903849080205, -0.03515833988785744, 0.0008320432971231639, -0.009077275171875954, -0.030350038781762123, -0.01534427609294653, 0.03889662027359009, -0.039062563329935074, 0.01563366875052452, 0.04957350343465805, -0.006508122198283672, -0.007823197171092033, 0.03213392570614815, -0.02920071966946125, 0.06872784346342087, -0.04094310104846954, 0.04120926931500435, 0.04473529011011124, -0.01082189567387104, 0.018412934616208076, -0.0005932524218223989, -0.022681089118123055, 0.009953180328011513, 0.017876047641038895, 0.051906030625104904, 0.030656395480036736, -0.01941271498799324, 0.028218692168593407, -0.0415504164993763, -0.00880923680961132, 0.026438400149345398, -0.005653027910739183, -0.0054495991207659245, -0.02482430823147297, -0.010385480709373951, -0.020106559619307518, -0.021775873377919197, -0.03462862968444824, 0.013968167826533318, 0.042277466505765915, -0.04506434500217438, 0.035163965076208115, -0.011224242858588696, 0.003474778961390257, -0.019901448860764503, -0.04485492780804634, 0.00263792066834867, -0.012562408111989498, 0.03773598372936249, 0.04893425479531288, -0.028891101479530334, -0.05223608389496803, -0.036331433802843094, 0.05110274255275726, 0.021016694605350494, 0.015300632454454899, -0.009343313053250313, -0.006409312132745981, -0.020544158294796944 ]
When i apply any name property to the controls, it doesn't set to the controls.. I was able to set the name attribute value to a radio button in IE8, but not in IE9. Firefox still does not offer ability to select radio input element so currently it is not possible to provide this feature in this browser. I logged the IE9 problem and we will fix it. Here you can find the PITS Issue: Public URL.
[ -0.012384423054754734, -0.008234678767621517, 0.01314228679984808, 0.006733813788741827, -0.008312847465276718, 0.02532426081597805, 0.0033696878235787153, 0.004975630436092615, 0.030475521460175514, -0.008663685992360115, 0.04140246659517288, 0.015543398447334766, 0.0111284414306283, -0.006608470343053341, -0.003013189882040024, 0.010541117750108242, 0.009981950744986534, -0.010425190441310406, -0.03373018652200699, -0.025822218507528305, 0.022390035912394524, 0.013195520266890526, -0.07444779574871063, -0.02568322978913784, -0.049036987125873566, 0.025166667997837067, 0.012479028664529324, -0.03444262593984604, 0.037459928542375565, 0.05411083251237869, -0.025492414832115173, -0.0652458667755127, 0.03447284549474716, -0.004239286761730909, -0.04810035973787308, -0.02649221569299698, 0.021877627819776535, -0.04283519461750984, -0.07287740707397461, -0.03496274724602699, 0.009788138791918755, -0.02007788047194481, 0.006070719100534916, -0.03588007017970085, -0.034736841917037964, 0.016696464270353317, -0.006703496444970369, -0.01929781585931778, -0.027590176090598106, -0.03981942683458328, 0.030240094289183617, 0.00468906294554472, 0.022696755826473236, 0.031354859471321106, -0.016908269375562668, 0.01343271229416132, 0.005378925707191229, -0.03902479633688927, -0.048649270087480545, -0.007207175716757774, -0.008677066303789616, 0.010202858597040176, 0.0248626247048378, -0.041281286627054214, 0.0337957926094532, 0.05021265149116516, 0.0026922975666821003, -0.008325188420712948, 0.018161673098802567, 0.025604667142033577, -0.016028065234422684, 0.014174656942486763, -0.024176402017474174, -0.039879411458969116, 0.0093856081366539, -0.004399931989610195, -0.035988699644804, 0.01141838077455759, -0.0008812873857095838, 0.0033233887515962124, -0.03186510130763054, 0.0305525790899992, -0.0016161761013790965, 0.017245380207896233, -0.060302652418613434, -0.005755475722253323, -0.0006793448701500893, 0.0307691041380167, -0.019846942275762558, 0.03182179108262062, 0.00961990375071764, 0.03239870443940163, -0.0025911524426192045, -0.0021777695510536432, 0.049981020390987396, 0.05373259633779526, -0.03008861094713211, 0.025672946125268936, -0.021087365224957466, 0.007643178571015596, 0.056509386748075485, 0.05124427378177643, -0.017957370728254318, 0.030900880694389343, -0.02447350323200226, 0.00021088281937409192, -0.005572568625211716, 0.004258416593074799, -0.014390057884156704, -0.04766373336315155, 0.00984598882496357, -0.006827972363680601, 0.01585715264081955, 0.00476952875033021, -0.009977958165109158, 0.04482116922736168, -0.011735650710761547, 0.018872622400522232, -0.028031453490257263, 0.03192188963294029, 0.012122252956032753, -0.023521307855844498, 0.00551953399553895, -0.04249448701739311, -0.0021116945426911116, -0.006482106167823076, -0.018990114331245422, 0.02158643677830696, -0.014384358190000057, -0.024067876860499382, -0.004092469345778227, -0.00031731612398289144, 0.011044057086110115, 0.018548808991909027, 0.03332081437110901, 0.010739303193986416, -0.012180757708847523, 0.026410048827528954, 0.008553371764719486, -0.05172456055879593, 0.0365670882165432, 0.01765865832567215, -0.004461459815502167, 0.0956820622086525, 0.0174504853785038, 0.028709376230835915, -0.001989929471164942, -0.029697412624955177, -0.013287323527038097, 0.00801410898566246, -0.0313919372856617, 0.03291705623269081, 0.006128859706223011, 0.025942550972104073, 0.010642925277352333, 0.008139155805110931, 0.02052605152130127, -0.0034178586211055517, -0.003876029048115015, 0.013001343235373497, -0.021585160866379738, 0.03412862867116928, -0.005612648092210293, 0.018081942573189735, 0.0029731818940490484, 0.021957699209451675, -0.01658957451581955, -0.026973634958267212, -0.0032720027957111597, -0.02494683675467968, 0.03499707952141762, 0.027074171230196953, -0.02974998950958252, 0.002467558952048421, 0.0018434850499033928, 0.03260668367147446, 0.01877669058740139, 0.0032453869935125113, 0.026272425428032875, 0.03628336638212204, -0.020846592262387276, -0.006065052933990955, 0.013486736454069614, 0.06301076710224152, 0.035169538110494614, -0.026826990768313408, 0.013943232595920563, -0.0009714628104120493, -0.06543475389480591, -0.06988586485385895, 0.03734414651989937, 0.009861325845122337, 0.025769483298063278, 0.019170913845300674, -0.01602006144821644, 0.0002744217053987086, 0.002840489149093628, 0.022810526192188263, -0.00235972017981112, -0.04488826170563698, -0.025100938975811005, 0.04826343059539795, -0.037168316543102264, 0.015852008014917374, 0.006520078517496586, -0.019161181524395943, 0.010203286074101925, 0.04935210570693016, -0.03435247391462326, 0.024246670305728912, 0.033274125307798386, 0.04658187925815582, -0.04060893505811691, 0.0050458721816539764, 0.0026617986150085926, -0.020051918923854828, -0.029477400705218315, 0.01701771654188633, 0.0055569838732481, -0.01037581916898489, 0.016184533014893532, 0.014746837317943573, 0.02822062186896801, 0.01127561740577221, -0.00737757608294487, 0.023211631923913956, 0.026001201942563057, 0.03538496419787407, -0.01550506055355072, -0.0027626531664282084, -0.00788581557571888, 0.04560946673154831, 0.007858330383896828, 0.08703142404556274, 0.031706638634204865, -0.002963931066915393, 0.027041127905249596, 0.029230037704110146, 0.019809676334261894, 0.007473851088434458, -0.0024614527355879545, 0.014267219230532646, 0.057277921587228775, 0.06040114909410477, -0.03204680234193802, 0.01040333416312933, 0.017085282132029533, 0.020330760627985, -0.02876042015850544, 0.011546100489795208, 0.0037789957132190466, 0.07350684702396393, 0.013715320266783237, 0.051819220185279846, -0.01713421195745468, -0.006338964216411114, 0.0410953164100647, 0.055942777544260025, -0.034893762320280075, -0.030275728553533554, -0.00984724797308445, 0.0005527036846615374, -0.024769721552729607, 0.0026713337283581495, 0.03925935924053192, -0.0023747242521494627, -0.02007618360221386, 0.013785474933683872, -0.01959810219705105, -0.08111835271120071, -0.03771735355257988, -0.0506441593170166, -0.048128098249435425, -0.03011350706219673, -0.04384840652346611, -0.027711929753422737, 0.038610171526670456, -0.039368726313114166, 0.05552758276462555, 0.018943509086966515, -0.0007816337165422738, -0.02720639482140541, -0.04393298923969269, 0.04737174138426781, 0.01083405315876007, 0.06876282393932343, -0.03895707428455353, 0.014805671758949757, 0.0037644379772245884, 0.07362881302833557, -0.028197085484862328, -0.016540315002202988, 0.007348199840635061, -0.03361085057258606, 0.015256212092936039, 0.003107579192146659, 0.004185728263109922, 0.010532503016293049, -0.03244166076183319, -0.06827540695667267, -0.0164091307669878, 0.000965960614848882, -0.010395850986242294, 0.010117982514202595, -0.04523950070142746, 0.04242372140288353, 0.0089111328125, -0.04156763479113579, 0.05463281273841858, 0.04865216463804245, -0.03526720032095909, 0.039112381637096405, 0.03454948961734772, -0.0005522585124708712, -0.050415415316820145, 0.04967125877737999, 0.046035803854465485, 0.0037058580201119184, -0.04517804831266403, -0.040783558040857315, -0.02556000091135502, 0.018849385902285576, 0.00028359334100969136, -0.019142646342515945, -0.0026439898647367954, 0.03794785216450691, 0.029795346781611443, -0.05894913151860237, 0.0524124950170517, -0.04164603725075722, -0.060019783675670624, -0.04380201920866966, -0.030548620969057083, 0.0162766482681036, 0.04486433416604996, 0.03184490650892258, 0.02706575207412243, 0.008380590938031673, 0.03838115930557251, 0.01036621630191803, 0.03950268402695656, -0.028779074549674988, 0.04412899166345596, 0.02872655540704727, -0.012751517817378044, -0.007816635072231293, -0.017007188871502876, -0.03713137283921242, -0.01407572254538536, 0.0142239173874259, 0.0055308155715465546, 0.0030472499784082174, 0.013852966949343681, 0.007065246347337961, -0.002691341796889901, 0.05469975993037224, -0.029937325045466423, 0.007163404021412134, 0.02311871573328972, 0.030877893790602684, 0.03802185505628586, 0.013430646620690823, -0.005582329351454973, -0.03314722329378128, -0.015572696924209595, -0.0716458112001419, 0.02475941926240921, 0.03552543744444847, 0.045230306684970856, -0.05393005162477493, 0.07355006039142609, -0.009649236686527729, -0.007873267866671085, 0.02873166836798191, -0.045239370316267014, 0.019503463059663773, 0.05329841375350952, -0.009264951571822166, 0.07628832012414932, -0.025530587881803513, 0.006958198267966509, 0.023505808785557747, 0.011867170222103596, 0.015486644580960274, -0.005362849682569504, 0.03368373215198517, 0.0013450124533846974, -0.016861505806446075, -0.007305697072297335, -0.016274265944957733, 0.0039036821108311415, -0.0289700236171484, -0.016428634524345398, -0.004611064679920673, -0.036898285150527954, -0.0244361013174057, 0.00965426117181778, 0.026278262957930565, 0.0565464086830616, 0.02189994789659977, 0.04198349639773369, -0.02030375972390175, -0.0027722790837287903, 0.04188576713204384, -0.044544320553541183, 0.003998963162302971, -0.04634764418005943, 0.05754274129867554, 0.034695226699113846, -0.009954522363841534, -0.01230613887310028, -0.01787431724369526, -0.030423127114772797, 0.00847314577549696, 0.028685422614216805, -0.006504083052277565, -0.05922500416636467, 0.0011004471452906728, 0.02477078326046467, 0.04871853068470955, -0.0318780317902565, -0.042520202696323395, -0.00688042351976037, 0.038929663598537445, 0.018907230347394943, -0.030247867107391357, 0.008272171020507812, -0.010067600756883621, -0.006737105548381805, 0.05679967999458313, -0.019387662410736084, -0.028212731704115868, -0.035509347915649414, -0.018889734521508217, -0.026623409241437912, 0.01956724189221859, 0.017552969977259636, -0.0051977746188640594, 0.010111912153661251, -0.03278407081961632, 0.012443027459084988, 0.05377690866589546, -0.0047117359936237335, -0.004643465857952833, -0.0043623861856758595, -0.0002046956797130406, -0.02948099374771118, 0.04469228535890579, -0.031677570194005966, -0.011259997263550758, 0.032493602484464645, -0.05043593421578407, 0.03925821930170059, -0.0049658240750432014, -0.00930021982640028, -0.039967045187950134, 0.029787734150886536, -0.005897001828998327, 0.046707794070243835, -0.012709816917777061, 0.005327919963747263, 0.007306993473321199, 0.024856310337781906, -0.009218462742865086, -0.02548806183040142, 0.034153636544942856, -0.03073856420814991, -0.0032053999602794647, 0.023353775963187218, 0.03484739363193512, -0.012083246372640133, 0.029325606301426888, -0.010034429840743542, -0.03878021240234375, 0.023691551759839058, -0.045009490102529526, 0.019769050180912018, -0.01939324662089348, -0.019498730078339577, 0.028775980696082115, -0.04000815004110336, 0.04237816482782364, 0.009437340311706066, -0.05414831265807152, -0.0374869741499424, -0.03494224324822426, -0.024192994460463524, 0.007681617978960276, -0.026321064680814743, -0.010194571688771248, -0.04929826036095619, -0.01878765970468521, 0.02708679810166359, -0.033821288496255875, 0.011034796014428139, 0.006048883777111769, 0.005477770697325468, 0.013163718394935131, 0.029782237485051155, -0.033662114292383194, 0.04854877293109894, 0.01721835881471634, -0.06964080780744553, 0.027884183451533318, -0.008197654038667679, -0.006169745698571205, -0.04250515624880791, 0.0012843224685639143, -0.019663235172629356, -0.000021089761503390037, -0.018765313550829887, 0.02558732032775879, -0.0020166756585240364, 0.029608771204948425, 0.04592512175440788, 0.007601145189255476, 0.006043554283678532, 0.0021643901709467173, -0.03938747197389603, 0.022159015759825706, 0.025837792083621025, -0.026876572519540787, -0.021796008571982384, 0.048751357942819595, -0.014360419474542141, 0.05731525644659996, 0.04236631467938423, -0.03706064447760582, -0.05081171542406082, -0.03263899311423302, 0.025689013302326202, -0.013819599524140358, -0.032654594630002975, -0.061543043702840805, -0.0318220891058445, -0.009954877197742462, 0.036772388964891434, -0.014011931605637074, -0.029820624738931656, 0.018109049648046494, -0.030597448348999023, 0.008258300833404064, -0.042508818209171295, -0.022004488855600357, 0.0039536915719509125, -0.014675972983241081, 0.036750677973032, 0.0314909927546978, -0.019134946167469025, 0.017201006412506104, 0.006038871128112078, 0.010642360895872116, 0.02251584269106388, -0.010250859893858433, -0.05784165486693382, -0.03820902109146118, -0.007943117059767246, -0.013180075213313103, -0.020427238196134567, 0.014382250607013702, 0.0023332913406193256, 0.02793300710618496, -0.043461427092552185, 0.009225249290466309, -0.005828652065247297, 0.0018206420354545116, 0.0020441298838704824, -0.03450717404484749, 0.05463933199644089, -0.03642841428518295, -0.030438652262091637, -0.036328282207250595, 0.05904363468289375, 0.003095631254836917, -0.016282539814710617, -0.045787323266267776, -0.03777940943837166, -0.045586973428726196, -0.028395339846611023, 0.008743581362068653, -0.052109330892562866, -0.0036855810321867466, -0.02590901590883732, -0.0014096107333898544, 0.05432162061333656, -0.016286153346300125, 0.018238401040434837, 0.07324090600013733, -0.009250666946172714, 0.012238656170666218, -0.042425185441970825, 0.02419470250606537, 0.024340195581316948, -0.017644323408603668, 0.014766293577849865, -0.017609015107154846, -0.037298377603292465, 0.021387780085206032, -0.016612425446510315, -0.04334066063165665, -0.05440794304013252, -0.03340371698141098, 0.06620114296674728, -0.023104079067707062, 0.026252958923578262, -0.024877024814486504, -0.06087334454059601, -0.047504134476184845, 0.05865056812763214, -0.02077576518058777, 0.008374622091650963, 0.03849675506353378, -0.01508937869220972, 0.0029067005962133408, 0.027813050895929337, -0.011841105297207832, -0.010998968034982681, -0.006300635635852814, 0.05000631883740425, -0.007739205379039049, -0.0133241917937994, 0.06379950046539307, 0.07315149158239365, -0.05391108617186546, -0.03425387665629387, -0.01669534109532833, 0.017715001478791237, -0.01056826114654541, -0.036572400480508804, -0.0035364003852009773, 0.011116700246930122, -0.01514842826873064, -0.028680508956313133, 0.03611539304256439, 0.021548327058553696, 0.02976127713918686, -0.025304412469267845, 0.017872530966997147, -0.017070386558771133, 0.014080834574997425, 0.0408206433057785, -0.025213295593857765, -0.007093008141964674, -0.023962615057826042, -0.01619730144739151, 0.002295819576829672, -0.009626169688999653, 0.04488024860620499, 0.0023404855746775866, 0.024882763624191284, 0.034031398594379425, -0.013000978156924248, 0.03332918882369995, -0.004402334336191416, 0.021466940641403198, 0.032208990305662155, -0.04089095816016197, -0.08601552993059158, -0.026032287627458572, 0.04480002820491791, 0.004011344164609909, 0.022174015641212463, -0.053322579711675644, 0.009349077939987183, 0.04005026817321777, -0.0016607495490461588, -0.014906172640621662, -0.07403920590877533, -0.0026626025792211294, -0.053632691502571106, -0.020724879577755928, 0.01792813278734684, 0.018772516399621964, -0.014010045677423477, 0.015482161194086075, -0.0034300796687602997, -0.037507276982069016, -0.027870239689946175, -0.000051365048420848325, 0.006081967148929834, 0.013323666527867317, -0.023950472474098206, 0.0049023437313735485, -0.041691433638334274, -0.044740572571754456, -0.0464482344686985, 0.024490373209118843, -0.046169355511665344, 0.007925000973045826, 0.00048380749649368227, 0.0045961858704686165, -0.03091212920844555, 0.05314033105969429, -0.011570289731025696, 0.02617219276726246, 0.0016224088612943888, -0.02827143855392933, 0.012001417577266693, 0.021634608507156372, -0.017894426360726357, 0.05955108627676964, 0.05153527855873108, -0.021135879680514336, 0.051011502742767334, 0.006844875868409872, -0.03778901696205139, -0.0074194809421896935, -0.009810482151806355, -0.02862972393631935, -0.013841995038092136, -0.06345010548830032, -0.018407432362437248, 0.005884808488190174, -0.07443344593048096, 0.03476130962371826, -0.021054597571492195, 0.015363057143986225, -0.00790952518582344, -0.004776240326464176, 0.018986331298947334, 0.023475468158721924, -0.0015871274517849088, 0.033635422587394714, -0.024989979341626167, -0.0082533098757267, 0.025691909715533257, -0.036955058574676514, 0.03034268692135811, 0.018505332991480827, 0.028093360364437103, -0.03551407530903816, 0.004199798218905926, 0.007645465899258852, -0.027013951912522316, 0.021481437608599663, -0.02465934306383133, -0.019458403810858727, -0.04009716585278511, 0.004498884081840515, -0.01452943217009306, 0.030018741264939308, 0.009696361608803272, -0.018193596974015236, 0.0216215867549181, -0.027890274301171303, -0.02593209221959114, 0.05836315453052521, -0.06752020865678787, -0.033241190016269684, 0.035748399794101715, -0.05043037608265877, 0.009019458666443825, -0.047977231442928314, -0.061232950538396835, -0.002058744430541992, 0.008009064942598343, -0.027190955355763435, -0.021701795980334282, 0.044153232127428055, 0.007408834528177977, 0.035343512892723083, -0.006371836643666029, 0.002309331437572837, 0.010778045281767845, 0.0246992576867342, -0.028799664229154587, -0.060056108981370926, 0.018774624913930893, 0.019509384408593178, 0.029172901064157486, -0.017150379717350006, -0.00411645881831646, 0.00007574308256153017, -0.019445477053523064, 0.029141107574105263, -0.007129142992198467, 0.013721742667257786, -0.02422213926911354, 0.0030151824466884136, -0.03827250003814697, 0.025601331144571304, -0.05641654133796692, 0.04996509104967117, 0.018073812127113342, -0.049029748886823654, 0.004876524209976196, 0.04992358386516571, 0.03816544637084007, -0.02172572910785675, 0.014608975499868393, 0.006207646336406469, 0.01666640304028988, -0.024229126051068306, -0.010100300423800945, -0.006114957854151726, 0.026446567848324776, 0.05828171595931053, 0.059030719101428986, 0.020391270518302917, 0.013840509578585625, 0.06930696219205856, 0.019085491076111794, 0.012315290980041027, 0.023716269060969353, 0.036431312561035156, -0.055027324706315994, 0.02512405812740326, -0.005428674165159464, -0.0005205799825489521, 0.009477583691477776, -0.016792630776762962, -0.0012330823810771108, -0.04070396348834038, -0.021187815815210342, -0.03957894816994667, -0.03390171751379967, 0.023671941831707954, 0.008869372308254242, 0.010135512799024582, -0.006656032521277666, -0.01447631511837244, 0.00891896616667509, 0.005474424920976162, 0.025176286697387695, -0.015861988067626953, 0.04576156288385391, 0.04160004109144211, 0.009373749606311321, 0.0482703298330307, 0.021344821900129318, 0.033710166811943054, -0.02830723486840725, -0.009748570621013641, 0.024920769035816193, -0.016595464199781418, -0.03463928401470184, -0.018606293946504593, -0.04223647341132164, 0.004512106999754906, -0.018051939085125923, -0.0069135273806750774, 0.030516596511006355, -0.041251134127378464, -0.02685571275651455, -0.005753035191446543, 0.034636225551366806, -0.020046459510922432, -0.030850928276777267, 0.031760286539793015, 0.000705605314578861, -0.005390554200857878, 0.02984529919922352, 0.003867967752739787, 0.0441422201693058, -0.027241215109825134, 0.0369146354496479, -0.006245797500014305, 0.0458148829638958, 0.03635960444808006, -0.06526988744735718, -0.03314505144953728, 0.026944521814584732, -0.016141267493367195, -0.0579645112156868, -0.029255056753754616, -0.03430109843611717, 0.004354717209935188, -0.019858820363879204, -0.01647215336561203, -0.006838203873485327, 0.014071060344576836, -0.019521145150065422, -0.05709701031446457, 0.004555805120617151, 0.010840006172657013, -0.0670534297823906, 0.002423311350867152, 0.0519883967936039, 0.019607800990343094, 0.004302067216485739, -0.022293154150247574, -0.044482067227363586, -0.04934004321694374, 0.0008760852506384254, -0.04173620417714119, 0.04584842920303345, -0.011493784375488758, -0.03916562348604202, -0.025370633229613304, -0.032958704978227615, -0.030625274404883385, 0.015291688032448292, -0.03843752667307854, -0.048477012664079666, 0.044722989201545715, 0.04294929280877113, 0.034971702843904495, 0.04524745047092438, 0.0041082557290792465, -0.007364173885434866, -0.0022313669323921204, 0.06695310026407242, 0.01891911029815674, 0.06041150167584419, 0.026096053421497345, -0.048818621784448624, 0.029239101335406303, -0.053997840732336044, 0.0567321702837944, -0.0001286826009163633, -0.020389042794704437, -0.028268344700336456, 0.008581344038248062, -0.02724486216902733, -0.05058335140347481, 0.010020933113992214, 0.011068341322243214, -0.013090474531054497, -0.025662578642368317, -0.05328265577554703, -0.01512488629668951, -0.050527606159448624, -0.01977638341486454, -0.0376315601170063, 0.004937774036079645, -0.011078382842242718, 0.002736456226557493, 0.0270770825445652, -0.0758855789899826, 0.16418471932411194, 0.025507623329758644, 0.03210058808326721, 0.02931424230337143, 0.03982515260577202, 0.0729469284415245, 0.0336742028594017, 0.009207986295223236, 0.0007389150559902191, -0.04772806540131569, 0.031052524223923683, 0.0077184149995446205, 0.0216215830296278, 0.03447253629565239, 0.043856073170900345, 0.04243285208940506, -0.032019831240177155, 0.00541656045243144, 0.005036485847085714, -0.09120552241802216, -0.05315292254090309, 0.009386426769196987, 0.005406387150287628, 0.022827450186014175, -0.008818475529551506, -0.004451239947229624, 0.02613542415201664, -0.0623043030500412, 0.006350839976221323, -0.05070766061544418, 0.042663704603910446, -0.03768200799822807, 0.036722470074892044, -0.03400244936347008, -0.009686256758868694, 0.02502482384443283, -0.012461799196898937, -0.018527112901210785, -0.015448576770722866, -0.00210995483212173, -0.008212577551603317, -0.00044716757838614285, 0.041217487305402756, -0.03627972677350044, 0.0160357765853405, 0.009052022360265255, -0.02749527618288994, 0.013467513024806976, 0.016704047098755836, -0.004883518908172846, 0.0640602558851242, -0.02118801698088646, 0.06509240716695786, 0.009521466679871082, -0.01966993696987629, 0.03811291605234146, -0.0005150344804860651, -0.027084574103355408, -0.024689914658665657, 0.009701908566057682, 0.01948516257107258, -0.016486404463648796, -0.037590403109788895, -0.00031486834632232785, -0.006256178021430969, 0.014348844066262245, 0.044134173542261124, 0.004526861477643251, 0.009881322272121906, -0.019571268931031227, -0.03084714151918888, 0.003633612534031272, 0.019503053277730942, -0.014174510724842548, 0.012655030936002731, 0.03400638327002525, -0.011632832698523998, 0.024902218952775, 0.056163180619478226, -0.009001939557492733, -0.0056740473955869675, -0.014205326326191425, -0.0280381478369236, -0.03895217925310135, 0.05231816694140434, 0.01689244620501995, -0.03231706842780113, -0.043984342366456985, -0.027226703241467476, 0.06117761507630348, 0.03502095118165016, 0.027316994965076447, -0.0010735007235780358, -0.03115667589008808, -0.040135566145181656 ]
Stand- alone design, made to measure any size in the form of internal, external, height, depth, step and distance dimensions of geometric part features having either a flat, parallel or cylindrical surface. Automatic capture of the culmination on bores or shafts. Dynamic probing with memory functions. State of the art concept associated with a high quality design. Ideal for dimensional inspection close to the manufacturing cell. No cables to clutter up the working area. Fast, simple and reliable probing of the work piece or holes. 3 main gauges available with either a 365, 615 or 920mm measuring span. Numerical display to 0.0005, 0.001, 0.01 and 0.1mm, or equivalent inch units. Extremely accurate measuring of deviations from length, straightness and perpendicularity due to the automatic correction of the bias errors through CAA (Computer Aided Accuracy). Power-Panel for value processing and output with interactive display to guide the operator. 99 work piece oriented measurement cycles, programmable. Each cycle includes a number of 64 features with related limits of size. Built-in printer for result output or possible use of an external printer unit to get a hard copy in A4 format. Every height gauge comes with a ACS calibration certificate.
[ 0.015607314184308052, -0.024051757529377937, 0.006696847267448902, 0.004297754727303982, -0.023463016375899315, 0.04038848355412483, 0.007554370444267988, 0.020553406327962875, 0.020071331411600113, 0.021067962050437927, 0.043139249086380005, 0.021318312734365463, -0.027988819405436516, -0.044115837663412094, -0.0023204961325973272, 0.020508358255028725, -0.011103847064077854, -0.028978969901800156, -0.040039271116256714, 0.0000032307668789144373, 0.0018917493289336562, -0.004990819375962019, -0.06245845928788185, -0.023208191618323326, -0.039608001708984375, 0.0447167307138443, 0.03641524165868759, -0.011899983510375023, 0.05393972620368004, 0.06007673963904381, -0.03967908024787903, -0.050484102219343185, 0.014110098592936993, -0.06414833664894104, -0.04609939828515053, -0.0282706618309021, 0.039717257022857666, -0.029010269790887833, -0.013512049801647663, -0.022669663652777672, 0.017585372552275658, 0.01769409514963627, 0.021939406171441078, -0.04586296156048775, -0.014250051230192184, -0.01865963265299797, 0.0031701414845883846, -0.031917739659547806, 0.009465924464166164, -0.01760624349117279, 0.011369715444743633, -0.014127884991466999, 0.027078095823526382, -0.029090112075209618, -0.0008987610344775021, 0.011826526373624802, 0.013036498799920082, -0.009159216657280922, -0.04016638174653053, 0.03544710949063301, 0.026221176609396935, 0.016138562932610512, 0.044311512261629105, -0.057485539466142654, 0.030759302899241447, 0.024007361382246017, 0.0017671727109700441, -0.04018830880522728, 0.03917369619011879, -0.03798571601510048, -0.0055158971808850765, 0.017458628863096237, -0.00838266871869564, -0.02135915495455265, -0.003098284127190709, -0.002756778383627534, 0.027534913271665573, 0.001438224222511053, -0.008988641202449799, -0.0038382746279239655, 0.03232661262154579, 0.050366390496492386, -0.015656832605600357, -0.003882237011566758, -0.04532995820045471, -0.020263636484742165, 0.016826288774609566, -0.008126243948936462, 0.008235938847064972, 0.01409097295254469, -0.003079627640545368, 0.049948226660490036, 0.018649810925126076, 0.01957598328590393, 0.03768397495150566, 0.0009274682379327714, -0.04450232535600662, 0.046554140746593475, -0.005400799214839935, 0.0009478233405388892, 0.054834093898534775, 0.05928235873579979, 0.020870503038167953, 0.03551647067070007, -0.03811141848564148, 0.02228034846484661, 0.0022677818778902292, -0.007750656455755234, -0.01759287528693676, -0.03132154420018196, 0.013493320904672146, 0.00572927575558424, 0.02054678648710251, 0.029030274599790573, -0.018533751368522644, 0.06258805841207504, -0.020661119371652603, 0.032467734068632126, -0.04023594781756401, 0.02500445768237114, 0.004656216129660606, 0.03784913942217827, 0.027459237724542618, -0.008302603848278522, -0.013058112002909184, -0.05201784893870354, -0.011029868386685848, 0.021641677245497704, -0.02099005877971649, -0.03230287507176399, -0.013474460691213608, -0.04909924417734146, -0.011390467174351215, 0.022975312545895576, -0.002186594996601343, -0.0003196963225491345, -0.0001357211876893416, 0.01656586490571499, 0.02082042209804058, -0.036473698914051056, 0.04109138250350952, 0.016026191413402557, 0.0069155143573880196, 0.08427540957927704, -0.009976185858249664, 0.02739771455526352, -0.02948615327477455, 0.015134833753108978, -0.03863462805747986, -0.0014084407594054937, -0.023116890341043472, 0.028180472552776337, -0.015907591208815575, -0.00212605157867074, 0.01036336924880743, -0.01220700517296791, -0.04148703068494797, 0.008683929219841957, 0.029571209102869034, 0.025217410176992416, -0.0027629861142486334, 0.008356042206287384, 0.008855012245476246, 0.03944247215986252, -0.009237340651452541, 0.04553917422890663, -0.0361575223505497, 0.00016649732424411923, 0.0008677361765876412, -0.017077811062335968, 0.021785078570246696, -0.009636600501835346, -0.004833695944398642, -0.010013463906943798, 0.040893007069826126, 0.04264404624700546, 0.053383901715278625, 0.001075763488188386, 0.03389497101306915, 0.034713901579380035, -0.021075714379549026, -0.035987451672554016, -0.015093827620148659, 0.07386186718940735, 0.014770904555916786, -0.004925097338855267, 0.019412141293287277, -0.02425665408372879, -0.013266319409012794, -0.039383698254823685, 0.009674147702753544, 0.043675146996974945, -0.02558821812272072, 0.027696875855326653, -0.032645635306835175, -0.013324926607310772, -0.01696222461760044, 0.03796082362532616, -0.00479445094242692, -0.048213206231594086, 0.0035794430878013372, 0.05731616169214249, -0.019406218081712723, 0.015202551148831844, -0.007934525609016418, -0.0023237529676407576, 0.04696034640073776, 0.06736550480127335, -0.07089041918516159, -0.01539542805403471, 0.046142417937517166, 0.011045451276004314, -0.013557631522417068, -0.010969857685267925, -0.007044585421681404, -0.0032431052532047033, -0.04390450194478035, 0.040886878967285156, -0.0026811768766492605, 0.03258756548166275, 0.008814355358481407, -0.026292214170098305, 0.01763634942471981, 0.050213005393743515, 0.0024927197955548763, 0.012871656566858292, 0.002168751321732998, 0.07448204606771469, 0.010017229244112968, 0.011956662870943546, -0.028565026819705963, 0.05441844090819359, 0.038844138383865356, 0.039608702063560486, 0.04709693789482117, 0.03127686306834221, 0.027631059288978577, 0.018300948664546013, -0.016251038759946823, 0.033253949135541916, 0.007496835198253393, 0.008960634469985962, 0.03220944106578827, 0.006113218609243631, -0.0010573102626949549, 0.027398373931646347, -0.002391189569607377, 0.001403024303726852, -0.015361260622739792, 0.008014625869691372, -0.018374759703874588, 0.051227085292339325, 0.019778938964009285, 0.013571688905358315, -0.017787108197808266, -0.014825821854174137, 0.038768038153648376, 0.06038292869925499, 0.0032570904586464167, -0.00267786905169487, 0.017103109508752823, 0.020240649580955505, 0.018484676256775856, -0.010929309763014317, 0.016537021845579147, 0.022665677592158318, 0.036540109664201736, 0.01838572323322296, -0.03211024031043053, -0.05448032170534134, -0.03548212721943855, -0.04546019062399864, -0.05161058530211449, -0.05125047639012337, -0.032569389790296555, 0.009332285262644291, 0.02211930602788925, -0.02537200041115284, 0.041900310665369034, -0.028775541111826897, 0.006226945668458939, -0.03540767356753349, -0.029088955372571945, 0.03153705596923828, 0.03048977442085743, 0.02832053042948246, -0.0507037378847599, 0.014530097134411335, -0.013743332587182522, 0.04673294350504875, -0.007015059236437082, -0.001388858538120985, 0.0025085625238716602, -0.043434180319309235, -0.004545519128441811, -0.003598804585635662, -0.0034689242020249367, -0.0008697787998244166, -0.03105137310922146, -0.08071534335613251, -0.016836168244481087, -0.0032610176131129265, -0.03166423365473747, -0.01248123962432146, -0.027854882180690765, 0.046181246638298035, 0.04404904693365097, -0.02270534448325634, 0.04273344576358795, 0.06600965559482574, -0.04763752594590187, 0.004036604892462492, 0.024523159489035606, 0.03271429240703583, -0.05630810931324959, 0.039806194603443146, 0.030174551531672478, -0.011278077028691769, -0.04106347635388374, -0.028531432151794434, -0.047957293689250946, 0.02589413709938526, -0.0072903623804450035, 0.0027556740678846836, -0.04269509017467499, 0.028880316764116287, 0.04075300693511963, -0.06447155028581619, 0.04355133697390556, -0.0681508332490921, -0.024184325709939003, -0.04118042439222336, -0.03548746928572655, 0.008832807652652264, 0.0051810359582304955, 0.006531423889100552, 0.013302265666425228, -0.011781333014369011, 0.017660293728113174, 0.01582016795873642, 0.0694139152765274, -0.03088110312819481, 0.027242420241236687, 0.021435528993606567, 0.009312499314546585, 0.02097879908978939, 0.008071087300777435, -0.03508663922548294, -0.0034207680728286505, 0.014487476088106632, 0.0011970337945967913, 0.002960541285574436, 0.03168046101927757, -0.01160332839936018, 0.024470625445246696, 0.04267273098230362, -0.03926152363419533, -0.021428290754556656, 0.0021735026966780424, 0.03329144045710564, 0.046131059527397156, 0.006926305126398802, 0.008579649031162262, 0.013235055841505527, -0.0482473149895668, -0.042601678520441055, 0.0016126447590067983, 0.014628445729613304, 0.057980332523584366, -0.0645715668797493, 0.025699812918901443, -0.0037992242723703384, -0.04135918244719505, 0.04189034923911095, -0.018557999283075333, -0.010018223896622658, 0.012700644321739674, -0.008254586718976498, 0.0298550333827734, -0.020440835505723953, 0.016159066930413246, 0.00243961438536644, -0.021414034068584442, 0.01813262701034546, 0.0030592652037739754, 0.024146804586052895, 0.0014276759466156363, -0.018109804019331932, -0.019941825419664383, -0.019075123593211174, -0.04076661914587021, -0.005065909121185541, -0.009130813181400299, 0.005733812227845192, -0.05483310669660568, -0.03762491047382355, 0.020908072590827942, 0.03719911351799965, 0.04156399145722389, -0.014655506238341331, 0.020392997190356255, -0.007276598364114761, 0.013985305093228817, 0.03919864818453789, -0.03955308347940445, 0.02853306755423546, -0.04349685460329056, 0.059080854058265686, 0.00443371944129467, -0.03165170177817345, -0.015902770683169365, -0.012436460703611374, -0.03199658915400505, 0.04183771461248398, -0.0015510498778894544, -0.006096685770899057, -0.032963719218969345, 0.007663683034479618, -0.027692630887031555, 0.037626709789037704, -0.028777332976460457, -0.015952566638588905, -0.0366218127310276, 0.024251651018857956, 0.015649091452360153, -0.06599363684654236, 0.01899665780365467, -0.029639044776558876, 0.039444196969270706, 0.05558348447084427, -0.014297147281467915, -0.01863265596330166, -0.03505401685833931, -0.06685742735862732, -0.007604978047311306, -0.019404785707592964, 0.019185462966561317, 0.03249251842498779, 0.030651936307549477, -0.022496318444609642, 0.009894720278680325, 0.001001000520773232, -0.0410509891808033, -0.02560802735388279, 0.03680335357785225, 0.037514954805374146, 0.023612631484866142, 0.04512874782085419, -0.008298282511532307, -0.02287846989929676, 0.0249069482088089, -0.08556412905454636, -0.0077026402577757835, -0.01563292182981968, -0.01270517148077488, -0.011927581392228603, 0.023815985769033432, -0.00786135159432888, 0.038271091878414154, -0.027619516476988792, -0.014059974811971188, -0.011780968867242336, 0.012895151041448116, -0.030963055789470673, -0.046783819794654846, 0.03919731825590134, -0.010518517345190048, -0.030522696673870087, 0.03957242891192436, 0.02450605295598507, -0.03309588506817818, -0.010069835931062698, 0.015536990016698837, -0.053738996386528015, 0.029073655605316162, -0.045044269412755966, 0.019002247601747513, -0.014407429844141006, -0.06114085763692856, -0.008949697017669678, 0.02048109844326973, 0.03679037094116211, 0.025886470451951027, -0.026325279846787453, -0.03881560638546944, -0.06481138616800308, -0.038056015968322754, 0.0034923090133816004, -0.02318434603512287, 0.05056251212954521, -0.005940368864685297, -0.01367578562349081, 0.008347281254827976, -0.04568839445710182, 0.01167195662856102, 0.01316365972161293, -0.006090874783694744, -0.017619997262954712, -0.003554845228791237, 0.024469511583447456, 0.006024343427270651, -0.012236073613166809, -0.02791714295744896, -0.01753811538219452, -0.020366450771689415, -0.0398438386619091, -0.027428124099969864, 0.03926324099302292, -0.005881485994905233, 0.013610084541141987, -0.03873902186751366, 0.011383282020688057, -0.0006768127204850316, 0.016009259968996048, -0.022804120555520058, 0.021739447489380836, -0.011693560518324375, 0.033172376453876495, -0.030344832688570023, 0.038196247071027756, 0.024822423234581947, -0.05948062613606453, -0.016040127724409103, 0.0455748476088047, -0.0010136822238564491, 0.04448581114411354, -0.0077548823319375515, -0.01367564219981432, -0.018681466579437256, -0.039433225989341736, 0.018298141658306122, -0.006664392538368702, -0.012509012594819069, -0.046715084463357925, -0.0664774626493454, 0.003268740139901638, 0.0358445830643177, -0.001199960010126233, 0.006528770551085472, -0.014648468233644962, -0.0431487075984478, -0.011788704432547092, -0.011895767413079739, -0.02866949886083603, -0.03968433290719986, -0.005067549645900726, 0.004737969022244215, 0.03413010016083717, -0.02467547170817852, 0.031536173075437546, -0.02459041029214859, 0.007871107198297977, 0.04890697821974754, -0.0006506613572128117, -0.03283138573169708, -0.05325034633278847, -0.004878239240497351, 0.021271169185638428, -0.000226064192247577, 0.018129786476492882, -0.008189174346625805, 0.05785186588764191, -0.03648240491747856, -0.01234794408082962, 0.006852037739008665, -0.006744552869349718, -0.02554190903902054, -0.0013797751162201166, 0.04370556399226189, -0.028202669695019722, 0.004791160114109516, 0.02191770449280739, 0.03299081325531006, 0.05540351942181587, 0.0181108545511961, -0.03700921684503555, -0.03409983590245247, -0.013127977959811687, -0.048672791570425034, 0.014332433231174946, -0.0202067568898201, -0.007813112810254097, -0.03653836250305176, -0.0005507015157490969, 0.014492037706077099, 0.0035410632845014334, 0.04623439162969589, 0.06941844522953033, -0.003240233054384589, -0.01611046865582466, -0.04861640930175781, -0.0017688788939267397, 0.027715420350432396, -0.02312483638525009, -0.006265513598918915, -0.050898436456918716, -0.0261166263371706, 0.026747437193989754, -0.03943070396780968, -0.049524154514074326, -0.06386707723140717, -0.01935572735965252, 0.06123492866754532, 0.0009116982691921294, 0.027610434219241142, -0.004180587362498045, -0.03867394104599953, -0.022291330620646477, 0.05523666739463806, -0.0018661885987967253, 0.016869662329554558, 0.03871408477425575, -0.0023759265895932913, -0.03279328718781471, 0.02806554175913334, -0.011360070668160915, -0.017207667231559753, -0.0405040867626667, 0.0649619773030281, -0.01873595081269741, -0.034646473824977875, 0.026151008903980255, 0.042012616991996765, -0.04188886657357216, -0.053107403218746185, -0.0027211778797209263, 0.00651938933879137, 0.007693376392126083, -0.04069415107369423, -0.0009444400784559548, -0.04003112390637398, 0.013686084188520908, -0.029775818809866905, 0.040262043476104736, -0.0006645043613389134, 0.04533947631716728, 0.013176736421883106, 0.013038883917033672, -0.05319126322865486, -0.006546283606439829, 0.049004849046468735, -0.02989828772842884, -0.012344160117208958, -0.025287356227636337, -0.0176688302308321, 0.0012394377263262868, 0.0009449566714465618, 0.03758393973112106, -0.0313943512737751, 0.013096273876726627, 0.0263888668268919, 0.02870365045964718, 0.045123882591724396, 0.023028802126646042, 0.004755711182951927, 0.032675065100193024, -0.02054622396826744, -0.0561540313065052, -0.03892442584037781, 0.056628353893756866, 0.00707979965955019, 0.0344494953751564, -0.03844934329390526, -0.003579279873520136, 0.04516733065247536, 0.04058889299631119, -0.01903591863811016, -0.056450676172971725, -0.024442194029688835, -0.04422779753804207, -0.03627266362309456, -0.042718689888715744, -0.029223565012216568, -0.010183731094002724, 0.012464486993849277, -0.014399265870451927, -0.04625696316361427, -0.01900862716138363, 0.003420341992750764, -0.03270139917731285, 0.005536944605410099, -0.03820110112428665, 0.006245100870728493, -0.010794837027788162, -0.0597759485244751, -0.048744942992925644, -0.0080789253115654, -0.0024184538051486015, 0.01801450364291668, -0.029443323612213135, 0.013782048597931862, 0.010817066766321659, 0.031188692897558212, -0.026397518813610077, 0.022227484732866287, 0.011827276088297367, -0.03139809891581535, -0.015806013718247414, 0.027094900608062744, -0.023829326033592224, 0.029086068272590637, 0.04891277849674225, 0.004069560673087835, 0.03615128621459007, 0.026462577283382416, -0.01393431331962347, -0.011793005280196667, 0.03944613039493561, 0.023356551304459572, -0.00865744985640049, -0.02005811221897602, -0.002090819412842393, -0.005933872424066067, -0.027510222047567368, 0.013919522985816002, 0.0013146487763151526, 0.021842172369360924, -0.005610375665128231, -0.010210484266281128, -0.04113361984491348, 0.05724269896745682, -0.0013952257577329874, 0.029401881620287895, 0.00034307510941289365, 0.016432909294962883, 0.040113065391778946, 0.013151210732758045, 0.039098434150218964, 0.003197120036929846, 0.0486607626080513, -0.029809441417455673, 0.015131941996514797, -0.009157654829323292, -0.02753736823797226, 0.01958332769572735, -0.011646877974271774, -0.03250817582011223, -0.0301524568349123, 0.012296997010707855, 0.005970513913780451, 0.06594321131706238, 0.005850236862897873, 0.0014968911418691278, 0.020190516486763954, -0.014457096345722675, -0.07172088325023651, 0.003426486626267433, -0.06983955204486847, -0.044177453964948654, 0.029248008504509926, -0.028435323387384415, -0.016093771904706955, 0.008700041100382805, -0.06115221977233887, 0.012620140798389912, -0.022274533286690712, 0.013197032734751701, -0.002047833288088441, 0.03770987316966057, -0.0028930362313985825, 0.02039855718612671, 0.010361866094172001, -0.0011702898191288114, 0.025488559156656265, 0.04105048254132271, -0.035546090453863144, -0.05718742311000824, -0.021161535754799843, 0.0361180305480957, 0.003352952655404806, -0.02371980808675289, 0.02269241400063038, -0.0010838230373337865, 0.00013036954624112695, 0.009452993050217628, 0.023949289694428444, 0.026360424235463142, -0.021847926080226898, 0.026000089943408966, -0.012754637748003006, 0.015078108757734299, -0.012137437239289284, 0.03274731710553169, 0.003436390543356538, -0.032792653888463974, -0.04095514491200447, 0.03307526558637619, 0.03830324858427048, -0.009203927591443062, 0.028950173407793045, 0.01583614945411682, 0.05722654238343239, -0.027936140075325966, 0.006884586066007614, 0.001792427385225892, 0.04820843040943146, 0.03421611338853836, 0.04064686968922615, -0.02365553006529808, 0.0255889855325222, 0.06191273778676987, -0.0014295870205387473, 0.016627589240670204, 0.012024340219795704, 0.0385933481156826, -0.05591578409075737, 0.029887527227401733, -0.03582470491528511, 0.0031777662225067616, 0.01585252769291401, -0.014825457707047462, -0.008894849568605423, -0.0429917573928833, -0.02565019764006138, -0.010004404000937939, -0.03751717880368233, 0.041801147162914276, -0.00704817334190011, 0.01834840327501297, 0.009436644613742828, -0.05926532670855522, 0.02508576773107052, 0.012678524479269981, -0.02009362168610096, -0.005001427140086889, 0.0016219231765717268, 0.032195694744586945, 0.010076247155666351, 0.04686625301837921, 0.012713395990431309, 0.03188459202647209, -0.022419242188334465, 0.021124793216586113, 0.011420425027608871, 0.005234277807176113, -0.023931710049510002, -0.047246672213077545, -0.04091038554906845, 0.04209679365158081, 0.0006752852350473404, -0.0025165495462715626, 0.04149768501520157, -0.043547373265028, -0.020228145644068718, -0.021341579034924507, 0.04549623653292656, -0.06603570282459259, 0.0034204565454274416, 0.029416736215353012, -0.016713112592697144, -0.025510594248771667, 0.06246107444167137, -0.006637198384851217, 0.02314850687980652, 0.03895929083228111, 0.04362837225198746, 0.022405674681067467, 0.06957129389047623, 0.02482348121702671, -0.02529156394302845, 0.005871607456356287, 0.016258960589766502, -0.03269730880856514, -0.009567423723638058, -0.04418470710515976, -0.04088979214429855, -0.007482611108571291, -0.0026259932201355696, -0.03584490716457367, -0.019077785313129425, 0.025605300441384315, 0.0019430338870733976, -0.058533333241939545, -0.028342003002762794, 0.03136163204908371, -0.031125901266932487, -0.01240778062492609, 0.001980828121304512, 0.06174962967634201, 0.010855413042008877, -0.00963517650961876, -0.03219771012663841, -0.02464558184146881, -0.0355658195912838, -0.023163020610809326, 0.031732574105262756, -0.03329493850469589, -0.0438968725502491, -0.027037085965275764, -0.01648123748600483, -0.04252489656209946, -0.013069897890090942, -0.030100179836153984, -0.024087369441986084, 0.04469984397292137, 0.03791174665093422, 0.008419578894972801, 0.02194087579846382, -0.04548095166683197, -0.00839794147759676, 0.032906778156757355, 0.0634874477982521, 0.014297517016530037, 0.050844427198171616, 0.08866546303033829, -0.0054530673660337925, -0.03379230201244354, -0.0595477819442749, 0.0039802431128919125, -0.01216061506420374, 0.0031661083921790123, -0.033317264169454575, 0.009755403734743595, 0.002381337573751807, -0.0702139362692833, 0.020396916195750237, 0.023028990253806114, -0.01501076202839613, -0.023406540974974632, -0.04459523782134056, -0.022674627602100372, -0.06347525864839554, 0.00727106211706996, -0.04964182525873184, 0.016198137775063515, 0.029255559667944908, -0.032888639718294144, 0.02508007362484932, -0.07055213302373886, 0.1729019582271576, 0.05006347969174385, 0.006523012649267912, 0.010846183635294437, 0.02221154049038887, 0.0763755589723587, 0.008508063852787018, -0.019956838339567184, -0.03376457840204239, -0.0405656099319458, 0.025492819026112556, -0.0289214625954628, 0.014050939120352268, 0.0026507952716201544, 0.037278175354003906, 0.048171356320381165, -0.027896463871002197, -0.0014474688796326518, 0.03140152990818024, -0.0607263445854187, -0.07092899829149246, 0.020873041823506355, 0.00390193541534245, 0.023835036903619766, -0.0024205991066992283, 0.03540661558508873, 0.0002003395784413442, -0.04458066076040268, -0.01975192502140999, -0.06814637780189514, 0.0070663695223629475, -0.012791341170668602, 0.032272398471832275, 0.004412870854139328, -0.007069242652505636, 0.05623086914420128, 0.004684970714151859, -0.03123207949101925, -0.01199276652187109, 0.045873355120420456, -0.015998510643839836, -0.012506790459156036, 0.04883495345711708, -0.029068980365991592, -0.00187068956438452, 0.023888083174824715, -0.03280003368854523, 0.006056580226868391, 0.03633693978190422, -0.032398998737335205, 0.06232442706823349, -0.038208913058042526, 0.021029114723205566, 0.020812859758734703, -0.028890863060951233, 0.02227296121418476, -0.03492637723684311, -0.017566364258527756, 0.003211332019418478, 0.019740790128707886, 0.026387982070446014, 0.013445085845887661, -0.015614447183907032, 0.00651189498603344, -0.030603282153606415, 0.012669030576944351, 0.017205653712153435, 0.010998164303600788, 0.011688759550452232, -0.011211466044187546, 0.017594892531633377, -0.0006498976144939661, -0.012258737348020077, -0.03971374034881592, 0.019379165023565292, 0.059991560876369476, -0.036577120423316956, 0.007147730328142643, -0.004328172188252211, -0.032767586410045624, -0.0007984581170603633, -0.013731821440160275, 0.017168009653687477, -0.038627684116363525, 0.04633462801575661, 0.050072502344846725, -0.06711946427822113, -0.044854018837213516, -0.02693488635122776, 0.062010813504457474, 0.043483708053827286, 0.0694476068019867, -0.010679553262889385, -0.004109020344913006, -0.03513902425765991 ]
On October 16, 2017, the Government of Canada announced that they would cut small business taxes from the current 10.5% down to 9% by 2019. Justin Trudeau and the Liberal Government are also discarding one of the three other controversial tax proposals unveiled on July 18 that received angry backlash among many small business owners, farmers, doctors, lawyers, opposition members, and Liberal backbenchers alike. They will now drop proposals aimed at limiting the ability of incorporated business owners to convert income into capital gains, which are taxed at a lesser rate. The planned change was set up as an obstacle for transferring family businesses on to the next generation. The previous Conservative Government had legislated a gradual reduction in the rate from 11% to 9%, which the Liberals froze after the first cut at 10.5%, where it continues to stand today. Now, the tax cut will proceed in stages, moving to 10% effective January 1, 2018, and then to 9%, effective January 1, 2019. The move is expected to cost the public treasury $2.9 billion in revenue over the next six tax years. The Finance Department says that the average small business in Canada would have an "additional $1,600 per year to reinvest in new equipment and job creation". Finance Minister Bill Morneau and Justin Trudeau said that the government will keep a "simple" version of a change targeting the ability of corporations to "sprinkle" income among family members to cut the tax bill. It proposes a "reasonableness" test that would require family members to demonstrate that they make a "meaningful contribution" to a business through labour, capital, equity, or the assumption of a financial risk for the business, such as co-signing a loan. Federal Officials said that the government will also announce revisions that include guarantees for low and middle-income Canadians to be protected from new measures that raise taxes on personal investments made through private corporations. In the meantime, please feel free to contact us if you have any questions that you would like to discuss. We would be glad to assist you with any concerns you may have. Looking for an accounting company that is up-to-date that can assist you? Contact us now! At AccountingKW, we firmly believe in providing tax and accounting services with exceptional quality at a reasonable price. We strive to deliver on effective solutions specifically tailored towards your needs.
[ -0.003884953213855624, 0.013005228713154793, -0.03430480137467384, -0.010929139330983162, -0.029830066487193108, 0.0025097839534282684, 0.016973337158560753, 0.02755935862660408, -0.008405579254031181, 0.03827740252017975, 0.030781904235482216, 0.0090403463691473, -0.009270320646464825, -0.0353829525411129, -0.019250160083174706, 0.031536977738142014, -0.02011958882212639, -0.005643392447382212, -0.0033322398085147142, 0.02734304405748844, -0.006436749827116728, 0.007765244226902723, -0.0503818616271019, -0.05666568502783775, -0.021107666194438934, 0.05531157925724983, 0.0044556851498782635, -0.03200924023985863, 0.06737110018730164, 0.027502302080392838, -0.045578259974718094, -0.052658963948488235, 0.030573170632123947, -0.03332028537988663, 0.004072899464517832, -0.025317953899502754, 0.016324670985341072, -0.011856606230139732, -0.025882495567202568, -0.03353584185242653, 0.010038495995104313, 0.004307928960770369, 0.037768758833408356, -0.02425289712846279, -0.01567767560482025, -0.016550080850720406, -0.010891919024288654, -0.021336771547794342, 0.020623527467250824, -0.011724415235221386, 0.01156606711447239, -0.004285773728042841, 0.030885254964232445, -0.040368154644966125, 0.029235174879431725, 0.0414852574467659, 0.0008435531635768712, -0.006579746957868338, -0.010734079405665398, 0.021077383309602737, 0.03405069559812546, 0.00739406980574131, 0.030723368749022484, -0.036775246262550354, 0.0276876799762249, 0.0010505145182833076, -0.017710184678435326, -0.014054549857974052, 0.024960188195109367, -0.02385704778134823, -0.011763190850615501, -0.00046125167864374816, -0.026958007365465164, -0.014568508602678776, 0.006575047038495541, -0.009213708341121674, 0.003374929539859295, -0.013122234493494034, -0.01403625588864088, 0.026612788438796997, -0.002215834567323327, 0.031131286174058914, -0.01167537271976471, -0.013952618464827538, -0.08711017668247223, -0.03096242994070053, 0.00801148358732462, 0.026548948138952255, 0.02312445640563965, 0.03229253366589546, 0.008362624794244766, 0.04670237377285957, 0.0022895948495715857, 0.011422934010624886, 0.022202694788575172, 0.0040129502303898335, -0.01390664279460907, 0.029119055718183517, 0.021533532068133354, -0.026315685361623764, 0.031172676011919975, 0.003230888629332185, 0.04705113172531128, 0.031892772763967514, -0.05965958908200264, -0.012225279584527016, 0.020771441981196404, -0.0003494126140139997, 0.01786154694855213, -0.026977665722370148, 0.016874609515070915, -0.022931398823857307, 0.02804071456193924, -0.0029425311367958784, 0.0061633894219994545, 0.05607796460390091, -0.025294769555330276, 0.03166578710079193, -0.020840851590037346, 0.012897034175693989, 0.01631106436252594, 0.0100491838529706, 0.05045277997851372, -0.03217495605349541, 0.016953120008111, -0.04026627168059349, 0.017116151750087738, 0.051825813949108124, -0.031389035284519196, -0.03958539664745331, 0.0017913638148456812, -0.028755631297826767, -0.022452503442764282, 0.013664557598531246, 0.027537137269973755, 0.029433397576212883, -0.005092045292258263, 0.05279073491692543, -0.00008576920663472265, -0.021325554698705673, 0.00038836602470837533, 0.03220067918300629, 0.0020124944858253, 0.07137599587440491, 0.01483979169279337, 0.04821259155869484, -0.021148808300495148, -0.0059148273430764675, 0.009465273469686508, 0.031377699226140976, -0.03436232730746269, 0.02475701831281185, 0.0062845926731824875, 0.01367564033716917, -0.035389672964811325, -0.017821921035647392, -0.005834062118083239, 0.015775002539157867, 0.018369754776358604, 0.025393357500433922, -0.030678976327180862, 0.006650225725024939, 0.023934045806527138, 0.035723403096199036, -0.04106493666768074, 0.04041541367769241, -0.0307305958122015, -0.018484191969037056, -0.03542891889810562, -0.025192780420184135, 0.04764094203710556, -0.026209810748696327, -0.044664639979600906, 0.009022257290780544, 0.006322477012872696, 0.07733965665102005, 0.052228666841983795, -0.003952875267714262, 0.044920530170202255, 0.0509369783103466, -0.04117768257856369, -0.011901945807039738, 0.009156671352684498, 0.03823964670300484, 0.024406153708696365, -0.00046753825154155493, 0.0013858771417289972, -0.02462557889521122, -0.013146406970918179, -0.04464070498943329, 0.015591412782669067, 0.034598104655742645, -0.05825481563806534, 0.028217235580086708, 0.012412745505571365, -0.031366560608148575, -0.017956912517547607, 0.0275175292044878, -0.0010045355884358287, -0.061889152973890305, -0.01725134253501892, 0.034404292702674866, -0.03841102123260498, 0.04760406166315079, 0.0014049398014321923, -0.03488023579120636, 0.041812002658843994, 0.06308425962924957, -0.07907283306121826, 0.00559284957125783, 0.02466224692761898, 0.0056592924520373344, -0.05785267427563667, -0.020329859107732773, -0.00005315132875693962, 0.011183132417500019, -0.04359755665063858, 0.02214055322110653, 0.020980991423130035, -0.015055874362587929, 0.048719990998506546, 0.004267508629709482, 0.028867127373814583, 0.03375796973705292, 0.007717443630099297, -0.004696233663707972, 0.04805397614836693, 0.06824353337287903, 0.004730321001261473, -0.01879912242293358, -0.010083531960844994, 0.03904169052839279, 0.011148313991725445, 0.027468206360936165, 0.020497296005487442, 0.0018344813724979758, 0.05711067095398903, 0.051734574139118195, -0.027936767786741257, 0.06331028789281845, -0.017144039273262024, -0.009152708575129509, 0.0390109121799469, 0.00866865273565054, -0.007433109916746616, 0.040721602737903595, 0.013893486931920052, 0.0026182986330240965, -0.01025890652090311, 0.003580402582883835, -0.015805073082447052, 0.03240728750824928, 0.01240500994026661, 0.07561714947223663, -0.01788153685629368, 0.02446194551885128, 0.038532182574272156, 0.026351872831583023, -0.024309147149324417, -0.003891441272571683, -0.007231898605823517, 0.023808371275663376, -0.0089010801166296, -0.034577831625938416, 0.0227674450725317, 0.014802433550357819, 0.01685354858636856, 0.025197532027959824, -0.0077508180402219296, -0.014356691390275955, -0.010360360145568848, -0.049943067133426666, -0.038065049797296524, -0.04124893993139267, -0.05567648634314537, 0.004157917108386755, 0.0403120294213295, -0.05791613087058067, 0.021399568766355515, -0.04499095305800438, -0.029970943927764893, -0.03455738723278046, 0.008214907720685005, 0.03359026089310646, 0.020614665001630783, 0.025990476831793785, -0.04656374454498291, 0.02080405503511429, -0.008162232115864754, 0.04554235190153122, -0.03274213522672653, -0.012472832575440407, 0.004202012438327074, 0.0017577537801116705, 0.014334638603031635, -0.007701105438172817, 0.0034263876732438803, 0.008517027832567692, -0.0505562424659729, -0.044089481234550476, 0.013476401567459106, 0.007924908772110939, 0.014061332680284977, 0.022429823875427246, -0.04440587759017944, 0.013098915107548237, 0.019053436815738678, -0.03841991350054741, 0.03835301846265793, 0.03449583426117897, -0.043012432754039764, 0.02132214792072773, 0.013130313716828823, -0.0057674371637403965, -0.05302241072058678, 0.010824539698660374, 0.04136785492300987, 0.006740737706422806, -0.027801882475614548, -0.012900675646960735, 0.005064923781901598, -0.008780945092439651, 0.035802554339170456, 0.007256306707859039, -0.029064834117889404, 0.02568814717233181, 0.042521245777606964, -0.06272389739751816, 0.03327549248933792, -0.025239519774913788, -0.017628474161028862, -0.04346295818686485, -0.0378505140542984, -0.022137576714158058, 0.02675449289381504, -0.004654820077121258, -0.003258306533098221, -0.033078718930482864, 0.017296265810728073, 0.02038637176156044, 0.05362178385257721, -0.06112261489033699, -0.0023857925552874804, 0.019845647737383842, 0.005017526913434267, 0.028314145281910896, 0.010870085097849369, -0.006696681957691908, -0.03863373398780823, -0.009569029323756695, 0.006383141968399286, 0.03482130914926529, 0.027621369808912277, 0.04195912182331085, 0.03861040994524956, 0.03481503576040268, -0.03362574428319931, -0.017444342374801636, 0.0054586478509008884, -0.020010503008961678, 0.05700770020484924, -0.019605496898293495, 0.02492118440568447, -0.030203411355614662, -0.03222382068634033, -0.017798105254769325, 0.0007858783937990665, 0.005567759741097689, 0.03570714220404625, -0.03920537605881691, 0.0477384477853775, 0.01065903715789318, -0.021923314779996872, 0.047829870134592056, -0.028926415368914604, -0.012883340939879417, 0.02619888447225094, 0.0006953802658244967, -0.0026960731483995914, -0.07331535220146179, 0.02363426983356476, 0.011087397113442421, 0.0017374400049448013, 0.05439990386366844, 0.011760945431888103, 0.016290990635752678, -0.010316005907952785, 0.0071036843582987785, -0.026000235229730606, -0.02797430194914341, 0.009806104004383087, -0.020747078582644463, 0.015232202596962452, -0.019624143838882446, -0.037799786776304245, -0.04948918893933296, 0.014071308076381683, 0.027175061404705048, 0.017577841877937317, 0.014441371895372868, 0.04085508733987808, 0.012535002082586288, 0.03457771614193916, 0.04116639867424965, 0.0013436690205708146, -0.0029938267543911934, -0.05440433323383331, 0.0688035860657692, 0.004622164182364941, -0.013966470956802368, -0.007894186303019524, -0.03919791802763939, -0.001673098304308951, 0.03589427098631859, -0.003499910468235612, -0.036744117736816406, -0.03697611764073372, -0.027521174401044846, -0.004511005710810423, 0.0538799911737442, -0.042278412729501724, -0.026366813108325005, -0.025876956060528755, 0.0344042032957077, 0.008649864234030247, -0.055401742458343506, 0.010816777125000954, -0.042293891310691833, 0.07022441178560257, 0.04160764813423157, -0.03547085449099541, -0.05725502595305443, -0.013267796486616135, -0.04299492388963699, -0.027452262118458748, 0.020800486207008362, 0.03977128118276596, 0.02166636846959591, 0.00893210805952549, -0.049589432775974274, 0.021564854308962822, 0.03319448232650757, -0.002489364007487893, -0.012789643369615078, 0.016605734825134277, 0.02474890649318695, -0.03192378208041191, 0.01897464692592621, -0.019347399473190308, -0.03641582280397415, 0.012941351160407066, -0.08084898442029953, 0.013112097047269344, -0.014958411455154419, 0.004721680656075478, -0.015160656534135342, 0.026516184210777283, -0.004438380245119333, 0.023946158587932587, -0.02091415785253048, 0.003071351209655404, 0.015270753763616085, 0.03290339931845665, -0.056096695363521576, -0.019910532981157303, 0.04566962644457817, 0.020519964396953583, -0.007748281583189964, 0.040282588452100754, 0.03443240374326706, -0.028866367414593697, 0.030303986743092537, 0.03247547149658203, -0.0307744313031435, 0.03327460587024689, -0.031097887083888054, 0.018549291417002678, -0.02435274049639702, -0.021276498213410378, 0.014562536031007767, -0.012404977343976498, 0.02161507122218609, -0.012077671475708485, 0.006741149351000786, -0.05150613561272621, -0.050265874713659286, -0.034597594290971756, 0.01973789371550083, -0.025647934526205063, 0.02676999382674694, 0.028958747163414955, 0.00695891072973609, -0.014799164608120918, -0.025953534990549088, -0.019920777529478073, -0.012765548191964626, -0.022736838087439537, -0.013914251700043678, 0.01857498288154602, 0.00534714525565505, 0.017490653321146965, -0.04978850856423378, -0.002133773872628808, -0.01096303854137659, 0.011596523225307465, -0.03438788652420044, -0.08050014823675156, -0.020312083885073662, -0.009723575785756111, -0.0013140387600287795, -0.026249192655086517, 0.003164716763421893, 0.02639717236161232, 0.035206183791160583, -0.001093967934139073, 0.01631002128124237, 0.0038632270880043507, 0.02442770265042782, -0.006928705610334873, 0.0458039864897728, -0.010320808738470078, -0.024650247767567635, -0.04768352583050728, 0.04667339473962784, -0.008310061879456043, 0.03320792689919472, -0.013357828371226788, 0.008007736876606941, -0.015689698979258537, -0.030357668176293373, -0.004528468940407038, -0.030170762911438942, -0.017304539680480957, -0.04759296402335167, -0.0529685840010643, 0.009121845476329327, 0.05955062806606293, 0.010036326944828033, -0.013607262633740902, 0.010910787619650364, -0.02889891155064106, -0.006042150780558586, -0.060211531817913055, -0.02442009188234806, 0.008952304720878601, -0.015046216547489166, 0.006495085544884205, 0.07027389109134674, 0.0293868500739336, -0.0011712339473888278, -0.03080652840435505, 0.020148389041423798, 0.02012825943529606, -0.007932368665933609, -0.0459994301199913, -0.038473814725875854, -0.007356974761933088, 0.002716515213251114, 0.022132398560643196, -0.01830740086734295, -0.02282876893877983, 0.04944330453872681, -0.01359700970351696, 0.007442011963576078, -0.003909300547093153, -0.060869697481393814, -0.03860141709446907, -0.051606692373752594, 0.038238704204559326, -0.01601034589111805, 0.011508304625749588, -0.02699754200875759, 0.02423110604286194, 0.05339495837688446, 0.009552079252898693, 0.012842696160078049, -0.031924664974212646, -0.06725195050239563, -0.03662162646651268, 0.02666671946644783, -0.013585102744400501, -0.014571096748113632, -0.009892652742564678, -0.0028530084528028965, 0.049215275794267654, -0.0035084113478660583, 0.03433118388056755, 0.06301622837781906, -0.020390348508954048, -0.003992555662989616, -0.024830451235175133, 0.050021350383758545, 0.016101067885756493, 0.003392786020413041, -0.0032527369912713766, -0.03825678676366806, -0.011349156498908997, -0.007585851009935141, -0.08139713108539581, -0.023344509303569794, -0.056611042469739914, 0.010858031921088696, 0.05651319772005081, -0.032928530126810074, 0.026579489931464195, 0.006000511813908815, -0.044585563242435455, -0.039867203682661057, 0.06648847460746765, -0.003323859302327037, 0.03301992267370224, 0.054234955459833145, -0.024680186063051224, -0.003015626687556505, 0.05114571005105972, -0.013203242793679237, 0.00319289299659431, -0.08016406744718552, 0.09361211955547333, -0.01211398933082819, -0.046988461166620255, 0.030230499804019928, 0.08548024296760559, -0.04784499481320381, -0.017807655036449432, 0.017120422795414925, 0.02508574165403843, 0.011082268320024014, -0.03949398174881935, 0.005353874526917934, 0.010409707203507423, -0.016437064856290817, 0.024200553074479103, 0.023529155179858208, -0.0037648999132215977, 0.05381673946976662, 0.02593585103750229, 0.057411208748817444, -0.012738212011754513, -0.023310983553528786, -0.006154848728328943, -0.03533990681171417, -0.02157224714756012, -0.007165015209466219, -0.0031751603819429874, 0.007260440848767757, -0.003842439502477646, 0.05928340554237366, -0.022593462839722633, 0.011505533009767532, 0.05372299253940582, -0.00008116992103168741, 0.04193795472383499, 0.010163594037294388, -0.0037049236707389355, 0.036144427955150604, -0.012466326355934143, -0.040509749203920364, -0.03899065777659416, 0.009617937728762627, 0.028780044987797737, 0.0304112508893013, -0.026140984147787094, 0.006986913271248341, 0.03822721540927887, 0.01629936322569847, -0.0231936052441597, -0.025204425677657127, -0.029387127608060837, -0.040733762085437775, -0.05315656214952469, -0.02756495028734207, -0.03231184557080269, 0.002198661444708705, 0.03184835985302925, 0.01507607102394104, -0.05741652846336365, -0.0016195402713492513, 0.003994160797446966, 0.006972325500100851, -0.0034646561834961176, -0.02100139483809471, 0.00006513860716950148, -0.02450033277273178, -0.0588119775056839, -0.04193752259016037, 0.0007963391835801303, -0.04558798670768738, 0.005571279674768448, -0.02056509628891945, 0.0307008009403944, -0.0034426848869770765, 0.024242166429758072, -0.003046890953555703, -0.013306690379977226, -0.007244298700243235, -0.06757783889770508, 0.005936085246503353, 0.05253162607550621, -0.01080270204693079, 0.01071553397923708, 0.04670235142111778, -0.001414404483512044, 0.04275823011994362, -0.007575078867375851, -0.01822061836719513, -0.0063330261036753654, 0.022364160045981407, 0.0011587059125304222, 0.020799336954951286, -0.02931758388876915, -0.04043865576386452, -0.005330890417098999, -0.04094866290688515, 0.022091245278716087, -0.033641789108514786, -0.003844166174530983, 0.014711412601172924, 0.0014161205617710948, -0.026276757940649986, 0.029700439423322678, -0.029158709570765495, 0.018714899197220802, 0.025106288492679596, 0.031000202521681786, 0.012706714682281017, -0.012824318371713161, 0.021765774115920067, -0.01930614374577999, 0.060934554785490036, -0.007456666324287653, 0.00972041953355074, 0.02154138870537281, -0.0578879714012146, 0.056291986256837845, -0.007590771187096834, -0.03056017868220806, -0.026618758216500282, -0.0013728353660553694, -0.004462836775928736, 0.05529884248971939, 0.024301933124661446, -0.03631827235221863, 0.040457457304000854, -0.02436954900622368, -0.04404930770397186, -0.009375510737299919, -0.04411214217543602, -0.05518191680312157, 0.03766576573252678, -0.030544104054570198, 0.005475874058902264, -0.004569551907479763, 0.002519123023375869, -0.030651308596134186, -0.02084260806441307, -0.014348207972943783, -0.005714179947972298, 0.027904735878109932, 0.017982367426156998, 0.027102718129754066, -0.012670017778873444, 0.013291990384459496, 0.03531307354569435, 0.06448015570640564, -0.04946786165237427, -0.046818457543849945, 0.024059128016233444, 0.04335208982229233, -0.011357239447534084, -0.027418678626418114, -0.014733192510902882, -0.014478719793260098, 0.026340125128626823, 0.01584826223552227, 0.016028130427002907, -0.006573494989424944, -0.00020374185987748206, 0.005932456348091364, 0.002458029193803668, 0.025061815977096558, -0.035313256084918976, 0.040259938687086105, -0.0227036215364933, -0.042928293347358704, -0.04448183625936508, 0.025853564962744713, 0.034493256360292435, -0.012902576476335526, 0.014641623944044113, 0.003771885996684432, 0.036008335649967194, -0.03721839189529419, 0.0064042299054563046, -0.018117794767022133, 0.03717541694641113, 0.036372069269418716, 0.035718996077775955, 0.004998418036848307, 0.009441052563488483, 0.04811917617917061, -0.004526372998952866, -0.040832363069057465, 0.05377310886979103, 0.0506625734269619, -0.00922059640288353, -0.011931062676012516, -0.02315845526754856, 0.016667772084474564, -0.0064756558276712894, -0.04212406650185585, 0.011812498793005943, -0.03339717909693718, 0.003598265117034316, -0.01575668528676033, -0.0430334135890007, 0.06372357904911041, -0.04968291521072388, 0.02057122066617012, 0.0021488219499588013, -0.02245495095849037, -0.0055062128230929375, 0.051750391721725464, -0.022442709654569626, 0.03128626570105553, 0.026274478062987328, 0.0008852790342643857, 0.03710164874792099, 0.04131889343261719, 0.04058824107050896, 0.024970386177301407, -0.05240923538804054, -0.02774094231426716, -0.00040115692536346614, -0.00595299806445837, -0.048748679459095, 0.01888674683868885, -0.04670342057943344, 0.03357000648975372, -0.05212368071079254, -0.012067094445228577, 0.02566157467663288, -0.08154521137475967, -0.0007701969007030129, -0.0487920381128788, 0.053191326558589935, -0.04483982175588608, -0.013448224402964115, 0.008539156056940556, -0.03833400830626488, -0.016980038955807686, 0.0396491214632988, 0.019145820289850235, 0.028341032564640045, 0.020061152055859566, 0.040007732808589935, 0.0041488888673484325, 0.03199503943324089, 0.03042486310005188, -0.03520919382572174, -0.009768134914338589, 0.028906073421239853, -0.010575482621788979, -0.021086091175675392, -0.0322958305478096, -0.043727729469537735, -0.008461294695734978, 0.027543652802705765, -0.01738637313246727, -0.003905448829755187, 0.025078624486923218, -0.01149834506213665, -0.051635582000017166, -0.0019659600220620632, 0.04608674347400665, -0.021872075274586678, 0.007784300018101931, 0.04207000881433487, 0.013090966269373894, 0.011921418830752373, -0.026165466755628586, 0.012070218101143837, -0.0335414856672287, -0.022996431216597557, -0.024070031940937042, 0.048161186277866364, -0.020807139575481415, -0.017961803823709488, -0.047848280519247055, -0.07271181792020798, -0.015857849270105362, -0.002009074203670025, -0.03705723583698273, -0.0830259770154953, 0.0499936044216156, 0.03284432739019394, -0.01730603724718094, -0.03755538910627365, -0.029367884621024132, 0.023631444200873375, 0.018496278673410416, 0.026573380455374718, -0.023814251646399498, 0.029059050604701042, 0.030230654403567314, 0.009561263956129551, -0.001936103100888431, -0.019788283854722977, 0.04804878681898117, 0.002996736904606223, -0.035172972828149796, -0.024579571560025215, 0.022272968664765358, -0.02832132764160633, -0.05143897235393524, -0.0011257692240178585, 0.04990437254309654, 0.015619651414453983, -0.036422502249479294, -0.06946568936109543, -0.0008245342178270221, -0.07388268411159515, -0.020525334402918816, -0.009516771882772446, 0.028848933055996895, -0.013689516112208366, 0.0010836254805326462, 0.010040167719125748, -0.05500614643096924, 0.14711661636829376, 0.054472606629133224, 0.04617886245250702, 0.03140037879347801, 0.03808407485485077, 0.037938978523015976, 0.01423494890332222, -0.02245873399078846, -0.016046037897467613, -0.02982162870466709, 0.015584535896778107, -0.012716570869088173, 0.033659715205430984, 0.01602950692176819, 0.0005814286996610463, 0.04462582617998123, -0.04223904758691788, 0.0011493751080706716, 0.023011384531855583, -0.04301367327570915, -0.09019850194454193, 0.03375039994716644, 0.006259250454604626, 0.03573570400476456, 0.011523989029228687, 0.028875203803181648, -0.006024247035384178, -0.06281471997499466, 0.0062936474569141865, -0.03870127350091934, 0.02568603679537773, -0.05044553056359291, 0.033857010304927826, -0.016536589711904526, -0.022834254428744316, 0.018276652321219444, -0.006980380974709988, -0.01729300245642662, -0.005339652765542269, 0.037946369498968124, -0.024551626294851303, 0.009377006441354752, 0.016831470653414726, -0.03633367270231247, 0.03366667777299881, 0.03041483275592327, -0.03196212276816368, 0.042635951191186905, 0.016810499131679535, -0.040884990245103836, 0.05396668240427971, -0.008837568573653698, 0.07019514590501785, 0.029866788536310196, -0.028827980160713196, 0.002816957887262106, -0.01616370491683483, -0.023198213428258896, -0.002856969367712736, 0.019635336473584175, 0.014732559211552143, 0.010937550105154514, -0.0009841760620474815, 0.003294281428679824, -0.040788695216178894, -0.00448474520817399, 0.025254303589463234, 0.017463942989706993, -0.003995795734226704, -0.017110176384449005, -0.03915480896830559, -0.009420031681656837, -0.020139330998063087, -0.00021750583255197853, 0.023100385442376137, 0.04085852950811386, -0.027532124891877174, 0.03768396005034447, 0.021811801940202713, -0.04666552320122719, 0.01584296114742756, -0.0671045258641243, 0.012167553417384624, -0.05010542646050453, 0.035206738859415054, 0.0379367358982563, -0.05399162694811821, -0.009822038002312183, -0.003256221767514944, 0.026711203157901764, 0.02724587544798851, 0.01878274604678154, 0.0010538545902818441, -0.032664570957422256, -0.011396081186830997 ]
Q: How to limit depth of reply comments in laravel I can create unlimited reply comment by recursively. This thing can be terrible because my web looks ugly. I want the user just can reply the comment maximum 3 depth of reply comments so if the depth has more from the maximum depth the comment not create nesting again. Here is my code that I can try so far, in blog.detail.php to show comment @include('nested.replies', ['comments' => $post->comments, 'post_id' => $parameter, 'depth' => 0]) and in replies.php @foreach($comments->sortByDesc('created_at') as $comment) <?php $parameter = Hashids::connection()->encode($post->id); $parameter2 = Hashids::connection()->encode($comment->id); ?> <ol class="comments-list display-comment"> <li> <div class="comment-box clearfix" > <div class="avatar"><img alt="" src="{{ asset('frontboard/images/avatar.png') }}" /></div> <div class="comment-content" id="reply?{{ $parameter2 }}"> <div class="comment-meta"> <span class="comment-by">{{ $comment->user->name }}</span> <span class="comment-date">{{ $comment->date }}</span> </div> <span class="reply-link" stle="padding-top:-220px;"> <p>{{ $comment->body }}</p> @if(Auth::guard('member')->check() && Auth::guard('member')->user()->active == 1) @if(Auth::guard('member')->user()->isBan == 1) <span class="reply-link"> Blocked @else {!! Form::open(['method' => 'DELETE','route' => ['comment.destroy', $comment->id]]) !!} {!! Form::submit('delete', ['onclick' => 'return confirm("Are you sure?");','class' => 'btn btn-danger btn-xs pull-right'])!!} {!! Form::close() !!} <a href="#" class="replyform">Reply</a> {!! Form::open([ 'route' => ['reply.add', $post->slug], 'class' => 'showActionComment', 'data-parsley-validate']) !!} @csrf <div class="form-group {{ $errors->has('comment_body') ? 'has-error': '' }}"> {!! Form::textarea('comment_body', null, [ 'name' => 'comment_body', 'class' => 'form-control', 'placeholder' => 'Write Something.. ', 'required', 'minlength="4"']) !!} @if($errors->has('comment_body')) <span class="help-block">{{$errors->first('comment_body')}}</span> @endif {!! Form::hidden('post_id', $parameter) !!} {!! Form::hidden('comment_id', $parameter2) !!} </div> <div class="form-group"> <input type="submit" id="postBtn" value="Add Comment" /> <input type="button" class="btn1 btn-warning" value="Hide" /> </div> {!! Form::close() !!} @endif @endif </span> </div> </div> @if($depth < 3) <ul> <li> @include('nested.replies', ['comments' => $comment->replies, 'depth' => $depth + 1]) </li> </ul> @endif </li> </ol> @endforeach we can see the replies on here @if($depth < 3) <ul> <li> @include('nested.replies', ['comments' => $comment->replies, 'depth' => $depth + 1]) </li> </ul> @endif I think this code not working properly, because it still executeS nesting comment..
[ 0.0007014441071078181, 0.011595213785767555, -0.007793836295604706, -0.015046459622681141, -0.0017055270727723837, 0.01486242562532425, 0.0027657418977469206, 0.05283584073185921, 0.024227581918239594, 0.05047442391514778, 0.02702287584543228, 0.035393379628658295, 0.00048021896509453654, -0.013251427561044693, -0.016523301601409912, 0.0023932347539812326, 0.0004858043394051492, -0.04763668030500412, -0.020946087315678596, 0.008691596798598766, -0.02881682477891445, 0.013866855762898922, -0.07620558142662048, 0.0022709134500473738, -0.02612006850540638, 0.04294183850288391, 0.04020727798342705, -0.014075537212193012, 0.06533634662628174, 0.041042350232601166, -0.03084951639175415, -0.021606089547276497, 0.021811407059431076, -0.04818608611822128, -0.013256714679300785, -0.02488134428858757, 0.043137162923812866, -0.018709691241383553, -0.0026828167028725147, -0.05806046724319458, 0.030199965462088585, -0.02400776371359825, 0.04310181364417076, -0.03505607694387436, -0.043888963758945465, 0.00535044027492404, 0.011317621916532516, -0.011363034136593342, -0.00986917968839407, -0.03689015656709671, 0.040876660495996475, -0.0017490015598013997, 0.03642880916595459, 0.013959634117782116, 0.011274523101747036, 0.009065519087016582, 0.007866652682423592, -0.02828453667461872, -0.021411366760730743, 0.03345896303653717, 0.0068794600665569305, 0.009533660486340523, 0.003037515329197049, -0.04033608362078667, 0.05581409111618996, 0.020205063745379448, 0.005305717699229717, 0.002981385448947549, 0.03439966216683388, -0.010852078907191753, -0.03344448655843735, 0.01036203745752573, 0.00017006965936161578, -0.009613389149308205, 0.009351251646876335, -0.00300266919657588, 0.0098078902810812, -0.015806274488568306, 0.022059842944145203, 0.02959456853568554, 0.011031107045710087, 0.05239207297563553, -0.008702345192432404, 0.005227305926382542, -0.09130359441041946, -0.02681294083595276, 0.012886552140116692, 0.015510277822613716, -0.02597794122993946, -0.003125708783045411, -0.006201150361448526, 0.034012600779533386, 0.02559463493525982, 0.02781609073281288, 0.041869308799505234, 0.029287170618772507, -0.03254622966051102, 0.03151209279894829, 0.012039889581501484, 0.00611694622784853, 0.015545514412224293, 0.020667895674705505, 0.008542339317500591, 0.051935795694589615, -0.04463757202029228, 0.015654422342777252, -0.006275204475969076, 0.015360377728939056, 0.01148118358105421, -0.027977831661701202, -0.013735461048781872, -0.00034836927079595625, -0.0007500688079744577, -0.005011157598346472, -0.040119461715221405, 0.03841898590326309, 0.005090896971523762, 0.0330115407705307, -0.02691207453608513, -0.007269955240190029, -0.0046797157265245914, -0.015408171340823174, 0.02633579820394516, -0.017134450376033783, 0.008661416359245777, -0.03662712499499321, -0.03825822472572327, 0.03755564987659454, -0.0345039963722229, -0.023844636976718903, 0.00891408696770668, -0.021708505228161812, 0.019490929320454597, 0.024737529456615448, -0.003450786229223013, 0.0012564950156956911, 0.02603204734623432, 0.014009739272296429, 0.04899619519710541, -0.04702072590589523, 0.03394739329814911, 0.04062701761722565, 0.007544092833995819, 0.06226341426372528, 0.01952613703906536, 0.03329429030418396, 0.017859406769275665, -0.007979133166372776, -0.0277219507843256, 0.006640924606472254, -0.0342821329832077, 0.009845653548836708, -0.0006907388451509178, 0.025356866419315338, 0.015408303588628769, -0.037571024149656296, -0.02409980818629265, -0.020028293132781982, 0.0354471392929554, 0.03593664616346359, -0.01196446642279625, 0.023329371586441994, -0.014072094112634659, 0.051562923938035965, -0.04305390268564224, 0.04257064685225487, -0.02117825672030449, -0.020652905106544495, 0.003640800714492798, -0.05049346387386322, 0.01380180660635233, 0.014228081330657005, -0.01860954985022545, 0.029073592275381088, 0.02758411504328251, 0.004672509152442217, -0.011920466087758541, 0.001670420402660966, 0.018583141267299652, 0.03422977402806282, -0.023246431723237038, 0.018328672274947166, 0.0016900345217436552, 0.06528307497501373, 0.0125286765396595, -0.015410074964165688, -0.012728395871818066, -0.017709027975797653, -0.05701024830341339, -0.014958903193473816, 0.0003658412315417081, 0.018895035609602928, -0.004668384790420532, 0.012107801623642445, 0.019138725474476814, -0.0005705534713342786, -0.013379069045186043, 0.01587354578077793, -0.00031426793430000544, -0.03360389173030853, -0.03947138413786888, 0.09798159450292587, -0.031731512397527695, 0.05706743523478508, 0.001633926760405302, -0.020000632852315903, -0.020752307027578354, 0.08047142624855042, -0.08330146223306656, -0.011487956158816814, 0.07448457926511765, 0.011437708511948586, -0.0370795875787735, -0.013465802185237408, -0.00722021097317338, -0.04011346399784088, -0.0497288815677166, 0.04741327092051506, 0.004052882082760334, 0.02362184412777424, 0.0004360737802926451, 0.021092891693115234, 0.044474199414253235, 0.03685586154460907, -0.010486189275979996, 0.028749605640769005, 0.01190150249749422, 0.046903956681489944, -0.01485519576817751, 0.02191172167658806, -0.008059132844209671, 0.013341130688786507, -0.0032965801656246185, 0.043979890644550323, 0.00868135504424572, 0.0029451909940689802, 0.0344274677336216, 0.04195372760295868, -0.011749234981834888, 0.007826258428394794, 0.0024905127938836813, 0.01638578623533249, 0.01651197485625744, 0.022053491324186325, -0.017714213579893112, 0.038900163024663925, 0.01818535476922989, 0.01295711100101471, 0.003876668168231845, 0.03852906823158264, -0.028821082785725594, 0.0601879321038723, 0.03104361519217491, 0.04139334335923195, -0.046700507402420044, 0.007871134206652641, 0.029918482527136803, 0.05728946998715401, -0.011329470202326775, -0.020284052938222885, 0.0021355529315769672, 0.030833961442112923, 0.009876380674540997, -0.011157405562698841, 0.03977750614285469, 0.005165775306522846, 0.036861613392829895, 0.02703932672739029, -0.008637543767690659, -0.08154099434614182, -0.03154276683926582, -0.06535840034484863, -0.06305527687072754, -0.009794284589588642, -0.03532731533050537, 0.0034765140153467655, 0.054566141217947006, -0.01860884204506874, 0.01573432795703411, -0.02075345814228058, 0.00001867225182650145, 0.0018036614637821913, -0.01210810150951147, 0.03575684875249863, 0.00947516318410635, 0.04467952251434326, -0.04066239297389984, 0.03355593979358673, 0.015534592792391777, 0.03000757284462452, -0.031948868185281754, 0.0006576151354238391, 0.01838594302535057, -0.03492536023259163, 0.03208525478839874, -0.011798947118222713, 0.0035251318477094173, 0.0224133413285017, -0.0347367599606514, -0.040929727256298065, -0.0031568126287311316, -0.015186806209385395, -0.030484018847346306, 0.0002443708654027432, -0.037374626845121384, 0.05319054797291756, 0.030902845785021782, -0.01622394099831581, 0.03719062730669975, 0.0313141904771328, -0.02223033644258976, 0.04057950899004936, 0.027187639847397804, 0.045795608311891556, -0.051124267280101776, 0.05240606516599655, 0.04505902901291847, 0.014429661445319653, -0.028900789096951485, -0.026773011311888695, -0.01038968376815319, -0.004625404253602028, 0.0006724121631123126, -0.023879274725914, -0.018699685111641884, 0.033620014786720276, 0.03477336838841438, -0.04716688022017479, 0.03744731843471527, -0.057461127638816833, -0.04475569725036621, -0.032171957194805145, -0.01991419866681099, 0.014696188271045685, 0.02454230561852455, 0.03463015705347061, -0.02191697619855404, -0.02108895592391491, -0.029496807605028152, 0.03341502323746681, 0.05308547243475914, -0.02800285816192627, 0.014119595289230347, 0.042652107775211334, -0.014581437222659588, 0.016560126096010208, 0.015812858939170837, -0.04575467109680176, -0.01056581549346447, 0.017480118200182915, -0.0027501557487994432, 0.03012455254793167, 0.04514363408088684, 0.0018638338660821319, -0.0029792075511068106, 0.05573173612356186, -0.03510770574212074, 0.010059366002678871, 0.030935397371649742, 0.027334481477737427, 0.013937443494796753, 0.0004380749596748501, 0.012764294631779194, -0.021185845136642456, -0.025908172130584717, -0.049844250082969666, 0.02567768655717373, 0.011164942756295204, 0.048905786126852036, -0.0339418426156044, 0.05364488437771797, 0.016134118661284447, -0.05135823413729668, 0.05065710097551346, -0.05812351033091545, -0.037878457456827164, 0.04117795452475548, -0.02410193532705307, 0.038074515759944916, -0.010386616922914982, -0.027290459722280502, -0.008614243008196354, 0.010221866890788078, 0.03631557524204254, 0.010175079107284546, 0.03223471716046333, -0.01175841223448515, 0.00019764942408073694, -0.031230725347995758, 0.001361181610263884, -0.006737678311765194, -0.021594423800706863, -0.013529853895306587, -0.017124095931649208, -0.05388322100043297, -0.05431131273508072, 0.012459144927561283, 0.04052991047501564, 0.06502941250801086, -0.0012229268904775381, -0.0027838998939841986, 0.005334414541721344, 0.026028549298644066, 0.011857043020427227, -0.031914807856082916, 0.03635037690401077, -0.015873469412326813, 0.04036043584346771, 0.04204497113823891, -0.017031092196702957, -0.023583797737956047, -0.021635878831148148, -0.025807665660977364, 0.03855722025036812, 0.00983127299696207, -0.043637655675411224, -0.058494191616773605, 0.0067105465568602085, 0.0025746733881533146, 0.02668582648038864, -0.03274424374103546, -0.021356234326958656, -0.012884740717709064, 0.03664250299334526, 0.03743908554315567, -0.04728161543607712, 0.007570566609501839, -0.04858889430761337, 0.009582478553056717, 0.042879365384578705, -0.0074050771072506905, -0.030787765979766846, -0.031851042062044144, -0.023067735135555267, -0.048629242926836014, 0.011253989301621914, 0.10189546644687653, -0.007784082554280758, 0.012939170002937317, -0.04718118906021118, -0.01636897772550583, 0.04872218146920204, 0.03751487657427788, 0.017554858699440956, 0.013733823783695698, 0.016783779487013817, 0.0013453142018988729, 0.05941976234316826, -0.011761139146983624, -0.0407847985625267, 0.0029644928872585297, -0.06775886565446854, -0.018451355397701263, -0.008479006588459015, -0.01656293496489525, -0.008190999738872051, 0.01565622352063656, 0.014476697891950607, 0.06624672561883926, -0.0048600430600345135, 0.0018260959768667817, 0.001966148614883423, 0.02195054665207863, -0.03581201285123825, -0.02935659885406494, 0.05138041824102402, 0.01730106584727764, -0.03946281224489212, 0.037419404834508896, 0.017849493771791458, -0.02617516927421093, 0.016672978177666664, 0.02987123653292656, -0.06173163279891014, 0.04569216072559357, -0.02447897009551525, 0.026494095101952553, -0.008973868563771248, -0.042204227298498154, 0.03314299136400223, -0.03712783381342888, 0.04854452610015869, 0.022568466141819954, -0.03227350115776062, -0.016820253804326057, -0.027508875355124474, -0.030970020219683647, 0.006460870616137981, -0.026282792910933495, -0.02060590125620365, -0.015403074212372303, -0.004265433643013239, 0.011455507017672062, -0.02960730902850628, -0.014442033134400845, 0.014983167871832848, -0.02941260300576687, 0.009778992272913456, 0.007518725469708443, 0.02121712453663349, 0.004381570965051651, 0.0346485897898674, -0.024688055738806725, 0.004162224940955639, 0.0023345667868852615, -0.007589300163090229, -0.0530133992433548, -0.011715876869857311, -0.011650674976408482, -0.0030597916338592768, -0.04586946964263916, 0.02508092112839222, -0.013438545167446136, -0.011586328968405724, 0.012309466488659382, 0.012604053132236004, 0.01813623681664467, -0.008331304416060448, -0.04093480482697487, 0.014037352986633778, 0.04183987155556679, -0.02809915691614151, -0.015288345515727997, 0.04437446594238281, -0.0039013782516121864, 0.02655486762523651, -0.02008279785513878, -0.011379933916032314, -0.04822409152984619, -0.03614393621683121, -0.01707647740840912, -0.03648277372121811, -0.03162897005677223, -0.06276148557662964, -0.010101554915308952, -0.020047757774591446, 0.03833239525556564, 0.009398000314831734, -0.0011640890734270215, 0.02104196883738041, -0.05144047737121582, -0.01731555163860321, -0.03749305382370949, -0.0240927767008543, -0.028684429824352264, -0.0018224392551928759, -0.03940267488360405, 0.05038565769791603, 0.0255193579941988, 0.04484642297029495, 0.02012035809457302, -0.0017941658152267337, 0.017200281843543053, 0.0019047802779823542, -0.05949191376566887, -0.04126586765050888, -0.010497217066586018, -0.02222570590674877, -0.0032014239113777876, 0.003345070406794548, -0.0669606626033783, 0.02813800610601902, -0.034790653735399246, 0.00656496686860919, -0.029496680945158005, -0.006999849807471037, -0.00942226406186819, -0.015157559886574745, 0.03152209892868996, -0.01740308664739132, -0.0018709341529756784, -0.03162340447306633, 0.020246155560016632, 0.02244720049202442, 0.0030424976721405983, -0.028197895735502243, -0.00793651957064867, -0.06334353238344193, -0.04431389644742012, 0.014027131721377373, -0.024141456931829453, -0.026433110237121582, -0.01750824600458145, 0.016273099929094315, 0.03653673455119133, 0.02013959363102913, 0.0358748622238636, 0.06626316159963608, -0.007948292419314384, 0.020483246073126793, -0.02836373820900917, 0.04308152571320534, 0.03188328072428703, -0.011523599736392498, -0.012902420945465565, -0.0022089441772550344, -0.035327911376953125, -0.027514107525348663, -0.05100632831454277, -0.06451482325792313, -0.07711131870746613, 0.0013808304211124778, 0.10643880069255829, -0.054479312151670456, 0.04503150284290314, 0.018544113263487816, -0.08148469775915146, -0.059304289519786835, 0.031349342316389084, 0.012900491245090961, 0.01954498514533043, 0.04434558004140854, -0.026250028982758522, -0.02030366286635399, 0.010697741992771626, 0.0060865203849971294, -0.023055756464600563, -0.06709408760070801, 0.08405297994613647, 0.0073169684037566185, -0.02206520177423954, -0.001357958884909749, 0.05243515968322754, -0.05603957176208496, -0.055027466267347336, -0.01334636565297842, -0.014800457283854485, -0.0016871183179318905, -0.029662076383829117, 0.012581674382090569, -0.038624584674835205, -0.026466725394129753, 0.01065896451473236, 0.016709621995687485, 0.009232701733708382, 0.017857922241091728, 0.015347563661634922, 0.032346803694963455, -0.03884097933769226, 0.015580669045448303, 0.05582323297858238, 0.004327236674726009, -0.02952674590051174, -0.02601507119834423, -0.007664975710213184, -0.013176077976822853, 0.02602488547563553, 0.07921924442052841, -0.00555055309087038, 0.00011303072096779943, 0.03936884552240372, -0.01178576797246933, 0.04461005702614784, -0.02763843722641468, 0.02213546261191368, 0.015135861933231354, -0.03333881124854088, -0.04503103345632553, -0.050949208438396454, 0.050702303647994995, -0.017025403678417206, 0.037250734865665436, -0.04740152880549431, -0.0037463917396962643, 0.021312527358531952, 0.00620638020336628, -0.04153407737612724, -0.007245572749525309, -0.02098827250301838, -0.04913865029811859, -0.03729088231921196, -0.04347900301218033, -0.017280643805861473, 0.018208632245659828, 0.018072236329317093, -0.006462684366852045, -0.027237622067332268, 0.031712185591459274, 0.013283466920256615, -0.0627484992146492, -0.015685517340898514, -0.04169213026762009, 0.0102745546028018, -0.06864884495735168, -0.04102817922830582, -0.04163547232747078, -0.000709964893758297, -0.01812976971268654, -0.011415651999413967, 0.04806993901729584, 0.03800095617771149, -0.006967267487198114, 0.016640767455101013, 0.014699629507958889, 0.0011587678454816341, 0.005677666049450636, -0.02221323363482952, 0.007018010597676039, 0.001071428181603551, -0.019781332463026047, 0.004059804603457451, 0.012945534661412239, -0.029949801042675972, 0.000011367612387402914, 0.01881948858499527, -0.032519448548555374, -0.03151559829711914, 0.013950536958873272, -0.025033142417669296, 0.017139092087745667, -0.01742733083665371, -0.03232815861701965, -0.031929321587085724, -0.04030198976397514, 0.01003127358853817, -0.011404361575841904, 0.0010479227639734745, -0.013739943504333496, -0.022105485200881958, -0.0014134240336716175, 0.06564657390117645, -0.00956326350569725, 0.03494066372513771, -0.012865917757153511, 0.027528008446097374, 0.0311991348862648, -0.012628259137272835, 0.02125549502670765, -0.018085245043039322, 0.041748855262994766, 0.015755336731672287, -0.0025021638721227646, 0.028252780437469482, -0.013427453115582466, 0.0358467772603035, -0.002492360072210431, -0.021538276225328445, -0.054822273552417755, 0.0014515656512230635, -0.019244661554694176, 0.06268367171287537, -0.0022314058151096106, -0.0015472719678655267, 0.021183159202337265, -0.0038846288807690144, -0.0457293875515461, 0.03055487386882305, -0.06259586662054062, -0.04224447160959244, 0.012907031923532486, -0.044897641986608505, -0.005208122078329325, -0.018125753849744797, -0.03329212963581085, -0.006980741862207651, -0.004510615952312946, -0.009410734288394451, -0.018713828176259995, 0.03115587681531906, -0.000015484491086681373, 0.011819836683571339, -0.024634649977087975, 0.007646946236491203, -0.0004516729968599975, 0.02850917913019657, -0.04533475637435913, -0.05411709472537041, 0.014569375663995743, 0.027522478252649307, -0.0005924495635554194, 0.011355791240930557, 0.023949261754751205, 0.028257159516215324, -0.013353298418223858, 0.03301255404949188, 0.008097711950540543, 0.019091928377747536, 0.008623362518846989, 0.013006487861275673, -0.0017775942105799913, -0.010216466151177883, -0.04406803101301193, 0.046231191605329514, -0.006083488930016756, -0.0006095651770010591, -0.035974014550447464, 0.03887169808149338, 0.007196594960987568, 0.006897143553942442, 0.0206141360104084, -0.008832384832203388, 0.027963323518633842, -0.009256133809685707, 0.022290488705039024, 0.005402532406151295, 0.06628084182739258, 0.04440154880285263, 0.017669839784502983, -0.022867025807499886, 0.021676285192370415, 0.028620311990380287, -0.02150641568005085, -0.019593385979533195, 0.04609496518969536, 0.03890494257211685, -0.04328273609280586, 0.011750208213925362, -0.02535416930913925, 0.0005190329975448549, 0.011957699432969093, 0.006822290830314159, -0.033174410462379456, -0.03564496710896492, -0.019427089020609856, -0.03746931999921799, -0.028469445183873177, 0.08576543629169464, -0.013488132506608963, 0.017191186547279358, 0.0009896856499835849, -0.009094935841858387, -0.010762389749288559, 0.0724320188164711, -0.011161822825670242, -0.00183595169801265, 0.04789833724498749, 0.042055029422044754, 0.012146806344389915, 0.03259160742163658, 0.00486359465867281, 0.04750971868634224, -0.011044303886592388, -0.0013553708558902144, 0.051681384444236755, -0.00048552302177995443, -0.04754432663321495, -0.016215503215789795, -0.03114570863544941, 0.033277060836553574, -0.02712075598537922, 0.0034285099245607853, 0.023245926946401596, -0.036192234605550766, -0.019770054146647453, -0.0306063462048769, -0.01137728150933981, -0.028263142332434654, -0.011880866251885891, 0.026584872975945473, 0.010547476820647717, -0.00785196851938963, 0.03980328515172005, 0.019937699660658836, 0.0236703809350729, -0.017066651955246925, 0.04058215767145157, -0.0028188652358949184, 0.01694413833320141, 0.03383408114314079, -0.037810202687978745, 0.006702356971800327, 0.038642898201942444, -0.0096694091334939, -0.027902524918317795, -0.007064125966280699, -0.04439068213105202, -0.0438402034342289, 0.021200697869062424, -0.05463060364127159, 0.0014291630359366536, 0.04824301227927208, -0.014622929506003857, -0.04057919979095459, -0.030365465208888054, 0.03348073363304138, -0.042841266840696335, -0.012603934854269028, 0.02597866766154766, -0.013157428242266178, 0.00341668794862926, -0.02880791574716568, -0.03672560304403305, -0.0014424655819311738, 0.0019620603416115046, -0.06806690245866776, 0.03618728742003441, -0.02263149432837963, -0.030534720048308372, -0.05214492976665497, -0.05142716318368912, -0.0026346715167164803, 0.003923635929822922, -0.03474985435605049, -0.03413011133670807, 0.017751293256878853, 0.04203105717897415, 0.025686044245958328, 0.03278438374400139, -0.0436277911067009, 0.027515696361660957, 0.025543319061398506, 0.06473046541213989, -0.01567339152097702, 0.05458182096481323, 0.051303088665008545, -0.011070861481130123, 0.027598686516284943, -0.0006921801250427961, 0.016039980575442314, -0.001774015836417675, -0.033123403787612915, -0.019972797483205795, 0.03689394146203995, -0.008038120344281197, -0.06495530903339386, -0.00016171811148524284, 0.029318636283278465, -0.01039799489080906, -0.030488116666674614, -0.05472616106271744, -0.021120574325323105, -0.04322819784283638, -0.00465366942808032, -0.045537468045949936, 0.027483738958835602, 0.005150227807462215, -0.04188170284032822, 0.012330726720392704, -0.0617670975625515, 0.14028196036815643, 0.04863762855529785, 0.04753248393535614, 0.0005759824998676777, 0.008876433596014977, 0.05277042090892792, 0.0024406705051660538, 0.0018244143575429916, -0.0018390174955129623, -0.03983817622065544, 0.049196790903806686, -0.012821565382182598, 0.02470184862613678, 0.0296780988574028, 0.03201158344745636, 0.04538946971297264, -0.023377692326903343, 0.03598153963685036, 0.007202960085123777, -0.04912818223237991, -0.06353374570608139, 0.02045249752700329, 0.032674647867679596, 0.03631887212395668, 0.006980764679610729, 0.0212763249874115, -0.0154197309166193, -0.04407504200935364, -0.005591131281107664, -0.04271851107478142, 0.04203689843416214, -0.04348159581422806, 0.08157987147569656, 0.013063292019069195, -0.026642711833119392, 0.019428681582212448, 0.014723844826221466, -0.03285176679491997, 0.0069837686605751514, -0.0016346046468243003, -0.029313525184988976, -0.007627449929714203, 0.020894836634397507, -0.05720910429954529, 0.010436936281621456, 0.011743969283998013, -0.03330373764038086, 0.0263384897261858, -0.011167806573212147, -0.04336204007267952, 0.03399275988340378, -0.03300299495458603, 0.024656256660819054, -0.014019295573234558, -0.056381676346063614, -0.00843735784292221, 0.009143844246864319, -0.016239600256085396, -0.02959718182682991, 0.03044002689421177, -0.006771624553948641, 0.004803997464478016, -0.010136296041309834, 0.024468209594488144, -0.03937382251024246, 0.0024601758923381567, 0.011178109794855118, 0.03081701137125492, -0.019280731678009033, 0.003265140112489462, 0.007431107573211193, -0.031269460916519165, -0.00874023512005806, -0.04047796502709389, 0.03952457383275032, 0.029054079204797745, -0.032415248453617096, 0.003304664511233568, 0.006394367199391127, -0.012444776482880116, -0.03058997355401516, -0.040112972259521484, -0.0032925796695053577, -0.02744072861969471, 0.0359363779425621, 0.03757290169596672, -0.028176626190543175, -0.03742483630776405, -0.014794222079217434, 0.060147978365421295, 0.0491272397339344, 0.04087859392166138, -0.02752760797739029, 0.0009747236617840827, -0.001473619369789958 ]
Wood waste grinding will soon begin at 1000 East Chambers Street (next to the Household Hazardous Waste Facility). As a result, Sioux Falls will permanently close this public branch drop-off site on Monday, June 24, 2013, at 7 p.m. For safety reasons, citizens are asked to stay away from sites where wood waste grinding is occurring. Closing the site will allow for more efficient grinding operations. Sioux Falls Regional Sanitary Landfill (26750 464th Avenue): Hours of operation are 7:30 a.m. to 5 p.m., Monday through Saturday. 69th Street and South Cliff Avenue (access to this site is from 69th Street): Hours of operation are 7 a.m. to 7 p.m., seven days a week. The wood waste from the grinding operation is not available to the public. However, wood mulch is available to residents at no charge at the two open public drop-off sites. Because residents are responsible for loading their own mulch, please bring bags, trash cans, shovels, or other items needed to load and transport the mulch. For more information about Operation Timber Strike!, go to www.siouxfalls.org/operationtimberstrike.
[ -0.012410040944814682, 0.033996447920799255, -0.033391308039426804, 0.025717003270983696, -0.005407475866377354, 0.02390826866030693, -0.02471170201897621, 0.035768572241067886, 0.00833293329924345, 0.024682607501745224, 0.01875033602118492, 0.01652800850570202, 0.013885807245969772, -0.02706390619277954, -0.02381834387779236, 0.00023533712374046445, -0.03589925915002823, -0.011211765930056572, -0.012243050150573254, 0.025434302166104317, -0.018827352672815323, 0.007261175196617842, -0.046994514763355255, -0.010467303916811943, -0.010189460590481758, 0.03805476799607277, 0.0031060685869306326, -0.02619880996644497, 0.041334185749292374, 0.06287610530853271, -0.04856981709599495, -0.04741289094090462, 0.03777288272976875, -0.05046248435974121, 0.013025362975895405, -0.008228135295212269, 0.03007684461772442, -0.009388287551701069, -0.018240848556160927, -0.013358709402382374, 0.004179391544312239, -0.008523938246071339, 0.0364421010017395, -0.04390387609601021, -0.0145847974345088, -0.0005446231225505471, -0.020407659932971, -0.007131739053875208, 0.02133047953248024, -0.01646328903734684, 0.01899690181016922, 0.0013080985518172383, 0.012362144887447357, -0.005773039534687996, 0.017471065744757652, 0.026327578350901604, -0.007984968833625317, -0.011945045553147793, -0.002874607453122735, 0.028395842760801315, 0.03939418867230415, 0.0020857113413512707, -0.001906831399537623, -0.03678817301988602, 0.04374505206942558, 0.03458879888057709, -0.01612197421491146, -0.00034204739495180547, 0.0213975477963686, -0.01970718242228031, -0.023579830303788185, 0.0036431921180337667, -0.021360302343964577, -0.020570628345012665, 0.00787484459578991, 0.025915374979376793, -0.005467303562909365, -0.0025147111155092716, -0.008465837687253952, 0.034124355763196945, 0.0029773032292723656, 0.040932025760412216, 0.003118684981018305, 0.012641161680221558, -0.06712073087692261, -0.01783442310988903, -0.012894325889647007, 0.026336848735809326, 0.03957371041178703, 0.010166672989726067, 0.0022004698403179646, 0.05826066434383392, 0.011049230583012104, 0.007974661886692047, 0.05278360843658447, 0.04385679215192795, -0.047447532415390015, 0.035687632858753204, 0.011864917352795601, -0.009557872079312801, 0.019076328724622726, 0.02740604616701603, -0.015694620087742805, 0.05108620598912239, -0.03623225912451744, -0.03317568823695183, 0.04035192355513573, -0.02916521579027176, -0.010246753692626953, -0.017976317554712296, 0.014980131760239601, -0.016247471794486046, 0.011604120954871178, -0.01686253771185875, -0.010712825693190098, 0.06348410993814468, 0.01397158857434988, 0.009820482693612576, -0.036767490208148956, 0.029925979673862457, 0.041841279715299606, 0.008710137568414211, 0.02610400877892971, -0.0186443068087101, 0.020235296338796616, -0.03835764899849892, -0.04871833696961403, 0.04760860651731491, -0.027875637635588646, -0.040086597204208374, 0.006478117313235998, -0.04635709524154663, -0.005015258677303791, 0.011805204674601555, 0.022682415321469307, 0.0336366668343544, -0.010746479965746403, 0.025169992819428444, 0.011586306616663933, -0.029866626486182213, 0.041553691029548645, 0.03217087686061859, -0.005220501683652401, 0.09493520110845566, 0.0183690395206213, 0.01872551627457142, 0.01648154854774475, 0.014988080598413944, -0.025895526632666588, 0.030967537313699722, -0.057004936039447784, 0.003557831747457385, 0.008248175494372845, -0.0025927554816007614, -0.0006974373827688396, 0.004414239898324013, 0.012900357134640217, 0.009408966638147831, 0.021060336381196976, 0.03549609333276749, -0.011999978683888912, 0.019799355417490005, -0.009944897145032883, 0.015590750612318516, -0.014643128961324692, 0.03229871764779091, -0.021501140668988228, 0.010119499638676643, -0.023189378902316093, -0.04519693925976753, 0.02091696672141552, -0.0046065980568528175, -0.018331166356801987, 0.031140480190515518, 0.02898101508617401, 0.007132639177143574, 0.0573396161198616, 0.013100340031087399, 0.03920670971274376, 0.059165820479393005, -0.06217299401760101, -0.018862171098589897, 0.01424610335379839, 0.06370782107114792, 0.028477752581238747, -0.009294725954532623, -0.005311290733516216, -0.026109768077731133, -0.03082812950015068, -0.03277546167373657, 0.01688634604215622, 0.01594950631260872, -0.008146563544869423, 0.024065211415290833, 0.012913977727293968, 0.017232369631528854, -0.001360225141979754, 0.007727213203907013, -0.007683168165385723, -0.028575578704476357, -0.010468591935932636, 0.04144098237156868, -0.0035960611421614885, 0.04725366830825806, 0.0048997667618095875, -0.03280642256140709, 0.049130942672491074, 0.04624425992369652, -0.042504146695137024, 0.00228620832785964, 0.04789900407195091, 0.02789253182709217, -0.05383441597223282, -0.031432315707206726, -0.008395583368837833, -0.010083908215165138, -0.03542589768767357, 0.044343918561935425, 0.003572365501895547, -0.02284294180572033, 0.02509313076734543, 0.0005477310041896999, 0.012681861408054829, 0.03866013139486313, 0.029206283390522003, 0.00298289698548615, 0.0146229462698102, 0.048215582966804504, 0.0045731933787465096, -0.03459017723798752, 0.009648581966757774, 0.029666222631931305, 0.04496698081493378, 0.07187052816152573, 0.04577427729964256, -0.005223128944635391, 0.04492883011698723, 0.04566612467169762, -0.020863106474280357, 0.04292783886194229, 0.018068091943860054, 0.008637025952339172, 0.022583812475204468, 0.0310084018856287, -0.0052213529124855995, 0.05183013156056404, -0.027779344469308853, -0.03101416677236557, -0.0009256080375052989, -0.0019170255400240421, -0.016737163066864014, 0.03576071187853813, 0.002651176881045103, 0.031919289380311966, -0.022928956896066666, -0.008517472073435783, 0.031961582601070404, 0.03696269914507866, -0.04462362453341484, 0.0018674802267923951, 0.005074103828519583, 0.024227242916822433, 0.01713799685239792, 0.023444021120667458, 0.02493743970990181, 0.014459173195064068, -0.012574529275298119, 0.02142305113375187, -0.023010632023215294, -0.04953193664550781, -0.02764749340713024, -0.00930945947766304, -0.00862040277570486, -0.042113691568374634, -0.05385199561715126, -0.019273294135928154, 0.03580523654818535, -0.03772313520312309, 0.024481700733304024, -0.02552122063934803, -0.02264542318880558, -0.026355495676398277, 0.00916785653680563, 0.0339348129928112, -0.0026229005306959152, 0.05043924227356911, -0.02901940792798996, 0.019470110535621643, -0.0031945188529789448, 0.0004042531654704362, -0.045854393392801285, -0.02103881724178791, 0.002922425977885723, -0.000022622847609454766, 0.020592205226421356, -0.019680868834257126, 0.016258444637060165, -0.028201855719089508, -0.03742332383990288, -0.062060561031103134, -0.015992451459169388, -0.00952940247952938, -0.013744237832725048, 0.0028560676146298647, -0.0458538644015789, 0.0661754310131073, 0.030351882800459862, -0.027350949123501778, 0.04502822086215019, 0.046026479452848434, -0.014497553929686546, 0.015405796468257904, 0.022734785452485085, 0.006987137254327536, -0.044285908341407776, 0.03459138050675392, 0.05923449248075485, 0.018247181549668312, -0.014619404450058937, -0.010403865948319435, -0.006651157978922129, 0.013927257619798183, 0.0014353360747918487, -0.013333335518836975, -0.02332676202058792, 0.06494961678981781, 0.005076291970908642, -0.04559360072016716, 0.02239224687218666, -0.043494172394275665, -0.011789718642830849, -0.024565542116761208, -0.012109432369470596, 0.03504388406872749, 0.05513499304652214, 0.02979215979576111, 0.013094840571284294, -0.032959483563899994, -0.015371091663837433, 0.012019860558211803, 0.08998064696788788, -0.047812025994062424, 0.012457034550607204, 0.04174298420548439, 0.011890506371855736, -0.02210182510316372, 0.03891263157129288, 0.008725943975150585, -0.019924921914935112, -0.013878624886274338, -0.007584140170365572, 0.0049432008527219296, 0.04197394847869873, 0.040212348103523254, 0.0022792089730501175, 0.044631607830524445, -0.04015886411070824, -0.015430881641805172, 0.01299144048243761, 0.024155300110578537, 0.04756534844636917, -0.0149167375639081, 0.002659269841387868, -0.01915128529071808, -0.05751309543848038, -0.07171973586082458, 0.014833926223218441, 0.026156285777688026, 0.07193823903799057, -0.07434339076280594, 0.04482957348227501, -0.0258316732943058, -0.02075929380953312, 0.030853750184178352, -0.027763888239860535, -0.011295074597001076, 0.028315149247646332, -0.028911951929330826, 0.048266489058732986, -0.027199307456612587, 0.021595271304249763, -0.01368449255824089, 0.04029233381152153, 0.04333336278796196, 0.021146202459931374, 0.03569377586245537, -0.016976410523056984, -0.011091191321611404, -0.022710563614964485, -0.011088152416050434, -0.004985352046787739, -0.054365355521440506, 0.012760463170707226, 0.009680737741291523, -0.02294272556900978, -0.05998780205845833, 0.040832288563251495, 0.02240651287138462, 0.020291097462177277, 0.01600925251841545, 0.03803517296910286, 0.010326302610337734, 0.030391311272978783, 0.0625966489315033, -0.010350123047828674, -0.009623992256820202, -0.05168402940034866, 0.018441496416926384, 0.04019417613744736, -0.02099582552909851, -0.009441821835935116, -0.03349212557077408, -0.029439544305205345, 0.02781427465379238, -0.00783265195786953, -0.025576842948794365, -0.048375312238931656, 0.02979518286883831, 0.007910026237368584, 0.020580969750881195, -0.006391115952283144, -0.010119892656803131, -0.02699778974056244, 0.013862650841474533, 0.03466738387942314, -0.03792400285601616, 0.0005915044457651675, -0.051986515522003174, 0.04273289814591408, 0.051150206476449966, -0.01945181004703045, -0.031246162950992584, -0.04006388783454895, -0.015262811444699764, -0.03917146101593971, 0.019934939220547676, 0.021560976281762123, -0.01292866189032793, -0.017281772568821907, -0.04303104802966118, 0.02140888199210167, 0.035814546048641205, -0.002200992312282324, -0.04735930263996124, 0.014491097070276737, -0.0036917796824127436, -0.0235670767724514, 0.019404347985982895, 0.01374620757997036, -0.023448532447218895, -0.000007186837592598749, -0.04421106353402138, 0.034905850887298584, -0.024932552129030228, -0.007392139174044132, 0.005129603669047356, 0.008369647897779942, 0.006006473209708929, 0.05478736385703087, -0.02187679149210453, 0.0006219540955498815, 0.009251052513718605, -0.008509216830134392, -0.04230409860610962, -0.038011178374290466, 0.05844143405556679, 0.012957259081304073, -0.06376694142818451, 0.02340245246887207, 0.053353361785411835, -0.020931825041770935, 0.027164705097675323, 0.010416433215141296, -0.035279467701911926, 0.029927510768175125, -0.06471942365169525, 0.015505938790738583, -0.03944597393274307, -0.029109066352248192, 0.011077024973928928, -0.01259392499923706, 0.04802556708455086, 0.008174305781722069, -0.01586250402033329, -0.050381191074848175, -0.07332559674978256, 0.0043308003805577755, 0.016833161935210228, -0.0265195295214653, 0.01809380203485489, 0.03877005726099014, -0.010218414478003979, -0.023914657533168793, -0.03160201385617256, 0.015785517171025276, 0.003004851983860135, -0.02168986387550831, 0.007554508745670319, 0.027354368939995766, 0.006900168024003506, 0.01960531622171402, -0.036505475640296936, -0.05771941691637039, 0.020180802792310715, -0.017775490880012512, -0.02846338227391243, -0.062374621629714966, 0.004047907888889313, -0.03152216225862503, 0.006933394819498062, -0.041542310267686844, -0.0026666023768484592, 0.002529568038880825, 0.019887961447238922, 0.004093207884579897, 0.029199372977018356, -0.017568960785865784, -0.010823225602507591, -0.010228035040199757, 0.04915790259838104, 0.029207903891801834, -0.03227599337697029, -0.0398511178791523, 0.02428456023335457, -0.005004065576940775, 0.05319562926888466, -0.010275627486407757, -0.020371777936816216, -0.026407353579998016, -0.06505884230136871, 0.011378428898751736, -0.04893624037504196, -0.01978602446615696, -0.05940180644392967, -0.042564429342746735, -0.009308652020990849, 0.01906104013323784, 0.030933335423469543, -0.017026560381054878, 0.003331575309857726, -0.010391563177108765, -0.005173912271857262, -0.02865760400891304, -0.01514048594981432, -0.04126754403114319, -0.03566334769129753, -0.006553184241056442, 0.030298469588160515, 0.017328480258584023, 0.008025579154491425, -0.031399212777614594, 0.008307969197630882, 0.002101193880662322, -0.014345436356961727, -0.030572643503546715, -0.03557173162698746, -0.024439292028546333, -0.0038555783685296774, 0.0199370626360178, -0.010417652316391468, -0.022556494921445847, 0.05847911909222603, -0.0366479866206646, -0.0138266421854496, -0.026221275329589844, -0.041265275329351425, -0.014544916339218616, -0.013680323027074337, 0.033204566687345505, 0.009654887020587921, 0.0007634653593413532, -0.021139562129974365, 0.04687869921326637, 0.024728579446673393, 0.003687986871227622, -0.010495036840438843, -0.03881550952792168, -0.04624948650598526, -0.03572240099310875, 0.02187679149210453, -0.05925816297531128, -0.034861139953136444, -0.03549493849277496, -0.0057878391817212105, 0.04138883575797081, -0.02148144319653511, 0.06977897882461548, 0.051110491156578064, -0.019190222024917603, 0.017645878717303276, -0.024957234039902687, 0.03663887456059456, 0.023845726624131203, -0.00936164241284132, -0.021744297817349434, -0.019166449084877968, -0.00956231914460659, 0.026132339611649513, -0.04063700884580612, -0.03548160195350647, -0.04182254150509834, -0.02039051242172718, 0.055471647530794144, -0.027335982769727707, 0.020696457475423813, -0.03603958711028099, -0.046409972012043, -0.0523066408932209, 0.0615956149995327, 0.01153981126844883, 0.03252569958567619, 0.039542775601148605, -0.004940946586430073, -0.022746527567505836, 0.006731058936566114, 0.01165667176246643, 0.04053257778286934, -0.05105516314506531, 0.09528923034667969, -0.0013429049868136644, -0.060213908553123474, 0.009906105697154999, 0.029720596969127655, -0.058402642607688904, -0.022670239210128784, -0.0010116068879142404, -0.024107856675982475, 0.013209558092057705, -0.037692826241254807, 0.01290517020970583, -0.031471136957407, 0.0288374125957489, 0.017126530408859253, 0.033400069922208786, 0.01372845470905304, 0.0344465896487236, 0.01975138485431671, 0.051730018109083176, -0.023582518100738525, 0.01025841012597084, 0.028922507539391518, -0.007605244405567646, -0.020763447508215904, -0.052913349121809006, -0.03077293001115322, 0.02577050030231476, -0.02661701664328575, 0.041835054755210876, -0.013650359585881233, 0.020998775959014893, 0.03567976877093315, 0.00842123944312334, 0.07749758660793304, 0.0014473142800852656, 0.014917470514774323, 0.049412764608860016, -0.03865896537899971, -0.030885640531778336, -0.02664223313331604, 0.004306665621697903, -0.010420831851661205, 0.026046782732009888, -0.06470726430416107, 0.015711680054664612, 0.022161491215229034, 0.0327715240418911, -0.03384418413043022, -0.04721273481845856, -0.0218276958912611, -0.035977553576231, -0.011233920231461525, -0.033185552805662155, -0.032881610095500946, -0.02327885664999485, 0.028227701783180237, -0.008966433815658092, -0.04754761606454849, -0.01985023356974125, 0.020079437643289566, -0.03064032271504402, 0.005285626742988825, -0.023113243281841278, 0.00043564775842241943, -0.03768755495548248, -0.05937403813004494, -0.0593414306640625, -0.0036624285858124495, 0.016849488019943237, -0.005331987049430609, -0.029572052881121635, 0.03282224014401436, -0.007213515695184469, 0.022940926253795624, 0.026296261698007584, 0.018990298733115196, -0.012161483988165855, -0.052867282181978226, 0.0032955901697278023, 0.04193160682916641, -0.021358530968427658, 0.011451494880020618, 0.036353182047605515, -0.014023282565176487, 0.054190825670957565, -0.010265389457345009, -0.03034493513405323, -0.02845647744834423, 0.006881594657897949, -0.0022496578749269247, 0.021895160898566246, -0.07663987576961517, -0.009100519120693207, -0.00029073565383441746, -0.03260589763522148, 0.0013189787277951837, -0.015518131665885448, -0.015822758898139, -0.009236391633749008, -0.011049194261431694, -0.018391767516732216, 0.05974885821342468, -0.01882440596818924, 0.010071075521409512, -0.020351039245724678, 0.02838556468486786, 0.013145599514245987, 0.011640551500022411, 0.0045670936815440655, -0.009468198753893375, 0.02602948434650898, -0.023963110521435738, 0.03757905960083008, 0.011528031900525093, -0.009105263277888298, 0.040220558643341064, -0.014797423034906387, -0.04788178578019142, 0.0016400368185713887, -0.0386299267411232, 0.01659359037876129, 0.05215635523200035, 0.007427319884300232, -0.02316001057624817, 0.06249590963125229, -0.05013327673077583, -0.04433465003967285, 0.012396886013448238, -0.0628884807229042, -0.06198105216026306, 0.030505163595080376, -0.0244592297822237, -0.006579700391739607, -0.01613503322005272, -0.03268258646130562, -0.01662909798324108, -0.04645100235939026, -0.01583683118224144, 0.00347115402109921, 0.01602247916162014, 0.009304425679147243, 0.07347070425748825, -0.014195087365806103, 0.0014043792616575956, 0.021809371188282967, 0.07906576991081238, -0.07206292450428009, -0.06733188778162003, 0.00876791961491108, 0.04839815944433212, 0.02006777562201023, -0.011685667559504509, -0.007847911678254604, -0.007120740599930286, 0.003614375600591302, 0.029929153621196747, 0.012952220626175404, -0.015630895271897316, -0.021477458998560905, 0.021142615005373955, 0.006900014355778694, -0.002968225395306945, -0.03691449761390686, 0.02325133979320526, -0.03534029796719551, -0.059234216809272766, -0.06001229211688042, 0.023022977635264397, 0.042310815304517746, -0.01483185775578022, 0.04143014922738075, 0.005440192297101021, 0.007994940504431725, -0.024079736322164536, -0.0012835069792345166, -0.01912948116660118, 0.040495604276657104, 0.010302414186298847, 0.04421379789710045, -0.0016377863939851522, 0.04754183441400528, 0.05759906396269798, 0.01195523887872696, -0.007943554781377316, 0.02358958125114441, 0.020372994244098663, -0.0017626796616241336, 0.00530899316072464, -0.011112713254988194, -0.001973040634766221, -0.002119571901857853, -0.025298412889242172, -0.012925535440444946, -0.032241322100162506, -0.0063513219356536865, 0.012265595607459545, -0.010608677752315998, 0.05042450875043869, -0.00414163526147604, 0.03277473896741867, 0.01419920101761818, -0.020993662998080254, -0.018688097596168518, 0.0268709696829319, -0.06623026728630066, 0.005217534489929676, 0.03595830500125885, 0.0279676653444767, -0.02843545749783516, 0.04383588209748268, 0.032954007387161255, 0.02928316593170166, -0.05287465080618858, 0.017689930275082588, 0.004234100226312876, 0.021169941872358322, -0.05208564177155495, 0.007083409000188112, -0.027524035423994064, 0.036938074976205826, -0.029827825725078583, -0.027800874784588814, 0.026333536952733994, -0.04527056962251663, -0.04678357392549515, -0.052858829498291016, 0.047911450266838074, -0.019256172701716423, 0.006314445752650499, 0.03642834350466728, -0.023992691189050674, -0.03364802896976471, 0.04728275164961815, 0.004833000246435404, 0.036177560687065125, 0.014171890914440155, 0.04396774619817734, 0.0016763323219493032, 0.03853648900985718, 0.046698249876499176, -0.042430389672517776, -0.021396178752183914, 0.01472883764654398, -0.03753605857491493, -0.0366361141204834, -0.041874341666698456, -0.014183707535266876, -0.04745124280452728, -0.024760710075497627, -0.008373171091079712, -0.01782608963549137, 0.051565609872341156, 0.0023581646382808685, -0.03916780278086662, 0.005994873121380806, -0.00031295002554543316, -0.06498599052429199, -0.01815640926361084, 0.018105903640389442, 0.04491090774536133, -0.027029549703001976, -0.027654239907860756, -0.013006712310016155, -0.019813090562820435, -0.01271938718855381, -0.03424949571490288, 0.02973419986665249, -0.010778526775538921, -0.030921384692192078, -0.03373543918132782, -0.042716700583696365, -0.018920909613370895, 0.008927383460104465, -0.05205497145652771, -0.03848545253276825, 0.011048165149986744, 0.021301552653312683, 0.006265391130000353, 0.025082798674702644, -0.035031359642744064, 0.020374543964862823, 0.0657656341791153, 0.037869587540626526, 0.02505936287343502, 0.05002910643815994, -0.0049180034548044205, -0.02511182799935341, 0.012543519958853722, -0.007024278398603201, 0.022601092234253883, -0.03299000486731529, -0.025234714150428772, -0.01905992440879345, 0.025023536756634712, -0.038191597908735275, -0.051102444529533386, 0.02534656971693039, 0.015805913135409355, 0.012191999703645706, -0.044173069298267365, -0.04448946565389633, -0.006793222390115261, -0.02030402235686779, -0.00014765329251531512, -0.03159566968679428, 0.026298953220248222, 0.018879549577832222, -0.011192682199180126, -0.008944551460444927, -0.08501691371202469, 0.16523295640945435, 0.04054420813918114, 0.03841904550790787, 0.026058441027998924, -0.006154934875667095, 0.0568309910595417, 0.022541485726833344, 0.013723509386181831, -0.01052890159189701, -0.015421003103256226, 0.018275486305356026, -0.007942290976643562, 0.03739284351468086, 0.013177321292459965, 0.026284171268343925, 0.0468672476708889, -0.04078467935323715, 0.026937788352370262, 0.02413698472082615, -0.05262959375977516, -0.04112744703888893, 0.03715582564473152, -0.003043799428269267, 0.03739013522863388, -0.0210824403911829, 0.018199704587459564, 0.027925031259655952, -0.05715569481253624, -0.005088197998702526, -0.03697273135185242, 0.03682190179824829, -0.05046769231557846, 0.005963524803519249, 0.011665595695376396, -0.023469947278499603, 0.04315150901675224, 0.01792311668395996, -0.01514301635324955, -0.00522245280444622, 0.011898163706064224, -0.02329833060503006, 0.009611205197870731, 0.026894496753811836, -0.03090144693851471, 0.025551648810505867, 0.020732281729578972, -0.05061783641576767, -0.0008240417810156941, 0.04223617911338806, -0.04649974778294563, 0.057265449315309525, 0.004236697684973478, 0.02438102662563324, 0.01731887087225914, -0.029777372255921364, -0.01473642885684967, 0.02114499919116497, -0.0427735261619091, -0.004582738503813744, 0.028835298493504524, 0.02846379764378071, -0.0032996032387018204, -0.02015106752514839, 0.012655934318900108, -0.02376449853181839, -0.01894642785191536, 0.027556506916880608, -0.027877524495124817, -0.024856174364686012, 0.003335739718750119, -0.021101081743836403, -0.000976584036834538, -0.019968712702393532, -0.03383268788456917, 0.03877968713641167, 0.06711850315332413, -0.005076594650745392, 0.043683551251888275, 0.022285649552941322, -0.02435268834233284, -0.017519069835543633, -0.06339585036039352, -0.013514514081180096, 0.0013786586932837963, 0.0401846207678318, 0.03782114386558533, -0.03918854147195816, -0.04433715343475342, 0.006357652600854635, 0.03664445877075195, 0.05325755476951599, -0.007145363837480545, -0.028959253802895546, -0.02526833489537239, 0.01398298516869545 ]
Startups in Africa ABOUT CONTACT US GET FEATURED SUBMIT A GUEST POST 0Follow us on Facebook0Follow us on Twitter0Follow us on Instagram0Follow us on LinkedIn Kenyan Startup, Ujuzikilimo is Using Data Analytics to Help Farmers with Crop Productivity UjuziKilimo (Swahili: knowledge or experience) which was founded in Nairobi in 2015 by Brian Bosire, is an Agritech company… How Nigeria's Henry Ifeanyi is Tackling Fraud in Healthcare Insurance through Curacel Henry Ifeanyi Mascot founded Curacel in 2017, a Nigerian startup that aims to fast track claims processing and detects… Why You Should Start A Profitable African Import Business Truth be told, starting a business importing African goods that are high in demand in the West, Asia, or… 5 Business Lessons for African Entrepreneurs Oftentimes, we wonder why some entrepreneurs in Africa succeed while others fail? Most people hold the opinion that it… Kenyan Agritech Company, FuturePump is Facilitating Low-cost Solar Irrigation for Farmers There are 500 million one-acre farmers around the world. Rainfall has become very unpredictable due to climate change and… How Ryan Bacher Launched NetFlorist, SA's largest online gifting company, by Accident Ryan Bacher studied and completed a Bachelor of Arts and Law Degree at Wits in 1994. He worked for… APPLY: Ashoka/HSBC Future Skills Innovation Challenge 2020 for Social Entrepreneurs Deadline: February 28, 2020 Applications are now open for the Future Skills Innovation Challenge 2020! Are you helping develop the skills… How Kenya's Chris Kirubi Built His Business from Nothing Chris Kirubi ventured into purchasing and selling of houses to make an extra money. He used the money made… 5 Businesses You can Start with your Smartphone Initially, phones were introduced to easy up communication through calls. However, with improvement and upgrade on phones, smartphones evolved… How to Start A Social Purpose Business A Social purpose business is a type of business that has the society in mind and the intent to… APPLY: Swedish Institutes' Creative Force Africa and Middle East & North Africa (MENA) 2020 for Change Agents. Ohimai Henry Dec 10, 2019 Application Deadline: 30 January 2020 (15.00 Swedish time). Are you an organisation that works internationally to strengthen democracy, freedom of expression and human rights? Do you use media or the arts as a means to bring about positive change? t is a funding programme for international projects. It is open to Swedish organisations and their partners in our target countries who work through media or the arts to strengthen democracy, human rights and freedom of expression. It offers two types of grant: Seed Funding is available for carrying out a small project or for preparing a larger project for which you plan to seek funding. You and your international partner can apply for up to SEK 100,000 for an initiative which must be completed within 12 months of funding being granted (30 April 2021 at latest). We recommend that you apply for seed funding before you apply for a grant for a larger collaborative project. Collaborative Projects are larger projects which should involve knowledge exchange, capacity building or method development. We recommend that you apply for this type of grant to scale-up a project which has previously received seed funding. You and your international partner can apply for up to SEK 500,000 per 12-month period. A project may last 24 months at most from funding being granted (in other words, you can apply for max. SEK 1 million). Twelve-month projects must be completed by 30 April 2021 at latest, 24-month projects by 30 April 2022. Any type of organisation which is registered in Sweden. Your organisation must have been registered for at least one year (for seed funding) or two years (for collaborative projects). You must write your application jointly with a partner organisation in one (or more) of the Creative Force target countries (see below). In Africa and Middle East & North Africa (MENA): Ethiopia, Kenya, Rwanda, Somalia, Tanzania, Uganda, Zambia Algeria, Egypt, Iran, Iraq, Jordan, Lebanon, Libya, Morocco, Palestine, Syria, Tunisia, Yemen Visit the Official Webpage of the Swedish Institutes' Creative Force Africa and Middle East & North Africa (MENA) 2020 Ohimai Henry Swedish Institute Creative force 2020Swedish Institute Creative force and MENA for change agents APPLY: Labs by ARM – FinTech focused Accelerator Program 2019 for early & growth stage FinTech startups APPLY: International Competition Network (ICN)/World Bank Group 2019/2020 Competition Advocacy Contest. We interview founders across Africa, and feature African startups. If you run a business or startup in Africa, or know anyone who does, we'd love to tell that story! To reach us for founder/startup feature, send a mail to [email protected] or fill this form. Bolu Okunlola - Jan 21, 2020 Subscribe to Receive Latest Posts Founders Africa was launched with an aim to bring innovators across Africa to the spotlight.We don't stop there!We also go in search of opportunities for businesses, and provide resources, tips and advice that help SMEs/startups scale. Contact us: [email protected] Founders Africa©Copyright 2019 The Small Business Assistant
[ -0.00204848637804389, -0.014922892674803734, -0.036468371748924255, -0.01618552953004837, -0.0037589464336633682, 0.014968138188123703, -0.014129722490906715, 0.032234929502010345, 0.018400589004158974, 0.03268205374479294, 0.015342357568442822, -0.01406817976385355, -0.001108288299292326, -0.021712003275752068, -0.005122837610542774, 0.007158591412007809, -0.019532455131411552, -0.03192325681447983, 0.030911389738321304, -0.01927325129508972, 0.02036270685493946, 0.02501329965889454, -0.05792617052793503, -0.05632295832037926, -0.02031347155570984, 0.05214134603738785, 0.006764606572687626, -0.009754708036780357, 0.0819917544722557, 0.08646901696920395, -0.028816694393754005, -0.04442528262734413, 0.03691684827208519, -0.06614168733358383, -0.030916644260287285, -0.024767963215708733, 0.030104301869869232, -0.01707158237695694, -0.0527946799993515, -0.026333129033446312, 0.0017190107610076666, -0.018042253330349922, 0.04617174342274666, -0.025419039651751518, -0.035130228847265244, 0.00720056239515543, -0.016990303993225098, -0.057461682707071304, 0.0068567791022360325, -0.0002394041366642341, 0.00863079447299242, -0.006250208709388971, 0.009800967760384083, 0.005504075437784195, 0.00506866117939353, -0.015384371392428875, 0.01265285536646843, -0.028239823877811432, -0.025753485038876534, 0.013758547604084015, 0.016583383083343506, 0.007304970175027847, 0.044232964515686035, -0.05570321902632713, 0.052167266607284546, 0.02569463476538658, -0.04500628262758255, -0.01691201701760292, 0.017844969406723976, -0.033304888755083084, -0.02657919190824032, -0.0018729947041720152, -0.022951655089855194, -0.05576331913471222, 0.017888866364955902, -0.03559761494398117, -0.011822588741779327, -0.023976506665349007, -0.005675125401467085, 0.0006416781106963754, 0.039999838918447495, 0.05411984771490097, 0.024921664968132973, 0.0026910363230854273, -0.10277227312326431, -0.006173205561935902, 0.007479602936655283, 0.007226011250168085, 0.030291425064206123, -0.012027811259031296, -0.006668988615274429, 0.00897599570453167, -0.0003937009896617383, -0.028007658198475838, 0.03348946571350098, 0.06496328115463257, -0.026320768520236015, 0.0388234443962574, -0.024918582290410995, 0.012320746667683125, 0.052518248558044434, 0.032008569687604904, -0.00528002018108964, 0.0506739616394043, -0.04890992119908333, -0.014936579391360283, 0.018987232819199562, -0.01834823377430439, -0.002146364888176322, -0.026229128241539, -0.013548911549150944, -0.013893642462790012, 0.037376321852207184, 0.0016197101213037968, -0.007094043307006359, 0.06273765861988068, -0.018700268119573593, 0.01796911098062992, 0.003134249011054635, 0.0362885408103466, -0.024576356634497643, 0.031062524765729904, 0.05737317353487015, -0.020742258056998253, 0.014155038632452488, -0.02222094126045704, -0.009686704725027084, 0.045121222734451294, -0.03334930166602135, -0.0025529267732053995, 0.01440341304987669, -0.07594762742519379, -0.025139188393950462, 0.020691389217972755, -0.030601026490330696, -0.005046420730650425, 0.008314193226397038, 0.0543365553021431, 0.0012279350776225328, -0.04367746785283089, 0.040895428508520126, 0.007486783433705568, 0.02243361994624138, 0.09069256484508514, -0.01522846333682537, 0.02169119194149971, -0.0016142844688147306, -0.005672141443938017, -0.045862454921007156, 0.010594316758215427, -0.0020903225522488356, 0.0067505426704883575, -0.014811834320425987, 0.03160407394170761, -0.003916939254850149, 0.004602022469043732, -0.017286216840147972, 0.006616633851081133, 0.027333838865160942, 0.04015951231122017, -0.02824285440146923, 0.00805085338652134, 0.01337116863578558, 0.0508384108543396, -0.02616971731185913, 0.03777092695236206, -0.023766105994582176, -0.011120502837002277, -0.0029375755693763494, -0.013302549719810486, -0.0046500395983457565, -0.0012806581798940897, -0.017926597967743874, 0.02341417595744133, 0.00938371755182743, 0.0331922248005867, 0.04179603233933449, -0.0018126795766875148, 0.039842430502176285, 0.002400756813585758, -0.028433039784431458, 0.012668689712882042, -0.008184853941202164, 0.06236037611961365, 0.00945778377354145, 0.014807303436100483, 0.013576115481555462, -0.018402179703116417, -0.011852226220071316, -0.028393227607011795, -0.025332259014248848, 0.033473119139671326, -0.036560505628585815, 0.011289366520941257, 0.01396094262599945, -0.006603780202567577, -0.022048454731702805, -0.04120948910713196, 0.0017063444247469306, -0.08333123475313187, -0.018109556287527084, 0.039925381541252136, -0.015599409118294716, 0.036878086626529694, 0.013001219369471073, -0.022609088569879532, 0.017664702609181404, 0.05172646418213844, -0.05904810503125191, -0.0027962890453636646, 0.02202584594488144, 0.023977724835276604, -0.012822244316339493, -0.041693732142448425, 0.024741992354393005, -0.0042131207883358, -0.024201013147830963, 0.025950448587536812, -0.016499551013112068, 0.0030739554204046726, 0.017700616270303726, -0.0024922576267272234, 0.03560175374150276, 0.04305562376976013, -0.0026639497373253107, 0.0080051738768816, -0.010098026134073734, 0.05569620802998543, -0.01914309896528721, -0.0022059190087020397, -0.01649576984345913, 0.03280884400010109, 0.010511658154428005, 0.07547623664140701, 0.0416095145046711, 0.01143990084528923, 0.04664907976984978, 0.0576334111392498, 0.01697443425655365, 0.04122574254870415, -0.007173287216573954, 0.014547553844749928, 0.05017530173063278, 0.034479379653930664, -0.026832126080989838, 0.026080472394824028, -0.02732989564538002, 0.021693415939807892, -0.0356692336499691, 0.05353516340255737, -0.03424326330423355, 0.04915672168135643, 0.04133236035704613, 0.040867168456315994, -0.03739391267299652, 0.012789679691195488, 0.009641963988542557, 0.03407219797372818, -0.023381778970360756, -0.0005392687744461, -0.023304102942347527, 0.002865410642698407, -0.005708249751478434, 0.009339126758277416, 0.04450100660324097, 0.021038703620433807, -0.004405968822538853, 0.04983442276716232, -0.014583027921617031, -0.03723084181547165, -0.06740342825651169, -0.047140397131443024, -0.04002460464835167, -0.03375155106186867, -0.0290230643004179, 0.003991276957094669, 0.04250070080161095, -0.0308234840631485, 0.019071806222200394, -0.02566477842628956, -0.007792257703840733, 0.00376436160877347, 0.0012136842124164104, 0.04449833184480667, 0.03045472875237465, 0.046984944492578506, -0.06273159384727478, 0.016831139102578163, -0.0019122462254017591, 0.03935611620545387, -0.029304232448339462, 0.012797254137694836, -0.011499837972223759, -0.06102919206023216, 0.03257303684949875, 0.01748247817158699, 0.008562125265598297, 0.0075163329020142555, -0.046819161623716354, -0.021805008873343468, -0.018618466332554817, -0.005773924756795168, -0.023375369608402252, -0.012242409400641918, -0.018385659903287888, 0.012875581160187721, 0.03394578769803047, -0.0420813150703907, 0.058972880244255066, 0.038724370300769806, -0.04348103702068329, 0.04383720085024834, -0.004356967750936747, 0.004214606713503599, -0.07248907536268234, 0.040159836411476135, 0.055447425693273544, -0.004425193183124065, -0.02144716866314411, -0.031856317073106766, -0.02168065309524536, 0.0024918748531490564, 0.03186877816915512, -0.0198056623339653, -0.02092541940510273, 0.023623330518603325, 0.018557684496045113, -0.08566763997077942, 0.044036734849214554, -0.028069090098142624, -0.05389406904578209, -0.048514705151319504, -0.014567214995622635, 0.00466216029599309, 0.03555856645107269, -0.0147172249853611, 0.02286754548549652, -0.015627549961209297, -0.03147786483168602, -0.03132122382521629, 0.04828463867306709, -0.029937440529465675, 0.022339504212141037, 0.040970586240291595, 0.044216614216566086, 0.006435911636799574, 0.05749070271849632, -0.014432485215365887, -0.011422010138630867, 0.02343149483203888, 0.004815918393433094, 0.014401745982468128, 0.03945578634738922, -0.0019013996934518218, 0.02861636132001877, 0.061133164912462234, -0.05723995342850685, -0.003005231497809291, -0.0024947437923401594, 0.0027211655396968126, 0.03894007205963135, 0.005610696505755186, -0.0007817989680916071, -0.028750328347086906, -0.05729509890079498, -0.03671629726886749, 0.004212116822600365, 0.03714434802532196, 0.024170635268092155, -0.06743617355823517, 0.02453247830271721, -0.016484275460243225, -0.03707723319530487, 0.0598038025200367, -0.029847683385014534, -0.013170327991247177, 0.04931590333580971, -0.0005645835772156715, 0.04186467453837395, -0.044368352741003036, -0.00976973120123148, 0.0012549931416288018, 0.036409128457307816, 0.033849094063043594, 0.0061207907274365425, 0.03759578987956047, -0.0019448682432994246, -0.0033811526373028755, -0.008286094292998314, -0.02665282040834427, 0.021293599158525467, -0.012736201286315918, -0.010053670965135098, 0.016863161697983742, -0.04182356223464012, -0.04357219114899635, 0.027125021442770958, 0.006886475253850222, 0.05466441810131073, -0.015503144823014736, 0.02504359930753708, 0.018013646826148033, 0.0185103602707386, 0.04072290658950806, -0.008186548948287964, 0.035292740911245346, -0.0290733203291893, 0.03224613890051842, 0.0005119735142216086, -0.051433779299259186, -0.03372694551944733, -0.05620428919792175, -0.009206200018525124, 0.027835441753268242, 0.012793655507266521, -0.03162536770105362, -0.041867636144161224, -0.013453878462314606, 0.008408404886722565, 0.03919508308172226, -0.04359115660190582, -0.030526936054229736, -0.025533214211463928, 0.041476666927337646, 0.02279328554868698, -0.017315717414021492, -0.004744128789752722, -0.032369401305913925, 0.016261590644717216, 0.020361918956041336, -0.008221559226512909, -0.03667840361595154, 0.01709100790321827, -0.01817808859050274, -0.007934998720884323, -0.011594746261835098, 0.008990855887532234, -0.0013032886199653149, 0.0336865559220314, -0.03137475997209549, 0.015427079983055592, 0.03058018535375595, -0.017930742353200912, -0.008618129417300224, 0.005926362704485655, 0.0320771262049675, 0.003447404131293297, 0.039381273090839386, -0.022798538208007812, -0.013367334380745888, 0.021468225866556168, -0.06710360944271088, 0.01564166694879532, -0.0015200648922473192, 0.01910020411014557, -0.013380644842982292, 0.003647767473012209, 0.04656219109892845, 0.026483619585633278, -0.015238011255860329, 0.0019220075337216258, -0.0024147555232048035, 0.027246883139014244, -0.06396745145320892, -0.07390022277832031, 0.044537875801324844, 0.02348433807492256, -0.03343344107270241, 0.03705388680100441, 0.038380712270736694, -0.02586846798658371, 0.014757687225937843, -0.005831822287291288, -0.05853662267327309, 0.029043788090348244, -0.01845800317823887, 0.02500711753964424, -0.02561137080192566, -0.024224694818258286, 0.009285402484238148, -0.059184730052948, 0.03946967050433159, 0.0123903788626194, -0.027007510885596275, -0.02084760181605816, -0.046001434326171875, -0.013937604613602161, 0.011736178770661354, -0.04272705316543579, 0.043614331632852554, -0.009464452974498272, -0.011633251793682575, -0.013566059060394764, 0.011538175866007805, -0.006583025213330984, -0.0030564130283892155, -0.04488766938447952, -0.002804830437526107, -0.0033472273498773575, -0.00960258487612009, 0.0316939540207386, -0.01647292450070381, -0.01924285851418972, 0.005750264041125774, 0.0021593633573502302, -0.02757042832672596, -0.0541556291282177, 0.00430225720629096, -0.05316314473748207, -0.0022232001647353172, -0.013632419519126415, 0.01979701779782772, -0.007704123854637146, 0.029576636850833893, 0.022715335711836815, 0.021016402170062065, 0.013151520863175392, 0.02255668118596077, -0.03661271929740906, 0.03265130892395973, -0.009770776145160198, -0.04665932059288025, -0.03732256963849068, 0.05278150737285614, 0.006701391655951738, 0.043724168092012405, 0.006209984887391329, 0.013177675195038319, -0.005377685185521841, -0.06252872198820114, -0.006337711587548256, -0.05947234109044075, -0.0005095345550216734, -0.030016200616955757, -0.02634824439883232, -0.0165798831731081, 0.03779057785868645, 0.01936730556190014, 0.002529149642214179, 0.009950799867510796, -0.042016640305519104, 0.014169427566230297, -0.0332343652844429, -0.027699865400791168, -0.022311000153422356, 0.0038989123422652483, 0.0021659177727997303, 0.0664115846157074, 0.011544517241418362, 0.016017433255910873, 0.027675360441207886, 0.007896928116679192, 0.0290471613407135, 0.0018294312758371234, -0.06056145578622818, -0.06881594657897949, -0.028785226866602898, -0.008444270119071007, 0.0023448308929800987, -0.0025469567626714706, -0.04343012347817421, 0.07025664299726486, -0.025928130373358727, -0.020519910380244255, -0.015509415417909622, -0.02851032465696335, 0.009806613437831402, 0.014268084429204464, 0.0681861937046051, 0.0036886921152472496, 0.02735230326652527, -0.017049701884388924, 0.03835698589682579, 0.05925760418176651, -0.024682920426130295, -0.03421204164624214, -0.03875222057104111, -0.033142827451229095, -0.051318906247615814, 0.0154443783685565, -0.037873562425374985, 0.0027111759409308434, -0.03278356045484543, -0.014388064853847027, 0.03945594280958176, 0.003106039250269532, 0.0068614790216088295, 0.02568306215107441, -0.01727434992790222, -0.01326681487262249, -0.014806882478296757, 0.042185671627521515, 0.05634156987071037, -0.025805557146668434, 0.013853543438017368, -0.03599542751908302, -0.01165408082306385, -0.004059041850268841, -0.0358213372528553, -0.052292030304670334, -0.039560962468385696, -0.005560748279094696, 0.05531422421336174, -0.05163199454545975, 0.030481748282909393, -0.02374853752553463, -0.048236533999443054, -0.05818838253617287, 0.05313317850232124, 0.007582968100905418, -0.0009331946494057775, 0.03320964798331261, 0.006888118572533131, -0.0007734599057585001, 0.03819846734404564, -0.02061128057539463, 0.028860710561275482, -0.024209223687648773, 0.04753034561872482, 0.0008417139761149883, -0.031844478100538254, 0.0015957271680235863, 0.07423028349876404, -0.059026241302490234, -0.04881013557314873, -0.01643029972910881, -0.006889674812555313, 0.00039966535405255854, -0.03923727571964264, 0.021723607555031776, -0.02066768892109394, -0.023303793743252754, -0.002925516339018941, 0.04153210669755936, -0.02440887689590454, 0.03489413112401962, 0.031685106456279755, 0.04015734791755676, -0.060934022068977356, 0.01213086862117052, 0.03583364561200142, -0.02437153458595276, -0.026680374518036842, -0.021451039239764214, -0.011318061500787735, -0.01565369963645935, -0.00452778022736311, 0.051592741161584854, -0.011360452510416508, 0.010366474278271198, 0.011946502141654491, -0.02894287183880806, 0.02754943259060383, 0.005297508090734482, -0.010512057691812515, 0.026157254353165627, -0.0013893054565414786, -0.04544230177998543, -0.021594857797026634, 0.04135974496603012, -0.006915458478033543, 0.015126971527934074, -0.04515993967652321, -0.006444524507969618, 0.03506159037351608, -0.0072600883431732655, 0.016346275806427002, -0.03961494192481041, -0.04264667257666588, -0.025696812197566032, -0.024301772937178612, -0.0742202177643776, -0.017632588744163513, 0.0016254319343715906, 0.022072266787290573, 0.02366550639271736, -0.0477965846657753, 0.024835405871272087, 0.03296622633934021, -0.006018750835210085, -0.0023166839964687824, -0.020652305334806442, 0.012354792095720768, -0.01439204066991806, -0.05878758430480957, -0.04561962932348251, 0.026503942906856537, -0.01601703092455864, 0.010365388356149197, -0.05607396736741066, 0.026484932750463486, -0.003954343963414431, 0.014875472523272038, 0.004655943717807531, 0.02257859893143177, -0.023201359435915947, -0.04038451611995697, -0.018592122942209244, 0.0386909581720829, 0.002504801144823432, 0.049168217927217484, 0.01882094331085682, -0.021225580945611, 0.03943280875682831, -0.0010505388490855694, 0.0016149366274476051, -0.012774785980582237, 0.015740742906928062, -0.01924029365181923, -0.014367379248142242, -0.019167764112353325, -0.052809830754995346, -0.0027379821985960007, -0.051875270903110504, 0.009103057906031609, -0.00534095149487257, 0.004361782688647509, -0.009466149844229221, 0.006799730472266674, -0.012327675707638264, 0.042678773403167725, -0.03848296403884888, 0.0344296358525753, 0.01901066116988659, 0.012307103723287582, 0.02568681910634041, -0.02901134081184864, 0.00911935605108738, 0.018987763673067093, -0.005980112589895725, -0.03791022300720215, 0.0061369528993964195, 0.02978598140180111, 0.00960192084312439, 0.014496471732854843, -0.014917095191776752, -0.019154727458953857, -0.044491246342659, -0.020040640607476234, 0.015722449868917465, 0.056029316037893295, -0.010183112695813179, 0.007285802625119686, 0.03506258875131607, -0.03217814862728119, -0.0347602516412735, -0.029116172343492508, -0.043920550495386124, -0.03496978059411049, 0.05888565257191658, -0.013675420545041561, -0.012638057582080364, -0.020919153466820717, -0.03823024779558182, -0.0035161750856786966, -0.015957588329911232, -0.0177439097315073, -0.017691314220428467, 0.016041163355112076, -0.014458606019616127, 0.030207568779587746, 0.026521235704421997, 0.007472085766494274, 0.002910437062382698, 0.06350281834602356, -0.0278701763600111, -0.05064547806978226, 0.006247642915695906, 0.03817626088857651, 0.010458307340741158, -0.009770501405000687, -0.015343069098889828, -0.0023030349984765053, 0.0348825603723526, 0.043923519551754, 0.01655903086066246, 0.014355679973959923, -0.009342159144580364, 0.06117592006921768, 0.01615573838353157, 0.02714746631681919, -0.025189220905303955, 0.04021306708455086, 0.003338802605867386, -0.035433243960142136, -0.03127877041697502, 0.01914907805621624, 0.039345286786556244, 0.002713485388085246, 0.033068615943193436, 0.012118412181735039, 0.0424741730093956, -0.004458138719201088, 0.02932056412100792, -0.03315898776054382, 0.03517833352088928, 0.031030917540192604, 0.03897248953580856, 0.011050321161746979, 0.01385415904223919, 0.07105374336242676, -0.01158138271421194, -0.043082889169454575, 0.05034368112683296, 0.02879256196320057, -0.034103646874427795, 0.009671233594417572, -0.03211406618356705, -0.012244346551597118, 0.003821402322500944, -0.02233004756271839, 0.018857527524232864, -0.02743709087371826, 0.020372116938233376, -0.011360112577676773, -0.014452642761170864, 0.05154282972216606, -0.041279494762420654, 0.023488858714699745, 0.006925858557224274, -0.021008793264627457, 0.013920202851295471, 0.05058668181300163, -0.004182437434792519, 0.018665803596377373, 0.03453090041875839, 0.0225598756223917, -0.022565124556422234, 0.015540407970547676, 0.03202325850725174, 0.0004498749040067196, -0.04984688386321068, -0.015416583977639675, 0.03155829384922981, 0.006109380163252354, -0.005749102681875229, 0.0260009728372097, -0.04293385520577431, 0.02779756300151348, -0.014418220147490501, -0.028612574562430382, 0.058836936950683594, -0.0419631190598011, -0.01603049971163273, -0.040138937532901764, 0.022858716547489166, -0.057329948991537094, -0.0003453490207903087, -0.0036086230538785458, -0.019519096240401268, -0.03518417477607727, 0.04280316084623337, 0.022579185664653778, 0.0068712662905454636, 0.008313450962305069, 0.05530218034982681, 0.01071577612310648, 0.036000173538923264, 0.03911037743091583, -0.011755850166082382, -0.000039844439015723765, 0.01744297705590725, 0.0011432362953200936, -0.0370892770588398, -0.030632393434643745, -0.07019161432981491, -0.0032325515057891607, -0.020114906132221222, -0.05178084596991539, -0.013523603789508343, 0.05816394463181496, 0.017134912312030792, -0.07566370069980621, -0.012791418470442295, 0.010868365876376629, -0.036391403526067734, 0.012315082363784313, -0.0052196611650288105, 0.033829085528850555, 0.006231335923075676, -0.006685074418783188, -0.014457480050623417, -0.03316906839609146, 0.034248363226652145, -0.051092036068439484, 0.031776972115039825, -0.018547290936112404, -0.027758801355957985, -0.03877321258187294, -0.03131186589598656, -0.028996136039495468, -0.022080160677433014, -0.060550540685653687, -0.06175234168767929, 0.03994370996952057, 0.027818994596600533, -0.0015018695266917348, -0.022042166441679, -0.015265935100615025, -0.009545864537358284, 0.04226425290107727, 0.07679792493581772, -0.017244458198547363, 0.03453453257679939, 0.024761447682976723, -0.0017743594944477081, 0.03304506838321686, -0.03586219996213913, 0.018662184476852417, -0.01680334471166134, -0.023831281810998917, -0.02008828893303871, 0.007417722139507532, -0.014103214256465435, -0.07112440466880798, 0.026613207533955574, 0.017906522378325462, 0.01079160999506712, 0.022557510063052177, -0.04502297565340996, -0.011720441281795502, -0.06913765519857407, -0.01276819035410881, -0.02325991541147232, 0.03423958271741867, 0.013161156326532364, -0.0026166087482124567, 0.011431370861828327, -0.052638065069913864, 0.15267597138881683, 0.04855496808886528, 0.011149530299007893, 0.039908476173877716, 0.04752605780959129, 0.028485430404543877, 0.04666515812277794, -0.018542582169175148, 0.0063789598643779755, -0.03813079372048378, 0.026276012882590294, -0.018207624554634094, 0.023296987637877464, 0.011891990900039673, 0.01297508180141449, 0.060612667351961136, -0.04789828881621361, 0.007235333789139986, 0.01149815134704113, -0.04088626429438591, -0.05297793447971344, 0.02805555984377861, -0.0021559763699769974, 0.0013261482818052173, -0.00527711259201169, 0.04006873443722725, 0.015537680126726627, -0.023704636842012405, -0.01936660334467888, 0.015655310824513435, 0.03868662938475609, -0.03947124257683754, 0.026367681100964546, -0.00714727072045207, -0.015842396765947342, 0.036082636564970016, 0.023730909451842308, -0.022967282682657242, 0.004253991413861513, 0.007502481807023287, -0.008255197666585445, -0.00045238874736241996, 0.0465954914689064, -0.05984526872634888, 0.02610749565064907, 0.023964205756783485, -0.024201957508921623, 0.007552783004939556, 0.05284224823117256, -0.038576338440179825, 0.0316842757165432, -0.0354762077331543, 0.04712584614753723, 0.003019508672878146, -0.010751377791166306, 0.01643836684525013, 0.008870722725987434, -0.02114487998187542, -0.019397368654608727, 0.0018229117849841714, 0.0403987318277359, 0.005461229011416435, -0.003119643311947584, 0.021688954904675484, -0.03433052450418472, 0.012733785435557365, 0.02512305974960327, 0.01588495820760727, 0.015729423612356186, -0.029646513983607292, -0.022738948464393616, 0.007458940614014864, -0.015089079737663269, -0.027835942804813385, 0.025184938684105873, 0.032038282603025436, -0.01274095568805933, 0.050893593579530716, -0.009973917156457901, -0.04425076022744179, -0.011642557568848133, -0.031128037720918655, -0.0044633992947638035, -0.011375765316188335, 0.021342143416404724, 0.018455008044838905, -0.04675997048616409, -0.0247578714042902, -0.031189892441034317, 0.056226927787065506, 0.06976548582315445, 0.011634757742285728, -0.02810410037636757, -0.005524583160877228, 0.01745542511343956 ]
Rockland District High School Rockland District High School is located in Rockland, Ontario. Scholarships for students attending Rockland District High School can be found in our scholarship database. If you are searching for scholarships for students attending a different high school in Rockland, visit the Rockland directory. 1004 St Joseph St Rockland, Ontario K4K 1P6 Herbert Levy Memorial Scholarship The purpose of the Society of Physics Students scholarship program is to encourage the study of physics and the pursuit of high scholarship. In memory of her late husband Dr. Herbert Levy, Margaret Sussman Levy bequeathed funds to establish this scholarship award "to be used for a worthy, needy physics student" to attain a quality physics education. The award consists... Fair Divorce Legislation Scholarship The attorneys at Moskowitz Law Group are excited to announce The Fair Divorce Legislation Scholarship. Our attorneys understand that divorce can be one of the most difficult emotional experiences someone goes through in their life, so we are dedicated to helping families overcome the challenges of divorce and making the process as painless as possible. Through this scholarship, the attorneys at... TOPS Opportunity Award Deadline: Jul 01, 2023 TOPS (Taylor Opportunity Program for Students) is a program of state scholarships for Louisiana residents who attend either one of the Louisiana Public Colleges and Universities, schools that are a part of the Louisiana Community and Technical College System, Louisiana approved Proprietary and Cosmetology Schools or institutions that are a part of the Louisiana Association of Independent Colleges and Universities.... Louisiana Sheriffs' Educational Scholarship Program The Louisiana Sheriffs' Honorary Membership Program will award sixty-four scholarships of a maximum of $500 each. This effort is a meaningful expression of the Program's confidence in, and respect for, education and training. The goal of the Program is to provide assistance to worthy Louisiana students in furthering their education and training with resources made available through the Honorary Membership... NextLevel Student Scholarship The Chicago family law firm NextLevel Law believes in making a positive impact in its community. Founding attorney Daniel Hernandez built his legal practice on the values of accessibility, integrity, respect, and transparency. NextLevel Law brings justice to our clients and makes high quality legal services accessible to all members of the communities we serve.Attorney Hernandez and his legal team...
[ -0.01196913793683052, -0.006494281813502312, -0.026860443875193596, -0.0005963039002381265, -0.008442428894340992, -0.006215642672032118, 0.015291051007807255, 0.021266482770442963, 0.01112701278179884, 0.037879884243011475, 0.034632179886102676, 0.012408357113599777, 0.03636564314365387, -0.016635103151202202, -0.0026220977306365967, 0.012016387656331062, -0.02560422569513321, -0.027862614020705223, -0.01900169998407364, 0.01910765841603279, -0.015267911367118359, 0.04186496511101723, -0.03428073599934578, -0.04815886169672012, 0.0016262339195236564, 0.04003798961639404, 0.027562350034713745, 0.002962145721539855, 0.024941038340330124, 0.04882568120956421, -0.02894563600420952, -0.05483781173825264, 0.007470049429684877, -0.04372694715857506, -0.04431343078613281, -0.022200440987944603, 0.03955475613474846, -0.05887671560049057, 0.003897125832736492, -0.03828764334321022, 0.014535383321344852, -0.027453867718577385, 0.015647435560822487, -0.036839377135038376, -0.038795605301856995, 0.006291536148637533, 0.014320224523544312, -0.014938716776669025, 0.007094971369951963, -0.031040772795677185, 0.010186951607465744, -0.0033704405650496483, 0.01650550775229931, -0.012681129388511181, 0.023044796660542488, 0.02024337835609913, 0.005108861718326807, -0.02327158860862255, -0.008024385198950768, 0.044742293655872345, 0.023013483732938766, 0.008886292576789856, -0.00018504823674447834, -0.056305546313524246, 0.03779058903455734, 0.022754529491066933, -0.01680750399827957, 0.004750576335936785, 0.010891822166740894, -0.028445100411772728, 0.002884471323341131, -0.019478920847177505, -0.029679257422685623, -0.00012374058132991195, -0.013432793319225311, 0.002036299090832472, -0.025276558473706245, 0.005095208995044231, 0.0034086492378264666, 0.013884338550269604, 0.04234694689512253, 0.02317711152136326, 0.024809932336211205, -0.009932980872690678, -0.07131915539503098, -0.023893184959888458, -0.014848374761641026, 0.03445784002542496, 0.0022906572557985783, 0.030406560748815536, -0.02760392427444458, 0.05801329389214516, -0.008242318406701088, -0.005584341008216143, 0.015079263597726822, 0.025864655151963234, -0.03420816734433174, 0.045794352889060974, 0.023677483201026917, 0.010362179018557072, 0.03468753769993782, 0.04274609684944153, 0.037238284945487976, 0.06311416625976562, -0.029585078358650208, 0.015140021219849586, 0.01861821673810482, 0.00991380587220192, 0.0286111980676651, -0.017432449385523796, 0.029476864263415337, -0.006781940348446369, 0.03539473935961723, -0.012855349108576775, -0.02761630155146122, 0.04741115868091583, -0.02806728705763817, 0.01745785027742386, -0.021869299933314323, 0.013077795505523682, 0.022486217319965363, -0.008008945733308792, 0.047462064772844315, -0.02484581060707569, 0.021659493446350098, -0.022128921002149582, -0.032932866364717484, 0.0474248006939888, -0.02741696685552597, -0.02846597135066986, 0.025357412174344063, -0.0587308332324028, -0.02716132625937462, 0.002965069841593504, -0.001242846017703414, 0.03741290420293808, 0.006284269038587809, 0.05414631962776184, 0.02418619766831398, -0.052368227392435074, 0.03816041722893715, 0.008407803252339363, 0.02062695473432541, 0.0790233463048935, -0.0020304040517657995, 0.02415625937283039, -0.004097943659871817, -0.029336070641875267, -0.04582921788096428, 0.018863976001739502, -0.017286017537117004, 0.011930190958082676, 0.001535038580186665, 0.045735184103250504, 0.008854190818965435, -0.011951272375881672, 0.01740220934152603, -0.0024187404196709394, 0.01754159852862358, 0.033229079097509384, -0.0392039529979229, -0.01830383390188217, 0.0011098666582256556, 0.04859261214733124, -0.002163336146622896, 0.032542936503887177, -0.03899729251861572, 0.02636801265180111, -0.01382263470441103, -0.042307086288928986, 0.019919827580451965, -0.0004962272942066193, -0.0015543620102107525, 0.02268156222999096, 0.023505061864852905, 0.04132731258869171, 0.04077105596661568, -0.004173054825514555, 0.00685298815369606, 0.04979785904288292, -0.006490043364465237, -0.00008458825323032215, 0.02497907355427742, 0.045408204197883606, 0.000737048510927707, -0.016404643654823303, -0.017705218866467476, -0.036961909383535385, -0.034520670771598816, -0.016903512179851532, 0.0033872989006340504, 0.016736801713705063, -0.02973068505525589, 0.041777029633522034, 0.0010798395378515124, 0.005839209537953138, -0.01512729562819004, -0.03017077036201954, 0.0024336304049938917, -0.023943012580275536, -0.026556629687547684, 0.036850132048130035, -0.007844790816307068, 0.028958002105355263, -0.02064439468085766, -0.0330762080848217, 0.058972880244255066, 0.05573010444641113, -0.08756950497627258, 0.0028837358113378286, 0.03853938728570938, 0.018521441146731377, -0.027383720502257347, -0.015574712306261063, 0.0006864930619485676, 0.012923243455588818, -0.03264102339744568, 0.05316881835460663, 0.02390940487384796, -0.012010140344500542, 0.010551934130489826, 0.005612253677099943, 0.0405617393553257, 0.06739197671413422, -0.015286452136933804, -0.03497110307216644, 0.010073571465909481, 0.0821433812379837, -0.028968820348381996, -0.020663434639573097, 0.013499273918569088, 0.03728640452027321, 0.011253117583692074, 0.04878159984946251, 0.0547507107257843, 0.018972506746649742, 0.03760487586259842, 0.06916181743144989, -0.0165280532091856, 0.041890066117048264, -0.014734200201928616, 0.025941800326108932, 0.03715742379426956, 0.011008861474692822, 0.003948091063648462, 0.044980645179748535, -0.029086105525493622, 0.000624236068688333, -0.03858933970332146, 0.0036265538074076176, 0.023707794025540352, 0.06258450448513031, 0.01835603080689907, 0.037878554314374924, -0.006817115470767021, 0.018050365149974823, 0.03206939995288849, 0.061872243881225586, -0.010476658120751381, -0.007366107311099768, -0.003011721186339855, 0.01804412715137005, -0.032605186104774475, -0.0057237413711845875, 0.03212806582450867, 0.02332158386707306, 0.027526894584298134, 0.0292813703417778, -0.004401429556310177, -0.05227680504322052, -0.037460435181856155, -0.07381411641836166, -0.06010543927550316, -0.03916250914335251, -0.034913286566734314, -0.03738817572593689, 0.03725761920213699, -0.06202457472681999, 0.029550103470683098, -0.008096417412161827, -0.010627277195453644, -0.001657010056078434, -0.016213063150644302, 0.04120068997144699, 0.037435851991176605, 0.048873938620090485, -0.039151739329099655, 0.04140001907944679, -0.0016579946968704462, 0.028339166194200516, -0.055139727890491486, -0.022012313827872276, 0.018905239179730415, -0.005083170719444752, -0.00807590875774622, -0.01844959147274494, -0.021392082795500755, -0.0013085526879876852, -0.05670996755361557, -0.056331198662519455, 0.005693342071026564, -0.00017538580868858844, -0.010967682115733624, 0.009899272583425045, -0.05877241492271423, 0.032658010721206665, 0.04999701678752899, -0.04062703996896744, 0.02104678750038147, 0.054016124457120895, -0.03824732080101967, 0.028566189110279083, 0.05145568773150444, 0.030501140281558037, -0.05298403650522232, 0.05011998489499092, 0.02173767052590847, -0.0009231591830030084, -0.03537566214799881, -0.03294571489095688, -0.004493090324103832, -0.010637053288519382, 0.02743009850382805, -0.03465937077999115, -0.017327796667814255, 0.0626041442155838, 0.043882809579372406, -0.06197423115372658, 0.031211111694574356, -0.03338747099041939, -0.03525269031524658, -0.04965376481413841, -0.04368828982114792, 0.01883387565612793, 0.029878275468945503, 0.02439712919294834, -0.011071051470935345, -0.01599910855293274, 0.018088338896632195, -0.007275415584445, 0.05138298124074936, -0.032827094197273254, 0.027128582820296288, 0.03858662396669388, 0.013700483366847038, -0.008997616358101368, 0.0026875557377934456, -0.01873493753373623, -0.007155117113143206, 0.031286176294088364, -0.012467063963413239, 0.02458169311285019, 0.034679703414440155, 0.004133434966206551, 0.017063098028302193, 0.05756361037492752, -0.03927179053425789, -0.0015058262506499887, -0.01613451912999153, 0.049649424850940704, 0.03379844129085541, 0.008532479405403137, 0.009599486365914345, -0.008269434794783592, -0.018133455887436867, -0.057389408349990845, 0.03179192543029785, 0.0011843987740576267, 0.04382038488984108, -0.05942022427916527, 0.06540124118328094, -0.0002565425238572061, -0.03379043936729431, 0.03910458832979202, -0.05079071223735809, -0.0061228214763104916, 0.04038328677415848, 0.0037665872368961573, 0.04290975630283356, -0.03067384846508503, 0.009070148691534996, -0.0006297877989709377, -0.01390299666672945, 0.03785322606563568, 0.012105327099561691, 0.03989715129137039, -0.022367555648088455, -0.017748460173606873, 0.002543720416724682, -0.004204723052680492, 0.0013792571844533086, -0.0267169252038002, -0.012463395483791828, -0.02644098363816738, -0.035586804151535034, -0.0455031655728817, 0.05378196761012077, 0.022726330906152725, 0.024257175624370575, -0.012295790947973728, 0.06650230288505554, -0.0016995298210531473, 0.041719045490026474, 0.02595892734825611, -0.014923810958862305, 0.014128444716334343, -0.06445122510194778, 0.03908779099583626, 0.0008991098729893565, -0.016721408814191818, -0.033485475927591324, 0.0017096897354349494, -0.0009396476089023054, 0.012385771609842777, 0.016649514436721802, -0.04139753058552742, -0.013108822517096996, 0.007828285917639732, -0.019541922956705093, 0.042132724076509476, -0.037302080541849136, 0.008665427565574646, 0.030322957783937454, 0.07840225100517273, 0.009525001049041748, -0.03851970285177231, 0.017439812421798706, -0.04200578108429909, 0.03203883394598961, 0.05674436315894127, -0.01669090799987316, -0.03354222699999809, -0.03616053983569145, -0.024029303342103958, -0.005539526231586933, 0.005423662252724171, 0.052431441843509674, -0.006202624179422855, 0.01665036752820015, -0.0276288203895092, 0.024496445432305336, 0.047865770757198334, 0.010825157165527344, -0.026639439165592194, -0.014131874777376652, 0.006872438360005617, -0.02363741025328636, 0.0010744831524789333, -0.00707714818418026, -0.02738608792424202, 0.030986454337835312, -0.07088024914264679, -0.011043481528759003, 0.019606828689575195, -0.029595810920000076, -0.017464403063058853, 0.004889504052698612, 0.025068653747439384, 0.03164827078580856, -0.03230145201086998, 0.01638159155845642, 0.02373538166284561, 0.024237792938947678, -0.045421287417411804, -0.024361062794923782, 0.05086842551827431, -0.022977124899625778, -0.0001467032270738855, 0.014516053721308708, 0.028183136135339737, -0.025387102738022804, 0.018828686326742172, 0.029287105426192284, -0.04295407608151436, 0.06396801024675369, -0.025262419134378433, 0.011266292072832584, -0.020736590027809143, -0.031016068533062935, 0.023531781509518623, 0.0033648114185780287, 0.022737819701433182, -0.010937158949673176, -0.01911131665110588, -0.022851549088954926, -0.06047065928578377, -0.025406481698155403, -0.003184931119903922, -0.0390123575925827, 0.009611878544092178, -0.012684815563261509, -0.0048031285405159, -0.02757425419986248, 0.00724446028470993, 0.0018906162586063147, 0.029039325192570686, 0.008365401066839695, -0.002961847698315978, 0.003617296926677227, 0.010095737874507904, -0.006544220726937056, -0.015278945676982403, -0.0030210705008357763, 0.014388586394488811, 0.016075510531663895, -0.040391955524683, -0.0861622542142868, 0.0020072555635124445, -0.010667266324162483, -0.018966786563396454, -0.020987646654248238, 0.0007854893920011818, -0.003388524753972888, 0.013259354047477245, 0.06190616264939308, 0.017489386722445488, -0.0005620147567242384, 0.03431160748004913, -0.007856086827814579, 0.06504490971565247, 0.0347738042473793, -0.04099857434630394, -0.041228797286748886, 0.01885131746530533, -0.02421197108924389, 0.029577644541859627, 0.018258338794112206, -0.009348464198410511, -0.06885573267936707, -0.0595100037753582, 0.021338511258363724, -0.032985858619213104, 0.011566892266273499, -0.03942175582051277, -0.01891462504863739, -0.04039590805768967, 0.03352575749158859, 0.0282082911580801, 0.010068440809845924, 0.0016952912556007504, -0.02972797490656376, 0.006576349027454853, -0.03362945839762688, -0.02067122608423233, -0.02833326905965805, -0.017279846593737602, -0.00291816727258265, 0.057155393064022064, 0.015854014083743095, 0.02709363028407097, 0.005293580703437328, 0.016318298876285553, 0.017355574294924736, -0.02281053178012371, -0.053241223096847534, -0.0351576991379261, -0.013220964930951595, -0.02178664691746235, -0.017094478011131287, -0.02462819591164589, -0.008004843257367611, 0.06866622716188431, -0.030340954661369324, 0.0022105027455836535, -0.01414365042001009, -0.043405018746852875, -0.0008421878446824849, -0.04080870375037193, 0.029921095818281174, -0.021121272817254066, 0.001685969065874815, -0.01052684336900711, 0.039378710091114044, 0.027148332446813583, -0.034225545823574066, -0.02272534929215908, -0.017930185422301292, -0.02960905246436596, -0.07041995972394943, 0.013061650097370148, -0.025508876889944077, 0.003104940988123417, -0.040818024426698685, -0.037544723600149155, 0.05462205037474632, -0.011107586324214935, 0.05909179151058197, 0.04738263785839081, -0.025139611214399338, 0.013531025499105453, 0.005153471603989601, 0.014570542611181736, 0.032521650195121765, -0.030746307224035263, -0.005129607859998941, -0.05369127169251442, -0.03363390266895294, 0.006952047813683748, -0.045816224068403244, -0.03664631024003029, -0.06258583813905716, 0.024882886558771133, 0.08194635808467865, -0.0070448690094053745, 0.03535379841923714, -0.031409263610839844, -0.038170233368873596, -0.024765800684690475, 0.040220316499471664, -0.023405369371175766, 0.022567518055438995, 0.05597851425409317, -0.003975696861743927, -0.027728760614991188, 0.012085466645658016, -0.04380304738879204, -0.016056954860687256, -0.03534621745347977, 0.06558452546596527, -0.009548204019665718, -0.025733113288879395, 0.005690316203981638, 0.07326740771532059, -0.04969151318073273, -0.03297802060842514, 0.02274635247886181, 0.004937199875712395, 0.0003015636175405234, -0.05192524939775467, 0.003779380116611719, 0.03079129569232464, -0.008500594645738602, 0.009709956124424934, 0.03745158761739731, -0.010760587640106678, 0.040961336344480515, -0.014681505970656872, 0.02254430577158928, -0.029965968802571297, -0.007993635721504688, 0.01625649258494377, 0.0035372264683246613, -0.019942011684179306, -0.03305670619010925, -0.03071397729218006, -0.028037870302796364, -0.022993944585323334, 0.05240800604224205, -0.038222458213567734, -0.0005849423469044268, 0.014996115118265152, 0.0019586728885769844, 0.05898572504520416, 0.011828171089291573, -0.040609076619148254, 0.011519575491547585, -0.02414918877184391, -0.07519799470901489, -0.04223096743226051, 0.000689338834490627, 0.027862323448061943, 0.003885149024426937, -0.07684728503227234, 0.02658357098698616, 0.033800456672906876, -0.006384863518178463, -0.005368083715438843, -0.05137467011809349, -0.03951514512300491, -0.02732478640973568, -0.05910772085189819, -0.05954144895076752, -0.009553036652505398, 0.009445220232009888, 0.0316946804523468, -0.002261882880702615, -0.03463487699627876, 0.009785277768969536, 0.01372053474187851, -0.0018993919948115945, 0.0023519652895629406, -0.019112279638648033, -0.021806903183460236, -0.026859870180487633, -0.04410729929804802, -0.034358032047748566, -0.0036517574917525053, -0.011318085715174675, 0.016510335728526115, -0.021265462040901184, 0.027209322899580002, -0.0036459644325077534, 0.02238050289452076, -0.005589057691395283, -0.012925499118864536, -0.0085298428311944, -0.03470088914036751, 0.008387930691242218, 0.02995959483087063, 0.006767204962670803, 0.018766038119792938, 0.03205079212784767, 0.00048214485286735, 0.03014700673520565, -0.04800494387745857, -0.02530980482697487, 0.00908186286687851, 0.03167516738176346, -0.0005469258758239448, 0.0012113302946090698, -0.04455794766545296, -0.013714899308979511, -0.005981693509966135, -0.05482184514403343, 0.007455729879438877, -0.01449712086468935, 0.02442273125052452, -0.005725575610995293, -0.02225128747522831, -0.000820860150270164, 0.04812728613615036, -0.007202941458672285, 0.00818267185240984, -0.005190903786569834, 0.02886674925684929, 0.006577957887202501, 0.009246240369975567, 0.0041829803958535194, 0.01490788348019123, 0.042485713958740234, -0.016536924988031387, 0.0080697787925601, -0.0009639635100029409, -0.034706372767686844, 0.03832517936825752, -0.01921461522579193, -0.023949099704623222, -0.045303769409656525, -0.021739963442087173, -0.03079434111714363, 0.03851304203271866, 0.017252910882234573, -0.020759951323270798, 0.020246079191565514, -0.0274464450776577, -0.023266971111297607, 0.03654489293694496, -0.05656755715608597, -0.019438238814473152, 0.04353981465101242, -0.03633592277765274, -0.037940505892038345, -0.026828670874238014, -0.04609094560146332, -0.008153418079018593, -0.027635779231786728, 0.009648124687373638, -0.05148955434560776, 0.008784668520092964, 0.026865867897868156, 0.024708548560738564, 0.0016126618720591068, -0.005554891657084227, 0.001612470718100667, 0.052181582897901535, -0.05446285754442215, -0.043558619916439056, 0.018495796248316765, 0.023620814085006714, 0.01743297651410103, -0.02117215283215046, 0.012982530519366264, -0.01833328977227211, -0.019658973440527916, 0.004897237755358219, 0.006130930967628956, -0.0177944116294384, 0.016345972195267677, -0.017812324687838554, -0.031246529892086983, 0.02244597300887108, -0.020208260044455528, 0.04146215319633484, -0.02331998385488987, -0.046849846839904785, -0.050416458398103714, 0.01104738563299179, 0.019944164901971817, -0.0357620045542717, 0.04012828320264816, -0.0009435563697479665, 0.049066752195358276, -0.0061670150607824326, 0.000565709313377738, -0.017586873844265938, 0.033175189048051834, 0.0337667390704155, 0.04023805260658264, 0.016376595944166183, 0.030178749933838844, 0.04077427089214325, 0.018271256238222122, -0.0026734089478850365, 0.06556358188390732, 0.017421510070562363, -0.022415494546294212, -0.012825751677155495, -0.018296118825674057, 0.025266263633966446, 0.02298518270254135, -0.00940382108092308, 0.027421072125434875, -0.06116192415356636, -0.0049711475148797035, -0.03118954598903656, -0.011751827783882618, 0.04090384021401405, -0.03122842311859131, 0.03927909582853317, 0.0027066336479038, -0.030464328825473785, -0.018346503376960754, 0.0608222670853138, 0.019035764038562775, 0.011720208451151848, 0.03989236429333687, 0.03489936143159866, 0.031895656138658524, 0.026485644280910492, 0.013064801692962646, 0.02039605937898159, -0.03591655194759369, 0.01861218921840191, 0.022107228636741638, -0.0075354622676968575, -0.04871818423271179, 0.009129530750215054, -0.0399758405983448, 0.023274201899766922, -0.020362040027976036, -0.011763671413064003, 0.0667259618639946, -0.067247673869133, -0.020038049668073654, -0.03644758090376854, 0.0388278029859066, -0.03267168626189232, -0.010981377214193344, 0.03554961457848549, -0.028179479762911797, -0.04605212062597275, 0.043547261506319046, -0.022328754886984825, 0.03195203095674515, 0.03706197068095207, 0.0047608898021280766, 0.018076786771416664, 0.046461813151836395, 0.03554416075348854, -0.041296157985925674, -0.005682478658854961, 0.01841040328145027, -0.014210906811058521, -0.03303021192550659, -0.023198645561933517, -0.04271439462900162, -0.025891337543725967, -0.022958027198910713, -0.02025076188147068, -0.014792723581194878, 0.03127451241016388, -0.02278400957584381, -0.03968740627169609, 0.020212596282362938, 0.03388810157775879, -0.02660960517823696, 0.014782549813389778, 0.01889379695057869, 0.02270020730793476, -0.003922478761523962, -0.019025027751922607, -0.018135853111743927, -0.019376659765839577, 0.002847135066986084, -0.054126154631376266, 0.03913455829024315, -0.008348055183887482, -0.020566925406455994, -0.0445219911634922, -0.049469541758298874, -0.020124437287449837, 0.006168407388031483, -0.041564229875802994, -0.03612152859568596, 0.02444760501384735, 0.04846535250544548, -0.02705421857535839, -0.015269973315298557, -0.03813663870096207, -0.0021913794334977865, 0.0259512048214674, 0.04452447220683098, -0.02263795956969261, 0.026513757184147835, -0.010385396890342236, -0.0077125090174376965, -0.003869740292429924, -0.017330005764961243, 0.031240833923220634, 0.0008005308918654919, -0.025682494044303894, -0.010876390151679516, 0.03475537896156311, -0.019085081294178963, -0.06107145547866821, -0.010281499475240707, 0.015206830576062202, 0.040331192314624786, -0.030216166749596596, -0.06179133430123329, -0.008538903668522835, -0.03887604922056198, -0.01834183745086193, -0.05187833309173584, 0.014271078631281853, -0.007656548637896776, 0.0015889768255874515, 0.008562770672142506, -0.06903113424777985, 0.14512774348258972, 0.03560059145092964, 0.017497096210718155, 0.031809546053409576, 0.012974717654287815, 0.05802102014422417, 0.036201316863298416, -0.006220480427145958, -0.016507936641573906, -0.02437685616314411, 0.023363741114735603, 0.02077542431652546, 0.016647102311253548, 0.008645433932542801, -0.0021190179977566004, 0.06640613824129105, -0.039230234920978546, -0.011806914582848549, 0.03623863682150841, -0.04840235784649849, -0.0486719086766243, 0.007417297922074795, -0.029947923496365547, 0.02630145661532879, 0.01911323331296444, 0.006033571437001228, 0.014543653465807438, -0.050407011061906815, 0.03154554218053818, 0.0039937118999660015, 0.039912689477205276, -0.061031416058540344, 0.0399310365319252, -0.02263420820236206, -0.019916202872991562, 0.025875961408019066, 0.023572396486997604, -0.029304593801498413, 0.004398433491587639, 0.04738220199942589, -0.027102161198854446, -0.019585266709327698, 0.03312269225716591, -0.04305752366781235, 0.017316283658146858, 0.03502630069851875, -0.06353258341550827, 0.04561908170580864, 0.02489338628947735, -0.0345749631524086, 0.03086356818675995, -0.01717844232916832, 0.002912023337557912, 0.01084600854665041, -0.03676716610789299, 0.03349030762910843, 0.006883274298161268, -0.02239503525197506, -0.0023171859793365, -0.037691712379455566, 0.03847004845738411, 0.010623539797961712, -0.04662415385246277, 0.03324982896447182, -0.012667622417211533, 0.03810300678014755, 0.045799605548381805, 0.011860765516757965, -0.007060651201754808, -0.01102958433330059, -0.02554604411125183, 0.00043609380372799933, -0.03841257095336914, -0.026089651510119438, 0.02480585314333439, 0.03967763110995293, -0.016092851758003235, 0.06419192999601364, -0.011978927999734879, -0.012118718586862087, 0.0018829143373295665, -0.05027397722005844, -0.005867317318916321, -0.011694686487317085, 0.042230185121297836, 0.05191090330481529, -0.044075850397348404, -0.03508646786212921, -0.039289336651563644, 0.06463296711444855, 0.0407576784491539, 0.032720897346735, -0.003802345832809806, 0.021617760881781578, -0.007159518543630838 ]
La coupe du monde de saut d'obstacles 2003-2004 est la de la coupe du monde de saut d'obstacles organisée par la FEI. La finale se déroule à Milan (Italie), du au . Ligues Classement après la finale Notes et références Coupe du monde de saut d'obstacles Équitation en 2003 Équitation en 2004
[ -0.02333090826869011, -0.000005473047622217564, -0.013864145614206791, 0.005318169482052326, -0.007266149390488863, 0.00917030405253172, -0.004840934183448553, 0.028462747111916542, 0.0212627574801445, 0.0026081788819283247, 0.03931036591529846, 0.016718218103051186, -0.016980353742837906, -0.03908791020512581, -0.016608495265245438, 0.004613446071743965, -0.039384160190820694, -0.050355441868305206, -0.04987414926290512, 0.006818260997533798, -0.011354540474712849, -0.001497287885285914, -0.07736138254404068, -0.029263295233249664, -0.022731000557541847, 0.02778344415128231, 0.029704608023166656, 0.006209917366504669, 0.0688769593834877, 0.046512313187122345, 0.00660610431805253, -0.03320865333080292, -0.005967910401523113, -0.02413604035973549, -0.019723327830433846, -0.036354564130306244, 0.04807521402835846, -0.0574420727789402, -0.02772090956568718, -0.038341253995895386, -0.0006240044021978974, -0.011853102594614029, 0.010385162197053432, -0.03456250578165054, -0.03737165778875351, -0.008506267331540585, -0.007613851223140955, -0.03259545564651489, 0.002690952504053712, -0.05126652494072914, 0.014025556854903698, 0.00792483426630497, 0.03394253924489021, -0.007281944155693054, 0.0027094639372080564, 0.04236893355846405, -0.006186756305396557, -0.02705485373735428, -0.05426706373691559, 0.03336825594305992, 0.02571221813559532, 0.027607865631580353, 0.027770930901169777, -0.038174085319042206, 0.032071374356746674, -0.004412055481225252, 0.015735728666186333, 0.006313648074865341, 0.015800273045897484, -0.05063473433256149, -0.02478412352502346, -0.0011111476924270391, -0.04959872364997864, 0.002693692222237587, -0.03223060071468353, 0.000738553237169981, -0.003222797764465213, 0.015754707157611847, -0.004915652330964804, 0.025029782205820084, 0.030333183705806732, 0.057941045612096786, 0.006319255102425814, 0.017130615189671516, -0.04616376385092735, -0.04143235459923744, -0.0032989622559398413, 0.019080251455307007, 0.00776622025296092, 0.020501304417848587, -0.015576619654893875, 0.030354589223861694, -0.009753561578691006, -0.012827620841562748, 0.020469404757022858, 0.03561132773756981, -0.01569872349500656, 0.03162582218647003, 0.003317330963909626, -0.038027651607990265, 0.03891852870583534, 0.034541476517915726, -0.015650002285838127, 0.029541118070483208, -0.04343223199248314, -0.0031004862394183874, -0.013594089075922966, -0.012139800004661083, -0.012582319788634777, -0.04770493879914284, 0.01734391413629055, -0.03687630221247673, 0.0202193446457386, -0.0035892799496650696, 0.01129775121808052, 0.04703652858734131, -0.02468990348279476, 0.03310191258788109, -0.032240744680166245, 0.03587150201201439, 0.0056634158827364445, -0.025421911850571632, 0.03996945917606354, -0.01876898668706417, 0.013413162901997566, -0.03709960728883743, -0.03506169468164444, 0.050373997539281845, -0.03990742191672325, 0.013615947216749191, -0.00776686379685998, -0.04517436772584915, -0.018596217036247253, -0.001224938896484673, -0.0342986024916172, 0.02721867524087429, -0.015495195984840393, 0.03477068245410919, 0.050864093005657196, -0.05076403170824051, 0.09126954525709152, 0.03848189860582352, 0.013295669108629227, 0.0743536651134491, 0.019567735493183136, 0.0411902591586113, 0.001719265477731824, 0.00956961140036583, -0.03139970824122429, 0.01865365169942379, -0.054977115243673325, -0.0012946161441504955, 0.011344603262841702, 0.016461588442325592, 0.003910152241587639, 0.00032078856020234525, -0.011402047239243984, -0.001166678499430418, 0.03802204877138138, 0.008772492408752441, -0.027894992381334305, 0.03603876009583473, -0.021607637405395508, 0.04829537868499756, 0.0021108996588736773, 0.024721845984458923, -0.02989969402551651, -0.0036127017810940742, -0.007361049298197031, -0.0438070148229599, 0.03194146603345871, -0.025981534272432327, 0.0002624622720759362, 0.0018988342490047216, 0.029136432334780693, 0.03755449503660202, 0.04056020826101303, -0.01244635134935379, 0.052907682955265045, 0.07308435440063477, -0.030215177685022354, -0.0026119579561054707, 0.006328846327960491, 0.060593895614147186, 0.008312187157571316, 0.026638958603143692, 0.0033108459319919348, -0.018909690901637077, -0.017636898905038834, -0.03630939871072769, 0.033094294369220734, 0.022170184180140495, -0.032316986471414566, 0.03154913708567619, 0.0028790594078600407, -0.012518343515694141, -0.002063121646642685, 0.015061646699905396, -0.006940778810530901, -0.03442816436290741, -0.042804867029190063, 0.06503590196371078, -0.048167258501052856, 0.021412542089819908, 0.011975855566561222, -0.019001858308911324, 0.0049123018980026245, 0.048822399228811264, -0.021045956760644913, -0.021983716636896133, 0.03183665871620178, -0.009434768930077553, 0.011273452080786228, 0.012724933214485645, 0.017132019624114037, -0.01625802367925644, -0.0019701425917446613, 0.061757560819387436, -0.007202745880931616, -0.004186833743005991, 0.0005708725657314062, 0.047009337693452835, 0.009174729697406292, 0.049523741006851196, 0.009015574119985104, 0.006608797237277031, -0.010009609162807465, 0.06793506443500519, -0.0081834327429533, 0.0011245649075135589, 0.011960448697209358, 0.052832573652267456, 0.03341693803668022, 0.04772842302918434, 0.05646250396966934, -0.008375302888453007, 0.06596467643976212, 0.051271721720695496, -0.007654157467186451, 0.025991788133978844, -0.0021563367918133736, 0.006791703402996063, 0.057454243302345276, 0.03699073940515518, -0.010471157729625702, 0.044811710715293884, 0.00556622538715601, -0.0027394185308367014, 0.0037885289639234543, 0.02514205500483513, -0.017660323530435562, 0.033975254744291306, -0.01432123500853777, 0.014280757866799831, -0.04787299036979675, -0.001668376149609685, 0.023620272055268288, 0.029171578586101532, -0.03737723454833031, -0.03137540444731712, -0.012311608530580997, 0.018514852970838547, 0.01149718277156353, 0.012040435336530209, 0.02888624370098114, 0.04993858188390732, 0.010256152600049973, 0.020190883427858353, -0.0060060396790504456, -0.06016431003808975, -0.025009773671627045, -0.05296231061220169, -0.08029601722955704, -0.04607323184609413, -0.04947512596845627, -0.006005819886922836, 0.027310686185956, -0.014135369099676609, 0.024805119261145592, 0.006162562407553196, -0.015488898381590843, -0.017235450446605682, -0.027852535247802734, 0.07329688966274261, -0.014694079756736755, 0.03122568503022194, -0.030963677912950516, 0.04763854295015335, -0.015268594957888126, 0.019774559885263443, -0.018340200185775757, -0.03582661971449852, -0.0046104867942631245, -0.014799163676798344, 0.02095225639641285, -0.0119498111307621, 0.00528873223811388, -0.008140891790390015, -0.013144266791641712, -0.07368253916501999, -0.01980741322040558, 0.014540096744894981, 0.008014512248337269, 0.012694989331066608, -0.0460834726691246, 0.043261636048555374, 0.0411665253341198, -0.05326163023710251, 0.05139632150530815, 0.028101634234189987, -0.04289068654179573, 0.03235398232936859, 0.05583398416638374, 0.0053842198103666306, -0.050501249730587006, 0.061768803745508194, 0.0644572377204895, 0.015273559838533401, -0.028112035244703293, -0.0185057632625103, -0.034263256937265396, 0.01950332522392273, 0.02849458158016205, -0.0334288626909256, -0.012859669514000416, 0.05815732479095459, 0.037271562963724136, -0.08339852839708328, 0.03285709023475647, -0.02117316424846649, -0.0459335558116436, -0.04239087924361229, -0.04162570834159851, 0.0046332161873579025, -0.00024321071396116167, 0.006494684144854546, -0.015735330060124397, -0.003500640392303467, -0.006407466717064381, 0.024419918656349182, 0.01535556185990572, -0.013058952055871487, 0.017722006887197495, 0.045688971877098083, 0.009712533093988895, 0.0179735217243433, 0.007294605486094952, -0.02692210115492344, 0.027964472770690918, 0.027176083996891975, -0.03226899728178978, 0.03068893775343895, 0.039811860769987106, -0.014838891103863716, 0.012979255989193916, 0.036862220615148544, -0.006453026086091995, -0.004493423737585545, 0.007861443795263767, 0.026890954002738, 0.027751963585615158, -0.0034747032914310694, 0.015686212107539177, 0.008457712829113007, -0.05024547874927521, -0.06338392943143845, 0.011044083163142204, 0.031652551144361496, 0.062469497323036194, -0.060224439948797226, 0.05219658836722374, 0.0010681158164516091, -0.008867320604622364, 0.02482539601624012, -0.03885510936379433, 0.002188192680478096, 0.04828975722193718, 0.01932913437485695, 0.031592950224876404, -0.032723866403102875, 0.021843409165740013, -0.027308879420161247, 0.018909191712737083, 0.028563905507326126, 0.030462807044386864, 0.024580253288149834, -0.01363244280219078, 0.015369816683232784, -0.016444120556116104, -0.010453912429511547, 0.007378809619694948, -0.026730109006166458, 0.02250337414443493, 0.009421241469681263, -0.021578077226877213, -0.040227003395557404, 0.06769298017024994, 0.02461736463010311, 0.038752831518650055, -0.02311883494257927, 0.030453737825155258, -0.002359122969210148, 0.026183560490608215, 0.03559543937444687, -0.02626919187605381, -0.003924121614545584, -0.03290113806724548, 0.06998474150896072, 0.0030779256485402584, -0.026551639661192894, -0.026146061718463898, -0.025328271090984344, -0.020418934524059296, 0.030799418687820435, 0.018710235133767128, -0.010258177295327187, -0.04119233042001724, 0.033663198351860046, -0.030451511964201927, 0.01664476841688156, -0.028398379683494568, -0.01904037967324257, -0.0055349720641970634, 0.049081433564424515, -0.010665184818208218, -0.07189526408910751, -0.00002658423727552872, -0.0602397583425045, 0.018251951783895493, 0.042543958872556686, 0.0077489628456532955, -0.014507993124425411, -0.04855634644627571, -0.020909642800688744, -0.03622585907578468, 0.008671908639371395, 0.01952931098639965, -0.00995779037475586, -0.012631830759346485, -0.041779711842536926, 0.03274393081665039, 0.0032416158355772495, 0.00754034286364913, -0.012642030604183674, 0.028825020417571068, 0.01501245703548193, -0.007985654287040234, 0.029655586928129196, -0.01119181141257286, -0.02905767597258091, 0.03067898377776146, -0.03842724487185478, -0.006853046827018261, -0.0030181854963302612, -0.0027164616622030735, -0.022307084873318672, -0.018201664090156555, -0.002070011803880334, 0.017494266852736473, 0.009221547283232212, -0.014192505739629269, -0.020246699452400208, 0.03186329826712608, -0.03804481774568558, -0.03273095190525055, 0.05860454589128494, -0.008948469534516335, 0.0019358518766239285, 0.025994915515184402, 0.018374240025877953, -0.007405845448374748, -0.01949036680161953, 0.045552074909210205, -0.013992516323924065, 0.00462896004319191, -0.04427463188767433, -0.010642201639711857, -0.017298327758908272, -0.07138971239328384, 0.04612185060977936, -0.06265004724264145, 0.051041264086961746, -0.004261189606040716, -0.010457436554133892, -0.04296136647462845, -0.05884050205349922, -0.02717815525829792, 0.0014149920316413045, 0.0052498504519462585, 0.024331722408533096, -0.0068466938100755215, -0.025666896253824234, -0.03043876402080059, -0.011493508704006672, -0.03568881005048752, 0.0060060336254537106, -0.0028484195936471224, 0.026185525581240654, 0.008686085231602192, 0.006974764633923769, -0.001517275464721024, -0.014777803793549538, -0.03428636118769646, 0.00975707732141018, 0.014140591025352478, -0.02781822346150875, -0.034777723252773285, -0.019696205854415894, -0.04697789251804352, -0.012842662632465363, -0.028526809066534042, 0.011931333690881729, -0.01941298134624958, 0.03759782388806343, 0.022085364907979965, 0.009794087149202824, 0.0029366689268499613, 0.007962998934090137, -0.02671760693192482, 0.04497859254479408, 0.016338936984539032, -0.03418344631791115, -0.004635182209312916, 0.038305699825286865, 0.007541649043560028, 0.031208209693431854, -0.016673697158694267, -0.017659276723861694, -0.023305533453822136, -0.05968044698238373, -0.016347356140613556, -0.05024045705795288, -0.0020156241953372955, -0.04778507351875305, -0.024558555334806442, -0.005002216901630163, 0.02923709526658058, 0.028378749266266823, -0.02346363663673401, 0.026691948994994164, -0.06628000736236572, 0.014385557733476162, -0.039055824279785156, -0.03325558453798294, -0.016677478328347206, -0.01790773682296276, 0.00032602439750917256, 0.04450582340359688, -0.016535840928554535, 0.041569825261831284, 0.04170713573694229, 0.012112637050449848, 0.015142449177801609, -0.019026948139071465, -0.03238679841160774, -0.030900830402970314, 0.02461504563689232, -0.017470326274633408, -0.015645766630768776, -0.015334004536271095, -0.0032399913761764765, 0.04802432283759117, -0.03554830327630043, -0.01851786859333515, -0.007233846466988325, -0.010628980584442616, 0.02091635763645172, -0.02345045655965805, 0.07473333179950714, -0.015666475519537926, 0.014504377730190754, -0.005699007771909237, 0.06394880264997482, 0.04797081649303436, -0.001363588497042656, -0.03971049189567566, -0.009027108550071716, -0.017976637929677963, -0.08536507934331894, 0.03529380261898041, -0.008441259153187275, -0.0004035049641970545, -0.028558457270264626, -0.02266492135822773, 0.058151911944150925, 0.008366216905415058, 0.048536546528339386, 0.04258044436573982, 0.006516157183796167, 0.015795351937413216, -0.01793750561773777, 0.019867438822984695, 0.039303120225667953, -0.029353106394410133, -0.02062780037522316, 0.009199555031955242, -0.05122597515583038, 0.0489526204764843, -0.045930542051792145, -0.03468478098511696, -0.05249904468655586, -0.013806006871163845, 0.06415225565433502, -0.017679937183856964, 0.05548026040196419, -0.016120174899697304, -0.041719045490026474, -0.05894848331809044, 0.05330223962664604, -0.020639201626181602, 0.02133697085082531, 0.06899484992027283, 0.0011700749164447188, 0.004674650728702545, 0.006371327675879002, 0.016146263107657433, 0.010070162825286388, -0.03593820706009865, 0.05547356978058815, -0.01765470765531063, -0.05928770825266838, 0.03840936720371246, 0.03624024987220764, -0.04988517984747887, -0.04436006024479866, -0.010740384459495544, 0.01109515130519867, 0.014902484603226185, -0.003336813999339938, 0.013832742348313332, 0.0009753229096531868, -0.013358279131352901, 0.006468316074460745, 0.02604258805513382, 0.0030803123954683542, 0.059210799634456635, -0.007505407091230154, 0.030928684398531914, -0.05501881241798401, 0.0034222903195768595, 0.020569561049342155, -0.02699257805943489, -0.01715579815208912, -0.02940448746085167, -0.01337418518960476, -0.0043318141251802444, -0.014765831641852856, 0.00833431351929903, -0.0017984044970944524, 0.0026591853238642216, 0.02810138650238514, -0.005687367171049118, 0.036230918020009995, -0.039220213890075684, -0.023348955437541008, 0.019856678321957588, -0.02546209655702114, -0.05805208161473274, -0.035326458513736725, 0.022119861096143723, 0.0029641566798090935, 0.04299379885196686, -0.0438254214823246, 0.021451571956276894, 0.04186839610338211, 0.01828889176249504, -0.009215852245688438, -0.06123293191194534, -0.045350078493356705, -0.03391430899500847, -0.03167451545596123, -0.015015235170722008, -0.01846335269510746, -0.0013924447121098638, 0.045505523681640625, -0.008149187080562115, -0.02092922292649746, -0.008719884790480137, 0.01664471998810768, -0.009840101934969425, 0.025405768305063248, -0.021248582750558853, 0.010519242845475674, -0.05018502101302147, -0.044650666415691376, -0.024862945079803467, -0.008956842124462128, -0.006310376804322004, 0.01626911759376526, -0.01763024739921093, 0.021384699270129204, 0.0372171625494957, 0.041518181562423706, 0.010465906001627445, 0.03919130936264992, -0.011399578303098679, -0.048083920031785965, -0.027616165578365326, -0.0037344368174672127, -0.016730260103940964, 0.03740350157022476, 0.043262943625450134, -0.003552905283868313, 0.043095048516988754, -0.00008430027082795277, -0.011482526548206806, -0.024791542440652847, -0.030035628005862236, 0.02479143813252449, 0.025485027581453323, -0.02331787906587124, -0.029157735407352448, -0.04177884757518768, -0.012571427971124649, 0.04561816528439522, -0.006312443409115076, 0.026405785232782364, 0.007770593743771315, -0.026784365996718407, -0.00931214727461338, 0.06943533569574356, -0.042174190282821655, 0.04661586880683899, 0.0008974237134680152, 0.05127587914466858, 0.021228427067399025, -0.021188270300626755, 0.01619151048362255, 0.067341148853302, 0.044318508356809616, -0.03505631163716316, 0.030522065237164497, -0.013481722213327885, -0.003461693413555622, 0.03357550874352455, -0.0005566474865190685, -0.013363176956772804, -0.03998422250151634, -0.05398128181695938, 0.011600672267377377, 0.040650624781847, 0.008606624789536, 0.02574465423822403, 0.039209477603435516, -0.016026144847273827, -0.070998415350914, 0.033652134239673615, -0.050944067537784576, -0.0004712820518761873, 0.027925873175263405, -0.03200487419962883, -0.003532255068421364, 0.0005793120944872499, -0.06880923360586166, 0.012164547108113766, -0.024947380647063255, -0.04681341350078583, -0.018765058368444443, 0.03054075501859188, -0.004811261314898729, 0.04791828989982605, -0.0050082942470908165, -0.03928406164050102, 0.020994367077946663, 0.04156221076846123, -0.0613776296377182, -0.056817714124917984, 0.017874695360660553, 0.047048088163137436, -0.0042754472233355045, -0.014532983303070068, 0.006639337167143822, -0.0077556646429002285, -0.01641157642006874, -0.022524859756231308, 0.01657535694539547, 0.016349731013178825, -0.020934822037816048, 0.024548443034291267, 0.011126643978059292, -0.0014414822217077017, -0.016304604709148407, 0.038591522723436356, -0.02815360762178898, -0.03524396941065788, -0.05120483413338661, 0.037549279630184174, 0.03015044890344143, -0.003032104577869177, 0.03864602372050285, 0.04154152050614357, 0.026741325855255127, -0.007964668795466423, 0.007620035670697689, -0.006150994449853897, 0.01694507896900177, 0.019589772447943687, 0.024579666554927826, -0.025464128702878952, 0.030516115948557854, 0.041912566870450974, 0.01640896312892437, -0.018287379294633865, 0.03685068339109421, -0.0012820541160181165, -0.024112621322274208, 0.019327597692608833, -0.027971483767032623, 0.007292123045772314, 0.012647976167500019, -0.014147882349789143, 0.01131653506308794, -0.04378940910100937, 0.014610708691179752, -0.0003975403669755906, 0.015492619946599007, 0.04459543898701668, -0.015055195428431034, 0.01584116369485855, -0.00297446153126657, -0.05252894014120102, 0.000853759003803134, 0.01268547773361206, 0.019627420231699944, -0.015378371812403202, 0.03459117189049721, 0.029886417090892792, -0.012387539260089397, 0.05077749118208885, 0.03162390738725662, 0.0054921954870224, -0.015915727242827415, 0.026272226125001907, 0.011360143311321735, 0.030260246247053146, -0.05250567942857742, -0.00838346779346466, -0.04637043923139572, 0.02392784133553505, -0.017492447048425674, -0.016558602452278137, 0.03431416675448418, -0.04385323077440262, -0.026913510635495186, -0.03736889362335205, 0.01947575807571411, -0.04146559536457062, -0.008604627102613449, 0.011259881779551506, -0.013145949691534042, -0.007108844816684723, 0.04780902713537216, -0.011386167258024216, 0.03254865109920502, 0.011268774047493935, 0.0460200235247612, -0.019458726048469543, 0.017599381506443024, 0.0275465976446867, -0.047508422285318375, -0.014090413227677345, 0.01539646927267313, -0.02710294909775257, -0.056493859738111496, -0.03396239131689072, -0.05317346379160881, -0.01190136093646288, 0.0009280304657295346, -0.03536637872457504, 0.009352968074381351, 0.045222360640764236, 0.0009016079711727798, -0.04991316795349121, -0.012717040255665779, 0.030245399102568626, -0.0583794005215168, 0.024350257590413094, 0.024633480235934258, 0.04390886798501015, 0.005739833693951368, -0.0105604138225317, -0.0377451628446579, -0.047892648726701736, 0.009988781064748764, -0.06571806222200394, 0.0486433207988739, -0.008543466217815876, -0.010476833209395409, -0.03678297623991966, -0.04182407259941101, -0.01206139475107193, -0.010581228882074356, -0.01432549674063921, -0.042218998074531555, 0.048613291233778, 0.039926160126924515, 0.0026031280867755413, 0.000055951688409550115, -0.039465051144361496, -0.004138850141316652, 0.03166491165757179, 0.07176993787288666, 0.02160884439945221, 0.009148603305220604, 0.02711816504597664, -0.015132025815546513, 0.0022518460173159838, -0.056885749101638794, 0.034442637115716934, -0.01080345455557108, -0.02521459385752678, -0.039351433515548706, 0.02518395707011223, -0.02548709698021412, -0.03723085671663284, -0.015354559756815434, -0.009128821082413197, 0.024200303480029106, -0.05352428928017616, -0.06652673333883286, 0.003917102236300707, -0.03287110850214958, 0.011437748558819294, -0.04299880936741829, 0.030943961814045906, 0.032607078552246094, -0.03260974958539009, 0.0043758731335401535, -0.03842388093471527, 0.14199447631835938, 0.03585756570100784, 0.02140556462109089, 0.0030128699727356434, 0.02000650390982628, 0.012782871723175049, -0.009129428304731846, -0.038349539041519165, 0.018477506935596466, -0.01385970413684845, 0.04661700874567032, 0.006400593090802431, 0.02114834077656269, 0.0017185769975185394, 0.0074883634224534035, 0.053051311522722244, -0.04528331756591797, 0.004517958499491215, 0.04830590635538101, -0.06515927612781525, -0.04059157520532608, 0.04701633378863335, -0.003976384177803993, 0.001151219243183732, 0.0077295308001339436, 0.009218059480190277, 0.04510414972901344, -0.06036156415939331, -0.025528287515044212, -0.004767004866153002, 0.013958695344626904, -0.019318977370858192, 0.020179912447929382, -0.00036107777850702405, -0.026688139885663986, 0.03463251516222954, 0.02140139602124691, -0.025426426902413368, -0.016263622790575027, 0.03778299316763878, -0.004070874769240618, -0.0008914315840229392, 0.05038975924253464, -0.05020312964916229, 0.01559043861925602, 0.025643354281783104, -0.032925840467214584, 0.0018591139232739806, 0.004024459980428219, -0.03645079582929611, 0.04219921678304672, -0.02634422853589058, 0.019255125895142555, -0.011737346649169922, -0.05268983542919159, -0.0024632078129798174, -0.025509124621748924, -0.018188118934631348, 0.00863092765212059, 0.008097508922219276, 0.040095388889312744, 0.01515384204685688, -0.019296253100037575, 0.0061010937206447124, -0.03997568413615227, 0.02638881281018257, 0.047043751925230026, -0.002382800681516528, -0.018260544165968895, -0.029105236753821373, -0.023803574964404106, -0.039120133966207504, -0.02434023655951023, -0.042368847876787186, 0.025537924841046333, 0.053263917565345764, -0.01930423639714718, 0.03323585167527199, -0.00031284260330721736, -0.04618586599826813, -0.0004236687673255801, -0.040427904576063156, 0.010427674278616905, -0.03654795140028, 0.01059451512992382, 0.03340815752744675, -0.039940714836120605, -0.02596137672662735, -0.01658768579363823, 0.057111017405986786, 0.044002365320920944, 0.06759141385555267, -0.02752554975450039, -0.012873844243586063, 0.0072353496216237545 ]
$(function() { // Initialize the parallax feature $( '.parallax' ).parallax(); // Hide the extra content programmatically so it's still visible when the user has JS disabled $( '#fullstory' ).hide(); // Clicking on the "read the full story" button shows more text $( '#read-full-story' ).show().on( 'click', function() { $( this ).slideUp(); // hide the button $( '#fullstory' ).slideDown(); }); // Re-show the page when we're ready $( '.no-fouc' ).removeClass( 'no-fouc' ); });
[ 0.0005920821567997336, 0.009271608665585518, -0.003155188634991646, -0.0036523554008454084, -0.004329980351030827, 0.024624720215797424, -0.030830949544906616, 0.043499283492565155, 0.03819363936781883, 0.030171353369951248, 0.019906358793377876, -0.00035735697019845247, 0.008209100924432278, -0.003343061776831746, -0.03177487105131149, 0.010333050042390823, -0.04591419920325279, -0.041542451828718185, -0.030747858807444572, 0.0023055453784763813, -0.029652798548340797, 0.03198394179344177, -0.07735104858875275, -0.039112962782382965, -0.03873644024133682, 0.04099731147289276, 0.0026450417935848236, -0.020721392706036568, 0.05135169252753258, 0.05752105638384819, -0.019529588520526886, -0.039361655712127686, 0.027326025068759918, -0.0360715314745903, -0.02155097760260105, 0.010679916478693485, 0.04170965403318405, -0.044408027082681656, -0.027462782338261604, -0.035646528005599976, 0.01948731765151024, -0.00007073579035932198, 0.03565257415175438, -0.05883227661252022, -0.020929094403982162, 0.002565516857430339, -0.0012153943534940481, -0.01790923997759819, 0.006293953862041235, -0.007569069042801857, 0.025606300681829453, -0.017718156799674034, -0.00377814588136971, -0.010275326669216156, -0.017549559473991394, 0.009260010905563831, -0.009409994818270206, -0.025871645659208298, -0.029576674103736877, 0.04719780385494232, 0.03682279214262962, 0.031575776636600494, 0.023736203089356422, -0.0720067173242569, 0.03182585909962654, 0.05005283281207085, -0.008901478722691536, -0.005527417175471783, 0.017390353605151176, -0.007393289357423782, -0.0038331467658281326, -0.014541827142238617, -0.001236416632309556, -0.029757147654891014, -0.018295200541615486, 0.016930975019931793, -0.016962269321084023, 0.002725064055994153, 0.006801592651754618, 0.03721500560641289, -0.01571677438914776, 0.02476898767054081, -0.00849937554448843, 0.014991845935583115, -0.07771297544240952, -0.03220368176698685, 0.00732301315292716, 0.018187182024121284, -0.020937882363796234, -0.009580161422491074, -0.0022562185768038034, 0.054485250264406204, -0.015427064150571823, -0.011252469383180141, 0.03897199407219887, 0.04428871348500252, -0.017465991899371147, 0.04403529316186905, -0.012975283898413181, 0.001522157108411193, 0.03197749704122543, 0.012128109112381935, -0.008128196932375431, 0.027086740359663963, -0.0035244696773588657, -0.011104867793619633, 0.0035595535300672054, -0.010580521076917648, -0.032424408942461014, -0.05031300708651543, -0.014963530004024506, -0.032635752111673355, 0.04168504476547241, 0.009328569285571575, -0.005559844430536032, 0.0278729647397995, -0.005627788603305817, 0.01202749740332365, -0.018650824204087257, 0.03253539651632309, 0.02419986203312874, -0.01138033252209425, -0.02036486752331257, -0.0017983604921028018, 0.04200003296136856, -0.01076461374759674, -0.0335308313369751, 0.04503335803747177, -0.024267571046948433, -0.033089157193899155, 0.0035564335994422436, -0.04161077365279198, -0.01069351751357317, 0.06271886080503464, 0.00011287386587355286, 0.026658887043595314, -0.002908626338467002, 0.01710951328277588, 0.05742282420396805, -0.06906644999980927, 0.03794027119874954, -0.0035140197724103928, 0.012510334141552448, 0.10717220604419708, 0.02503538504242897, 0.03216332197189331, -0.042545925825834274, -0.019508030265569687, -0.013775588013231754, 0.06081801652908325, -0.053575579077005386, 0.04389354959130287, 0.008746280334889889, 0.024832502007484436, -0.01594725251197815, -0.02189190685749054, 0.004752951208502054, 0.000030353259717230685, 0.008269754238426685, 0.046806611120700836, -0.020859630778431892, 0.01950545608997345, -0.016873182728886604, 0.03566349670290947, -0.02493525668978691, 0.04484576731920242, -0.059634387493133545, -0.046443872153759, -0.0026397816836833954, -0.031199434772133827, -0.005974458996206522, -0.009238096885383129, -0.01757628470659256, -0.0016462283674627542, 0.022433584555983543, 0.011493179947137833, 0.026974599808454514, -0.022478677332401276, 0.047591738402843475, 0.05744544789195061, -0.012388183735311031, 0.0255446694791317, 0.005080004688352346, 0.0986822247505188, 0.007336801383644342, -0.03505963832139969, 0.005274468567222357, -0.004451320506632328, -0.04404696077108383, -0.010480745695531368, 0.01687498390674591, 0.009735180996358395, -0.027814244851469994, 0.011502393521368504, 0.011797470971941948, 0.015288070775568485, -0.023319751024246216, -0.019861917942762375, 0.00336873228661716, -0.061311688274145126, -0.029927918687462807, 0.03475923463702202, -0.031005004420876503, 0.029468514025211334, 0.009035260416567326, -0.030264953151345253, 0.014912482351064682, 0.05562041327357292, -0.07075314968824387, 0.018530821427702904, 0.034039437770843506, 0.03173025697469711, -0.021338310092687607, -0.010959836654365063, -0.014713401906192303, -0.046809546649456024, -0.057386040687561035, 0.04671325162053108, 0.0009700704831629992, -0.007036139722913504, 0.014998138882219791, -0.004225587472319603, 0.0333578959107399, 0.04300198704004288, -0.009980577975511551, 0.013723050244152546, -0.002285947324708104, 0.045566365122795105, -0.025937702506780624, -0.0174118485301733, -0.013316592201590538, 0.025591064244508743, -0.011625046841800213, 0.07562705129384995, 0.0331583246588707, 0.017500143498182297, 0.027856402099132538, 0.022938020527362823, 0.00046797364484518766, 0.0032309486996382475, 0.010438141413033009, 0.010020907036960125, 0.06447450816631317, 0.046662136912345886, -0.03186072036623955, 0.046775903552770615, 0.007283749524503946, -0.002703913487493992, -0.028414955362677574, 0.023514950647950172, -0.01157296821475029, 0.04755518585443497, 0.010988705791532993, 0.01857447810471058, -0.020760701969265938, 0.02003418281674385, 0.05527196079492569, 0.055932480841875076, -0.006673283409327269, -0.019742606207728386, -0.001755557139404118, 0.053966671228408813, -0.010310852900147438, 0.01026017963886261, 0.019117550924420357, -0.013945640996098518, 0.008036619052290916, 0.01570093259215355, -0.009124684147536755, -0.08269792795181274, -0.04407770186662674, -0.07079692929983139, -0.028549043461680412, -0.01704375445842743, -0.0379871241748333, -0.0190489012748003, 0.022771010175347328, -0.0457160584628582, 0.022278252989053726, 0.035707175731658936, 0.012134388089179993, -0.030214065685868263, -0.005770639982074499, 0.0766228437423706, 0.027377884835004807, 0.016364753246307373, -0.02788805216550827, 0.021008852869272232, -0.0009122103219851851, 0.031820327043533325, -0.04655975475907326, 0.0032592059578746557, -0.004992935340851545, -0.009395333006978035, 0.009203494526445866, -0.016299819573760033, 0.013292859308421612, 0.0018799121025949717, -0.049568094313144684, -0.03829630836844444, -0.0008304946240969002, -0.016476280987262726, -0.0024985449854284525, 0.04216131940484047, -0.05078956112265587, 0.05639047175645828, 0.029339343309402466, -0.03471190854907036, 0.04041815176606178, 0.015136804431676865, -0.037693146616220474, 0.03841168433427811, 0.02705979160964489, 0.016804665327072144, -0.06057512015104294, 0.03922676295042038, 0.02274319715797901, 0.01588301733136177, -0.011861158534884453, -0.0074078296311199665, -0.037204254418611526, -0.03150267153978348, -0.0032705029007047415, -0.013385448604822159, -0.01839037612080574, 0.030109647661447525, 0.008903001435101032, -0.07235103100538254, 0.018042704090476036, -0.036625802516937256, -0.02803426794707775, -0.029415858909487724, -0.03621722757816315, 0.013064778409898281, 0.033611468970775604, 0.03341943025588989, 0.0071598258800804615, -0.0041060373187065125, 0.007008206564933062, 0.032928112894296646, 0.0454515740275383, -0.047546159476041794, 0.02414383925497532, 0.05138613283634186, 0.004294601269066334, -0.001277981442399323, 0.01935737021267414, -0.02724231593310833, 0.01275569573044777, 0.00551227293908596, -0.0031567318364977837, 0.004547503311187029, 0.034918490797281265, 0.013567712157964706, 0.016444189473986626, 0.04416436702013016, -0.0465608611702919, -0.009705980308353901, 0.01699959859251976, 0.00493873143568635, 0.03127903863787651, 0.019069958478212357, 0.024101870134472847, -0.026905879378318787, -0.02123529464006424, -0.046997468918561935, 0.04622777923941612, 0.01827833615243435, 0.059929292649030685, -0.04878184571862221, 0.06732049584388733, 0.0015302340034395456, -0.011411737650632858, 0.056943368166685104, -0.06146586313843727, 0.008271374739706516, 0.04601125419139862, -0.007052624598145485, 0.06045015901327133, -0.01950080133974552, 0.01592290960252285, -0.051375292241573334, -0.001817497075535357, 0.052119284868240356, -0.027271823957562447, 0.014097222127020359, 0.004450568929314613, -0.011256004683673382, -0.009475091472268105, -0.003479464678093791, -0.022670075297355652, -0.016559109091758728, 0.01763254590332508, -0.0027160358149558306, -0.04813513904809952, -0.04945097491145134, 0.027909139171242714, 0.03964056447148323, 0.055079273879528046, -0.012817376293241978, 0.01758100464940071, -0.028345955535769463, 0.02317424863576889, 0.04088450223207474, -0.034076061099767685, 0.011117137037217617, -0.03314460441470146, 0.04828161373734474, 0.02572939544916153, -0.013513515703380108, -0.008067269809544086, -0.017899999395012856, -0.03607093542814255, 0.03138848394155502, 0.03409292921423912, -0.04007284715771675, -0.039918940514326096, 0.012616954743862152, -0.005154918879270554, 0.012024619616568089, -0.03487560525536537, -0.00004987284046364948, -0.003702404210343957, 0.04714608192443848, 0.06084388494491577, -0.00960507057607174, -0.012118414044380188, -0.016272425651550293, 0.03869035840034485, 0.03308631852269173, 0.005763334222137928, -0.04992252588272095, -0.03424970805644989, -0.06508505344390869, -0.01854396052658558, 0.044660598039627075, 0.04674289748072624, 0.004255152773112059, 0.045392297208309174, -0.038054004311561584, 0.020134111866354942, 0.04083359241485596, -0.0013280634302645922, 0.009194158017635345, 0.007568346802145243, 0.008492505177855492, 0.005468570627272129, 0.04158514738082886, -0.019519051536917686, -0.020994365215301514, 0.01503156591206789, -0.04927772656083107, 0.05545166879892349, -0.001846690778620541, 0.010079793632030487, -0.029834125190973282, 0.008897656574845314, 0.009690721519291401, 0.03965732827782631, -0.0025948609691113234, 0.02459479123353958, 0.004962158855050802, 0.02357008308172226, -0.025264756754040718, -0.05027533322572708, 0.04652244970202446, -0.01939885877072811, -0.0268010925501585, 0.03753602132201195, 0.014878436923027039, -0.004446996375918388, -0.00000884759720065631, -0.008099798113107681, -0.060547828674316406, 0.010390379466116428, -0.04830458015203476, 0.007050549611449242, -0.00041436729952692986, -0.029768073931336403, 0.016200076788663864, -0.006337206345051527, 0.03460691124200821, 0.01037572417408228, -0.025174617767333984, -0.052106861025094986, -0.061432044953107834, -0.009317709133028984, 0.022299448028206825, -0.006648343522101641, 0.004170964937657118, -0.00900424923747778, -0.022337662056088448, -0.004958930891007185, -0.03955777734518051, 0.018581325188279152, -0.02334468811750412, -0.015123511664569378, 0.006464664824306965, 0.015285266563296318, -0.0036798729561269283, 0.023535916581749916, -0.015654761344194412, -0.05984149128198624, 0.01838831976056099, -0.030542153865098953, -0.010978714562952518, -0.05347457900643349, 0.009661325253546238, -0.04147243872284889, -0.0028083939105272293, -0.0021689271088689566, 0.010104130022227764, -0.018596455454826355, 0.020519636571407318, 0.0308164581656456, 0.015041357837617397, -0.013769135810434818, 0.01728988066315651, -0.02158939652144909, 0.0326010026037693, 0.026908135041594505, -0.01805083639919758, -0.03711145371198654, 0.03483116999268532, -0.03718329966068268, 0.055816031992435455, -0.00749950623139739, -0.03941487520933151, -0.013329741545021534, -0.047895513474941254, -0.01895376481115818, -0.014883570373058319, -0.021690059453248978, -0.06090772897005081, -0.03467161953449249, -0.006819229107350111, 0.04632638022303581, -0.006292728241533041, -0.022100823000073433, 0.0009797376114875078, -0.05357646197080612, 0.01092576514929533, -0.04327404126524925, 0.004173953086137772, -0.015202666632831097, -0.041686661541461945, -0.029977886006236076, 0.04358968138694763, 0.024399133399128914, 0.022878464311361313, 0.012759387493133545, -0.010347409173846245, 0.0553082637488842, -0.00812976062297821, -0.06445128470659256, -0.033222299069166183, -0.009989080019295216, -0.008373143151402473, 0.02015462890267372, 0.024399926885962486, -0.012874545529484749, 0.03135044872760773, -0.03718999773263931, 0.022312544286251068, -0.008964095264673233, 0.00615335488691926, -0.017005549743771553, -0.03597310185432434, 0.0265800841152668, -0.0334046445786953, -0.0004011220298707485, -0.0479809045791626, 0.06581377238035202, 0.02675493247807026, -0.0072378613986074924, -0.0478459969162941, -0.006624219007790089, -0.03470686823129654, -0.02855299599468708, -0.007288492284715176, -0.05626269429922104, -0.014913485385477543, -0.04496202617883682, 0.013359913602471352, 0.04191362485289574, -0.004659550730139017, 0.037940479815006256, 0.05917089059948921, 0.010440099984407425, 0.017022280022501945, -0.0546264685690403, 0.027714254334568977, 0.039960481226444244, -0.00812488328665495, 0.012074112892150879, -0.0023995949886739254, -0.022122811526060104, 0.002562880516052246, -0.032092686742544174, -0.05307834595441818, -0.0525943823158741, 0.0009229479474015534, 0.0707831159234047, -0.027503743767738342, 0.014163156040012836, 0.005314390640705824, -0.05497490242123604, -0.05233027786016464, 0.039690181612968445, 0.029774511232972145, 0.01804528757929802, 0.0522821806371212, 0.0021517914719879627, 0.010839395225048065, 0.0284661203622818, -0.009909987449645996, -0.01327770110219717, -0.04943104460835457, 0.07597064226865768, 0.011857212521135807, -0.038735825568437576, 0.0031070762779563665, 0.054788511246442795, -0.05576273053884506, -0.03248028829693794, 0.007783549837768078, -0.015432748012244701, 0.009883680380880833, -0.03704090788960457, -0.005624132696539164, -0.038142893463373184, 0.0005198649596422911, 0.008831518702208996, 0.03538835793733597, -0.0007478973129764199, 0.04970715567469597, 0.011455090716481209, -0.0013344737235456705, -0.029792286455631256, 0.01952831633388996, 0.0215406846255064, 0.0008317517349496484, -0.028013939037919044, -0.03924965858459473, -0.006802043411880732, -0.01629786007106304, -0.013698898255825043, 0.04989601671695709, -0.01019857544451952, 0.008245766162872314, 0.01025072019547224, -0.0012076596030965447, 0.043028540909290314, -0.0015070566441863775, 0.013575146906077862, 0.01989993453025818, -0.03017333522439003, -0.059088580310344696, -0.018093876540660858, 0.014737585559487343, 0.03202037140727043, 0.029314810410141945, -0.03359450027346611, 0.02100014127790928, 0.04156782105565071, 0.012989391572773457, -0.00667065754532814, -0.05028751865029335, -0.04164241999387741, -0.04611999914050102, -0.02862970530986786, -0.0392804779112339, -0.015131441876292229, 0.007948452606797218, 0.016615189611911774, -0.0024358313530683517, -0.040392324328422546, -0.003081844886764884, 0.027751075103878975, -0.03494281694293022, 0.009837403893470764, -0.0217749010771513, 0.03317582979798317, -0.026387015357613564, -0.0770789086818695, -0.03771989420056343, -0.011716469191014767, -0.013439920730888844, 0.013011706992983818, -0.014058795757591724, 0.008383921347558498, -0.039371732622385025, 0.01156720519065857, 0.027302568778395653, -0.011458618566393852, -0.02091885916888714, -0.04191290959715843, -0.017361169680953026, 0.03778686746954918, -0.018132761120796204, 0.018473392352461815, 0.03539537265896797, -0.029467783868312836, -0.008334912359714508, -0.010160786099731922, -0.026561705395579338, -0.015264899469912052, 0.010350434109568596, -0.04511956870555878, 0.025880204513669014, -0.03065405786037445, 0.0021965070627629757, -0.000717165123205632, -0.02024376392364502, 0.014149156399071217, -0.006082199048250914, 0.01405357662588358, 0.01536104828119278, -0.004955931566655636, 0.02213968336582184, 0.062429092824459076, 0.008736342191696167, 0.0324074923992157, 0.012760335579514503, 0.02406526543200016, 0.009705953299999237, -0.021295784041285515, 0.027437878772616386, -0.02228124812245369, 0.0410148985683918, -0.011992541141808033, 0.0029123493004590273, -0.004594344645738602, -0.02073821984231472, 0.029840867966413498, 0.010433521121740341, -0.013010852038860321, -0.05248255655169487, 0.008610798045992851, -0.008527617901563644, 0.06456790119409561, 0.016702646389603615, -0.01987551897764206, 0.010265341959893703, -0.01845754310488701, -0.029738707467913628, 0.03875501826405525, -0.04822753742337227, -0.023053783923387527, 0.009429155848920345, -0.04923459142446518, 0.027062345296144485, -0.04288896545767784, -0.04619625583291054, -0.005592408124357462, -0.012544982135295868, -0.030866822227835655, -0.04131965711712837, 0.031220849603414536, 0.010096202604472637, 0.04786080867052078, 0.016638271510601044, -0.019511865451931953, -0.0249341893941164, 0.037348128855228424, -0.025447625666856766, -0.05126851052045822, 0.02076234295964241, 0.01808193139731884, 0.01317919883877039, -0.03540688380599022, -0.014683399349451065, -0.005924512166529894, -0.017758021131157875, 0.03669848293066025, 0.005680382251739502, 0.02377432771027088, -0.029163410887122154, 0.009330248460173607, -0.023443037644028664, 0.01817396655678749, -0.054240480065345764, 0.02471226640045643, -0.028569737449288368, -0.0017013129545375705, 0.01065954752266407, 0.049708202481269836, 0.05110233277082443, -0.000597007863689214, 0.017792195081710815, 0.0023420602083206177, 0.014816283248364925, -0.012988983653485775, 0.005808298941701651, -0.011437083594501019, 0.026966817677021027, 0.03334107622504234, 0.0318949818611145, -0.01644851826131344, 0.0039397310465574265, 0.04699211195111275, 0.009175051003694534, -0.007952535524964333, 0.007729460019618273, 0.036303725093603134, -0.011456700973212719, 0.0016116454498842359, -0.01297648623585701, 0.010693613439798355, -0.005343759432435036, 0.005466435570269823, -0.01563451811671257, -0.04794256016612053, 0.007285988889634609, -0.028323175385594368, -0.04889729246497154, 0.07653123885393143, -0.023882124572992325, -0.00789673998951912, -0.004725378472357988, -0.014887080527842045, -0.0035273705143481493, 0.03421654924750328, -0.015434756875038147, 0.014626525342464447, 0.007272107992321253, 0.02521982230246067, -0.028037438169121742, 0.050967272371053696, 0.020426036790013313, 0.04529054835438728, -0.03418901190161705, 0.004795492626726627, 0.0140420813113451, 0.01946626789867878, -0.03909732773900032, -0.011557201854884624, -0.036192115396261215, 0.020920848473906517, -0.017576029524207115, -0.0161362923681736, 0.0393749475479126, -0.044569022953510284, -0.03598820045590401, -0.04384174570441246, 0.02838856726884842, -0.02359912171959877, -0.029728509485721588, 0.03863215819001198, -0.004440596327185631, -0.04161308333277702, 0.04580648988485336, 0.02506762370467186, 0.030134662985801697, -0.03748635575175285, 0.05255821719765663, 0.02658120170235634, 0.03764382004737854, 0.03377559781074524, -0.032597366720438004, -0.036894433200359344, 0.019275976344943047, -0.0031202821992337704, -0.04681016504764557, -0.010147557593882084, -0.028253253549337387, -0.012922126799821854, -0.01338080782443285, -0.01973562315106392, 0.007520143873989582, 0.03886350244283676, -0.017666535452008247, -0.019040729850530624, 0.013037111610174179, 0.04799950122833252, -0.05092063173651695, -0.006748970132321119, 0.001256645075045526, -0.0019520024070516229, -0.01734447292983532, -0.023877300322055817, -0.01972874067723751, -0.012368844822049141, 0.006100519094616175, -0.018311098217964172, 0.026081714779138565, -0.022610511630773544, 0.0001296671835007146, -0.02177821286022663, -0.04451810568571091, -0.02740841917693615, 0.015181079506874084, -0.03160659968852997, -0.04881060868501663, 0.006279973313212395, 0.04059866443276405, 0.027477901428937912, 0.043911125510931015, -0.04215133562684059, 0.023099364712834358, 0.04763653501868248, 0.06809689104557037, 0.025575118139386177, 0.05757661908864975, 0.06548204272985458, -0.02977818250656128, 0.01288230437785387, -0.013754681684076786, 0.056593962013721466, -0.024746224284172058, -0.04051942378282547, -0.001112897414714098, 0.017110923305153847, -0.018589485436677933, -0.05835001915693283, 0.015829483047127724, 0.03198875114321709, -0.008756241761147976, -0.0028245970606803894, -0.07230597734451294, -0.015001663006842136, -0.07050777971744537, 0.008570519275963306, -0.025103438645601273, 0.011162119917571545, 0.018280910328030586, 0.012597285211086273, -0.016409309580922127, -0.06545908004045486, 0.15526627004146576, 0.07018052786588669, 0.028193436563014984, 0.006507259793579578, 0.005205030553042889, 0.05145183578133583, 0.06376207619905472, 0.012831883504986763, -0.00848404597491026, -0.03393416479229927, 0.0648743137717247, -0.0371209979057312, 0.039537761360406876, 0.021139737218618393, -0.0008392491727136075, 0.046633679419755936, -0.05262322723865509, 0.01159717794507742, -0.010239364579319954, -0.061471980065107346, -0.07667459547519684, 0.0009774925420060754, -0.0271895844489336, 0.0056602805852890015, -0.026665810495615005, 0.03768852353096008, -0.008290715515613556, -0.02568787708878517, -0.012980415485799313, -0.031466275453567505, 0.009649641811847687, -0.0010840120958164334, 0.04334920272231102, -0.014080067165195942, -0.05756612494587898, 0.034582074731588364, -0.024341367185115814, -0.014614701271057129, 0.0005982280126772821, 0.021378979086875916, -0.02805292047560215, -0.014753521420061588, 0.025334246456623077, -0.025685496628284454, 0.021365856751799583, 0.022965043783187866, -0.027216533198952675, 0.017768200486898422, 0.028212305158376694, -0.024376563727855682, 0.0664510577917099, -0.04048037901520729, 0.021601958200335503, 0.026336969807744026, -0.040760159492492676, 0.007172032725065947, 0.005525609944015741, 0.011245553381741047, -0.009933149442076683, 0.04242365062236786, 0.025071166455745697, -0.0035376986488699913, -0.032883480191230774, -0.012789443135261536, -0.038959626108407974, -0.012862259522080421, 0.006354168057441711, 0.02996833063662052, 0.0013087382540106773, -0.021799186244606972, 0.006517330184578896, -0.0047287531197071075, 0.00800636038184166, -0.018803561106324196, 0.0534900426864624, 0.07005417346954346, -0.03129454702138901, 0.025509174913167953, 0.03694600984454155, -0.05151761323213577, 0.014469490386545658, -0.0213489793241024, -0.008954891934990883, 0.00018453970551490784, 0.041182681918144226, 0.04694133624434471, -0.052643485367298126, -0.03211749345064163, -0.014262232929468155, 0.043114036321640015, 0.03155524656176567, 0.042961567640304565, -0.007382215932011604, -0.019539011642336845, 0.020651057362556458 ]
The EOU Music Program conducts music portfolios reviews for prospective students interested in music scholarships. These scholarships are granted based on financial need and merit. To be considered to receive one of these University Music Awards, please apply to Eastern Oregon University at https://www.eou.edu/admissions/apply. Submit your University Music Award Online Application by clicking on the link below. This will give you an opportunity to tell us about your musical interests and future musical plans.
[ -0.023359719663858414, -0.005704652518033981, -0.04040628671646118, -0.012809508480131626, -0.01773127354681492, 0.01902494952082634, 0.013827865943312645, 0.022194165736436844, 0.02765628509223461, 0.03992238640785217, 0.03961891308426857, 0.0009300722158513963, 0.054526086896657944, -0.03214576095342636, -0.03645406290888786, 0.02401924505829811, -0.025060823187232018, -0.029796233400702477, -0.021989598870277405, -0.017226532101631165, -0.011002711020410061, 0.007247256115078926, -0.0748501867055893, -0.016956141218543053, -0.028998102992773056, 0.02436148375272751, 0.0364939421415329, 0.02246128022670746, 0.04973103478550911, 0.04567740112543106, -0.02249983325600624, -0.04094993323087692, 0.009201550856232643, -0.02659466676414013, -0.026620570570230484, -0.032737985253334045, 0.03684614971280098, -0.04585292562842369, -0.008851056918501854, -0.05139586329460144, 0.00803428702056408, 0.0010433553252369165, -0.006817418150603771, -0.023706581443548203, -0.043486155569553375, -0.012231496162712574, -0.013787321746349335, -0.030783941969275475, 0.02789459004998207, -0.022501258179545403, 0.03574712574481964, -0.013214423321187496, 0.03258419409394264, 0.01072385348379612, 0.016754668205976486, 0.03919104486703873, 0.03273100033402443, -0.03458067774772644, -0.02460031770169735, 0.019052842631936073, 0.018120739609003067, 0.004821723327040672, 0.0023875643964856863, -0.053924985229969025, 0.01922774687409401, 0.03365208953619003, -0.023748423904180527, -0.008631804026663303, 0.01137461792677641, -0.0191958025097847, -0.01395274419337511, 0.00020123815920669585, -0.009255729615688324, 0.00465369364246726, -0.02414625696837902, 0.006639150436967611, -0.031057972460985184, 0.0038066026754677296, 0.013523885048925877, 0.013367288745939732, 0.018536807969212532, 0.03981396183371544, 0.022141261026263237, 0.0013404826167970896, -0.04606395587325096, -0.016063814982771873, -0.02486332692205906, 0.007020222954452038, 0.015241771005094051, 0.005590490996837616, 0.0004934067255817354, 0.052362482994794846, 0.023015068843960762, -0.010817445814609528, 0.020885054022073746, 0.0458579920232296, -0.016379959881305695, 0.019343186169862747, 0.0445181243121624, -0.015118202194571495, 0.04018278047442436, 0.017742043361067772, 0.0306557547301054, 0.03433064743876457, -0.038192059844732285, 0.012189392000436783, 0.020818278193473816, 0.014576943591237068, 0.024095363914966583, -0.05950343981385231, 0.01232787687331438, -0.04319097101688385, 0.023216446861624718, -0.01851850375533104, -0.03977306932210922, 0.040051184594631195, -0.008162743411958218, 0.04656171798706055, -0.04185133054852486, -0.009396771900355816, 0.021570008248090744, 0.032053787261247635, 0.03068731538951397, -0.03787786513566971, 0.025505121797323227, -0.03152937442064285, -0.039650771766901016, 0.0602697990834713, -0.02780909091234207, -0.025180500000715256, 0.004190331790596247, -0.05524300038814545, -0.017594441771507263, 0.015148456208407879, -0.018004439771175385, 0.035007987171411514, 0.01029072143137455, 0.04307860508561134, 0.0038957425858825445, -0.0829022005200386, 0.039568398147821426, 0.026287542656064034, 0.01607395149767399, 0.06651675701141357, -0.01633857563138008, 0.05702405795454979, 0.024054203182458878, -0.03623761236667633, -0.014020788483321667, 0.01518331840634346, -0.018747683614492416, 0.014907820150256157, -0.013315867632627487, 0.03547517955303192, -0.013634326867759228, 0.015172332525253296, 0.029491450637578964, -0.014716840349137783, 0.014021525159478188, 0.011732746846973896, -0.025048675015568733, 0.00493151880800724, -0.013935710303485394, 0.02825828455388546, 0.02079205960035324, 0.0251348614692688, -0.03363081440329552, 0.015528110787272453, 0.009021427482366562, -0.03478323668241501, -0.0017790842102840543, 0.02736472338438034, 0.010286455973982811, 0.03860688954591751, 0.02288953959941864, 0.044512730091810226, 0.08061563968658447, 0.0021330546587705612, 0.0360371470451355, 0.03963899239897728, -0.02145533449947834, 0.01120598055422306, 0.011553809978067875, 0.07528991252183914, -0.011629577726125717, 0.011376932263374329, -0.011829014867544174, -0.01626182347536087, -0.06610693782567978, -0.006214579101651907, -0.011926033534109592, 0.021731339395046234, -0.014716099947690964, 0.021376602351665497, -0.00709404144436121, 0.006826513912528753, -0.005062508396804333, -0.017194975167512894, -0.02176000364124775, -0.06794773042201996, -0.01714821346104145, 0.016296036541461945, -0.04160579666495323, 0.03760258108377457, 0.010933572426438332, -0.004964664112776518, 0.007350406609475613, 0.04640675336122513, -0.05512918904423714, 0.014768989756703377, 0.06566601246595383, 0.042115289717912674, -0.018947040662169456, -0.010024391114711761, 0.04279875382781029, -0.028739694505929947, -0.03352274000644684, 0.043880317360162735, 0.015969527885317802, -0.01543418224900961, -0.021553844213485718, 0.018892284482717514, 0.03372541069984436, 0.03292926400899887, -0.022013666108250618, 0.022501468658447266, 0.021762186661362648, 0.057388029992580414, -0.04123051092028618, -0.008990189991891384, -0.009336739778518677, 0.034032706171274185, 0.03086896799504757, 0.053311172872781754, 0.07447883486747742, 0.015719177201390266, 0.027160560712218285, 0.046736907213926315, 0.03571152314543724, 0.005674235988408327, -0.013481098227202892, 0.03742270544171333, 0.04135061800479889, 0.03505215793848038, -0.035754214972257614, 0.010191242210566998, -0.009854273870587349, -0.012837237678468227, -0.01232440397143364, 0.02683146856725216, 0.005274168215692043, 0.046023767441511154, 0.018227802589535713, 0.03526025637984276, -0.014004925265908241, -0.00839253794401884, 0.05105694755911827, 0.05721408501267433, -0.009684933349490166, -0.011582626961171627, 0.008832830004394054, 0.007309736683964729, 0.022725043818354607, 0.01064989622682333, 0.004288623109459877, 0.016142461448907852, -0.00345064839348197, 0.010825945995748043, -0.049770984798669815, -0.06255704164505005, -0.03248335048556328, -0.05822359025478363, -0.0524432398378849, -0.030330849811434746, -0.015310612507164478, 0.003177635371685028, 0.020708182826638222, -0.045643869787454605, 0.05067877471446991, 0.0027759906370192766, 0.008439878933131695, -0.03392263501882553, -0.041728321462869644, 0.036145683377981186, 0.03364258259534836, 0.044373586773872375, -0.040524911135435104, 0.07002593576908112, -0.014289280399680138, 0.031364765018224716, -0.03038448840379715, -0.022618817165493965, -0.014234848320484161, -0.04391229525208473, 0.01917182095348835, -0.01762664131820202, -0.0031469562090933323, 0.018189771100878716, -0.02055218443274498, -0.04550861194729805, -0.010563584044575691, 0.026447465643286705, -0.01536935567855835, -0.013248170726001263, -0.03244176134467125, 0.03886353224515915, 0.026650268584489822, -0.048739586025476456, 0.030333545058965683, 0.016010772436857224, -0.05991576984524727, 0.03761308267712593, 0.030506717041134834, 0.01142688188701868, -0.02870332822203636, 0.027317503467202187, 0.05300481989979744, -0.0017677216092124581, -0.04252222552895546, -0.01252214889973402, -0.017355110496282578, -0.015931926667690277, 0.010459844022989273, -0.02757786214351654, 0.009275426156818867, 0.0582205206155777, 0.019967470318078995, -0.06133820116519928, 0.02427743189036846, -0.04553664103150368, -0.0270951259881258, -0.05639168620109558, -0.009647379629313946, 0.05360869690775871, 0.06121257320046425, 0.04876047745347023, 0.005325843580067158, -0.011736770160496235, 0.00739805493503809, 0.02099224366247654, 0.08924978226423264, -0.057329211384058, 0.0009424343588761985, 0.035944659262895584, -0.009187384508550167, 0.0056108953431248665, 0.0010780119337141514, -0.04196865111589432, 0.012811999768018723, 0.021701008081436157, -0.01796584203839302, 0.02604871802031994, 0.012861759401857853, 0.0012329252203926444, 0.014493854716420174, 0.03595477715134621, -0.04573580622673035, 0.0077208043076097965, -0.024735571816563606, 0.04367975518107414, -0.00645440211519599, 0.027273384854197502, 0.011609664186835289, 0.002675260417163372, -0.0231366828083992, -0.061159320175647736, 0.04313836991786957, 0.01981322467327118, 0.018390880897641182, -0.10379005968570709, 0.057169705629348755, -0.007065235171467066, -0.03135514631867409, 0.04789276048541069, -0.039982087910175323, 0.02127702720463276, 0.03593401238322258, -0.01889021508395672, 0.03994077816605568, -0.037553951144218445, -0.002064663218334317, -0.013310766778886318, 0.011476554907858372, 0.031896594911813736, -0.033126529306173325, 0.019036753103137016, -0.024642545729875565, -0.01638885959982872, -0.02023700624704361, -0.02397334575653076, -0.018926508724689484, -0.02386886440217495, -0.002884990768507123, -0.03548876568675041, -0.022695273160934448, -0.037666864693164825, 0.04851802811026573, 0.034884944558143616, 0.04451848939061165, -0.008615444414317608, 0.048818472772836685, 0.020449073985219002, 0.04719818755984306, 0.03175529092550278, -0.003460159059613943, -0.0006972862756811082, -0.026096675544977188, 0.020732544362545013, 0.003267130348831415, -0.019136754795908928, -0.04682612419128418, -0.014826511964201927, -0.05495008826255798, 0.027525270357728004, 0.014506417326629162, -0.0048094019293785095, -0.036329545080661774, 0.03058118186891079, -0.025613032281398773, 0.02467479184269905, -0.04016449674963951, 0.006887498777359724, -0.0424429252743721, 0.04481200501322746, 0.02344351075589657, -0.03429010510444641, -0.008852246217429638, -0.04964791610836983, 0.024552324786782265, 0.05978703498840332, -0.017958538606762886, -0.03751606494188309, -0.009383645839989185, -0.027758803218603134, -0.03407784923911095, -0.00964862760156393, 0.05797668546438217, 0.006373962853103876, -0.02199447900056839, -0.04001963883638382, 0.0523662231862545, 0.02386440709233284, -0.013643255457282066, -0.010163665749132633, -0.011196937412023544, -0.004619230050593615, 0.0028100525960326195, 0.03689521551132202, -0.007378273643553257, -0.014581127092242241, 0.007520482409745455, -0.04158466309309006, -0.00010873268911382183, 0.026290372014045715, 0.00328038539737463, 0.013960170559585094, -0.0006381250568665564, -0.006294969003647566, 0.012094303965568542, -0.018483368679881096, 0.0066397786140441895, -0.003608529455959797, 0.04424735903739929, -0.024943022057414055, -0.042648814618587494, 0.041093986481428146, -0.007707130629569292, 0.008844474330544472, 0.02184227854013443, 0.03971487656235695, -0.013760724104940891, 0.027626128867268562, 0.0025294204242527485, -0.04019586741924286, 0.034188736230134964, -0.04152048006653786, 0.011659665033221245, -0.016616597771644592, -0.048768848180770874, 0.037241753190755844, -0.026318641379475594, 0.026497388258576393, -0.00022527345572598279, -0.026110181584954262, -0.05429435893893242, -0.06878332048654556, -0.021907087415456772, -0.0017978549003601074, -0.028339138254523277, 0.0006869174540042877, -0.010498559102416039, -0.008832450956106186, 0.02405673824250698, 0.007490070536732674, 0.017547957599163055, 0.022659752517938614, -0.0017593565862625837, 0.011169946752488613, 0.013609027490019798, 0.03294596076011658, 0.01171393133699894, 0.011573759838938713, -0.02897796966135502, -0.006738067604601383, 0.01378158200532198, -0.02361280471086502, -0.05240052193403244, -0.014477921649813652, -0.05120975896716118, -0.02280125580728054, -0.01548361498862505, 0.022648660466074944, -0.027931075543165207, 0.00025294022634625435, 0.04651084169745445, 0.03640245273709297, -0.000049529513489687815, 0.0030118615832179785, -0.03739447519183159, 0.042881693691015244, 0.015244686976075172, -0.0190524123609066, -0.0028005363419651985, 0.06069426238536835, 0.0018623231444507837, 0.06513422727584839, 0.018064994364976883, -0.01664075069129467, -0.06199472397565842, -0.0473758764564991, 0.017056534066796303, -0.01695043034851551, -0.017675058916211128, -0.06600847095251083, -0.0003991958510596305, -0.04330680891871452, 0.05060889571905136, 0.026976674795150757, -0.021968267858028412, 0.0043238983489573, -0.05568776652216911, -0.0033171738032251596, -0.034282855689525604, -0.00816990714520216, -0.0450279638171196, 0.021088819950819016, 0.014803328551352024, 0.049620941281318665, 0.015998201444745064, 0.01733836904168129, -0.017661813646554947, 0.041696418076753616, 0.03180200979113579, -0.034300096333026886, -0.033815570175647736, -0.050949543714523315, -0.004615115933120251, -0.008072171360254288, 0.004197319969534874, -0.014496964402496815, -0.0192248672246933, 0.06864059716463089, -0.06433048844337463, 0.0020329151302576065, -0.045333605259656906, -0.02050190605223179, 0.022557586431503296, 0.002670220099389553, 0.05424686521291733, -0.011931865476071835, 0.009473023936152458, 0.011397532187402248, 0.04552299901843071, 0.04189470410346985, -0.02124948799610138, -0.01553397998213768, -0.03257490694522858, -0.010712258517742157, -0.01391293853521347, 0.024791505187749863, -0.02832391858100891, -0.061412617564201355, -0.037520457059144974, -0.01400003395974636, 0.03134338930249214, -0.04499049857258797, 0.043133046478033066, 0.05091936141252518, -0.022167887538671494, -0.009534274227917194, -0.005962304305285215, 0.025468606501817703, 0.04277174547314644, -0.005539430305361748, -0.009028217755258083, -0.021593017503619194, -0.029096784070134163, -0.005951276049017906, -0.03560332581400871, -0.035139456391334534, -0.05766750127077103, 0.000512266589794308, 0.049453847110271454, -0.04539390653371811, 0.05135952681303024, -0.005686959717422724, -0.04848382622003555, -0.004587862174957991, 0.03683659806847572, -0.01982050947844982, 0.011504924856126308, 0.06799525022506714, -0.0067297909408807755, 0.0028590690344572067, 0.006473166402429342, -0.03587828576564789, -0.02007426507771015, -0.039540305733680725, 0.05899238958954811, -0.03413085639476776, -0.023354098200798035, 0.015117896720767021, 0.06187744066119194, -0.041438035666942596, -0.03497595712542534, 0.006174747366458178, -0.019684411585330963, 0.027619216591119766, -0.038557808846235275, 0.02510243095457554, 0.01894913613796234, -0.0015105085913091898, 0.038219962269067764, 0.040332723408937454, -0.02996639907360077, 0.05059824138879776, -0.018797358497977257, 0.02235456183552742, -0.05326730012893677, -0.00027439193218015134, 0.017342720180749893, 0.03030291013419628, -0.04455743730068207, -0.04082397744059563, -0.0014130516210570931, -0.0021857155952602625, 0.003979449160397053, 0.05307506024837494, 0.006022397428750992, -0.012524742633104324, 0.031296778470277786, 0.020061533898115158, 0.028748894110322, -0.014471965841948986, -0.03320689871907234, -0.005460937507450581, -0.03336459770798683, -0.09447219222784042, -0.045037079602479935, 0.01670999266207218, 0.010301345959305763, 0.01134331151843071, -0.051072556525468826, 0.013787937350571156, 0.01206311397254467, 0.03939400985836983, 0.001104873837903142, -0.0504571907222271, -0.03366773575544357, -0.013548776507377625, -0.03247976675629616, 0.0034563925582915545, -0.001347348210401833, -0.0031514863949269056, -0.0033458969555795193, 0.002186054363846779, -0.05520832911133766, 0.004545783158391714, 0.007992849685251713, -0.003063037060201168, -0.013503218069672585, -0.048790957778692245, 0.016223743557929993, -0.037813700735569, -0.04749876260757446, -0.024670733138918877, 0.0076842643320560455, -0.016333159059286118, -0.0030849191825836897, -0.03148075193166733, 0.015652114525437355, -0.009113473817706108, 0.024568788707256317, -0.004574236925691366, 0.018045544624328613, -0.025973325595259666, -0.018434742465615273, 0.012596586719155312, 0.029498662799596786, -0.0070852539502084255, 0.045623019337654114, 0.036495402455329895, -0.01613887958228588, 0.05262361839413643, -0.011043771170079708, -0.047136008739471436, -0.023090677335858345, 0.010112556628882885, -0.010107805021107197, 0.03288131579756737, -0.03568335250020027, -0.024399714544415474, 0.004801999311894178, -0.0427725575864315, 0.010680492036044598, -0.009103474207222462, 0.01229245588183403, -0.013249047100543976, -0.040730591863393784, -0.028119320049881935, 0.05584622174501419, -0.015745485201478004, 0.02239122986793518, 0.0001536263880552724, 0.03610628470778465, 0.0036546906922012568, 0.006654806900769472, 0.006022803485393524, 0.05614284425973892, 0.03020518645644188, -0.03502418473362923, -0.014774641022086143, 0.013441897928714752, -0.017679953947663307, 0.04349726438522339, -0.04666813835501671, -0.01354602724313736, -0.040616583079099655, -0.016578590497374535, 0.0031310345511883497, 0.05941058695316315, 0.0016082029324024916, -0.003354310989379883, 0.026834122836589813, -0.028644731268286705, -0.003574521979317069, -0.00410443264991045, -0.04270054027438164, -0.05203370749950409, 0.011898660100996494, -0.03699439764022827, -0.014807400293648243, -0.021232612431049347, -0.031087076291441917, -0.023917965590953827, -0.011476167477667332, 0.006969740614295006, -0.03228820115327835, 0.0266796313226223, 0.009868084453046322, 0.06123502179980278, -0.029978932812809944, 0.014654258266091347, 0.005210481118410826, 0.0469161719083786, -0.04053865745663643, -0.06537235528230667, 0.06282015144824982, 0.02955789305269718, 0.037605248391628265, -0.019661664962768555, 0.012550159357488155, 0.025219151750206947, -0.025754684582352638, -0.012367920950055122, 0.019726524129509926, 0.008544424548745155, -0.012883019633591175, 0.011769311502575874, 0.02784690260887146, 0.013528415933251381, -0.016828324645757675, 0.05460071936249733, 0.000926902808714658, -0.025923406705260277, -0.04673964902758598, -0.003287502797320485, -0.0056480648927390575, -0.024322185665369034, 0.02175355702638626, -0.012244345620274544, 0.057543475180864334, -0.007624833844602108, -0.004144623409956694, 0.01093639899045229, 0.03655191883444786, 0.03358116000890732, 0.013345667161047459, -0.0076172808185219765, 0.013745416887104511, 0.03926374763250351, -0.01546759344637394, 0.005409620236605406, 0.08018873631954193, 0.024486904963850975, -0.022210465744137764, -0.004735506139695644, -0.01636858470737934, -0.01812797412276268, 0.03770736977458, -0.01679506152868271, 0.028006311506032944, -0.0330963134765625, -0.014680854044854641, -0.03923901543021202, -0.0046166833490133286, 0.06998717039823532, -0.022998929023742676, 0.00011349515261827037, -0.0012638414045795798, -0.025300564244389534, 0.0066696517169475555, 0.05247709900140762, 0.021263886243104935, 0.01923152431845665, 0.04905720055103302, 0.050254449248313904, -0.004517958965152502, 0.02976444736123085, 0.021665651351213455, -0.003411659272387624, -0.04228879138827324, 0.011577975936233997, 0.03593284264206886, 0.0029325170908123255, -0.04532521963119507, -0.0055522192269563675, -0.029089782387018204, 0.024124760180711746, -0.03078475035727024, -0.018537769094109535, 0.01801866851747036, -0.0350659117102623, -0.03331584855914116, -0.035088926553726196, 0.0264044888317585, -0.043038949370384216, 0.013864056207239628, 0.05548495054244995, -0.01282886229455471, -0.03671286627650261, 0.033182185143232346, 0.018643135204911232, 0.051188547164201736, 0.011516756378114223, 0.03197607025504112, -0.009692542254924774, 0.01604214683175087, 0.06210675463080406, -0.028789665549993515, 0.0007490920834243298, 0.015959598124027252, 0.004404069855809212, -0.027601445093750954, -0.00572961987927556, -0.031016353517770767, -0.02190905250608921, -0.01947229541838169, -0.00500528234988451, -0.022915322333574295, 0.02553948387503624, -0.010668405331671238, -0.0692976713180542, -0.00534610403701663, 0.0012446988839656115, -0.034417878836393356, 0.04056535288691521, 0.03307352215051651, 0.05202920362353325, -0.03302863985300064, -0.004860416054725647, -0.025832414627075195, -0.02520136535167694, -0.009435118176043034, -0.03908553719520569, 0.02260584942996502, -0.03319508954882622, -0.02440565638244152, -0.043034739792346954, -0.021315792575478554, -0.022204047068953514, 0.017701512202620506, -0.039495039731264114, -0.02215070277452469, 0.01805916056036949, 0.04158136993646622, -0.013048938475549221, -0.010524269193410873, -0.055330339819192886, 0.02080322802066803, 0.03468739613890648, 0.07204832136631012, 0.014299891889095306, 0.046450674533843994, -0.0034350454807281494, -0.017197925597429276, 0.02433950826525688, -0.037794116884469986, 0.027247216552495956, -0.04878654330968857, -0.026920713484287262, -0.02273787558078766, -0.0007198608946055174, -0.015382071025669575, -0.05662545561790466, -0.0004115214105695486, 0.021235110238194466, 0.01919921115040779, -0.03187595307826996, -0.05551870912313461, -0.0072893789038062096, -0.04334316775202751, -0.026533527299761772, -0.04117875546216965, -0.003557253861799836, -0.009569833055138588, 0.01731976494193077, 0.0017799744382500648, -0.06387646496295929, 0.12947209179401398, 0.046334926038980484, 0.026183269917964935, 0.018557235598564148, 0.022702215239405632, 0.03383857384324074, 0.03384362533688545, -0.012607199139893055, -0.012084509246051311, -0.0253557488322258, 0.03845949470996857, -0.0013622954720631242, 0.012286298908293247, 0.012955174781382084, 0.0025230757892131805, 0.05631576478481293, -0.0061724502593278885, -0.028442004695534706, 0.03122519515454769, -0.06718118488788605, -0.07057125121355057, 0.019539108499884605, -0.005424462258815765, 0.015216954983770847, -0.002390509471297264, 0.025225849822163582, 0.011839071288704872, -0.04151644557714462, 0.008539830334484577, -0.03127526491880417, 0.027700962498784065, -0.027927540242671967, 0.024118714034557343, -0.03487700596451759, -0.03404673561453819, 0.03233657777309418, 0.022998910397291183, -0.02783612720668316, -0.02202349342405796, 0.027050979435443878, -0.01226100604981184, 0.008621525019407272, 0.05842997133731842, -0.055995918810367584, 0.020720960572361946, 0.03412097692489624, -0.05777362361550331, 0.008928186260163784, -0.0075035193003714085, -0.031098878011107445, 0.04013584181666374, 0.007344699464738369, 0.023060593754053116, -0.0007196055958047509, -0.03259629011154175, 0.01854993775486946, -0.004105100873857737, -0.03137362375855446, -0.012743483297526836, 0.012084619142115116, 0.010414348915219307, 0.017150219529867172, -0.03782026097178459, 0.02843538671731949, -0.03651256859302521, 0.020637204870581627, 0.010508508421480656, 0.013626002706587315, -0.00020878962823189795, 0.007125552743673325, -0.04280325770378113, -0.004868187475949526, 0.001041096867993474, -0.014740240760147572, 0.025274615734815598, 0.042320478707551956, 0.00008590658399043605, 0.07191400974988937, -0.03729120269417763, -0.03304990008473396, -0.034480981528759, -0.0038295777048915625, -0.001954003470018506, -0.019353097304701805, 0.016781141981482506, 0.03718487173318863, -0.05706140398979187, -0.015898408368229866, -0.055701591074466705, 0.06035049259662628, 0.0654454454779625, 0.006435468327254057, -0.02626851573586464, -0.003627402475103736, -0.014738877303898335 ]
Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging Monika A. Davare, Johannes W Hell An increase in Ca2+ influx through L-type Ca2+ channels is thought to contribute to neuronal dysfunctions that underlie senile symptoms and Alzheimer's disease. The molecular basis of the age-dependent up-regulation in neuronal L-type Ca2+ channel activity is largely unknown. We show that phosphorylation of the L-type channel Cav1.2 by cAMP-dependent protein kinase is increased >2-fold in the hippocampus of aged rats. The hippocampus is critical for learning and is one of the first brain regions to be affected in Alzheimer's disease. Phosphorylation of Ca v1.2 by cAMP-dependent protein kinase strongly enhances its activity. Therefore, increased Cav1.2 phosphorylation may account for a substantial portion of the age-related rise in neuronal Ca2+ influx and its neuropathological consequences. Cyclic AMP-Dependent Protein Kinases Davare, M. A., & Hell, J. W. (2003). Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging. Proceedings of the National Academy of Sciences of the United States of America, 100(26), 16018-16023. https://doi.org/10.1073/pnas.2236970100 Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging. / Davare, Monika A.; Hell, Johannes W. In: Proceedings of the National Academy of Sciences of the United States of America, Vol. 100, No. 26, 23.12.2003, p. 16018-16023. Davare, MA & Hell, JW 2003, 'Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging', Proceedings of the National Academy of Sciences of the United States of America, vol. 100, no. 26, pp. 16018-16023. https://doi.org/10.1073/pnas.2236970100 Davare MA, Hell JW. Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging. Proceedings of the National Academy of Sciences of the United States of America. 2003 Dec 23;100(26):16018-16023. https://doi.org/10.1073/pnas.2236970100 Davare, Monika A. ; Hell, Johannes W. / Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging. In: Proceedings of the National Academy of Sciences of the United States of America. 2003 ; Vol. 100, No. 26. pp. 16018-16023. @article{cbd26782180a4f55a6bcb924b6e644d8, title = "Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging", abstract = "An increase in Ca2+ influx through L-type Ca2+ channels is thought to contribute to neuronal dysfunctions that underlie senile symptoms and Alzheimer's disease. The molecular basis of the age-dependent up-regulation in neuronal L-type Ca2+ channel activity is largely unknown. We show that phosphorylation of the L-type channel Cav1.2 by cAMP-dependent protein kinase is increased >2-fold in the hippocampus of aged rats. The hippocampus is critical for learning and is one of the first brain regions to be affected in Alzheimer's disease. Phosphorylation of Ca v1.2 by cAMP-dependent protein kinase strongly enhances its activity. Therefore, increased Cav1.2 phosphorylation may account for a substantial portion of the age-related rise in neuronal Ca2+ influx and its neuropathological consequences.", author = "Davare, {Monika A.} and Hell, {Johannes W}", doi = "10.1073/pnas.2236970100", T1 - Increased phosphorylation of the neuronal L-type Ca2+ channel Cav1.2 during aging AU - Davare, Monika A. AU - Hell, Johannes W N2 - An increase in Ca2+ influx through L-type Ca2+ channels is thought to contribute to neuronal dysfunctions that underlie senile symptoms and Alzheimer's disease. The molecular basis of the age-dependent up-regulation in neuronal L-type Ca2+ channel activity is largely unknown. We show that phosphorylation of the L-type channel Cav1.2 by cAMP-dependent protein kinase is increased >2-fold in the hippocampus of aged rats. The hippocampus is critical for learning and is one of the first brain regions to be affected in Alzheimer's disease. Phosphorylation of Ca v1.2 by cAMP-dependent protein kinase strongly enhances its activity. Therefore, increased Cav1.2 phosphorylation may account for a substantial portion of the age-related rise in neuronal Ca2+ influx and its neuropathological consequences. AB - An increase in Ca2+ influx through L-type Ca2+ channels is thought to contribute to neuronal dysfunctions that underlie senile symptoms and Alzheimer's disease. The molecular basis of the age-dependent up-regulation in neuronal L-type Ca2+ channel activity is largely unknown. We show that phosphorylation of the L-type channel Cav1.2 by cAMP-dependent protein kinase is increased >2-fold in the hippocampus of aged rats. The hippocampus is critical for learning and is one of the first brain regions to be affected in Alzheimer's disease. Phosphorylation of Ca v1.2 by cAMP-dependent protein kinase strongly enhances its activity. Therefore, increased Cav1.2 phosphorylation may account for a substantial portion of the age-related rise in neuronal Ca2+ influx and its neuropathological consequences. U2 - 10.1073/pnas.2236970100 DO - 10.1073/pnas.2236970100
[ -0.00548360962420702, -0.0008044649730436504, 0.014784770086407661, 0.03720831125974655, -0.018732668831944466, 0.015383386984467506, 0.004755175206810236, 0.02897486835718155, 0.004501666873693466, 0.03245430067181587, 0.032118719071149826, -0.01929577626287937, -0.002782735275104642, -0.0432366319000721, 0.005061300937086344, -0.004252517595887184, -0.029154490679502487, -0.03242351487278938, -0.011603282764554024, 0.011466851457953453, 0.027029210701584816, 0.0022435830906033516, -0.022133726626634598, -0.02805664762854576, -0.02884293533861637, 0.0405692458152771, 0.03147424757480621, -0.0017930902540683746, 0.05189725384116173, 0.04435008019208908, -0.0009785478468984365, -0.04703628644347191, 0.03580557182431221, -0.06417755782604218, -0.018636293709278107, -0.047123052179813385, 0.07045698165893555, -0.046684104949235916, 0.00756704481318593, -0.028930198401212692, 0.03132902830839157, -0.012272798456251621, 0.035780299454927444, -0.042299870401620865, -0.04041234031319618, -0.02985209971666336, -0.02356005646288395, -0.024604246020317078, 0.017668940126895905, -0.011747949756681919, -0.015243809670209885, -0.005419217981398106, 0.02436569146811962, 0.024261748418211937, 0.005969353020191193, 0.011261451058089733, -0.00013523259258363396, -0.02228025533258915, -0.032176245003938675, 0.04197514057159424, -0.005611421074718237, 0.023246869444847107, 0.01835814118385315, -0.08612855523824692, 0.0062182690016925335, 0.04091601446270943, 0.0029932225588709116, -0.013003282248973846, 0.008974961005151272, -0.021247683092951775, -0.002097558230161667, -0.009174236096441746, -0.049314554780721664, -0.0318552702665329, -0.011676852591335773, 0.042145464569330215, -0.01476962585002184, 0.0005781056825071573, -0.006398872472345829, 0.014651539735496044, -0.00737184239551425, 0.01827206090092659, 0.027021711692214012, 0.04174221307039261, -0.042497143149375916, -0.02304302155971527, -0.0013696490786969662, 0.01992623135447502, 0.00015129250823520124, 0.02201741188764572, 0.02102842926979065, 0.0516325980424881, 0.004996942821890116, -0.0026932917535305023, -0.0058058700524270535, 0.05833369493484497, -0.050117552280426025, 0.027892038226127625, 0.02738926187157631, -0.025429051369428635, 0.038116272538900375, -0.0011827386915683746, -0.006614915560930967, 0.04746142402291298, -0.04179768264293671, -0.01085203792899847, 0.013937295414507389, 0.017605910077691078, -0.03577473387122154, -0.07270105928182602, 0.009966696612536907, -0.010268623940646648, 0.005653416272252798, 0.017129363492131233, 0.020048297941684723, 0.02742956019937992, 0.0058256033807992935, 0.01491054892539978, -0.0490323007106781, -0.02816621959209442, 0.0014071350451558828, 0.00781925953924656, 0.034205541014671326, -0.03180942311882973, 0.019947238266468048, -0.022936658933758736, -0.00909729115664959, 0.04621962085366249, -0.038343388587236404, -0.004519399255514145, -0.04214005544781685, -0.024316925555467606, 0.001138517982326448, 0.043825775384902954, 0.006815118715167046, 0.024651413783431053, -0.03737935423851013, 0.042075712233781815, 0.017884962260723114, -0.06793445348739624, 0.03160657733678818, 0.007739031687378883, -0.023097733035683632, 0.05730491876602173, 0.012004349380731583, 0.046249356120824814, -0.024380018934607506, -0.03346400707960129, -0.01600923202931881, 0.01804894581437111, -0.04866018891334534, 0.0051290541887283325, -0.014162118546664715, 0.00283536477945745, -0.01157467346638441, -0.007919545285403728, -0.020961295813322067, 0.038328867405653, 0.038085129112005234, 0.024021323770284653, 0.013934124261140823, -0.010968349874019623, -0.004498674534261227, 0.02898535318672657, -0.04679768159985542, 0.04839824140071869, -0.05162918195128441, -0.021971896290779114, 0.004751283209770918, -0.03579791262745857, 0.022266123443841934, 0.019898056983947754, -0.011783365160226822, 0.0358363576233387, 0.031736910343170166, 0.034373119473457336, 0.056542497128248215, -0.013919203542172909, 0.0699160024523735, 0.05773116275668144, -0.020001335069537163, -0.005615235771983862, 0.012314165942370892, 0.08003499358892441, 0.0241861492395401, 0.008184974081814289, 0.01986333355307579, -0.009848508983850479, -0.01180963683873415, -0.018256282433867455, 0.010435705073177814, 0.043208859860897064, -0.015129291452467442, 0.04316369816660881, 0.00040767688187770545, 0.01840112917125225, -0.05042774975299835, -0.019884908571839333, -0.020137876272201538, -0.06299995630979538, -0.03554360941052437, 0.04225783050060272, -0.010123439133167267, 0.025023043155670166, 0.0031462633050978184, -0.010630562901496887, 0.020993778482079506, 0.05659477040171623, -0.02251308597624302, 0.01488382276147604, 0.062347132712602615, 0.013754391111433506, 0.002548770746216178, 0.023326221853494644, 0.011339347809553146, 0.016248833388090134, -0.03934229910373688, 0.01841971091926098, -0.025401420891284943, -0.0046072243712842464, 0.0212774109095335, -0.007114168722182512, 0.052365854382514954, 0.033974695950746536, 0.007116746623069048, -0.005502345040440559, 0.035207465291023254, -0.002273225225508213, -0.013753392733633518, -0.0186225026845932, 0.012840475887060165, 0.03746519610285759, 0.0013404367491602898, 0.08166410773992538, 0.026944465935230255, 0.02976400963962078, 0.0663120374083519, 0.0491112619638443, 0.004782256670296192, 0.02506551519036293, 0.005439434200525284, 0.03444349765777588, 0.04526997357606888, 0.0059951781295239925, -0.006936792749911547, 0.010471342131495476, -0.04087324067950249, 0.012937435880303383, -0.019232314079999924, 0.04067611321806908, -0.03997053578495979, 0.04540911316871643, 0.01203190814703703, 0.022174468263983727, 0.0010011018021032214, -0.0008661470492370427, 0.020016368478536606, 0.02775629423558712, -0.0052910856902599335, -0.04447397589683533, 0.02874004654586315, 0.017005132511258125, -0.015665294602513313, 0.005972648970782757, 0.04284549504518509, 0.03615542873740196, 0.03737757354974747, 0.014831393957138062, -0.001690942794084549, -0.05385443940758705, -0.03169428929686546, -0.023186279460787773, -0.05529165640473366, -0.03426442667841911, -0.038258880376815796, 0.009251574985682964, 0.041889697313308716, -0.04445544630289078, 0.0008660366875119507, 0.01667162775993347, 0.007253879681229591, -0.015107984654605389, -0.030671237036585808, 0.03473225608468056, 0.022151630371809006, 0.040099937468767166, -0.028005994856357574, 0.029563257470726967, -0.005684724077582359, 0.047576431185007095, -0.03410124033689499, -0.038282766938209534, -0.0341002456843853, -0.010811777785420418, 0.032021522521972656, -0.00181249575689435, -0.017696132883429527, -0.021971259266138077, -0.013588262721896172, -0.03648724406957626, -0.02211553230881691, -0.00456245755776763, -0.008389228954911232, -0.000029446400731103495, -0.040394194424152374, 0.06717965751886368, 0.02793702483177185, -0.014951716177165508, 0.034234799444675446, 0.0493854396045208, -0.0485215000808239, 0.04701235890388489, 0.023179013282060623, 0.014582154341042042, -0.05263100191950798, 0.07786315679550171, 0.046906378120183945, 0.02477671019732952, -0.005477971863001585, -0.04257245734333992, -0.011279454454779625, -0.021010443568229675, 0.0218916367739439, 0.00014899700181558728, -0.023386111482977867, 0.05250929296016693, 0.026420988142490387, -0.07664724439382553, 0.029661452397704124, -0.02507542259991169, -0.038231782615184784, -0.020686233416199684, -0.03922613337635994, 0.021052338182926178, 0.017139792442321777, 0.013212603516876698, 0.01454066950827837, -0.022702189162373543, -0.040930043905973434, 0.05507057532668114, 0.059214118868112564, -0.030118077993392944, 0.032985441386699677, 0.021771352738142014, -0.007203808985650539, 0.028562964871525764, -0.0022709439508616924, -0.024743568152189255, 0.012958387844264507, 0.0014857249334454536, 0.013899640180170536, 0.041509464383125305, 0.007546460255980492, 0.0044370973482728004, 0.01528044044971466, 0.03219158202409744, -0.04315158352255821, -0.043824199587106705, 0.03223546966910362, 0.002695860341191292, 0.009263922460377216, -0.007116633467376232, 0.004939799662679434, 0.0057816761545836926, -0.026158034801483154, -0.02777000330388546, 0.03277251869440079, 0.006396929267793894, 0.0456622913479805, -0.08576629310846329, 0.04062554985284805, 0.045672107487916946, -0.039296943694353104, 0.032587237656116486, -0.0498463436961174, -0.005927993915975094, 0.07056465744972229, -0.019098617136478424, 0.06803759932518005, -0.04733539745211601, 0.03323022276163101, 0.02939741499722004, 0.012334199622273445, 0.018000910058617592, 0.001136104459874332, 0.04725269973278046, -0.029948024079203606, 0.03369848057627678, -0.011234021745622158, -0.015335499309003353, -0.0021750247105956078, -0.01787165366113186, 0.00029958412051200867, -0.03229651227593422, -0.04924042150378227, -0.037276968359947205, 0.04531548172235489, 0.027813510969281197, 0.00028090315754525363, 0.0050267805345356464, 0.010109738446772099, -0.026007063686847687, 0.013629503548145294, 0.022766869515180588, 0.003288328181952238, -0.014097291976213455, -0.0299371425062418, 0.044070784002542496, 0.0071424865163862705, -0.02238360419869423, -0.022696632891893387, -0.005725956056267023, -0.031078727915883064, 0.054877180606126785, -0.007121879141777754, -0.02768070250749588, -0.03022480569779873, -0.006709483452141285, -0.0019200482638552785, 0.016413196921348572, 0.0007590494933538139, 0.018206574022769928, -0.009174538776278496, 0.04945075139403343, 0.032444167882204056, -0.06894747912883759, 0.008396711200475693, -0.029883194714784622, 0.03348807990550995, 0.037710946053266525, -0.012534099631011486, -0.04051801189780235, -0.01918043941259384, -0.01764591597020626, -0.02409917116165161, 0.003774176351726055, 0.00751102389767766, -0.0213365126401186, 0.020787116140127182, -0.022780366241931915, 0.056843601167201996, 0.0007798258448019624, 0.013418530113995075, -0.00564977154135704, 0.006993499584496021, 0.023001598194241524, 0.002187622943893075, 0.02929101139307022, 0.026643075048923492, -0.029919562861323357, 0.03444475680589676, -0.08410987257957458, 0.027035145089030266, -0.03279503807425499, -0.03431194648146629, -0.0015195314772427082, 0.0074752867221832275, 0.0010152749018743634, 0.03018116019666195, -0.021543320268392563, -0.019288046285510063, -0.03230569139122963, 0.018209483474493027, -0.050948817282915115, -0.03230632469058037, 0.024654466658830643, -0.014982548542320728, 0.012259830720722675, 0.05377235263586044, 0.03676984831690788, -0.027373049408197403, 0.02235155552625656, 0.045473236590623856, -0.057994768023490906, 0.009330724366009235, -0.05138545110821724, 0.009701951406896114, -0.015384005382657051, -0.02807098813354969, 0.00906444527208805, -0.012479809112846851, 0.0145350880920887, -0.004606487695127726, 0.0071628512814641, -0.04091126471757889, -0.036203913390636444, 0.005168487783521414, -0.026163820177316666, -0.03554191440343857, 0.002924632281064987, 0.018369128927588463, -0.011124289594590664, -0.012235707603394985, -0.013203493319451809, 0.00001027914731821511, 0.003882449818775058, -0.017455844208598137, -0.006300848443061113, -0.002199029317125678, -0.0046350290067493916, 0.03460114449262619, -0.022324727848172188, -0.02540162019431591, -0.0009150108671747148, -0.022612314671278, -0.019069800153374672, -0.021243741735816002, 0.012900147587060928, -0.025920355692505836, -0.02900303527712822, -0.016567615792155266, -0.002572060562670231, -0.03647293150424957, 0.004776083864271641, -0.005965548101812601, 0.003556332550942898, 0.015744619071483612, 0.004283440299332142, -0.03440862149000168, 0.06673501431941986, 0.02117575891315937, -0.05355656519532204, 0.0035199346020817757, 0.047841738909482956, -0.049561139196157455, 0.05294646695256233, 0.019017010927200317, -0.021426713094115257, -0.03505636751651764, -0.044894300401210785, 0.03372631594538689, -0.049166902899742126, -0.01387902069836855, -0.04531105235219002, -0.0021271188743412495, -0.023404063656926155, 0.03473341092467308, 0.01768193207681179, -0.018358074128627777, 0.018231680616736412, -0.04104229807853699, 0.02543393336236477, -0.056050244718790054, -0.0424293614923954, -0.01953607238829136, -0.015175659209489822, 0.016794491559267044, 0.05273508280515671, 0.03443022072315216, 0.018158288672566414, 0.022242611274123192, -0.000632392184343189, 0.02059292420744896, -0.019973333925008774, -0.06063288822770119, -0.039376262575387955, 0.011844986118376255, 0.026821278035640717, -0.01032866258174181, 0.0035875251051038504, -0.013902253471314907, 0.015214003622531891, -0.055062681436538696, -0.004852140787988901, -0.006493993569165468, -0.01631166599690914, -0.010927487164735794, -0.013767260126769543, 0.06195259094238281, -0.013220375403761864, 0.009787225164473057, -0.020745007321238518, 0.040371403098106384, 0.016103100031614304, 0.023859338834881783, -0.06391024589538574, -0.002489172387868166, -0.057353340089321136, -0.08726685494184494, 0.03270627558231354, -0.043019358068704605, -0.012187874875962734, -0.03377798572182655, 0.012131238356232643, 0.032107457518577576, -0.011384641751646996, 0.02315307781100273, 0.05241919681429863, -0.022171303629875183, -0.012382680550217628, -0.027025511488318443, 0.04440484195947647, 0.06711367517709732, -0.07163088023662567, 0.012529043480753899, -0.010517182759940624, -0.018542997539043427, -0.018469274044036865, -0.0354975163936615, -0.07010277360677719, -0.03773851320147514, -0.000970151275396347, 0.0828220322728157, 0.015423891134560108, 0.03342370316386223, 0.01706816256046295, -0.037072762846946716, -0.032186511904001236, 0.03923017531633377, 0.0018818886019289494, 0.030310112982988358, 0.01395503245294094, -0.02622969262301922, -0.0279373861849308, 0.004581590183079243, -0.011033914051949978, -0.03577103465795517, -0.008791763335466385, 0.03604438155889511, -0.0005623011966235936, -0.055485885590314865, 0.018253356218338013, 0.027138592675328255, -0.05088692903518677, -0.028474111109972, 0.04170553386211395, -0.008387945592403412, -0.02805371582508087, -0.03149966523051262, 0.003721773624420166, -0.010532701388001442, -0.031458210200071335, -0.00023525545839220285, 0.049072328954935074, 0.0023538796231150627, 0.02612905576825142, 0.008176329545676708, -0.010023134760558605, -0.018881382420659065, 0.01891155168414116, 0.028179356828331947, -0.005345671903342009, -0.012083599343895912, -0.03555077314376831, 0.01629907824099064, 0.031869709491729736, -0.009737767279148102, 0.044302284717559814, -0.04169159755110741, 0.015458033420145512, 0.01836204156279564, 0.00829247571527958, -0.005220860242843628, 0.012386798858642578, -0.011573594994843006, 0.0264529287815094, -0.013392099179327488, -0.06621740758419037, -0.026239246129989624, 0.03148641064763069, 0.019169339910149574, 0.05189131200313568, -0.04628023877739906, 0.007423163391649723, 0.04430198669433594, 0.04252445697784424, -0.04292697086930275, -0.0584963858127594, -0.07380610704421997, -0.06769265234470367, -0.04040224105119705, -0.013496766798198223, -0.02636520378291607, 0.017850778996944427, 0.04838769510388374, -0.008392282761633396, -0.06081255152821541, 0.003545304760336876, 0.04127737134695053, -0.04031486064195633, 0.0034115437883883715, -0.032584208995103836, 0.005144417751580477, -0.062027085572481155, -0.0449129156768322, -0.04923011362552643, -0.012587646953761578, -0.002814734587445855, 0.005977396387606859, -0.0026231117080897093, 0.020544253289699554, -0.005454360041767359, 0.03728485107421875, 0.015832001343369484, 0.02425440214574337, 0.0007234863587655127, -0.027982721105217934, -0.009232797659933567, 0.030831843614578247, -0.02434423193335533, 0.04306107386946678, 0.002503402531147003, -0.0038085898850113153, 0.04414038360118866, -0.026645798236131668, -0.029346559196710587, -0.018307898193597794, 0.003605100093409419, 0.0010032092686742544, -0.032451968640089035, -0.028980428352952003, -0.043202728033065796, 0.0023400778882205486, -0.0607956200838089, 0.009979749098420143, -0.04271797463297844, -0.0012096511200070381, -0.02120400220155716, -0.01569349318742752, 0.014143283478915691, 0.0680633932352066, -0.0037551301065832376, 0.022219255566596985, 0.0065639931708574295, 0.005759111605584621, 0.03499358519911766, 0.02583526447415352, 0.020423345267772675, 0.02320081740617752, 0.03715970739722252, -0.05481000989675522, 0.0071645169518888, -0.008021689020097256, -0.027823861688375473, 0.042154472321271896, -0.024623995646834373, -0.03785071149468422, -0.047658711671829224, 0.0022571515291929245, -0.017878644168376923, 0.02712385356426239, 0.0036162068136036396, -0.028065061196684837, 0.0003363960131537169, -0.011543036438524723, -0.04325774312019348, 0.012747722677886486, -0.08012627065181732, -0.022268349304795265, 0.03176575526595116, -0.01664404571056366, -0.020674804225564003, -0.013899716548621655, -0.051741402596235275, 0.04746956378221512, 0.0009412886574864388, -0.0028884399216622114, 0.004171628970652819, -0.005182590335607529, 0.013667376711964607, 0.04038189351558685, -0.015498953871428967, 0.011083927005529404, 0.026248449459671974, 0.019068406894803047, -0.05758536979556084, -0.02448917366564274, 0.015162345953285694, 0.018633145838975906, 0.014860447496175766, 0.01211673952639103, -0.00600619800388813, -0.002078928053379059, -0.019395597279071808, -0.0013591761235147715, -0.021417047828435898, -0.008982859551906586, -0.020281700417399406, 0.0018428995972499251, 0.008687576279044151, -0.05715128779411316, -0.025393158197402954, 0.027369987219572067, 0.0070420727133750916, -0.008734765462577343, -0.02648855186998844, 0.02476523444056511, 0.040337275713682175, -0.0131668820977211, 0.036252520978450775, 0.026208600029349327, 0.053009841591119766, -0.017141081392765045, 0.04572506621479988, -0.002492121886461973, 0.03215393051505089, 0.038345303386449814, 0.03562084957957268, 0.01758572645485401, 0.024378985166549683, 0.05053120478987694, -0.0018312381580471992, 0.007546942215412855, 0.03564145788550377, -0.0003928265650756657, -0.017932012677192688, 0.006576166022568941, -0.07215551286935806, 0.014680106192827225, 0.03563064709305763, -0.010178283788263798, 0.015545088797807693, 0.0026092908810824156, -0.02048453502357006, -0.03819414600729942, -0.03123057261109352, 0.040492355823516846, -0.03218458592891693, -0.0026225345209240913, 0.0054315621964633465, -0.017049215734004974, 0.012629474513232708, 0.02829085849225521, 0.037537992000579834, -0.021088136360049248, 0.06294048577547073, 0.02186780609190464, -0.018658604472875595, 0.0554470494389534, -0.00037509846151806414, 0.0038311874959617853, -0.04257631674408913, 0.012527456507086754, 0.014635300263762474, 0.0038073465693742037, -0.007764838170260191, -0.034310538321733475, -0.02866971120238304, 0.019448431208729744, 0.0056359367445111275, -0.017359737306833267, 0.036030009388923645, -0.01981937885284424, 0.00472216447815299, -0.054714348167181015, 0.02586735039949417, -0.046651292592287064, 0.0009819166734814644, 0.0359666533768177, -0.008271431550383568, -0.020067166537046432, 0.05147303640842438, -0.013070452027022839, 0.03855777159333229, 0.0109532680362463, 0.055533766746520996, -0.02307969331741333, 0.021095188334584236, 0.04389267414808273, -0.04517330974340439, 0.017852753400802612, 0.02388312853872776, -0.023877859115600586, -0.04638247564435005, -0.029157502576708794, -0.012350614182651043, 0.02327027916908264, -0.012453640811145306, -0.00037312033236958086, -0.014349706470966339, 0.022676704451441765, -0.013575620949268341, -0.05573517084121704, 0.00441840011626482, 0.024233782663941383, -0.05164231359958649, 0.035682231187820435, 0.008898652158677578, 0.045277465134859085, -0.007250974420458078, -0.025914570316672325, -0.054027095437049866, -0.011081977747380733, -0.009145618416368961, -0.017214082181453705, 0.06177781522274017, -0.005830090958625078, -0.023668821901082993, -0.030852777883410454, -0.06627009809017181, -0.01097083743661642, 0.033385325223207474, -0.038355451077222824, -0.0777340680360794, 0.027653340250253677, 0.0648445188999176, 0.044416796416044235, 0.04517931863665581, -0.03383110836148262, 0.015812847763299942, 0.050880830734968185, 0.06055998057126999, 0.013240496627986431, 0.0213435310870409, 0.02218625694513321, -0.012282325886189938, 0.023964455351233482, -0.02494371309876442, 0.041002579033374786, -0.018231719732284546, -0.012459143996238708, -0.01152260135859251, 0.007926966063678265, -0.03665238618850708, -0.05528487265110016, 0.028071293607354164, 0.0251421220600605, -0.0010790388332679868, -0.03162684291601181, -0.05470375344157219, -0.008283874951303005, -0.03297163173556328, 0.01896286942064762, -0.018271910026669502, 0.019455527886748314, -0.01088577602058649, -0.026732727885246277, -0.02489623613655567, -0.060088422149419785, 0.13315267860889435, 0.0773232951760292, 0.04209908843040466, -0.01850283332169056, 0.0257750004529953, 0.046633366495370865, 0.043601904064416885, -0.03842433914542198, -0.0021052886731922626, -0.036261461675167084, 0.030065130442380905, 0.025262944400310516, 0.011553189717233181, -0.015796521678566933, 0.037370167672634125, 0.06419321894645691, -0.02902897074818611, 0.019014405086636543, 0.0037258488591760397, -0.015173452906310558, -0.05022349953651428, 0.04135936126112938, 0.004257536958903074, 0.0008640676969662309, -0.004299454856663942, -0.00468285521492362, 0.03696382790803909, -0.036852918565273285, 0.0003351107006892562, 0.002310262992978096, -0.0007579918601550162, -0.05316268280148506, 0.04518735036253929, -0.014725549146533012, -0.014967254363000393, 0.049806565046310425, -0.011306830681860447, -0.02682388573884964, -0.00549667002633214, 0.016077686101198196, -0.022944433614611626, 0.022230692207813263, 0.02031221054494381, -0.027063945308327675, 0.014239571057260036, 0.030390694737434387, -0.012447318062186241, 0.04348031431436539, 0.0156662967056036, -0.031633537262678146, 0.050207704305648804, -0.05504368245601654, 0.011669158935546875, 0.011594129726290703, -0.03808077797293663, 0.011929644271731377, 0.016525326296687126, -0.04308590665459633, 0.011167778633534908, -0.015843331813812256, 0.010326273739337921, 0.031156957149505615, -0.012435887940227985, -0.0034132793080061674, -0.01045598927885294, 0.011693340726196766, 0.025779755786061287, -0.0021795073989778757, -0.008510764688253403, -0.01977546513080597, -0.003763363929465413, -0.04239478334784508, -0.04941524192690849, -0.027006208896636963, 0.037992093712091446, 0.0349794439971447, -0.02114962227642536, 0.024507008492946625, -0.0035474475007504225, -0.04412640631198883, -0.017823293805122375, -0.042089346796274185, -0.015476208180189133, -0.01264146063476801, 0.0014916900545358658, 0.03057754598557949, -0.04695792496204376, -0.006847706623375416, -0.054958514869213104, 0.04191964119672775, 0.05398423224687576, -0.025575092062354088, 0.013621266931295395, -0.04389398172497749, -0.01113967690616846 ]
GGArmy Join the GGArmy. Enlist now Connect to the GGArmy through facebook. Log in using your Facebook account, so you'll never need to remember another password! If you have previously registered for ggarmy.com using the same email address you use for Facebook, your old account will automatically be linked to your Facebook account from now on. Joining the GGArmy is free. By the filling in the form below you're instantly a member and will receive email updates on all that's happening with the group, the Socceroos and Australian football PLUS you will able to view Australia's only FREE football magazine ITYS. Register using your existing Facebook account Register without connecting to your Facebook account. 2020 U23 THAILAND 2020 Olympics Tokyo 2022 WC Qatar Olyroos Young Socceroos Joeys Young Matildas Top 10 Aussies Abroad For 2... Ben Somerford The Good, the Bad & the Ugl... Three burning questions: Jo... Breanna Holden Alex's view from the terrace Ashley Morrison Michael Huguenin Steve Horvat Ross Payne Adam Peacock Kieran Pender Teo Pellizzeri Erin Nugent Ari Charilaou Francis Leach Paddy Higgs John Iannantuono Top 10 Aussie performers abroad by Ben Somerford on May 17, 2012 0 comments | email | print Australia Day Football Gongs: The good, bad and undecided Did Holger Osieck tense up too much? FFA reboot has A-League flying Inside the A-League's ACL opponents The novelty 2011-12 A-League awards With Holger Osieck naming a Socceroos squad this week and as most leagues finish up for the season, GGArmy reflects on the top 10 Aussie performers abroad (Europe and Asia) this campaign. 10. Chris Herd (Aston Villa) Villa boss Alex McLeish gave the 23-year-old defensive midfielder a first-team chance in October and he impressed enough to become a regular, although injury over the turn of the year held him back. Herd's emergence was impressive, although he found the going tough at times, in his role as a midfield destroyer particularly against the top teams including a difficult day against Arsenal. 9. Mile Jedinak (Crystal Palace) The Socceroo thoroughly enjoyed his first season in English football, helping Palace reach the Carling Cup semi-finals and a midtable finish in the Championship. Jedinak established himself as a favourite among the Eagles' fans with his uncompromising midfield work alongside Kagisho Dikgacoi. Jedinak's no-nonsense approach and aerial threat were the features of his play, while his passing was solid. 8. Carl Valeri (Sassuolo) The 27-year-old central midfielder has once again been a key member for Sassuolo, who remain in the promotion hunt in Serie B. It seems whenever Valeri is playing, the team performs better than usual. Valeri has been linked with Bologna but if he can earn promotion with his current club, that'd be ideal. 7. Joshua Kennedy (Nagoya Grampus) The beanpole striker may have missed a fair chunk of recent football due to a back problem but he was a key part of Nagoya's late season push for the 2011 title when they finished runners-up. Kennedy ended the 2011 J.League season as the competition's topscorer with 19 strikes and has already grabbed a few this term despite his injury problems as his height continues to cause defences all sorts of problems. 6. James Troisi (Kayserispor) The Adelaide-born attacking midfielder enjoyed a real breakout season in Turkey where he was his club's topscorer and chief orchestrator of forward moves. The left-sided winger scored 11 goals for Kayserispor, as well as contributing five assists, helping the team avoid the drop. Unfortunately late payments have frustrated Troisi who is reported to have left the club but after his fine campaign he should find a willing European club to join. 5. Alex Brosque (Shimizu S-Pulse) The former Sydney FC man continues to emerge as a key Socceroo with his recent J.League form boosting his profile. Brosque's form as a midfield general for Shimizu has been crucial to their early season success in 2012, with the 28-year-old netting five goals in all competitions already this term. But it's not only Brosque's handy goals, but his midfield guile and craft as well as his movement which has endeared him to the S-Pulse faithful, as well as Holger Osieck. 4. Mark Schwarzer (Fulham) The evergreen shot-stopper is hard to fault and even though there were a few moments he'd like to forget during the 2011-12 Premier League season, including a March blunder against Aston Villa which ultimately cost his side in stoppage-time. Schwarzer continues to be fairly dependable and consistent for a Fulham outfit who claimed another top-half finish. Despite the occasional mistake, the 39-year-old shows no signs of retiring just yet. 3. Rhys Williams (Middlesbrough) The suitors continue to line up for the Perth-born defender/midfielder with Liverpool, West Bromwich, Newcastle and Bolton reported to be keen on his signature. Williams was an integral part of Middlesbrough's promotion push this season, playing as a central defender or a controlling midfielder. The youngster's composure and leadership qualities have made him a standout prospect for Australian football and finally he was fit enough to show that off. 2. Adam Federici (Reading) There still are some people out there who believe Federici isn't the natural successor to Schwarzer as Australia's next number one keeper, but his performances during the 2011-12 season surely turned a lot of opinions in his favour. Federici was one of the chief reasons that Reading not only won promotion to the English Premier League but lifted the Championship title with his assured keeping, super saves and vocal leadership at the back. Make no mistake, Federici is a top keeper and he'll prove that to many more next term in England's top flight. 1. Brett Holman (AZ Alkmaar) Once upon a time, Holman was the Socceroos most-maligned player, but nowadays he's one of the first names put down on the team sheet when fans float their preferred Australia's starting line-ups. Holman's wonderful performances during the 2011-12 campaign with AZ Alkmaar, whom he helped to top spot in the Eredivisie at the winter break, won him a move to Aston Villa. The Australian's combination play down the left with full-back Simon Poulsen was exquisite, and his confidence to take on opposition players and try a shot made him one of the league's most dangerous attackers. Ben is a freelance Australian football writer, with experience with publications such as FourFourTwo, FTBL, The World Game, British Football Week, The Roar and SportsPundit. He specialises on anything related to Australians playing abroad from Europe to Asia and has travelled to both Brazil and Russia for the past two World Cups to watch his beloved Socceroos. 2020/02/03 19:00 AUS vs TPE 2020 Olympic Qualifier (Womens) @CHI 00 days 00 hours00 minutes Tweets about "ggarmy" The 34-year-old goalkeeper would arguably be close to top of this list if not for a long-term Achilles tendon injury suffered in July The display wasn't the side's best, particularly the second half, but we beat an opponent in their home conditions for the first time in four attempts. GG Army ESPN Brazil 2014 Posters Socceroos 2014 World Cup Kit South Africa Highlights Manfred Wörle's Socceroos-Denmar... Russia 2018 World Cup GGA tour re... Re-live all the highlights from the Green & Gold Army's 2018 FIFA World Cup tour in Russia. Australia vs Peru - 2018 FIFA Wor... The third and final match for the Socceroos at the FIFA World Cup in Russia. What an incredible atmosphere to be a part of here in Sochi with the Peruvian supporters. France vs Australia - 2018 FIFA W... Experience the highs and lows of the France vs Australia match through the eyes of the Green and Gold Army. Denmark vs Australia - 2018 FIFA ... Another spectacular game day here in Russia! Re-live the action of our pre-match party and the match against Denmark, to keep our World Cup hopes alive. GGArmy Welcome Party - 2018 FIFA ... The 2018 Green and Gold Army World Cup tour has kicked off. A sea of gold Ushankas, a 5-0 win by the host nation, and plenty of singing, dancing and (a little) vodka. Socceroos Central ITYS Magazine
[ 0.007243363186717033, 0.002776176668703556, -0.03107186034321785, 0.011392110027372837, -0.005793025717139244, -0.009589209221303463, 0.027672143653035164, 0.04522937163710594, 0.017292356118559837, 0.006528973113745451, 0.042915116995573044, 0.0022184248082339764, -0.007551883347332478, -0.025242570787668228, -0.038299836218357086, -0.009182551875710487, -0.024653291329741478, -0.015629468485713005, -0.022700317203998566, -0.022125646471977234, 0.027722099795937538, -0.00668463995680213, -0.045809563249349594, -0.01863843947649002, -0.03016034886240959, 0.04718774929642677, 0.03326427936553955, -0.01799560897052288, 0.062407661229372025, 0.03954834118485451, -0.019351715222001076, -0.0663231909275055, 0.04156366363167763, -0.042015574872493744, -0.054567836225032806, -0.03140542656183243, 0.05098138004541397, -0.05445505306124687, -0.036996304988861084, -0.043693192303180695, 0.004325345158576965, 0.0016012523556128144, 0.030342623591423035, -0.0042085712775588036, -0.03171444684267044, -0.01320978906005621, -0.01467221137136221, 0.0015937753487378359, 0.02592400461435318, -0.04330159351229668, 0.01208561286330223, -0.016681738197803497, 0.03689121827483177, -0.0025294669903814793, 0.003502629231661558, -0.011130135506391525, 0.017371632158756256, -0.029321959242224693, -0.019042223691940308, 0.05710644647479057, 0.04013893008232117, 0.03264227882027626, 0.04547203704714775, -0.02670266106724739, 0.019039731472730637, 0.015238288789987564, 0.020361853763461113, -0.01150340773165226, 0.016911067068576813, -0.005472084041684866, -0.01442279014736414, 0.0102567533031106, -0.04054376110434532, -0.005871593952178955, -0.024941064417362213, 0.004094967618584633, -0.035327620804309845, -0.001157064107246697, 0.007400832138955593, 0.01624382846057415, 0.013636721298098564, 0.06118227541446686, 0.009231115691363811, 0.00020016303460579365, -0.013057646341621876, -0.0303179994225502, 0.013844016939401627, 0.017821671441197395, -0.0017690537497401237, 0.02398093417286873, -0.002249795477837324, 0.045153241604566574, -0.01651577278971672, 0.01505731139332056, 0.05851820856332779, 0.053873058408498764, -0.026362253352999687, 0.02050580084323883, -0.00021154653222765774, 0.01602826453745365, 0.044109947979450226, 0.009766965173184872, 0.004415140487253666, 0.03843482583761215, -0.020278755575418472, -0.01785859651863575, 0.010698533616960049, -0.03576473519206047, -0.003387892385944724, -0.01682235486805439, -0.0173367727547884, -0.009024067781865597, 0.013625816442072392, 0.0012521053431555629, -0.02319696731865406, 0.027355793863534927, 0.0007882253266870975, 0.03287333995103836, -0.04182496666908264, 0.019522858783602715, 0.01991877146065235, 0.010340297594666481, 0.03304603695869446, -0.00911533460021019, 0.013030020520091057, -0.0404958501458168, -0.030567554756999016, 0.04650676250457764, -0.042097244411706924, -0.05408058315515518, -0.012024538591504097, -0.06472496688365936, -0.018900448456406593, -0.009151099249720573, -0.02994522824883461, 0.04905315488576889, 0.015193482860922813, 0.020211409777402878, 0.012825029902160168, -0.08497469127178192, 0.05675458908081055, 0.01577250473201275, 0.025175878778100014, 0.0878152847290039, -0.0298960879445076, 0.025344839319586754, 0.0010114206233993173, -0.007749948184937239, -0.047630149871110916, 0.009778495877981186, -0.017965679988265038, 0.004495948553085327, -0.007199070416390896, 0.015806863084435463, -0.00021120237943250686, -0.012373554520308971, -0.01293921284377575, 0.026287857443094254, 0.01426199171692133, 0.03482941538095474, -0.029309581965208054, -0.0035508989822119474, -0.009515524841845036, 0.024153202772140503, 0.008107981644570827, 0.026656590402126312, -0.024247540161013603, 0.0023776546586304903, 0.010781645774841309, -0.005682309623807669, 0.011187557131052017, 0.008605572395026684, 0.01656886376440525, 0.021511195227503777, 0.03018636628985405, 0.06226818636059761, 0.03286157175898552, 0.0023049027658998966, 0.06477323174476624, 0.0514209009706974, -0.021956345066428185, 0.001963406102731824, -0.006093491334468126, 0.06331917643547058, 0.011939574033021927, 0.006744130980223417, -0.017734143882989883, -0.0346565805375576, -0.03971083462238312, -0.05931850150227547, -0.047213055193424225, 0.022173739969730377, -0.04026821255683899, 0.03335117548704147, -0.001725605339743197, 0.01363748125731945, 0.00022239275858737528, -0.01955244690179825, -0.01407571416348219, -0.047227684408426285, -0.034325677901506424, 0.07279614359140396, -0.04737250879406929, 0.024451684206724167, 0.013744021765887737, -0.04082769528031349, 0.016909250989556313, 0.07941227406263351, -0.03563831374049187, 0.004888626281172037, 0.03973712772130966, -0.012998164631426334, -0.001788425026461482, -0.013494441285729408, -0.011145454831421375, -0.009603355079889297, -0.004033784847706556, 0.0438971184194088, -0.027568776160478592, 0.008327119052410126, -0.0050757345743477345, 0.0172535739839077, 0.04604817181825638, 0.03113715723156929, 0.019843561574816704, 0.02782183513045311, 0.016051268205046654, 0.03149962052702904, -0.03186177462339401, 0.009974444285035133, -0.020055696368217468, 0.03308289870619774, 0.05296970158815384, 0.06728892028331757, 0.05155316740274429, 0.017791301012039185, 0.04649036005139351, 0.0698963850736618, 0.011818330734968185, 0.0015218366170302033, -0.01378576084971428, 0.0063360934145748615, 0.015093564987182617, 0.03692496940493584, 0.0007919609197415411, 0.016888033598661423, -0.008757202886044979, 0.004926460795104504, 0.0040539707988500595, 0.04907981678843498, -0.02134622074663639, 0.04249247908592224, 0.052873365581035614, 0.01713196001946926, -0.052034080028533936, -0.0021858245600014925, 0.045916467905044556, 0.04003534093499184, -0.005140712484717369, 0.012033527716994286, -0.012848862446844578, 0.00753515912219882, 0.016414061188697815, -0.016347002238035202, 0.0062355403788387775, 0.012089253403246403, -0.02555421181023121, 0.029732046648859978, -0.0243862085044384, -0.040379539132118225, -0.026119021698832512, -0.07020401954650879, -0.025131983682513237, -0.04326239973306656, -0.04405606538057327, 0.006884581409394741, 0.0364764966070652, -0.028235724195837975, 0.02572651393711567, 0.019891025498509407, 0.003513805801048875, -0.03499522805213928, 0.001601522322744131, 0.039966415613889694, 0.03181324899196625, 0.02976839430630207, -0.03553321585059166, 0.021640365943312645, -0.03321029245853424, 0.025646677240729332, -0.0334373414516449, -0.01733054779469967, 0.010364657267928123, -0.005842340644448996, 0.06301484256982803, -0.029834849759936333, -0.02435729093849659, -0.021329360082745552, -0.029468916356563568, -0.05453250929713249, 0.015963178128004074, 0.01194395124912262, 0.03827301785349846, 0.0027789936866611242, -0.027187595143914223, 0.04771415516734123, 0.03196575492620468, -0.04441022872924805, 0.07321146875619888, 0.044963546097278595, -0.039090149104595184, 0.011454147286713123, 0.03653924539685249, -0.024144116789102554, -0.06230420991778374, 0.05297992751002312, 0.026904627680778503, 0.010670430026948452, -0.04749198257923126, -0.004894336219877005, -0.047384750097990036, 0.021951276808977127, 0.03685036674141884, -0.04555486515164375, -0.020508116111159325, 0.02633441612124443, 0.022478781640529633, -0.06498206406831741, 0.020002340897917747, -0.04177213832736015, -0.03869000822305679, -0.049516767263412476, -0.02487327717244625, 0.03799428045749664, 0.011869827285408974, 0.03901074081659317, 0.006055138539522886, -0.020281551405787468, -0.00047243465087376535, 0.030711274594068527, 0.032352514564991, -0.017565881833434105, 0.005516550503671169, 0.0239899680018425, -0.013113480061292648, -0.00026835702010430396, 0.011731134727597237, 0.001904818112961948, -0.020054606720805168, 0.0017414322355762124, -0.005789946764707565, 0.02827717550098896, 0.018186228349804878, 0.003160203108564019, 0.03545699641108513, 0.0311715267598629, -0.02985411323606968, 0.016272680833935738, 0.015193588100373745, 0.00009818603575695306, 0.0271510798484087, 0.0009382495773024857, 0.014484485611319542, -0.03882378339767456, -0.024192024022340775, -0.042983364313840866, 0.0007418993045575917, 0.01771741546690464, 0.055051740258932114, -0.057488877326250076, 0.05892230570316315, -0.04709295555949211, -0.011802418157458305, 0.0650230124592781, -0.05917789041996002, 0.020559992641210556, 0.05076203495264053, -0.028882401064038277, 0.0371842198073864, -0.03714103624224663, 0.02291811630129814, -0.01175923552364111, 0.01087167952209711, 0.04038914665579796, 0.01579734869301319, 0.024248037487268448, -0.008195821195840836, -0.0028927845414727926, -0.00932555552572012, -0.0046859923750162125, -0.013727029785513878, -0.03199373558163643, -0.011086918413639069, -0.017833756282925606, -0.0478932149708271, -0.02032344415783882, 0.029891524463891983, 0.033873673528432846, 0.04140476509928703, -0.011473811231553555, 0.05250779911875725, 0.004852714482694864, 0.02018597722053528, 0.032246220856904984, -0.010660051368176937, 0.02159225381910801, -0.01939442940056324, 0.02184394747018814, 0.0057626282796263695, -0.05318906158208847, -0.01117729302495718, -0.026972634717822075, -0.03650487959384918, 0.05442146956920624, 0.026651840656995773, -0.01950722560286522, -0.05515085905790329, 0.02521546185016632, -0.025636278092861176, 0.01671791821718216, -0.048272062093019485, -0.01678788661956787, -0.001810563844628632, 0.04860858619213104, 0.017681868746876717, -0.04918507859110832, -0.0007418744498863816, -0.035624053329229355, 0.05284793674945831, 0.059295400977134705, 0.01987767592072487, -0.055466197431087494, -0.027968620881438255, -0.03300144523382187, -0.037532225251197815, -0.011995455250144005, 0.0357087105512619, 0.018045814707875252, -0.02109980583190918, -0.029727380722761154, 0.02289235219359398, 0.000513676495756954, 0.029355689883232117, -0.0032466743141412735, -0.0006000692374072969, 0.01294430997222662, -0.010303636081516743, 0.047814417630434036, -0.007074094843119383, -0.017145676538348198, 0.017962677404284477, -0.05482572317123413, 0.019854050129652023, 0.006279817316681147, -0.023123959079384804, -0.011594070121645927, -0.006016609724611044, 0.011468227952718735, 0.04226507619023323, -0.023847654461860657, -0.0007904680096544325, -0.03819185122847557, 0.037314273416996, -0.039692167192697525, -0.03260929882526398, 0.03906462341547012, -0.0014593522064387798, -0.015588433481752872, 0.044298820197582245, 0.04022492095828056, -0.03190521523356438, 0.0069999974220991135, 0.025962991639971733, -0.0447048656642437, 0.053965214639902115, -0.04073456674814224, 0.055171068757772446, -0.014150385744869709, -0.0561257041990757, 0.02189670130610466, -0.04758042097091675, 0.022269386798143387, -0.00339372456073761, -0.04551452025771141, -0.07192497700452805, -0.07087621092796326, -0.04478155076503754, 0.001397121581248939, -0.009241078048944473, 0.0285167433321476, -0.003085561329498887, -0.01873130165040493, 0.011645084246993065, 0.013711102306842804, -0.019639475271105766, 0.013082447461783886, -0.0006928585935384035, 0.005773146636784077, 0.0013601700775325298, -0.0006564058130607009, 0.003527178429067135, -0.0006700126104988158, -0.05020228773355484, 0.0281691774725914, 0.011952552013099194, -0.018556857481598854, -0.043542008846998215, -0.026538660749793053, -0.015271621756255627, -0.010798521339893341, -0.05690063163638115, 0.001939311739988625, -0.022399915382266045, -0.008193603716790676, 0.002078257966786623, 0.009214538149535656, 0.011520887725055218, 0.008221782743930817, -0.038074396550655365, 0.05378531292080879, 0.021970758214592934, -0.03564123064279556, -0.028586262837052345, 0.040921326726675034, 0.011819016188383102, 0.05305386334657669, -0.03441449999809265, -0.007484712637960911, -0.03770618513226509, -0.04615383967757225, -0.006785412784665823, -0.033723246306180954, -0.029306508600711823, -0.03615405037999153, -0.0014363086083903909, -0.06470118463039398, 0.029515929520130157, 0.03038095496594906, 0.012149126268923283, -0.008517260663211346, -0.056527137756347656, 0.010282857343554497, -0.02472369372844696, -0.029139244928956032, -0.01832454837858677, 0.021855290979146957, 0.0008478236268274486, 0.0412825271487236, 0.0058746845461428165, 0.04287554696202278, 0.01893881894648075, 0.006898859515786171, 0.01781335473060608, -0.017952654510736465, -0.02167166955769062, -0.018781881779432297, -0.011191523633897305, 0.0037318861577659845, 0.0183657705783844, -0.005017030984163284, -0.040588151663541794, 0.0447336845099926, -0.0647982731461525, 0.00828398298472166, -0.041872527450323105, -0.03049340657889843, -0.006389920134097338, -0.021281275898218155, 0.06611283123493195, -0.0271309707313776, 0.03376526013016701, -0.02471834421157837, 0.04223019257187843, 0.041432593017816544, 0.019228234887123108, -0.04377363622188568, -0.00954266358166933, -0.02989923767745495, -0.046122584491968155, 0.025314440950751305, -0.050478268414735794, -0.0030962044838815928, -0.04297234117984772, 0.01887301541864872, 0.02971218340098858, 0.01638103649020195, 0.027813734486699104, 0.054998286068439484, 0.0036619044840335846, -0.0018323491094633937, -0.010720228776335716, -0.005849278531968594, 0.025292782112956047, -0.019542643800377846, -0.00940149649977684, -0.001177094061858952, -0.04161041975021362, 0.004719204269349575, -0.03397553786635399, -0.036007143557071686, -0.06380295753479004, -0.0013109752908349037, 0.08993082493543625, 0.005291372537612915, 0.03168533742427826, -0.002489156788215041, -0.04614277556538582, -0.06189562752842903, 0.028166024014353752, 0.0141797149553895, 0.007759854197502136, 0.06398053467273712, 0.014418278820812702, -0.00015262961096595973, -0.019435765221714973, 0.008228493854403496, -0.012655472382903099, -0.04836025834083557, 0.056176409125328064, -0.03585575893521309, -0.03068995103240013, 0.053102072328329086, 0.04630940780043602, -0.059175558388233185, -0.059991609305143356, -0.008957481011748314, 0.002884712303057313, 0.0077012269757688046, -0.021799994632601738, 0.024599578231573105, -0.04368195682764053, -0.008277371525764465, 0.007537456229329109, 0.029331931844353676, 0.01664620265364647, 0.04447690024971962, 0.0071730101481080055, 0.03066553920507431, -0.0635385811328888, 0.012000867165625095, 0.0405426062643528, -0.01495358720421791, -0.023508714511990547, -0.029369674623012543, -0.0007928460254333913, 0.0361814983189106, -0.001346068107523024, 0.06037668511271477, -0.0016542794182896614, 0.031076395884156227, 0.017454981803894043, 0.0013711306964978576, 0.032237641513347626, 0.01050508115440607, -0.030224096029996872, 0.001405698130838573, -0.013125702738761902, -0.04162579029798508, -0.009299580939114094, 0.009838130325078964, 0.02966848947107792, 0.0279872827231884, -0.06227750703692436, 0.01577322743833065, 0.022926054894924164, 0.0015883665764704347, -0.003135030623525381, -0.06580184400081635, -0.05217163637280464, -0.03186929598450661, -0.04970095306634903, -0.03261585161089897, 0.003632443957030773, -0.011706973426043987, 0.03352201357483864, 0.03521602600812912, -0.031502798199653625, 0.002305649919435382, 0.00271741789765656, -0.017295105382800102, 0.0038759433664381504, -0.06243906170129776, 0.022427571937441826, -0.03462495654821396, -0.048826057463884354, -0.058913253247737885, -0.01546648982912302, -0.0016819654265418649, 0.007111120969057083, -0.0009564873180352151, 0.021482964977622032, 0.0013398167211562395, 0.001395277795381844, 0.00832596980035305, 0.005682960152626038, -0.0318453349173069, -0.015190490521490574, -0.028575871139764786, 0.024222292006015778, -0.010609405115246773, 0.00927138701081276, 0.014418892562389374, -0.0047524236142635345, 0.03729686513543129, -0.022419197484850883, -0.0220236387103796, -0.002314777346327901, -0.02039133571088314, 0.018235670402646065, -0.020313074812293053, -0.01674545183777809, -0.01845293678343296, 0.011511131189763546, 0.010779783129692078, 0.03296075016260147, 0.0037516301963478327, 0.017762038856744766, -0.009023895487189293, -0.05836549028754234, 0.004759535193443298, 0.06037875637412071, 0.007566511165350676, 0.012961789965629578, -0.007767850998789072, 0.04991567134857178, 0.007351674139499664, -0.039975401014089584, 0.05042073875665665, 0.023480195552110672, 0.04178553819656372, -0.05514717847108841, 0.01595931127667427, -0.011048484593629837, -0.014754213392734528, 0.03611573576927185, -0.0016090009594336152, -0.03165103867650032, -0.06804551184177399, -0.020984644070267677, 0.0016922603826969862, 0.03900161385536194, -0.011288423091173172, -0.0010157950455322862, 0.04590992256999016, -0.022069895640015602, -0.027213336899876595, 0.015762830153107643, -0.07676903158426285, -0.012593619525432587, 0.0158302690833807, -0.010862995870411396, -0.015418714843690395, -0.02202259935438633, -0.05160016939043999, 0.032988667488098145, -0.01036617998033762, 0.008141903206706047, -0.023159431293606758, 0.01879136450588703, 0.001096396124921739, 0.060705818235874176, -0.019358273595571518, -0.007993172854185104, 0.026014281436800957, 0.05898839235305786, -0.03891853243112564, -0.028346743434667587, 0.031992435455322266, 0.004378987941890955, 0.008946485817432404, -0.003054013242945075, 0.013756689615547657, 0.0034700725227594376, 0.00028784922324121, -0.009620253928005695, 0.0020790707785636187, 0.004222594667226076, 0.011603559367358685, 0.06664569675922394, -0.02195895090699196, -0.00922377035021782, -0.034896232187747955, 0.04391391575336456, 0.026267381384968758, 0.006073530297726393, -0.01937106065452099, 0.03482653945684433, 0.027542298659682274, -0.01780014857649803, 0.039126206189394, 0.025904381647706032, 0.05639578774571419, -0.02334701269865036, 0.021688679233193398, 0.019978024065494537, 0.04671291261911392, 0.01656385511159897, 0.012129648588597775, -0.010313672944903374, 0.04513987526297569, 0.01769307255744934, -0.014342186972498894, 0.0016896524466574192, 0.029217230156064034, 0.032094188034534454, -0.07888748496770859, 0.0036948996130377054, -0.02256765589118004, 0.005392137449234724, -0.00302009005099535, -0.015038852579891682, 0.014326762408018112, -0.030792610719799995, 0.003919671755284071, -0.008895331993699074, 0.008154439739882946, 0.025218769907951355, -0.023002589121460915, 0.028730953112244606, 0.022107724100351334, -0.020460817962884903, 0.010921484790742397, 0.0340295135974884, -0.011032814159989357, 0.00977494940161705, 0.0074060577899217606, 0.03484174609184265, -0.014427438378334045, 0.05740927532315254, 0.023207521066069603, 0.002815098036080599, -0.030132822692394257, 0.011252008378505707, 0.012335105799138546, -0.026831142604351044, -0.03324558958411217, 0.0005257069715298712, -0.04825936257839203, 0.018918393179774284, 0.015091420151293278, -0.00023066163703333586, 0.0497470460832119, -0.04943951219320297, 0.005859686993062496, -0.027878127992153168, 0.024307532235980034, -0.05528981238603592, 0.03491479903459549, 0.015484108589589596, -0.031085437163710594, -0.005109580233693123, 0.03772059828042984, 0.03358848765492439, 0.015551728196442127, 0.0015021536964923143, 0.0199398435652256, -0.0010638546664267778, 0.028051195666193962, 0.019480377435684204, -0.04272041842341423, -0.014711004681885242, 0.028321996331214905, -0.008776282891631126, -0.03164832666516304, -0.06352945417165756, -0.038122255355119705, 0.024450698867440224, 0.012111174874007702, -0.015593953430652618, -0.016315478831529617, 0.03321808949112892, 0.022377895191311836, -0.05266076698899269, -0.02225968800485134, 0.042533308267593384, -0.05126689001917839, 0.038737278431653976, 0.022528285160660744, 0.018472157418727875, -0.0012868616031482816, -0.011955576948821545, -0.012448644265532494, -0.045899808406829834, -0.0014633359387516975, -0.018249936401844025, 0.06102853640913963, -0.03142279386520386, -0.03732804208993912, -0.02718353271484375, -0.038454845547676086, -0.04960933327674866, -0.005846838466823101, -0.04454171657562256, -0.04101290926337242, 0.0356232225894928, 0.05981352552771568, 0.013733776286244392, 0.02202184498310089, -0.03503366559743881, -0.004658495541661978, 0.03450951352715492, 0.08033078163862228, -0.02390695922076702, -0.0030384473502635956, 0.0017609427450224757, -0.014899155125021935, 0.004373838193714619, -0.03997581824660301, 0.027906879782676697, -0.02506340853869915, -0.017932532355189323, -0.02443861775100231, 0.0036366707645356655, 0.0022689513862133026, -0.059024933725595474, 0.015474042855203152, 0.020509161055088043, -0.03986010700464249, -0.01736096292734146, -0.05788123980164528, -0.014443020336329937, -0.04797029495239258, -0.009339865297079086, -0.04095142334699631, 0.05306306853890419, 0.03630755841732025, -0.019076645374298096, -0.03868294134736061, -0.04053227975964546, 0.15207116305828094, 0.049915995448827744, 0.0009550063405185938, -0.009810269810259342, 0.038297176361083984, 0.020250024273991585, 0.024021584540605545, -0.009813018143177032, 0.000602301734033972, -0.04536670446395874, 0.04569769278168678, -0.016244923695921898, 0.04196467250585556, 0.006023000925779343, 0.011885242536664009, 0.05932772904634476, -0.03421804681420326, 0.033262625336647034, 0.03819936141371727, -0.023118719458580017, -0.03184753283858299, 0.004706500098109245, 0.017155157402157784, 0.0005585323669947684, -0.0005772151635028422, 0.025142937898635864, 0.012310662306845188, -0.043652210384607315, -0.02203187346458435, -0.00261010997928679, 0.017274867743253708, -0.026226764544844627, 0.034745361655950546, -0.0300954170525074, -0.0764273852109909, 0.05245586484670639, -0.013874826952815056, -0.02902970276772976, -0.005652547348290682, 0.023857107385993004, -0.010938719846308231, -0.0015040598809719086, 0.027297722175717354, -0.051409102976322174, 0.027074912562966347, 0.025470176711678505, -0.06309216469526291, 0.002844413975253701, 0.011549287475645542, -0.021010415628552437, 0.05896541848778725, -0.02445879392325878, 0.03301550820469856, -0.04904899373650551, -0.04094744101166725, 0.01673182286322117, -0.006492495536804199, -0.03410065546631813, -0.007618964184075594, -0.012040085159242153, 0.04141758009791374, -0.0020934357307851315, -0.007018398027867079, 0.009516177698969841, -0.04011400416493416, 0.008537975139915943, -0.0011811698786914349, 0.017978090792894363, -0.012695124372839928, -0.021969769150018692, -0.023680200800299644, -0.009535654447972775, 0.015136811882257462, -0.02047681249678135, 0.015007148496806622, 0.016559021547436714, -0.00685459841042757, 0.029817888513207436, -0.00274497433565557, -0.03720239922404289, -0.02231125347316265, -0.01958612911403179, -0.0005367341218516231, 0.002708375919610262, 0.039783209562301636, 0.027578582987189293, -0.06405457109212875, -0.05688321962952614, 0.008300378918647766, 0.06688245385885239, 0.03241519257426262, 0.034292303025722504, -0.024284156039357185, -0.008584163151681423, -0.02782288007438183 ]
The University of Arkansas Hope-Texarkana Fine Arts Club recently collected enough donations to supply thirty-one care packages to troops in Iraq. Also, more than $650 was donated to pay for postage to ship the packages. Farmer's Bank & Trust of Hope, Arkansas, was especially helpful with this project, providing nearly half of the total donated items. "I would also like to thank the UAHT faculty, staff, and students who came together to make this year's project a success. The Fine Arts Club could not have completed this service project without all of the extra help we received from the UAHT family," Slack noted.
[ 0.01692132093012333, 0.014570060186088085, -0.024868572130799294, 0.03668411821126938, -0.038865841925144196, 0.000590295298025012, 0.00026698457077145576, 0.028149355202913284, 0.014534709975123405, 0.010791676118969917, 0.045001573860645294, -0.009991763159632683, 0.02037537284195423, -0.019168749451637268, 0.0003354285436216742, 0.018903320655226707, 0.0011278220918029547, -0.015818558633327484, 0.010984568856656551, -0.00474141538143158, -0.013919906690716743, 0.009778213687241077, -0.06041744723916054, -0.02074834518134594, 0.0015308792935684323, 0.03092721849679947, 0.03814944624900818, -0.00877443142235279, 0.060731079429388046, 0.07639999687671661, -0.029738908633589745, -0.04575081169605255, 0.04461329057812691, -0.051504988223314285, -0.008626329712569714, -0.039832327514886856, 0.019078340381383896, -0.06121974065899849, -0.018873747438192368, -0.05715196579694748, 0.003665465395897627, -0.008803018368780613, 0.010198290459811687, -0.014518502168357372, -0.04926249757409096, 0.0051362100057303905, 0.008651992306113243, -0.03948289901018143, 0.06639435142278671, -0.04590828716754913, 0.004200640134513378, -0.00343791744671762, -0.0064758299849927425, -0.0005527366301976144, 0.0022447851952165365, 0.01540842279791832, 0.00803407747298479, -0.033911529928445816, -0.008488334715366364, -0.014222332276403904, 0.0445285327732563, -0.015553522855043411, 0.026509428396821022, -0.018728788942098618, 0.034355778247117996, 0.03179850056767464, -0.04066075012087822, 0.0014561234274879098, 0.0032709643710404634, 0.008886482566595078, -0.01336608175188303, -0.0053826142102479935, -0.013796673156321049, -0.020226411521434784, 0.011978324502706528, 0.0017448746366426349, -0.004738870542496443, 0.013874382711946964, -0.04147643595933914, 0.020870357751846313, 0.020867466926574707, 0.051722753793001175, 0.039013199508190155, 0.0014459292870014906, -0.05315259099006653, -0.018488707020878792, 0.0027285118121653795, 0.023081481456756592, 0.023910697549581528, 0.01977129653096199, -0.02922731637954712, 0.03251232951879501, -0.009183571673929691, -0.025236738845705986, 0.030439598485827446, 0.021702608093619347, -0.025798650458455086, 0.03763736039400101, 0.029827939346432686, -0.01721721887588501, -0.00910801813006401, 0.02316957339644432, -0.00731508806347847, 0.05584380775690079, -0.02204395830631256, -0.00298681971617043, 0.015624196268618107, -0.029039833694696426, -0.009776145219802856, -0.033969033509492874, -0.014369518496096134, -0.034090492874383926, 0.02374432049691677, -0.017052385956048965, -0.024897893890738487, 0.05282137915492058, -0.006106179673224688, 0.02498941868543625, -0.03538411855697632, 0.03927003592252731, 0.02934800647199154, 0.0199772659689188, 0.03827124461531639, -0.018120747059583664, 0.02664060704410076, -0.018066439777612686, -0.035813428461551666, 0.05279207602143288, -0.02960832044482231, -0.03264594450592995, 0.014940960332751274, -0.0816093161702156, -0.03713226690888405, 0.013390718027949333, -0.011049685999751091, -0.002445374382659793, -0.004686728585511446, 0.013339793309569359, 0.032133277505636215, -0.053841397166252136, 0.04135430231690407, 0.0517578087747097, -0.010670017451047897, 0.07216321676969528, 0.02311324141919613, 0.06328476965427399, 0.029699919745326042, -0.018015678972005844, -0.044316209852695465, 0.021688103675842285, -0.029329247772693634, 0.02979043498635292, -0.040864087641239166, 0.016833655536174774, 0.023394549265503883, 0.01012496743351221, 0.01288912445306778, 0.027925917878746986, -0.003995811566710472, 0.02401086315512657, -0.031403981149196625, 0.014333412982523441, 0.0027100073639303446, 0.03682234138250351, 0.007507325615733862, 0.026616264134645462, -0.023727867752313614, -0.02070724219083786, -0.015469643287360668, -0.009325127117335796, 0.023392636328935623, 0.022192899137735367, -0.028310924768447876, 0.037836723029613495, 0.023430807515978813, 0.04817170649766922, 0.060979560017585754, -0.01323017105460167, 0.02235126681625843, 0.023795675486326218, -0.021315649151802063, -0.002024785615503788, -0.010927381925284863, 0.05495937168598175, 0.023843415081501007, 0.005122276954352856, 0.006680676713585854, -0.01759282499551773, -0.01626107655465603, -0.022652363404631615, -0.007276198826730251, 0.014983836561441422, -0.01778143085539341, 0.03610754385590553, 0.014469342306256294, -0.014945805072784424, -0.0029250255320221186, -0.03260115906596184, -0.008551515638828278, -0.03370100259780884, -0.047179047018289566, 0.032532934099435806, -0.037645820528268814, 0.02311655879020691, -0.01946261152625084, -0.026237240061163902, 0.03996705263853073, 0.04620981588959694, -0.027031462639570236, -0.005990374833345413, 0.07790686190128326, 0.03235524892807007, -0.001674516941420734, -0.015347853302955627, -0.013175364583730698, -0.014456404373049736, -0.03374003618955612, 0.050082042813301086, -0.03636955842375755, -0.015740513801574707, -0.010516238398849964, 0.021319039165973663, 0.02581210993230343, 0.011504779569804668, -0.00562518835067749, -0.005825432017445564, 0.02760724164545536, 0.03856843337416649, -0.04670976474881172, -0.034840475767850876, -0.019983423873782158, 0.04359056428074837, 0.00028243192355148494, 0.0483151450753212, 0.06973012536764145, 0.03853160887956619, 0.01837783120572567, 0.028241803869605064, 0.005289177410304546, 0.05131128430366516, 0.002522866940125823, -0.025685353204607964, 0.034103456884622574, 0.012949389405548573, -0.018403299152851105, -0.0003315272624604404, -0.031749188899993896, -0.029549967497587204, -0.0163008663803339, 0.02626076526939869, -0.014818508177995682, 0.05760279297828674, -0.0002319993800483644, 0.0513441227376461, -0.011699486523866653, -0.008412483148276806, 0.04290582984685898, 0.06839469820261002, -0.015947481617331505, -0.0035096644423902035, 0.011381448246538639, 0.029580973088741302, 0.00910816341638565, 0.02338760904967785, 0.06727728247642517, 0.020740676671266556, -0.015007752925157547, 0.015706311911344528, -0.01687425747513771, -0.03173626959323883, -0.0479205921292305, -0.04408968612551689, -0.06342535465955734, -0.023925913497805595, -0.017692068591713905, 0.006248900201171637, 0.06132921949028969, -0.05498020350933075, 0.03331855684518814, 0.02017025090754032, -0.010947993956506252, -0.027607841417193413, -0.03932790458202362, 0.02749701589345932, 0.02510114014148712, 0.011795729398727417, -0.043242327868938446, 0.030287308618426323, 0.005888431333005428, -0.005977722350507975, -0.03277553617954254, -0.01980898715555668, 0.0004435823648236692, -0.02723676525056362, 0.013453283347189426, -0.02048349380493164, -0.02578097954392433, -0.0099257817491889, -0.0356462225317955, -0.05016910657286644, -0.008139108307659626, 0.008163419552147388, -0.002477735746651888, -0.022119881585240364, -0.06406145542860031, 0.016216589137911797, 0.01783808134496212, -0.04721041023731232, 0.01982564851641655, 0.04058252274990082, -0.018408069387078285, 0.05508239194750786, 0.01837541162967682, 0.004307507537305355, -0.06458862870931625, 0.05580706521868706, 0.060302674770355225, 0.0172837283462286, -0.03624404966831207, -0.012503447011113167, -0.05243492126464844, 0.023421581834554672, 0.021721668541431427, -0.002084452426061034, -0.0025939575862139463, 0.025612836703658104, 0.031103624030947685, -0.05078798905014992, 0.03761285915970802, -0.042188189923763275, -0.03217633441090584, -0.028168782591819763, -0.053601376712322235, 0.013687129132449627, 0.01481846533715725, 0.020406201481819153, 0.010672802105545998, -0.0251271091401577, 0.026163198053836823, 0.00450653163716197, 0.04984448850154877, -0.03389929607510567, 0.02588803879916668, 0.0525176040828228, 0.012655355036258698, 0.014921532943844795, 0.01577191799879074, -0.02738621085882187, -0.025869857519865036, 0.01765071600675583, 0.00823915097862482, 0.03520621359348297, 0.050943225622177124, 0.05150003731250763, 0.03217223286628723, 0.061389390379190445, -0.02500196173787117, 0.018627366051077843, -0.014057477936148643, 0.02510554902255535, -0.00915502943098545, -0.014223486185073853, 0.014318016357719898, -0.017868956550955772, -0.031021203845739365, -0.047520142048597336, 0.04957489296793938, 0.023660928010940552, 0.04337082430720329, -0.057036057114601135, 0.03687063232064247, -0.0014567648759111762, -0.010110772214829922, 0.05861678346991539, -0.04805145412683487, 0.005204247776418924, 0.01883752830326557, -0.03143928945064545, 0.035551730543375015, -0.06998776644468307, -0.0185747928917408, 0.007026325911283493, 0.04116397351026535, 0.014877907000482082, -0.023454515263438225, 0.009918219409883022, -0.03336196020245552, -0.022321540862321854, 0.0033422126434743404, -0.013542864471673965, -0.0067940461449325085, -0.020940622314810753, -0.0007754865800961852, -0.02860989049077034, -0.04389634728431702, -0.06945150345563889, 0.025464605540037155, -0.02064231038093567, 0.06681296974420547, -0.013467333279550076, 0.03016178496181965, -0.002671834547072649, 0.02148687094449997, 0.03762808442115784, -0.0045902724377810955, 0.012170580215752125, -0.04642631486058235, 0.032004766166210175, 0.015956755727529526, -0.06751052290201187, -0.043505311012268066, -0.023032058030366898, -0.0350436270236969, 0.054297033697366714, 0.005954766646027565, 0.004550334997475147, -0.025967024266719818, 0.07276084274053574, -0.016696959733963013, 0.007500618230551481, -0.0039026762824505568, -0.04496119171380997, -0.03354945406317711, 0.029403436928987503, 0.008965307846665382, -0.042772527784109116, 0.02242303639650345, -0.028414132073521614, 0.004356561694294214, 0.014536436647176743, -0.019487133249640465, -0.043248169124126434, -0.0007105456315912306, -0.01728496141731739, -0.01766686700284481, -0.020800229161977768, 0.02993510104715824, 0.02280419133603573, 0.012584907002747059, -0.03934271261096001, 0.04462800920009613, 0.02832905575633049, -0.010845454409718513, -0.01210072822868824, -0.0269523523747921, 0.019804077222943306, 0.009712391532957554, 0.03224226459860802, -0.00606562802568078, -0.032928381115198135, 0.02263721264898777, -0.08503776043653488, 0.02096051536500454, 0.021114803850650787, -0.00808819942176342, 0.03833672031760216, 0.004307488910853863, -0.012767181731760502, 0.027871305122971535, -0.014234423637390137, -0.02423684112727642, -0.009654300287365913, 0.05478767305612564, -0.059046801179647446, -0.01882246695458889, 0.06913816183805466, -0.0072978404350578785, -0.04701080173254013, 0.005311175249516964, 0.037328291684389114, -0.04412395507097244, 0.0014618507120758295, 0.009404022246599197, -0.048024680465459824, 0.03079940751194954, -0.023074571043252945, -0.01358245313167572, -0.012396557256579399, -0.022207938134670258, 0.029801126569509506, -0.0063523659482598305, 0.04072486609220505, -0.007565194740891457, -0.03366253525018692, -0.047719452530145645, -0.05944351479411125, 0.01789560541510582, 0.04871229827404022, -0.019746825098991394, -0.002207924146205187, 0.021038424223661423, -0.016598476096987724, -0.013835683465003967, -0.004344175569713116, 0.04068680852651596, 0.017394239082932472, -0.00200576800853014, 0.027981504797935486, 0.002210487611591816, 0.013978141359984875, 0.030988439917564392, -0.025964539498090744, -0.02673775516450405, -0.005471331067383289, 0.002423351863399148, -0.005208530928939581, -0.0733167976140976, -0.02367376536130905, -0.03749612346291542, -0.020266378298401833, -0.001476422417908907, -0.013115125708281994, -0.04366939514875412, 0.022351184859871864, 0.04040193930268288, 0.022775990888476372, 0.018566878512501717, 0.01994164288043976, -0.01924750581383705, 0.05214789882302284, 0.008816633373498917, -0.038115374743938446, -0.043842438608407974, 0.024281596764922142, -0.02849283628165722, 0.0633639544248581, -0.019646745175123215, 0.0103905089199543, -0.02782321535050869, -0.0618508942425251, -0.025819694623351097, -0.058823566883802414, -0.047526903450489044, -0.04312843084335327, -0.03250912204384804, -0.0037332982756197453, 0.03535820171236992, -0.0027093742974102497, -0.006878507789224386, -0.020863201469182968, -0.029407141730189323, -0.01681046560406685, -0.021991727873682976, -0.02635948918759823, -0.017748158425092697, -0.004846638534218073, -0.023356463760137558, 0.04985063895583153, 0.012467732653021812, 0.02614910528063774, -0.023637954145669937, 0.020019181072711945, 0.01896354928612709, 0.004806960467249155, -0.02845906652510166, -0.03313111886382103, -0.031392283737659454, -0.030245553702116013, 0.003374872263520956, -0.008916566148400307, -0.03809376060962677, 0.038259342312812805, -0.03521028533577919, -0.020256543532013893, -0.028321996331214905, -0.04446683079004288, 0.012945860624313354, -0.016240432858467102, 0.061487454921007156, -0.02670193463563919, 0.048673879355192184, -0.03350289165973663, 0.05045861005783081, 0.03867322579026222, 0.01268682163208723, -0.03715021535754204, -0.039699897170066833, -0.02007179521024227, -0.03625302389264107, 0.014284900389611721, -0.027154019102454185, -0.01870623044669628, -0.03820722922682762, -0.021431567147374153, 0.06343366950750351, -0.0002025911380769685, 0.047527775168418884, 0.05139883980154991, -0.0586930476129055, -0.0031266561709344387, -0.013783260248601437, 0.031654808670282364, 0.03325033187866211, 0.013147332705557346, -0.015781793743371964, -0.006126432213932276, -0.0377003513276577, -0.0034966773819178343, -0.03561576083302498, 0.0016373991966247559, -0.03807452321052551, -0.03520913049578667, 0.055967267602682114, -0.0185713991522789, 0.05263417959213257, -0.008008912205696106, -0.03676820918917656, -0.05685916915535927, 0.034509312361478806, 0.012809915468096733, -0.01206535380333662, 0.0485900454223156, 0.01435878686606884, -0.00530819920822978, -0.0010104567045345902, -0.022026441991329193, -0.014601556584239006, -0.04412493109703064, 0.06754278391599655, -0.009855033829808235, -0.06904375553131104, 0.016969064250588417, 0.03891921788454056, -0.022010602056980133, -0.016172626987099648, -0.012884538620710373, -0.000041026403778232634, -0.015138843096792698, -0.026064220815896988, 0.019462069496512413, 0.01697561889886856, -0.00406688591465354, 0.022354010492563248, 0.03370245173573494, -0.01465682778507471, 0.026050452142953873, -0.01052063051611185, 0.04725988954305649, -0.05133531615138054, 0.011242641136050224, 0.031584810465574265, 0.0036839803215116262, -0.03265661373734474, -0.0025845596101135015, -0.0177536029368639, -0.012791500426828861, 0.004472235217690468, 0.07102721929550171, -0.01326487585902214, 0.019950326532125473, 0.007932433858513832, 0.0108845429494977, 0.06826792657375336, 0.00613207183778286, -0.00024533667601644993, 0.012333372607827187, -0.035654373466968536, -0.058165572583675385, -0.02594456821680069, 0.006752349901944399, -0.005772044416517019, 0.036885589361190796, -0.025022532790899277, 0.043553635478019714, 0.021586976945400238, -0.003953884821385145, 0.016521302983164787, -0.04182538390159607, -0.027187103405594826, -0.004155606962740421, -0.06832300871610641, -0.020601319149136543, -0.016591515392065048, 0.016521470621228218, 0.020057437941432, 0.013465996831655502, -0.05504634603857994, -0.013679968193173409, 0.022850271314382553, -0.027450816705822945, 0.0038137705996632576, -0.025275908410549164, 0.028346696868538857, -0.02946445532143116, -0.06458736211061478, -0.03256666660308838, -0.008146729320287704, -0.00832401867955923, -0.004429501015692949, -0.04142099246382713, 0.025521768257021904, -0.01920665055513382, 0.03962043672800064, 0.03731478750705719, -0.027037128806114197, -0.020574117079377174, -0.033943600952625275, 0.026913262903690338, 0.03895238786935806, -0.017835278064012527, 0.0452820286154747, 0.0015081563033163548, -0.054767902940511703, 0.027609914541244507, 0.014148159883916378, -0.025582656264305115, -0.01754727028310299, 0.010230831801891327, 0.00003722491237567738, 0.012736966833472252, -0.025251997634768486, -0.01287819817662239, -0.007038068491965532, -0.030470767989754677, 0.013225403614342213, -0.008433733135461807, 0.0015389282489195466, 0.009541279636323452, -0.03311026841402054, -0.010321905836462975, 0.06496761739253998, -0.0005269274115562439, 0.02435942366719246, -0.0057853045873343945, -0.001585601712577045, 0.02141423337161541, 0.010230123065412045, 0.002200696850195527, 0.00843324325978756, 0.010490531101822853, -0.022828079760074615, 0.023610731586813927, 0.008369628340005875, -0.012214342132210732, 0.03898932784795761, -0.03041974827647209, -0.026544639840722084, -0.035494107753038406, -0.003960324916988611, -0.004088583402335644, 0.03718963637948036, 0.017312288284301758, -0.018438560888171196, 0.04115306958556175, -0.061934683471918106, 0.003328461665660143, 0.006709648296236992, -0.05091116949915886, -0.03965010866522789, 0.04162125661969185, -0.024877501651644707, -0.0168389230966568, 0.011608093045651913, -0.039175521582365036, -0.010035090148448944, -0.007684778422117233, -0.014407999813556671, -0.021718882024288177, 0.027066275477409363, -0.01788347400724888, 0.03378893807530403, -0.004573670681566, -0.007129391189664602, -0.0032721341121941805, 0.0795171931385994, -0.032983213663101196, -0.06690409779548645, 0.04713289812207222, 0.02996341697871685, 0.017188040539622307, 0.004498773254454136, -0.0018400290282443166, 0.019749168306589127, -0.02065173164010048, -0.007887582294642925, -0.019781682640314102, 0.030594216659665108, 0.003300003707408905, 0.010267680510878563, -0.0012383944122120738, 0.012804074212908745, -0.026650534942746162, 0.036714088171720505, 0.003389433491975069, -0.04788605496287346, -0.04491483047604561, 0.05281585454940796, 0.02376522123813629, -0.02608628012239933, 0.033032871782779694, 0.022792873904109, 0.032517462968826294, 0.009422121569514275, -0.0039738258346915245, -0.01178172416985035, 0.04273640364408493, 0.018419746309518814, 0.06287167966365814, -0.003799366531893611, 0.006872078869491816, 0.04150690138339996, -0.00500146858394146, 0.014926934614777565, 0.042662180960178375, 0.03441862016916275, -0.020203357562422752, 0.0031446423381567, 0.005455194041132927, 0.0024588864762336016, 0.013170131482183933, -0.027751807123422623, 0.03770053759217262, -0.03545094653964043, -0.012905166484415531, -0.007165391463786364, -0.004876209422945976, 0.04198069870471954, -0.011557028628885746, 0.000798161665443331, 0.01885365881025791, -0.03299089893698692, -0.012821252457797527, 0.025786390528082848, -0.0076755257323384285, -0.0046979887410998344, 0.051817163825035095, 0.027919571846723557, 0.00857448484748602, 0.020486652851104736, 0.008021689020097256, 0.018974317237734795, -0.06253505498170853, 0.028877461329102516, 0.015504908747971058, 0.005810501519590616, 0.019696805626153946, 0.0014322790084406734, -0.03781144320964813, 0.02697674185037613, -0.014160598628222942, -0.010634264908730984, 0.033738505095243454, -0.021616747602820396, -0.027110110968351364, -0.03185220807790756, 0.050471097230911255, -0.060244426131248474, 0.011258769780397415, 0.016598528251051903, 0.008112749084830284, -0.0037708834279328585, 0.028418168425559998, 0.010844152420759201, 0.04056819528341293, 0.025612598285079002, 0.04186856001615524, 0.00817533116787672, 0.032790228724479675, 0.056474510580301285, -0.062028463929891586, 0.017677005380392075, 0.024447914212942123, -0.0045495908707380295, -0.031059633940458298, -0.02598460763692856, -0.03482624888420105, 0.009470631368458271, -0.04889616742730141, -0.005445957649499178, -0.017157461494207382, 0.042322441935539246, 0.005906205624341965, -0.04252321273088455, -0.004477306734770536, 0.03058445453643799, -0.035490311682224274, 0.006288876291364431, 0.003504136111587286, 0.026487914845347404, -0.029545197263360023, -0.028663400560617447, -0.020241305232048035, -0.02752138301730156, 0.016539353877305984, -0.019833484664559364, 0.04356380179524422, -0.027712740004062653, -0.015833619982004166, -0.03817407786846161, -0.047102466225624084, -0.019641507416963577, 0.025260282680392265, -0.059321947395801544, -0.02756199985742569, 0.0178592037409544, 0.04056726023554802, -0.0032234948594123125, 0.01620209403336048, -0.030110351741313934, -0.0034156800247728825, 0.008742854930460453, 0.049896806478500366, -0.003135459031909704, 0.035849496722221375, 0.021964672952890396, -0.037779148668050766, 0.03905317932367325, -0.01677296869456768, 0.0318363755941391, -0.02465941198170185, -0.03625812008976936, -0.02065395563840866, 0.02891247533261776, 0.00009030491492012516, -0.07780822366476059, 0.011051570065319538, 0.004762240219861269, 0.010275641456246376, -0.0639328584074974, -0.08410302549600601, -0.01769401505589485, -0.040749598294496536, -0.015274791978299618, -0.05026064068078995, 0.016864759847521782, 0.029474295675754547, 0.02814391627907753, -0.014519250020384789, -0.04172481968998909, 0.1765238642692566, 0.03347945213317871, 0.007805607281625271, 0.009959924966096878, 0.02524259127676487, 0.08169358223676682, 0.05667245015501976, -0.012204996310174465, 0.002884478308260441, -0.02739734575152397, 0.008094415068626404, 0.012063826434314251, 0.028046688064932823, -0.005969906225800514, 0.024896876886487007, 0.03320454806089401, -0.026366498321294785, 0.021978329867124557, 0.01372965145856142, -0.04526066035032272, -0.04567022994160652, 0.009432604536414146, -0.024173742160201073, 0.03800473362207413, -0.0007271114736795425, 0.027928190305829048, -0.0015605853404849768, -0.05804724618792534, -0.0006964250933378935, 0.0007461460190825164, 0.023796861991286278, -0.0488455705344677, 0.03268931061029434, -0.017948219552636147, -0.04284726083278656, 0.03721315413713455, 0.014579321257770061, -0.0444546602666378, -0.0009218364139087498, -0.011210535652935505, -0.00445041386410594, 0.008885295130312443, 0.050423990935087204, -0.08213754743337631, -0.0009034703834913671, 0.03840538486838341, -0.05253896862268448, -0.0021999706514179707, 0.00971741508692503, -0.007264596875756979, 0.08843567222356796, -0.023697583004832268, 0.011663965880870819, 0.01702222414314747, -0.010458862408995628, 0.01556688454002142, 0.010594445280730724, -0.04595351219177246, 0.002726566046476364, 0.00926969014108181, 0.036170005798339844, 0.028468959033489227, 0.0012507656356319785, 0.023670358583331108, -0.014272065833210945, 0.008013235405087471, 0.016185574233531952, 0.006755002308636904, -0.012253041379153728, -0.0024116579443216324, -0.02559635415673256, -0.01380367111414671, -0.01740688644349575, -0.012203296646475792, 0.016944892704486847, 0.03147920221090317, -0.03136597201228142, 0.06113116443157196, -0.012389129027724266, -0.043304696679115295, -0.0037491079419851303, -0.036096591502428055, -0.030796511098742485, -0.010325813665986061, 0.012096942402422428, 0.05269980803132057, -0.051480647176504135, -0.03674688562750816, -0.03956189751625061, 0.04318485036492348, 0.051540132611989975, 0.027583381161093712, -0.037015873938798904, 0.02207363396883011, 0.00025202921824529767 ]
The DIFC is the world's newest international financial centre. It aims to develop the same stature as New York , London and Hong Kong. It primarily serves the vast region between Western Europe and East Asia. Incorporate/register and dissolve DIFC entities; examine and store DIFC entities information delivered under the applicable laws and regulations; and make this information available to the public. The role of the Registrar of Companies staff is to advise on, receive, review and process all applications submitted by prospective DIFC registrants seeking to establish a presence in the DIFC in accordance with the Companies Law, the General Partnership Law, the Limited Liability Partnerships Law, or Limited Partnership Law and the implementing regulations applicable thereto. AARMAK success is largely due to our focus on the specific needs of companies and placing our clients as the most important element in our business. Through keen interest in our clients' business and personal understanding of their individual needs, we have been able to forge a strong partnership with a large client base that has grown together with us.
[ -0.021690892055630684, -0.021720878779888153, -0.019914112985134125, -0.004832890350371599, -0.016086407005786896, 0.013217879459261894, 0.02339782379567623, -0.007305488921701908, 0.014425443485379219, 0.015735303983092308, 0.02723732776939869, -0.01180220115929842, 0.018237655982375145, -0.029739897698163986, -0.013295229524374008, 0.007808615453541279, -0.02493191324174404, -0.013565254397690296, 0.0007606580620631576, -0.021010978147387505, 0.003476234618574381, 0.0027446001768112183, -0.05663769692182541, -0.014411214739084244, -0.02444351837038994, 0.05764411389827728, 0.022683896124362946, -0.018087072297930717, 0.09278542548418045, 0.04005437344312668, -0.047950875014066696, -0.03841866925358772, 0.020803041756153107, -0.041372474282979965, -0.03456545248627663, -0.020504914224147797, 0.024003880098462105, -0.047284118831157684, -0.024160508066415787, -0.02770782634615898, 0.01298275776207447, -0.0016498568002134562, 0.0383191779255867, -0.040831632912158966, -0.05810436233878136, 0.020744720473885536, -0.019499868154525757, -0.0496755875647068, 0.01204613596200943, -0.049185894429683685, 0.006493582855910063, -0.0038523406255990267, 0.0076886373572051525, 0.009153833612799644, -0.01977735012769699, -0.016065964475274086, 0.004211644642055035, -0.004949767608195543, -0.00963504333049059, 0.0595129169523716, 0.025470474734902382, -0.007141412701457739, 0.03581734374165535, -0.025915611535310745, 0.03339589014649391, 0.024645157158374786, -0.01861986331641674, 0.006599057000130415, 0.026627030223608017, 0.0005613701650872827, 0.004528671503067017, -0.014009755104780197, -0.02409708872437477, -0.01420133002102375, -0.031199008226394653, -0.004063124768435955, 0.006843270268291235, -0.02296357788145542, 0.010314706712961197, -0.006225456018000841, 0.03907306492328644, 0.0711030662059784, 0.02654791995882988, 0.017440317198634148, -0.06609602272510529, 0.0012959132436662912, 0.007675620727241039, 0.02721134014427662, 0.011659692041575909, 0.02660358138382435, -0.006402057595551014, 0.04456762596964836, -0.008106191642582417, 0.005211466457694769, 0.03070925921201706, 0.023981424048542976, -0.05019674822688103, 0.03653175011277199, 0.00018580493633635342, 0.024365538731217384, 0.04280519485473633, 0.026255683973431587, 0.021541142836213112, 0.04182715713977814, -0.0313902422785759, 0.02050504833459854, -0.011727552860975266, -0.028639277443289757, -0.0027423319406807423, -0.03072039969265461, 0.03656961768865585, -0.02600596845149994, -0.014751054346561432, -0.029026508331298828, 0.0249230545014143, 0.0758674144744873, 0.00029907069983892143, 0.02847750298678875, -0.02087552100419998, 0.01706346496939659, 0.0008462771656922996, 0.02433384582400322, 0.051116254180669785, -0.016258375719189644, 0.017460588365793228, 0.0030707488767802715, -0.028988393023610115, 0.05427871644496918, -0.0347319096326828, -0.012748129665851593, -0.01893962360918522, -0.04185401275753975, -0.03956006467342377, 0.013492713682353497, -0.008107896894216537, 0.008411286398768425, 0.04465188831090927, 0.042405866086483, 0.010223859921097755, -0.044230103492736816, 0.04946901276707649, 0.04255759343504906, 0.005989070516079664, 0.0804893746972084, -0.007215036079287529, 0.04354457929730415, -0.013920743949711323, -0.005285422317683697, -0.05673201009631157, 0.0014556077076122165, -0.023562809452414513, -0.011608947068452835, 0.038614921271800995, 0.017227282747626305, -0.018991362303495407, -0.02928370051085949, -0.0021069368813186884, 0.018086299300193787, -0.0026550490874797106, 0.007057589944452047, -0.01764824241399765, -0.008464733138680458, -0.03292445093393326, 0.036964353173971176, -0.002248453674837947, 0.03491286560893059, -0.04458140954375267, -0.006653225515037775, -0.006931121461093426, -0.030860252678394318, 0.021944819018244743, 0.019243847578763962, -0.02059040032327175, 0.009608836844563484, 0.008127965033054352, 0.041101884096860886, 0.038238730281591415, 0.02494985982775688, 0.04799427464604378, 0.05399749055504799, -0.005273922812193632, 0.02021508477628231, 0.02537253126502037, 0.04975665733218193, 0.012912538833916187, 0.009959458373486996, 0.011191355995833874, -0.05427401140332222, -0.03556901961565018, -0.04326951876282692, -0.009715059772133827, 0.010297121480107307, -0.02689666859805584, 0.03006862848997116, 0.004636645317077637, -0.007196808233857155, -0.028915058821439743, 0.025052782148122787, 0.00818729866296053, -0.0334610790014267, -0.018478455021977425, 0.06015375629067421, -0.020982561632990837, 0.004183406475931406, 0.0072890399023890495, -0.012417917139828205, 0.023087596520781517, 0.07937279343605042, -0.03684822842478752, -0.006136864889413118, 0.05151917785406113, 0.015997156500816345, -0.02679475024342537, -0.013827044516801834, 0.028593620285391808, -0.0013269386254251003, -0.04285105690360069, 0.03678321838378906, -0.015273616649210453, -0.028404606506228447, 0.017022520303726196, 0.015972990542650223, 0.015504754148423672, 0.032113250344991684, -0.007038418669253588, 0.021452678367495537, 0.021300101652741432, 0.04434400424361229, -0.04086790233850479, -0.015314077958464622, 0.0023875171318650246, 0.032586220651865005, 0.026941267773509026, 0.042356301099061966, 0.03931640461087227, -0.00020362756913527846, 0.051429383456707, 0.05521436780691147, 0.00037488911766558886, 0.031106730923056602, 0.001445548958145082, 0.023343970999121666, 0.077135369181633, 0.02926042675971985, -0.030515631660819054, 0.008265701122581959, -0.015909772366285324, -0.01434386894106865, -0.02560335025191307, 0.05389878898859024, 0.002993552479892969, 0.02117079868912697, 0.027404077351093292, 0.0568307526409626, -0.031110242009162903, 0.016753533855080605, 0.026012856513261795, 0.045690324157476425, -0.013329194858670235, -0.01912417821586132, 0.0021084873005747795, -0.009346497245132923, -0.01852094568312168, -0.019581660628318787, 0.010073273442685604, 0.005023645702749491, 0.012436646036803722, 0.002446753205731511, -0.005254346877336502, -0.04838505759835243, -0.026486869901418686, -0.04306121915578842, -0.04353803023695946, -0.018969515338540077, -0.046845708042383194, -0.008075897581875324, 0.04709918424487114, -0.02328534796833992, 0.03266511484980583, 0.009906991384923458, 0.014033601619303226, -0.0191174503415823, -0.03017139807343483, 0.04246091470122337, 0.036255527287721634, 0.05562163516879082, -0.0362638495862484, 0.05283886939287186, -0.025510922074317932, 0.028317591175436974, -0.026614097878336906, 0.0011554351076483727, -0.01838769018650055, -0.02883404679596424, 0.05091958865523338, -0.02703132852911949, 0.0224411990493536, -0.027130115777254105, -0.03895225003361702, -0.04500975459814072, -0.007048530504107475, 0.005963362753391266, 0.01583857648074627, 0.0028266829904168844, -0.04945327341556549, 0.03715939074754715, 0.002593075158074498, -0.011950191110372543, 0.05431624874472618, 0.029765864834189415, -0.05099928751587868, 0.024043049663305283, 0.021966107189655304, -0.010983921587467194, -0.06666263937950134, 0.04020848125219345, 0.05227259173989296, 0.002362967934459448, -0.008702096529304981, -0.03586265817284584, -0.004234095569700003, 0.04260164499282837, 0.024617977440357208, -0.016754938289523125, -0.029440565034747124, 0.043887700885534286, 0.02417425625026226, -0.08569204062223434, 0.052363354712724686, -0.03636162355542183, -0.040892358869314194, -0.03678855299949646, -0.015242236666381359, -0.008246839977800846, 0.024783987551927567, 0.01204244326800108, 0.003257442731410265, -0.06602289527654648, 0.0005437412764877081, 0.022505396977066994, 0.04194844141602516, -0.052750036120414734, 0.03706253692507744, 0.030061395838856697, 0.006829718127846718, 0.010004582814872265, 0.000678660930134356, -0.02597842738032341, -0.00802896823734045, -0.002846286864951253, -0.004927787929773331, 0.00667726993560791, 0.024408243596553802, 0.01791936531662941, 0.019801124930381775, 0.05877138674259186, -0.061550866812467575, 0.018748922273516655, 0.004024091176688671, 0.029919754713773727, 0.020341787487268448, -0.003845896804705262, -0.00936136394739151, -0.021308327093720436, -0.04062863439321518, -0.03600660338997841, 0.01739015243947506, 0.0142055107280612, 0.04344259575009346, -0.06016292795538902, 0.06111285835504532, -0.01369111891835928, -0.029308488592505455, 0.06460929661989212, -0.043473485857248306, -0.002346171997487545, 0.024676991626620293, -0.021527770906686783, 0.04281193017959595, -0.04623747989535332, 0.01339746080338955, -0.030416905879974365, -0.0030291688162833452, 0.02365153096616268, -0.006914814002811909, 0.03773706033825874, -0.02343212068080902, -0.01458137109875679, -0.0036322500091046095, -0.03996238857507706, 0.0024140956811606884, 0.01591593772172928, -0.01124120969325304, -0.01624372787773609, -0.06731588393449783, -0.059707920998334885, 0.048837222158908844, 0.022419167682528496, 0.038420360535383224, -0.025270188227295876, 0.045368742197752, 0.033126350492239, -0.0050852494314312935, 0.02243106998503208, -0.008948753587901592, 0.019593071192502975, -0.020256858319044113, 0.02681020088493824, -0.002799142384901643, -0.024033935740590096, -0.04468747600913048, -0.02967950887978077, -0.03239310160279274, 0.015517907217144966, -0.014731709845364094, -0.02212875336408615, -0.04852364584803581, 0.0303991436958313, -0.026981372386217117, 0.03079444356262684, -0.04457949474453926, -0.025875559076666832, -0.007609949447214603, 0.021734321489930153, 0.005012390669435263, -0.07079413533210754, 0.022853486239910126, -0.009376362897455692, 0.018431467935442924, 0.010319218039512634, -0.024838637560606003, -0.04870937764644623, -0.02817852608859539, -0.009320022538304329, -0.018782250583171844, 0.0047998311929404736, 0.029376497492194176, 0.021774597465991974, 0.025843994691967964, -0.03343859687447548, 0.007301772013306618, -0.0019456103909760714, 0.004175109788775444, -0.01057021040469408, -0.019937878474593163, 0.018701039254665375, -0.010999071411788464, 0.060669250786304474, -0.015412380918860435, -0.004058952443301678, 0.023423699662089348, -0.043473806232213974, 0.011090000160038471, -0.01145431213080883, -0.010836850851774216, 0.02610255777835846, -0.009490234777331352, 0.020889397710561752, 0.042926620692014694, -0.014464528299868107, 0.01181595679372549, 0.0005337480106391013, 0.048528432846069336, -0.06087718531489372, -0.016656260937452316, 0.053460780531167984, -0.0021554632112383842, -0.018759973347187042, 0.055891796946525574, 0.023522648960351944, -0.015635879710316658, -0.014427358284592628, 0.015281273052096367, -0.046155840158462524, 0.03393511474132538, -0.05365792661905289, 0.02221677638590336, -0.03525431081652641, -0.04946038872003555, 0.0048332917504012585, -0.04531661421060562, 0.05038399249315262, -0.016466287896037102, 0.0028801539447158575, -0.07554078102111816, -0.04952602833509445, -0.01225751731544733, 0.03432083874940872, -0.011383716017007828, 0.054299820214509964, -0.01525116991251707, -0.02063409425318241, 0.0011636450653895736, 0.014100668951869011, -0.013304460793733597, 0.006722503341734409, -0.006878504995256662, 0.008872984908521175, 0.011430083774030209, -0.0013960591750219464, 0.013492443598806858, -0.007523634470999241, -0.03560551628470421, 0.01090389396995306, -0.007175884209573269, -0.006689043715596199, -0.06282896548509598, 0.010417057201266289, -0.032128553837537766, -0.009106573648750782, -0.03062921203672886, -0.0013701411662623286, 0.016096653416752815, 0.03367806598544121, 0.016601860523223877, 0.025210203602910042, 0.019129695370793343, 0.03323499113321304, -0.018673835322260857, 0.028221722692251205, 0.0439913310110569, -0.06989823281764984, -0.027591804042458534, 0.05085204169154167, -0.020588358864188194, 0.04623105376958847, 0.032749712467193604, 0.012777903117239475, -0.02102179080247879, -0.05611639842391014, 0.017654942348599434, -0.0014457115903496742, -0.04062488302588463, -0.03335099294781685, -0.03908047452569008, -0.005953737068921328, 0.02074052020907402, 0.02383406274020672, -0.009993071667850018, -0.015108221210539341, -0.04295136779546738, 0.026661695912480354, -0.040156275033950806, -0.04208631440997124, -0.031158173456788063, 0.003208447014912963, -0.0038171999622136354, 0.05594244599342346, -0.004338111262768507, 0.012313904240727425, 0.0003771905030589551, -0.006045169662684202, 0.024791518226265907, -0.009405609220266342, -0.04795461148023605, -0.056312594562768936, 0.014301478862762451, 0.02064671739935875, 0.00017539957480039448, 0.023967569693922997, -0.04217858612537384, 0.06408658623695374, -0.035201605409383774, -0.00441634189337492, -0.02365846373140812, -0.03908673673868179, -0.014124909415841103, -0.022110439836978912, 0.05445212125778198, -0.02953903004527092, 0.017340553924441338, -0.01706811785697937, 0.0659765973687172, 0.05824074149131775, -0.0030916575342416763, -0.04201880842447281, -0.038286902010440826, -0.041098445653915405, -0.0627092495560646, 0.0083342669531703, -0.028364909812808037, -0.005335269030183554, -0.03902306780219078, -0.008063220418989658, 0.018449608236551285, 0.01211264543235302, 0.026537811383605003, 0.02581934817135334, -0.0035490295849740505, -0.02000027894973755, -0.01615683175623417, 0.0436130054295063, 0.02289940044283867, -0.0433124341070652, -0.014946701936423779, -0.005781868938356638, -0.02025066502392292, 0.010211187414824963, -0.03387849032878876, -0.062430668622255325, -0.049722325056791306, 0.014760819263756275, 0.06958375126123428, -0.006530601531267166, 0.030826931819319725, -0.006472783628851175, -0.04038923233747482, -0.030238613486289978, 0.018358444795012474, -0.025375081226229668, 0.01559633482247591, 0.03440519794821739, -0.014158389531075954, -0.002111127832904458, 0.027722923085093498, -0.011008103378117085, 0.032439835369586945, -0.0309725571423769, 0.07448680698871613, -0.017674118280410767, -0.05883924290537834, 0.022686880081892014, 0.05457156524062157, -0.046661850064992905, -0.05547421798110008, 0.011949131265282631, 0.00405890354886651, -0.008653408847749233, -0.025784609839320183, 0.036943189799785614, -0.010134139098227024, 0.009066328406333923, -0.00648423982784152, 0.026766402646899223, 0.01879633590579033, 0.05658968165516853, -0.005807165056467056, 0.026097437366843224, -0.04050403833389282, -0.0066771614365279675, 0.017136812210083008, -0.016496066004037857, -0.02956433594226837, -0.02516835182905197, -0.002897038822993636, -0.0004541833477560431, 0.0003413629892747849, 0.035990048199892044, -0.006133074406534433, 0.02699580229818821, 0.02580929733812809, -0.017525803297758102, 0.025827262550592422, 0.011259130202233791, 0.03157217055559158, 0.029514390975236893, -0.029514731839299202, -0.04054190590977669, -0.015734892338514328, 0.027432292699813843, -0.02017447166144848, 0.0188231710344553, -0.009260841645300388, 0.019969938322901726, 0.038157735019922256, 0.002209901576861739, -0.02351495996117592, -0.052601706236600876, -0.008963322266936302, -0.03852483630180359, -0.05330250784754753, -0.0445086844265461, 0.010004712268710136, -0.000041084731492446736, 0.014551542699337006, -0.003438615007326007, -0.060745593160390854, -0.02062354050576687, 0.009526173584163189, -0.011389988474547863, -0.0008782096556387842, -0.03573494032025337, 0.0019322053994983435, -0.06540948897600174, -0.03245759755373001, -0.03897949308156967, 0.017478620633482933, -0.020389065146446228, 0.030705945566296577, -0.03125663846731186, 0.015190842561423779, -0.020456530153751373, -0.007591527886688709, -0.024357961490750313, 0.0014226053608581424, -0.020503811538219452, -0.04764094576239586, 0.005451158620417118, 0.04140985384583473, 0.029778094962239265, 0.04317217692732811, 0.029839234426617622, -0.020295677706599236, 0.03818881884217262, 0.0019723076838999987, -0.02477702870965004, -0.015707774087786674, 0.02273918315768242, 0.0038994920905679464, 0.004138227552175522, -0.03999745100736618, -0.035199422389268875, 0.010367573238909245, -0.04214511066675186, -0.008600296452641487, -0.028363458812236786, 0.014341304078698158, 0.020818602293729782, -0.016384707763791084, -0.013253736309707165, 0.06898468732833862, -0.01625795103609562, -0.0012932941317558289, 0.016482358798384666, 0.02642476186156273, 0.035874053835868835, -0.0005404605763033032, 0.0002663558698259294, 0.02590673603117466, 0.02995840646326542, -0.020163023844361305, -0.013759393244981766, 0.01659516431391239, -0.005088902544230223, 0.03973906859755516, -0.022205986082553864, -0.005323375109583139, -0.07572560012340546, -0.006033958867192268, 0.0256850216537714, 0.06578328460454941, 0.0013487087562680244, 0.01015935093164444, 0.03086937963962555, -0.024448633193969727, -0.033111535012722015, 0.005510843358933926, -0.03956925868988037, -0.04687296599149704, 0.03148375451564789, -0.021183811128139496, 0.004097484052181244, -0.0367206372320652, -0.07045544683933258, -0.0002472686755936593, -0.019083727151155472, -0.03883933275938034, -0.033329807221889496, 0.015157504938542843, 0.03576294332742691, 0.02271839790046215, -0.00304646254517138, 0.007806763052940369, 0.00423010578379035, 0.05561641976237297, -0.03495541960000992, -0.04702015221118927, 0.018439562991261482, 0.036595724523067474, 0.0046423450112342834, -0.008731730282306671, -0.0021719951182603836, 0.031969644129276276, -0.02717467211186886, 0.005859950557351112, -0.005132987629622221, 0.011117600835859776, 0.011837401427328587, 0.021252121776342392, 0.0025164668913930655, 0.017390334978699684, -0.03323163837194443, 0.05364060029387474, 0.01685152016580105, -0.04380873218178749, -0.061444174498319626, 0.03509284183382988, 0.04468904435634613, -0.015660127624869347, 0.04931849241256714, 0.019073013216257095, 0.04749172925949097, 0.0015693894820287824, 0.005177801940590143, -0.018504710868000984, 0.07954799383878708, 0.03825092315673828, 0.0389358326792717, -0.025827141478657722, 0.019797788932919502, 0.0413317009806633, 0.010640201158821583, -0.034496087580919266, 0.01768750511109829, 0.025173144415020943, -0.03833292797207832, 0.009447258897125721, -0.013330403715372086, 0.00695185549557209, 0.0012060668086633086, -0.04678735136985779, 0.011527897790074348, -0.03784526512026787, 0.008520783856511116, -0.031904350966215134, -0.010232087224721909, 0.02420731447637081, -0.019209709018468857, 0.001208201632834971, -0.011951851658523083, -0.02079099230468273, 0.0112589281052351, 0.04743270203471184, 0.013892244547605515, -0.01113138161599636, 0.038592997938394547, 0.042655523866415024, 0.029365889728069305, 0.048990387469530106, 0.028040260076522827, -0.0014118017861619592, -0.046664487570524216, -0.0032483977265655994, 0.01978234201669693, -0.024398542940616608, -0.0066102794371545315, 0.011126545257866383, -0.034057289361953735, 0.032925572246313095, -0.05228481441736221, -0.011470206081867218, 0.035515133291482925, -0.06819895654916763, -0.024490663781762123, -0.07241843640804291, 0.034834906458854675, -0.05565621703863144, 0.0017308392561972141, 0.009043958969414234, -0.00892515480518341, -0.02708818018436432, 0.071930430829525, -0.02692994475364685, 0.030543526634573936, 0.014976211823523045, 0.058464568108320236, 0.030584756284952164, 0.042566828429698944, 0.005406931508332491, -0.03557344526052475, 0.022733885794878006, 0.011846113950014114, -0.006057461258023977, -0.0313657745718956, -0.03385437652468681, -0.03340158611536026, -0.030566638335585594, -0.02069203555583954, -0.029341228306293488, -0.0007149589946493506, 0.03626294061541557, 0.008357168175280094, -0.058925263583660126, -0.0028371650259941816, 0.02463020756840706, -0.042075417935848236, 0.007779838051646948, 0.008279776200652122, 0.02571292780339718, 0.007717208005487919, 0.008770824410021305, -0.0069776191376149654, -0.025938142091035843, -0.0027764260303229094, -0.040260136127471924, 0.025505293160676956, 0.0256341639906168, -0.01904837042093277, -0.0422142893075943, -0.03543673828244209, -0.02565314993262291, 0.008878292515873909, -0.05326328054070473, -0.03884464129805565, 0.06342661380767822, 0.06455446034669876, -0.003237447002902627, -0.0001823454222176224, -0.034802503883838654, 0.012366879731416702, 0.022029723972082138, 0.08382631838321686, 0.004621976055204868, 0.036118511110544205, 0.06241604685783386, 0.0025884448550641537, 0.026954378932714462, -0.012272512540221214, 0.02450263500213623, -0.0011274823918938637, 0.016425708308815956, -0.006426285021007061, 0.019820909947156906, -0.013180647045373917, -0.08047721534967422, 0.020948588848114014, 0.057682015001773834, 0.008271241560578346, 0.006699889898300171, -0.05055854842066765, 0.00446420768275857, -0.05007385462522507, -0.0313158743083477, -0.057529374957084656, 0.027412086725234985, -0.02702033706009388, -0.008035886101424694, 0.029466595500707626, -0.02701757103204727, 0.13733825087547302, 0.03517623990774155, 0.013016109354794025, 0.00558697571977973, 0.02581346035003662, 0.06906884163618088, 0.033574894070625305, -0.0589275024831295, 0.0007122336537577212, -0.04726755619049072, 0.01778111234307289, 0.006569098215550184, 0.030101478099822998, -0.016471946612000465, -0.005049074999988079, 0.03476688265800476, -0.045888107270002365, 0.015702730044722557, 0.03363730013370514, -0.05175432562828064, -0.08631241321563721, 0.015137947164475918, -0.015389199368655682, 0.007935483939945698, -0.015509421937167645, 0.017628220841288567, 0.04362240433692932, -0.03584616631269455, -0.002355694305151701, -0.008741939440369606, 0.013415373861789703, -0.04378408193588257, 0.04715864360332489, -0.037451572716236115, -0.041955091059207916, 0.053559307008981705, -0.024310555309057236, -0.030788147822022438, 0.00017390810535289347, 0.04296917840838432, -0.006332832388579845, -0.006819066125899553, 0.052074600011110306, -0.025794489309191704, 0.009141973219811916, 0.029444467276334763, -0.04097582772374153, -0.026041874662041664, 0.022233054041862488, -0.05019422248005867, 0.03858678787946701, -0.01086798682808876, 0.04011865332722664, 0.00494824443012476, -0.029388438910245895, -0.008972703479230404, -0.02480483055114746, -0.03521353378891945, -0.014260811731219292, -0.004798883106559515, 0.02051980420947075, 0.024784576147794724, 0.01103434432297945, 0.012448741123080254, -0.049805931746959686, -0.001966094132512808, 0.0318387970328331, 0.02896611951291561, 0.0004674257943406701, 0.002221240196377039, -0.017094073817133904, -0.013064744882285595, -0.032591622322797775, -0.011027730070054531, 0.024014048278331757, 0.025599244982004166, -0.04202234745025635, 0.04032536968588829, 0.006350949872285128, -0.025833187624812126, -0.004623754881322384, -0.02177894115447998, 0.0009451667428947985, -0.00055852992227301, 0.03344964236021042, 0.018559234216809273, -0.050404321402311325, -0.029136955738067627, 0.00004841455665882677, 0.04525110498070717, 0.05054407939314842, 0.02008308656513691, -0.04287804290652275, -0.017206856980919838, 0.008176225237548351 ]
Carers UK Responds to Government's Decision Not to Localise Attendance Allowance The Secretary of State for Community and Local Government has announced that the Government will not go ahead with proposals it consulted on to devolve responsibility for delivering the older people's disability benefit, Attendance Allowance, to local authorities in England. As part of the Business Rates Retention consultation, published last year, the Government consulted on whether Attendance Allowance should be devolved to local government in England. This would mean potentially transferring the budget and responsibility for Attendance Allowance to local councils, giving them more responsibility to support older people with care needs. Carers UK responded to the consultation providing evidence on the negative impact that such a change could have for carers and their families and the importance of keeping the benefit as a national entitlement. We also encouraged carers to respond to the consultation and make their MP aware of their concerns in our campaign to Protect Attendance Allowance. Responding to the announcement Carers UK's Chief Executive, Heléna Herklots CBE, said: "We are pleased that the concerns of older disabled people and carers have been listened to and we're grateful to all those who made their views known. Localising Attendance Allowance would have risked fragmenting and reducing essential sources of practical and financial support both for older disabled people, and for carers. Attendance Allowance helps thousands of older people with the extra costs of disability and enables people to live in their own homes for longer. The benefit also provides a clear route for those caring for 35 hours or more, unpaid, to get vital recognition and financial support by enabling them to claim Carer's Allowance – the main benefit for those caring unpaid and essential income for many who are unable to combine paid work with caring." ← New Retirement Village to Potentially Ban Smoking Alzheimer's Research UK Calls for Charities to be part of Industrial Strategy →
[ -0.022736281156539917, -0.02247026190161705, -0.05647074431180954, 0.012096074409782887, -0.04021979123353958, -0.01362527534365654, 0.016900699585676193, 0.035019394010305405, -0.0025373303797096014, 0.017545903101563454, 0.010800881311297417, 0.01737682893872261, 0.033677585422992706, -0.02843441255390644, -0.03184748440980911, 0.005465555004775524, -0.01954985409975052, -0.007747169584035873, -0.0017441624077036977, 0.013730896636843681, -0.000705004611518234, 0.0371486134827137, -0.05027330666780472, -0.0219810139387846, -0.02052248641848564, 0.00555188674479723, 0.023413585498929024, 0.002691066125407815, 0.059764545410871506, 0.012059020809829235, -0.032190680503845215, -0.04862566664814949, 0.020250651985406876, -0.03456714749336243, -0.010614164173603058, -0.010143676772713661, 0.03385869786143303, -0.028543109074234962, 0.0025659557431936264, -0.03848958760499954, 0.014122008346021175, -0.00269925850443542, 0.025050926953554153, -0.03891558572649956, -0.03333546966314316, -0.029493533074855804, -0.03748475760221481, 0.001749191083945334, 0.016141673550009727, -0.03645378351211548, 0.011027907952666283, 0.004417832940816879, -0.006523768417537212, -0.01575738936662674, 0.029765691608190536, 0.013956539332866669, 0.0020448730792850256, -0.04453779011964798, -0.014926481992006302, 0.005096392706036568, 0.0016695522936061025, 0.017966125160455704, -0.005346445832401514, -0.05437811091542244, 0.051350198686122894, 0.02736576460301876, -0.014933496713638306, -0.021785318851470947, 0.00945967622101307, -0.027217091992497444, 0.02329694665968418, -0.013969744555652142, -0.042092565447092056, -0.032770510762929916, 0.014473986811935902, -0.004889040254056454, -0.01695038378238678, 0.02614629454910755, -0.004560614004731178, 0.022178705781698227, 0.023787640035152435, 0.03149186447262764, -0.011615063063800335, 0.011113505810499191, -0.06291697919368744, -0.027710434049367905, 0.005944164469838142, 0.054835572838783264, -0.005460198502987623, 0.001556980423629284, -0.016603391617536545, 0.045700158923864365, -0.0017182660521939397, -0.012898426502943039, 0.03259950131177902, 0.08378662914037704, -0.02114110440015793, 0.04453223571181297, 0.005318117793649435, -0.027314910665154457, 0.0365544892847538, 0.010389863513410091, 0.02669667638838291, 0.0662635862827301, -0.04859892651438713, 0.010277925990521908, 0.02786335162818432, -0.025693729519844055, -0.009887673892080784, -0.0484556183218956, -0.022329136729240417, -0.010258740745484829, 0.02769787423312664, -0.025912823155522346, -0.0045444415882229805, 0.09115789830684662, -0.015057976357638836, 0.026381539180874825, -0.013091647997498512, 0.03594518452882767, 0.030866671353578568, 0.010858094319701195, 0.041186507791280746, -0.0023098227102309465, 0.0383235327899456, -0.02446797676384449, 0.006582427769899368, 0.027256280183792114, -0.0214662067592144, -0.01405149046331644, 0.03405185416340828, -0.03856584057211876, -0.010245591402053833, 0.0010150086600333452, 0.013953021727502346, 0.01914760284125805, 0.0281912200152874, 0.02679978497326374, 0.004076011013239622, -0.05038567632436752, 0.03661598637700081, 0.02879892662167549, 0.026727348566055298, 0.07293305546045303, 0.013084801845252514, 0.01860249787569046, -0.005232160910964012, -0.011091313324868679, -0.03548504412174225, 0.008352653123438358, -0.0017953956266865134, 0.01933450438082218, -0.003944578114897013, 0.03834395855665207, -0.01876062899827957, -0.015174615196883678, -0.0026549978647381067, 0.00291605107486248, 0.04873988777399063, 0.038770537823438644, -0.023337552323937416, 0.012724501080811024, -0.003878082148730755, 0.05013241246342659, -0.028370436280965805, 0.004819928202778101, -0.009676873683929443, 0.023611007258296013, 0.023949025198817253, -0.029765713959932327, 0.03996022790670395, 0.021093934774398804, -0.04205027222633362, 0.008644103072583675, 0.0075932894833385944, 0.05856215953826904, 0.03724038973450661, -0.01483618002384901, 0.046988703310489655, 0.029177946969866753, -0.029732268303632736, -0.008053667843341827, -0.0042707952670753, 0.06600809842348099, 0.04441460594534874, -0.01809251680970192, -0.002695135772228241, -0.023644762113690376, 0.004269586876034737, -0.05152715742588043, 0.02189953625202179, 0.030515117570757866, -0.0299164280295372, 0.043695248663425446, 0.011802670545876026, 0.010406454093754292, 0.023396361619234085, 0.007322651334106922, -0.03587242588400841, -0.0482330396771431, -0.025433087721467018, 0.0795692428946495, -0.006160689052194357, 0.03761937841773033, 0.0163901224732399, -0.00310903275385499, 0.005651479121297598, 0.046715348958969116, -0.06419029831886292, 0.009344136342406273, 0.03579380735754967, -0.01010604202747345, -0.022775007411837578, -0.01570153422653675, 0.03890543803572655, -0.0067786481231451035, -0.04180729016661644, 0.03700415790081024, -0.02692866139113903, -0.010881484486162663, 0.0036359382793307304, 0.02101682685315609, 0.03884304314851761, 0.01975562982261181, -0.02128157950937748, 0.000091833237092942, 0.01691705919802189, 0.02709113247692585, -0.016362179070711136, -0.022029085084795952, 0.019947823137044907, 0.0643923357129097, 0.04625256732106209, 0.09051444381475449, 0.031515251845121384, 0.012763145379722118, 0.035681623965501785, 0.03478566184639931, -0.0359821692109108, 0.031082965433597565, 0.0012937451247125864, 0.016291217878460884, 0.034773245453834534, 0.02600174769759178, 0.01159763801842928, 0.03856495022773743, -0.0006676462944597006, 0.020331017673015594, -0.021947694942355156, 0.014863681979477406, -0.026447808369994164, 0.04821759834885597, 0.017032157629728317, 0.053523361682891846, -0.01945371739566326, -0.015125728212296963, 0.04715965315699577, 0.05052943155169487, -0.039362888783216476, -0.023879922926425934, 0.005505331791937351, 0.040747202932834625, -0.030350329354405403, -0.005861218553036451, 0.03808607533574104, 0.012988037429749966, 0.0211666077375412, 0.01682204008102417, -0.011799153871834278, -0.05114294961094856, -0.039773549884557724, -0.02742343582212925, -0.04831534996628761, -0.04756997525691986, -0.06641510874032974, -0.0064644161611795425, 0.06479814648628235, -0.03637753427028656, 0.07277803122997284, -0.041939835995435715, -0.03655625879764557, -0.014662722125649452, -0.026723669841885567, 0.06296616047620773, 0.023108825087547302, 0.03672746196389198, -0.04576236009597778, 0.02039087936282158, 0.009265709668397903, 0.0210652407258749, -0.02949685975909233, -0.046202268451452255, 0.008868817239999771, 0.028202036395668983, 0.030314000323414803, -0.028981178998947144, -0.025611894205212593, 0.026998834684491158, -0.04653605818748474, -0.03770169988274574, -0.003784123109653592, 0.025782587006688118, 0.030022572726011276, 0.03413066640496254, -0.02544933743774891, 0.027118409052491188, 0.018690364435315132, -0.02391979470849037, 0.047483816742897034, 0.03739430755376816, -0.04623270779848099, 0.03732386976480484, 0.030563510954380035, -0.0004571539757307619, -0.03777650371193886, 0.027618397027254105, 0.034178417176008224, -0.044199030846357346, -0.033248674124479294, -0.03119901567697525, -0.0344310998916626, -0.012965576723217964, 0.00044239519047550857, 0.006172544788569212, -0.022593293339014053, 0.03573324531316757, 0.014357415027916431, -0.07207093387842178, 0.04385057091712952, -0.0527508407831192, 0.01528304535895586, -0.03240221366286278, -0.017356285825371742, 0.017769688740372658, 0.028969986364245415, 0.019426411017775536, -0.00983455590903759, -0.032800737768411636, -0.016938073560595512, 0.002128884196281433, 0.017875218763947487, -0.04336582496762276, 0.029281560331583023, 0.018655847758054733, 0.015394135378301144, 0.023829014971852303, 0.00193042925093323, -0.045955680310726166, 0.021983643993735313, 0.01648501306772232, 0.005291530396789312, 0.06378866732120514, 0.03680860251188278, 0.01586773246526718, 0.03556964546442032, 0.08509855717420578, -0.019246015697717667, -0.023567628115415573, -0.023634640499949455, 0.041640810668468475, 0.021659329533576965, -0.0021141143515706062, 0.008366087451577187, -0.003269275650382042, -0.04141940549015999, -0.04671620950102806, 0.04746881499886513, -0.008083797059953213, 0.07349769026041031, -0.06015624478459358, 0.05250072106719017, -0.027555691078305244, -0.030783826485276222, 0.0374835766851902, -0.06427553296089172, -0.018206197768449783, 0.05974553897976875, -0.012191658839583397, 0.0551283173263073, -0.056290123611688614, 0.00559183768928051, -0.026645062491297722, -0.025171395391225815, 0.031237220391631126, -0.024655325338244438, 0.0040991841815412045, -0.023731959983706474, 0.013628424145281315, 0.00500359944999218, 0.009114418178796768, 0.017186937853693962, -0.02252926118671894, 0.007423028349876404, -0.018153736367821693, -0.0345219150185585, -0.036427851766347885, 0.02935056947171688, -0.0019161236705258489, 0.0180667694658041, 0.005086100194603205, 0.05586988478899002, 0.001503150211647153, 0.01609869860112667, 0.041730571538209915, -0.024095164611935616, -0.0039251623675227165, -0.03698960691690445, 0.04580270126461983, -0.002832041122019291, -0.010384288616478443, -0.041123732924461365, -0.0089255440980196, -0.03178194910287857, 0.02639215812087059, 0.006058831233531237, -0.0254526324570179, -0.02521554008126259, 0.006254476495087147, 0.015482821501791477, 0.018409527838230133, 0.0012953062541782856, -0.03198884800076485, 0.009086842648684978, 0.00493447482585907, 0.03045547567307949, -0.03014416992664337, -0.004235406406223774, -0.01710720732808113, 0.050102584064006805, 0.03926670923829079, 0.0019790572114288807, -0.06283305585384369, -0.023370692506432533, -0.0345078781247139, -0.008260251022875309, -0.007725090254098177, 0.02523692324757576, 0.004775915760546923, -0.014054106548428535, -0.04594001546502113, 0.016454990953207016, 0.010396268218755722, 0.004083900712430477, 0.020483866333961487, -0.014604221098124981, 0.016497815027832985, 0.0056033022701740265, 0.04977824166417122, -0.02185383252799511, -0.021185381338000298, 0.05096469819545746, -0.027829373255372047, 0.034453630447387695, -0.02565428987145424, -0.009115622378885746, -0.01890472136437893, 0.028735874220728874, 0.009137606248259544, 0.024600010365247726, -0.01554014440625906, -0.010907524265348911, -0.006362038664519787, 0.008381854742765427, -0.020245758816599846, 0.011761837638914585, 0.05418538302183151, -0.004292038269340992, -0.004806434735655785, 0.05549144372344017, 0.03081103228032589, -0.048682715743780136, 0.013559729792177677, 0.024654747918248177, -0.04945743456482887, 0.03537435084581375, -0.023150362074375153, -0.00016437929298263043, -0.03209235891699791, -0.027133559808135033, 0.028931794688105583, -0.04001392051577568, 0.028493747115135193, -0.010907113552093506, -0.014214024879038334, -0.027053676545619965, -0.045380618423223495, -0.010392448864877224, -0.011911687441170216, -0.014302586205303669, 0.03949324041604996, -0.0013258005492389202, -0.004541306756436825, -0.04009021818637848, -0.022291168570518494, 0.006082390900701284, 0.006068018265068531, -0.004325077403336763, -0.0022309659980237484, -0.011850965209305286, -0.0023468059953302145, 0.05013919994235039, 0.02141471952199936, -0.02698649652302265, 0.015765273943543434, 0.0090237557888031, -0.05568089708685875, -0.0752364918589592, -0.0009096527937799692, -0.01695144735276699, -0.04550417512655258, -0.009202690795063972, 0.013470425270497799, 0.007019165437668562, 0.0429239347577095, 0.014932147227227688, 0.005950322840362787, 0.0029312619008123875, -0.003189666662365198, -0.01758413016796112, 0.026733508333563805, 0.035197000950574875, -0.04123356565833092, -0.04268091544508934, -0.004916714504361153, -0.019537363201379776, 0.025933818891644478, -0.009653463028371334, -0.014673206023871899, -0.02480515092611313, -0.055414989590644836, -0.019255507737398148, -0.03238555043935776, 0.00910500530153513, -0.054649125784635544, -0.048468995839357376, -0.023445097729563713, 0.04716430604457855, 0.016280297189950943, -0.005070157814770937, -0.012002176605165005, -0.031694769859313965, 0.02867829240858555, -0.022383548319339752, -0.015796886757016182, -0.03353415057063103, -0.03906785324215889, 0.003698463784530759, 0.04754496365785599, 0.02673373371362686, 0.011284996755421162, -0.004138101823627949, -0.015348842367529869, 0.007957400754094124, -0.022540802136063576, -0.02317669987678528, -0.07073383033275604, 0.0029642549343407154, 0.0192037932574749, 0.026005905121564865, 0.0030038540717214346, -0.022446123883128166, 0.06884133070707321, -0.040766745805740356, 0.023753060027956963, -0.014612425118684769, -0.05865849554538727, -0.0266148392111063, -0.00769137404859066, 0.05155888572335243, -0.021073902025818825, 0.046969372779130936, -0.02136995829641819, 0.003699355525895953, 0.01257652323693037, 0.011241355910897255, -0.03495286405086517, -0.006778535433113575, -0.056448835879564285, -0.036715082824230194, 0.0012525784550234675, -0.024050487205386162, -0.0031944867223501205, -0.02569987066090107, -0.02704339288175106, 0.04145783558487892, -0.03672828897833824, 0.02173168957233429, 0.04271700978279114, -0.015268303453922272, -0.0231559369713068, 0.0026030181907117367, 0.057581204921007156, 0.005663143936544657, -0.011263017542660236, -0.00018670380814000964, -0.03651488944888115, -0.010305672883987427, -0.013235938735306263, -0.053551916033029556, -0.044636111706495285, -0.04030949994921684, -0.008469106629490852, 0.05386655032634735, -0.016879726201295853, 0.040153391659259796, 0.013451904989778996, -0.03751686215400696, -0.062085624784231186, 0.04676166921854019, -0.03500507026910782, 0.0029930477030575275, 0.058414727449417114, -0.0024926015175879, -0.03257010504603386, 0.000982588971965015, -0.0012070795055478811, 0.002537388587370515, -0.06848940998315811, 0.07521335035562515, -0.0013618081575259566, -0.07570995390415192, 0.05574146285653114, 0.055767543613910675, -0.03892605006694794, -0.042026106268167496, 0.00513896718621254, 0.010810742154717445, 0.0011791444849222898, -0.008610034361481667, 0.011207499541342258, 0.01764465682208538, -0.0038097042124718428, 0.02231655828654766, 0.032027650624513626, -0.0072117275558412075, 0.0744675025343895, -0.011619438417255878, 0.01872250810265541, -0.016865838319063187, -0.006852652877569199, 0.012389753945171833, -0.009207848459482193, -0.0008134086965583265, -0.007259574253112078, 0.011341064237058163, 0.013376981019973755, 0.00977465882897377, 0.03288179263472557, -0.011087654158473015, 0.00810966081917286, 0.0006439449498429894, 0.04784921556711197, 0.03672739118337631, -0.015000944025814533, -0.02658809907734394, 0.019845932722091675, -0.03642876818776131, -0.04625311866402626, -0.030346442013978958, 0.035365477204322815, -0.0013508884003385901, 0.04137352854013443, -0.03787478432059288, 0.00850377045571804, 0.0189644917845726, 0.02581343613564968, -0.02142530120909214, -0.0446181483566761, -0.028515448793768883, -0.026976924389600754, -0.0353170782327652, -0.0002444038400426507, 0.008736862801015377, -0.0005361831281334162, 0.009858149103820324, -0.009437575936317444, -0.07005241513252258, -0.03528505936264992, 0.016732148826122284, -0.020059680566191673, -0.04740004986524582, -0.06205137073993683, 0.04396377131342888, -0.029651114717125893, -0.03980283439159393, -0.03913625329732895, -0.02114780619740486, -0.018812602385878563, -0.004650996066629887, -0.034606579691171646, 0.023769663646817207, 0.015472102910280228, 0.04235924780368805, -0.011161207221448421, 0.000772928586229682, -0.04056168720126152, -0.04676942899823189, -0.03438490256667137, 0.056959085166454315, 0.02793102152645588, 0.0094138840213418, 0.04478253796696663, 0.013123330660164356, 0.026423238217830658, -0.04415629059076309, -0.0382758304476738, -0.01852346397936344, 0.003653560299426317, -0.011390067636966705, -0.0009696354973129928, -0.03881881758570671, -0.009880594909191132, 0.0298994779586792, -0.05701645836234093, 0.027237722650170326, -0.04226787015795708, -0.00580792548134923, -0.00404955493286252, -0.00009708449942991138, 0.0017818406922742724, 0.020163873210549355, -0.0181606262922287, 0.03132855147123337, -0.0035663158632814884, 0.026606347411870956, 0.024914933368563652, 0.029358159750699997, -0.009539918042719364, 0.021736105903983116, 0.03677355870604515, -0.0040109907276928425, 0.03634528070688248, 0.014318227767944336, -0.03869178891181946, 0.032989852130413055, -0.041235655546188354, -0.032736681401729584, -0.026528017595410347, 0.022169923409819603, 0.019354622811079025, 0.06158352643251419, 0.01644781604409218, -0.025291573256254196, 0.024777717888355255, -0.01620432175695896, -0.03463597595691681, 0.02675381302833557, -0.0958065316081047, -0.021550482138991356, 0.031201936304569244, -0.021570559591054916, -0.03790147230029106, -0.02167738974094391, -0.03753376007080078, -0.028560232371091843, 0.008463026024401188, -0.038646917790174484, -0.009582472033798695, 0.03996628150343895, -0.010950559750199318, 0.03347056359052658, 0.007145649287849665, 0.03226017951965332, 0.018663836643099785, 0.03038598783314228, -0.061754025518894196, -0.0808405801653862, 0.024256905540823936, 0.05677936598658562, -0.0007691603968851268, 0.024792149662971497, 0.008369182236492634, 0.004080203361809254, -0.017356712371110916, 0.0034331523347646, 0.026528282091021538, 0.024082031100988388, 0.00008216195419663563, 0.0022425379138439894, -0.016124030575156212, -0.009176917374134064, -0.0326310433447361, 0.0842561349272728, 0.01285634096711874, -0.05072861164808273, -0.042745258659124374, 0.018244944512844086, 0.005191412288695574, -0.04053637385368347, 0.015298085287213326, -0.023161573335528374, 0.03013269416987896, -0.03140325844287872, 0.008487120270729065, -0.003550364635884762, 0.042772077023983, 0.04914677515625954, 0.014803088270127773, -0.005551423877477646, 0.028622392565011978, 0.05148227885365486, -0.005987097974866629, -0.0026898260693997145, 0.0387578122317791, 0.04660547897219658, -0.005247825291007757, 0.006772789638489485, -0.03835679963231087, 0.005135973449796438, -0.004091221373528242, -0.010417550802230835, -0.02237814851105213, -0.037775952368974686, 0.004693381488323212, -0.0020737661980092525, -0.05013579502701759, 0.05150371417403221, 0.012170534580945969, 0.0073217772878706455, -0.01097316388040781, 0.005008995532989502, 0.015668291598558426, 0.044967226684093475, 0.01742866262793541, -0.006201380398124456, 0.028627930209040642, 0.000929634552448988, 0.04061207175254822, 0.03650977835059166, 0.02467493712902069, 0.007939658127725124, -0.036730289459228516, -0.012086397036910057, 0.007872416637837887, 0.012859328649938107, -0.03814438357949257, 0.013480600900948048, -0.030271807685494423, 0.05515921488404274, -0.04247556999325752, -0.0033788469154387712, 0.02267773449420929, -0.030043819919228554, -0.024288272485136986, -0.06890330463647842, 0.04088976979255676, -0.04201410338282585, -0.01406064536422491, 0.012304567731916904, 0.027006763964891434, -0.025149837136268616, 0.015703128650784492, -0.013178075663745403, 0.030601192265748978, 0.010864544659852982, 0.027950681746006012, 0.004160028416663408, 0.012940558604896069, 0.03280113264918327, -0.03135886415839195, -0.05252527818083763, 0.0501733236014843, 0.0034372960217297077, -0.006615128833800554, -0.0038698187563568354, -0.04400850459933281, -0.051271937787532806, 0.0018802420236170292, -0.017601175233721733, -0.007171061355620623, 0.044924672693014145, -0.004893910605460405, -0.045838259160518646, 0.007318298332393169, 0.01925458014011383, -0.039742857217788696, -0.0023345944937318563, 0.03141125664114952, 0.0019650186877697706, -0.013453279621899128, -0.03037143684923649, -0.008360899984836578, -0.008547157049179077, -0.013523285277187824, -0.0003019492141902447, 0.026598745957016945, 0.00902594905346632, -0.03814990073442459, -0.03186503425240517, -0.0358765535056591, -0.01055094227194786, 0.01883656717836857, -0.051630910485982895, -0.045474473387002945, 0.018387064337730408, 0.04341840744018555, 0.015244998969137669, 0.011196768842637539, -0.04769697040319443, 0.0008879889501258731, 0.038398537784814835, 0.0569179505109787, -0.012912980280816555, 0.029675321653485298, 0.023894337937235832, -0.004888913128525019, 0.02378511242568493, -0.029502248391509056, 0.022824760526418686, -0.0006058780127204955, -0.05938364937901497, 0.015688983723521233, 0.018304143100976944, -0.022765835747122765, -0.0481485016644001, 0.0067921350710093975, 0.022508112713694572, 0.0073600467294454575, -0.03981594368815422, -0.03329899534583092, -0.005450937431305647, -0.05863841250538826, 0.011844711378216743, -0.04031774401664734, 0.014517382718622684, 0.0023870242293924093, 0.006814833730459213, -0.012131144292652607, -0.0588710755109787, 0.15723419189453125, 0.0504143163561821, 0.021809924393892288, 0.0018973775440827012, 0.02451671101152897, 0.04923830181360245, 0.008982534520328045, 0.002131360350176692, 0.006744039710611105, -0.021828310564160347, 0.005180589854717255, 0.011010624468326569, 0.029820064082741737, -0.028256088495254517, -0.0017713451525196433, 0.06533538550138474, -0.037663329392671585, 0.0092039555311203, 0.01754819229245186, -0.055583786219358444, -0.04552796483039856, 0.03158795088529587, -0.01847180537879467, 0.043456438928842545, -0.04029753431677818, 0.015200328081846237, 0.01812644489109516, -0.05106348916888237, -0.02556457929313183, -0.012619586661458015, 0.01665833219885826, -0.055177364498376846, 0.025179605931043625, -0.009723394177854061, -0.056287914514541626, 0.03836092725396156, 0.002772299339994788, -0.0460907444357872, 0.010408016853034496, -0.00376570294611156, -0.011034340597689152, 0.014286945573985577, 0.03218847140669823, -0.016738735139369965, 0.012640469707548618, 0.040411219000816345, -0.02749921940267086, 0.0070580532774329185, 0.03801432251930237, -0.043393805623054504, 0.06627105921506882, -0.025348203256726265, 0.04545490816235542, -0.016777755692601204, -0.05700314790010452, -0.01700812391936779, 0.008181747980415821, -0.036549199372529984, -0.01009945198893547, -0.024008508771657944, 0.018480919301509857, 0.013951310887932777, 0.00886121392250061, 0.008203440345823765, -0.061666376888751984, 0.0028353517409414053, -0.003709418699145317, 0.0008496840018779039, -0.008313938975334167, 0.008647720329463482, -0.004998460877686739, 0.04270382225513458, -0.003850651904940605, -0.016157768666744232, 0.02937781997025013, 0.046613797545433044, -0.0007072474691085517, 0.02476937137544155, 0.02833166904747486, -0.025641854852437973, -0.002973702736198902, -0.0065116784535348415, 0.00309286848641932, -0.024841612204909325, 0.009872240014374256, 0.040036141872406006, -0.05918923765420914, -0.07010937482118607, -0.02677871845662594, 0.04637838527560234, 0.04843145236372948, 0.032155584543943405, -0.047120124101638794, -0.00923711247742176, -0.028934499248862267 ]
Q: Change number of decimals in Woocommerce cart, checkout and my account Would it be possible to have a php code to insert in my child theme capable of passing my site to two decimal places after the comma for all the basket information subtotal total VAT Shipping the same for the checkout but also in the customer area I would like to keep only the product to three decimal after the decimal point but the total rounded up to two decimal after the decimal point can you help me I am using Change number of decimals in Woocommerce cart totals answer code, for the cart and the checkout pages. It works perfectly but I am missing an info for it to work in the my order account tab. screenshot A: For my account section use the conditional tag is_account_page(), so in the code: add_filter( 'wc_get_price_decimals', 'change_prices_decimals', 20, 1 ); function change_prices_decimals( $decimals ){ if( is_cart() || is_checkout() || is_account_page() ) $decimals = 2; return $decimals; } Code goes in functions.php file of the active child theme (or active theme). It should works. Related: Change number of decimals in Woocommerce cart totals
[ -0.019531138241291046, 0.005313945468515158, -0.026862137019634247, -0.005061574280261993, -0.01641480065882206, 0.006178102921694517, 0.020335938781499863, 0.021541757509112358, -0.00477534718811512, 0.03336595743894577, 0.026446951553225517, 0.03657279908657074, -0.019254162907600403, 0.0035101394169032574, -0.01403781957924366, 0.018281130120158195, -0.006905266083776951, -0.023973532021045685, -0.025374935939908028, 0.006977955810725689, -0.024970728904008865, -0.01147178653627634, -0.08958648890256882, -0.025534778833389282, -0.060602735728025436, 0.06884898990392685, 0.015536808408796787, -0.040128499269485474, 0.05778989940881729, 0.05531782656908035, -0.05180945247411728, -0.056631892919540405, 0.034082598984241486, -0.04184359312057495, -0.028106816112995148, -0.005743781104683876, 0.052194222807884216, -0.031220024451613426, -0.004311074502766132, -0.061814021319150925, 0.014728646725416183, 0.014340455643832684, 0.013214654289186, -0.00022538618941325694, -0.061888378113508224, 0.0041583506390452385, -0.04589564725756645, -0.04334725812077522, 0.026170525699853897, -0.02504620887339115, 0.028844064101576805, -0.01900775171816349, 0.02906327322125435, -0.0031499811448156834, 0.006769145838916302, 0.023319678381085396, 0.03161634877324104, -0.04617268964648247, -0.0453549288213253, 0.03517172113060951, -0.009434283711016178, 0.0037257648073136806, 0.03845281898975372, -0.054965533316135406, 0.03364172205328941, 0.02672506496310234, 0.01368340477347374, -0.035458970814943314, 0.018950272351503372, 0.008841183967888355, -0.00004921167783322744, 0.012184220366179943, 0.008386955596506596, 0.015125195495784283, -0.004029673058539629, -0.02482510171830654, -0.042375411838293076, -0.00529275881126523, -0.010739701800048351, 0.041665490716695786, -0.0002271203848067671, 0.017796162515878677, -0.01056367065757513, 0.02125459723174572, -0.0728229507803917, -0.01725904643535614, 0.019706619903445244, 0.008673597127199173, 0.012396261096000671, 0.0017744246870279312, 0.0001565830607432872, 0.04495008662343025, 0.024018993601202965, 0.0021968591026961803, 0.033761974424123764, 0.04181384667754173, -0.013296213932335377, 0.04049741476774216, 0.02743782475590706, -0.011451886966824532, 0.0649932473897934, -0.011085891164839268, -0.00240139476954937, 0.03690654784440994, -0.020795296877622604, 0.021778380498290062, 0.0005451113102026284, 0.010359467938542366, -0.022410128265619278, -0.015940427780151367, 0.0027001004200428724, 0.004970909561961889, 0.017025360837578773, -0.006871665827929974, -0.010988941416144371, 0.050680652260780334, 0.00453903479501605, 0.0123591348528862, -0.032643336802721024, -0.0030195664148777723, 0.04589483514428139, 0.020720921456813812, 0.007306817919015884, -0.0026117621455341578, 0.015312121249735355, -0.05729064717888832, -0.039944831281900406, 0.03977637365460396, -0.021323008462786674, -0.034336935728788376, -0.01699414849281311, -0.006718317978084087, -0.01063531357795, 0.026576222851872444, 0.015352483838796616, 0.017595075070858, -0.0006032495875842869, 0.04340902343392372, -0.0008528985199518502, -0.050881627947092056, 0.039969950914382935, 0.033639851957559586, -0.011788672767579556, 0.06735089421272278, -0.003216087119653821, 0.0490511953830719, 0.007898544892668724, 0.004215417895466089, -0.04961743950843811, -0.0026327127125114202, -0.01401793584227562, 0.029937947168946266, 0.012921566143631935, 0.025148019194602966, 0.013629982247948647, -0.016573308035731316, 0.011949685402214527, 0.01668798178434372, -0.013929136097431183, 0.02664496935904026, -0.026904884725809097, 0.04027170687913895, 0.029797298833727837, 0.04208274930715561, -0.032177627086639404, 0.06069186329841614, -0.05181645601987839, -0.008040434680879116, -0.03011290542781353, -0.05097699537873268, 0.022928794845938683, 0.009910937398672104, -0.03837503120303154, -0.008627182804048061, 0.021696634590625763, 0.06049446761608124, 0.03740653395652771, -0.03705973923206329, 0.04048369079828262, 0.02713867463171482, -0.05872146785259247, -0.0004217875830363482, 0.0034910435788333416, 0.06994523108005524, 0.006418066099286079, -0.0037166352849453688, -0.011302818544209003, -0.020776793360710144, -0.04082522168755531, -0.03451761603355408, 0.010008713230490685, 0.010370788164436817, -0.03828277811408043, 0.009359268471598625, 0.010168680921196938, -0.012423149310052395, 0.015024245716631413, 0.005456114187836647, -0.021072736009955406, -0.06960917264223099, -0.0594908744096756, 0.06116244196891785, -0.030926551669836044, 0.026952024549245834, 0.0005819716607220471, -0.024814361706376076, 0.016870496794581413, 0.047043897211551666, -0.04845518246293068, -0.004665955435484648, 0.030818745493888855, 0.0021427629981189966, -0.012613991275429726, -0.01517735980451107, -0.002222886774688959, -0.0026512062177062035, -0.05582250654697418, 0.042640309780836105, -0.03231414407491684, -0.002076979260891676, -0.006013202480971813, 0.02449212595820427, 0.04537796601653099, 0.06867280602455139, -0.0013361695455387235, 0.009104753844439983, 0.004013264551758766, 0.06811702251434326, -0.008299574255943298, 0.021419456228613853, 0.002596244914457202, 0.04948482662439346, 0.01998169533908367, 0.052639190107584, 0.01702936366200447, 0.020822815597057343, 0.04807354137301445, 0.0565851591527462, -0.029283713549375534, 0.022913511842489243, 0.012854911386966705, 0.028222937136888504, 0.029094606637954712, 0.005216669756919146, -0.023390062153339386, 0.021778816357254982, 0.00524820014834404, 0.01098595466464758, 0.01651628501713276, 0.027509771287441254, -0.023785443976521492, 0.052857279777526855, 0.033735137432813644, 0.06252610683441162, -0.024690868332982063, -0.010272893123328686, 0.018762260675430298, 0.043564822524785995, -0.02678076922893524, -0.003155879443511367, 0.006995908450335264, 0.0759647861123085, 0.013695851899683475, -0.013694205321371555, 0.006718095857650042, -0.008073207922279835, 0.03441799804568291, 0.017702218145132065, 0.006635898258537054, -0.060542549937963486, -0.03286347538232803, -0.05995148420333862, -0.05191127583384514, -0.024846896529197693, -0.050219982862472534, 0.006518303416669369, 0.02800070494413376, -0.038754817098379135, 0.023324785754084587, 0.002196144312620163, -0.005036792252212763, -0.023575786501169205, 0.0024245711974799633, 0.0431683287024498, 0.026319559663534164, 0.024574676528573036, -0.025317147374153137, 0.02272052690386772, 0.013540331274271011, 0.033072177320718765, -0.04263059049844742, 0.0001733682001940906, 0.02872391976416111, -0.04983356222510338, 0.029526159167289734, 0.0005600679432973266, 0.0031560552306473255, 0.0028642709366977215, -0.0422186516225338, -0.07778061926364899, -0.04176977276802063, 0.013427437283098698, 0.008983202278614044, 0.024908458814024925, -0.044804997742176056, 0.02758655697107315, 0.021165985614061356, -0.0334613174200058, 0.03958383575081825, 0.0200446005910635, -0.04490288347005844, 0.041315581649541855, 0.04223860427737236, -0.003242174396291375, -0.05426345393061638, 0.0326591320335865, 0.03190287575125694, 0.036314208060503006, -0.026137065142393112, -0.004669627640396357, -0.022839903831481934, 0.01927199214696884, 0.031093254685401917, 0.003992052283138037, -0.03348775580525398, 0.016958853229880333, 0.01579940877854824, -0.09443078190088272, 0.03514597937464714, -0.06231968477368355, -0.029953857883810997, -0.043655600398778915, -0.026218866929411888, -0.01882140338420868, 0.014037630520761013, -0.012104359455406666, 0.01899074763059616, 0.016875673085451126, -0.004026504699140787, 0.033203110098838806, 0.06333078444004059, -0.024026967585086823, 0.01651041954755783, 0.042294520884752274, -0.006642415653914213, 0.019590189680457115, 0.0074384924955666065, -0.04045168310403824, -0.017078304663300514, -0.003734238911420107, 0.004910200834274292, 0.005294037517160177, 0.044540245085954666, 0.017296768724918365, 0.04105035588145256, 0.05497618392109871, -0.0409737303853035, -0.008091721683740616, 0.010933829471468925, 0.012649117037653923, 0.03982572257518768, -0.002197656547650695, 0.0019022338092327118, -0.045618798583745956, -0.019587550312280655, -0.031836554408073425, 0.03258737549185753, 0.0015219574561342597, 0.05023963749408722, -0.04198393225669861, 0.05469794198870659, 0.01019715890288353, -0.03390495851635933, 0.0308053120970726, -0.044235095381736755, 0.01831723377108574, 0.041455820202827454, -0.000804864801466465, 0.03198035806417465, -0.061912618577480316, 0.010789049789309502, -0.029714440926909447, -0.028813447803258896, 0.02863677777349949, -0.00011311870184727013, 0.026768606156110764, -0.026466069743037224, -0.0032080220989882946, -0.017716586589813232, -0.014485823921859264, -0.017613505944609642, -0.016247591003775597, 0.011625861749053001, -0.011691039428114891, -0.019898759201169014, -0.03725597262382507, 0.024391723796725273, -0.009783172979950905, 0.04436744749546051, -0.001684836228378117, 0.03178902342915535, 0.009596955962479115, 0.051209837198257446, 0.016259685158729553, 0.008939082734286785, 0.013488320633769035, -0.017117071896791458, 0.05423610284924507, 0.024087771773338318, 0.012650844641029835, -0.0446474589407444, -0.0532463863492012, -0.02768361195921898, 0.04228496551513672, 0.03664745017886162, -0.002805521944537759, -0.054162874817848206, 0.0004546050331555307, -0.04311453178524971, 0.018660375848412514, -0.041904594749212265, -0.03316827490925789, -0.023323586210608482, 0.03581985458731651, 0.041322510689496994, -0.07424482703208923, -0.007419613655656576, -0.043055567890405655, 0.013908196240663528, 0.029514143243432045, -0.016398288309574127, -0.05418014153838158, -0.056782256811857224, -0.04920265078544617, -0.03907807916402817, 0.00686301663517952, 0.04066148027777672, 0.0020128395408391953, 0.05322427675127983, -0.04887675493955612, 0.0069520301185548306, 0.02801697887480259, 0.003100758884102106, 0.004179885610938072, 0.005688896402716637, 0.015181973576545715, -0.026680707931518555, 0.03629990667104721, -0.015914106741547585, -0.011215823702514172, 0.027393635362386703, -0.08104779571294785, 0.009477677755057812, -0.005661793984472752, 0.01915176957845688, -0.020158225670456886, 0.0095353489741683, 0.0054802619852125645, 0.04047664627432823, -0.008017053827643394, 0.017711276188492775, 0.02262815646827221, 0.00978148728609085, -0.0461868979036808, -0.01608646661043167, 0.03638928383588791, 0.01642865128815174, -0.020140472799539566, 0.07246985286474228, 0.03473072126507759, -0.029120486229658127, 0.02834041602909565, -0.005198322702199221, -0.034875623881816864, 0.040629591792821884, -0.02991025522351265, 0.019738726317882538, -0.027663124725222588, -0.022778280079364777, -0.002268526004627347, -0.06309641152620316, 0.01760048046708107, -0.0021796913351863623, -0.04162558913230896, -0.04082856327295303, -0.040694691240787506, -0.01990453153848648, 0.00772854033857584, -0.03802403435111046, 0.012780522927641869, -0.004757340531796217, -0.025028390809893608, 0.017944136634469032, -0.0631425678730011, 0.020519088953733444, 0.019013458862900734, -0.011997767724096775, 0.003734513185918331, 0.021061044186353683, 0.00241326866671443, -0.007567224558442831, -0.055470358580350876, -0.026790551841259003, -0.0004107283893972635, -0.0011668389197438955, -0.024203738197684288, -0.06372055411338806, -0.00809183344244957, -0.017065102234482765, -0.021976321935653687, -0.028311792761087418, 0.004670577589422464, -0.026100939139723778, 0.007295317016541958, 0.024930009618401527, 0.01268912386149168, 0.01793494261801243, 0.020189844071865082, -0.016768764704465866, 0.043321046978235245, 0.013684176839888096, -0.040571801364421844, -0.037974584847688675, 0.035547029227018356, 0.014770010486245155, 0.05707293748855591, -0.008964387699961662, -0.0397515669465065, -0.047305960208177567, -0.044530753046274185, -0.011306369677186012, -0.04114397615194321, -0.013834774494171143, -0.05396474897861481, -0.04336291924118996, -0.0379241481423378, 0.06055609509348869, 0.00132446875795722, -0.02715281769633293, 0.002604748820886016, -0.03900647163391113, 0.005641053430736065, -0.03711956366896629, -0.018358508124947548, 0.007523926440626383, -0.019116908311843872, 0.016341738402843475, 0.04507717862725258, 0.018061455339193344, 0.030982889235019684, -0.002167756436392665, 0.022773530334234238, 0.0357758030295372, -0.011612114496529102, -0.024601230397820473, -0.03223501518368721, 0.01106055174022913, -0.011732380837202072, 0.008583297953009605, 0.030069587752223015, -0.03908712416887283, 0.06157592311501503, -0.05039390176534653, 0.030240057036280632, -0.013537842780351639, 0.005926577374339104, -0.004698066972196102, -0.007658381946384907, 0.021317176520824432, -0.019688017666339874, -0.02093663066625595, -0.03340569883584976, 0.02942245826125145, 0.020409075543284416, 0.004661115817725658, 0.001519664074294269, -0.015479921363294125, -0.05666198581457138, -0.0036653652787208557, 0.007299583405256271, -0.006633131764829159, -0.012081730179488659, -0.044882677495479584, -0.003626490943133831, 0.06569848209619522, 0.003872860223054886, 0.044187504798173904, 0.0794294998049736, 0.01347448118031025, 0.020478177815675735, -0.02069021388888359, 0.03223266825079918, 0.03294968232512474, -0.011643894016742706, 0.02347884327173233, 0.020458664745092392, -0.029973845928907394, -0.030016927048563957, -0.030195454135537148, -0.04154480621218681, -0.03411849960684776, -0.011002806946635246, 0.06938636302947998, -0.032495494931936264, 0.019865430891513824, -0.009147398173809052, -0.06433968245983124, -0.00924177747219801, 0.030969448387622833, 0.01561377476900816, 0.01796778291463852, 0.07323428988456726, 0.02530168928205967, -0.0008733064751140773, 0.06373512744903564, 0.007560304831713438, -0.0072103822603821754, -0.03779444843530655, 0.05379333347082138, 0.021627947688102722, -0.02438930608332157, 0.02527303621172905, 0.03223555535078049, -0.051947347819805145, -0.066755011677742, -0.002542780479416251, -0.014614788815379143, 0.019070236012339592, -0.015376084484159946, 0.0030440690461546183, 0.020754477009177208, -0.028037525713443756, 0.04175856336951256, 0.02204550988972187, -0.015174551866948605, 0.022220559418201447, 0.011576468124985695, 0.05170021578669548, -0.042958542704582214, -0.01893460564315319, 0.05180171877145767, -0.015157508663833141, -0.009862751699984074, -0.030847176909446716, -0.024014577269554138, -0.017337048426270485, 0.023775111883878708, 0.05985104292631149, -0.010797497816383839, 0.0255355853587389, 0.05495096370577812, -0.020370405167341232, 0.003667494049295783, 0.02704600989818573, 0.014622552320361137, 0.012734181247651577, -0.01678543910384178, -0.04890647530555725, -0.03322190046310425, 0.021725591272115707, -0.015486852265894413, 0.021884337067604065, -0.012001831084489822, 0.013968352228403091, 0.03132886812090874, 0.02350017800927162, -0.029652176424860954, -0.03886714205145836, -0.013957741670310497, -0.03439934551715851, -0.060271549969911575, -0.024769484996795654, -0.04668550193309784, -0.0034138665068894625, 0.002381982048973441, -0.002432906301692128, -0.06745751202106476, 0.00854125153273344, -0.013021725229918957, -0.016055438667535782, -0.020430149510502815, -0.007359609007835388, 0.026470592245459557, -0.037674590945243835, -0.06289192289113998, -0.06416817009449005, -0.011021889746189117, -0.025521697476506233, -0.000519359833560884, -0.03456293046474457, 0.00873774103820324, -0.014424474909901619, 0.027123257517814636, -0.021751580759882927, 0.018961284309625626, -0.012808416970074177, -0.04588872566819191, 0.031751252710819244, -0.0002968397457152605, -0.03670893609523773, 0.039338208734989166, 0.02948557399213314, 0.004783667623996735, 0.05206821486353874, 0.017562832683324814, -0.01799618825316429, -0.036098260432481766, 0.02697153575718403, 0.011686254292726517, -0.021985037252306938, -0.04237062484025955, -0.001563526107929647, -0.0008896394283510745, -0.03220884129405022, 0.012886143289506435, -0.020570361986756325, 0.03137585148215294, 0.035751547664403915, -0.02486836537718773, -0.009698787704110146, 0.05644774064421654, -0.016308851540088654, 0.03309105709195137, -0.03073032572865486, 0.02942603826522827, 0.025049708783626556, 0.005550472065806389, 0.02055208757519722, -0.003121990244835615, 0.04001535102725029, -0.0037813803646713495, 0.029238741844892502, 0.006725207436829805, -0.012570319697260857, 0.024071482941508293, 0.00019008289382327348, -0.021498017013072968, -0.03018532134592533, 0.027063865214586258, -0.026333071291446686, 0.04562503844499588, 0.01443563587963581, -0.003063151380047202, -0.00962032563984394, -0.007263251580297947, -0.011867114342749119, 0.018946196883916855, -0.07029714435338974, -0.0319330208003521, 0.053845666348934174, -0.044281721115112305, -0.017015526071190834, -0.0015204340452328324, -0.04191956669092178, -0.022849077358841896, -0.009242730215191841, -0.03702053055167198, 0.007483573164790869, 0.03914940357208252, -0.004451952874660492, 0.010327898897230625, 0.005142291076481342, -0.010307363234460354, 0.04123501479625702, 0.05194162577390671, -0.03383233770728111, -0.045089829713106155, 0.025815634056925774, 0.03839561715722084, 0.0013112252345308661, -0.010027553886175156, -0.008832309395074844, -0.015030512586236, -0.008663208223879337, 0.02072237990796566, -0.0065227169543504715, -0.0017513701459392905, -0.024679334834218025, 0.008533761836588383, -0.04843190684914589, -0.0059752450324594975, -0.01839253306388855, 0.0537731759250164, -0.009628747589886189, -0.021049505099654198, -0.010867868550121784, 0.05328084155917168, -0.00033587042707949877, -0.02051534876227379, 0.04410669580101967, 0.03488791733980179, 0.03415698930621147, -0.00725701916962862, 0.010367842391133308, -0.0022815661504864693, 0.03206916153430939, 0.05391266196966171, 0.0476127453148365, -0.012050244025886059, -0.011242791078984737, 0.04010956361889839, 0.01875234767794609, 0.015876352787017822, 0.012745313346385956, 0.011936255730688572, -0.0177660770714283, -0.0011495868675410748, -0.010849243961274624, -0.028423374518752098, -0.002037778263911605, -0.0230764988809824, -0.012884695082902908, -0.037171345204114914, -0.012938949279487133, -0.008511477150022984, -0.046398188918828964, 0.05054732784628868, -0.02069326862692833, -0.032167237251996994, 0.0011656207498162985, -0.01114033255726099, -0.00409656809642911, 0.04380947723984718, -0.002181332791224122, 0.018666861578822136, 0.029215725138783455, 0.02075996622443199, 0.0018081163289025426, 0.03334161639213562, 0.033958639949560165, 0.04521852359175682, -0.011636096052825451, -0.0032118428498506546, -0.0014138933038339019, -0.03038613311946392, -0.014386145398020744, -0.0005675662541761994, -0.04288172349333763, 0.03806600347161293, -0.03513341397047043, -0.013755019754171371, 0.041049785912036896, -0.04634034261107445, 0.0014841639203950763, -0.021398046985268593, 0.041004180908203125, -0.043068766593933105, -0.002472653752192855, -0.004846647847443819, -0.0041458080522716045, -0.03239903971552849, 0.03733520954847336, -0.009594089351594448, 0.02669486217200756, -0.014689059928059578, 0.06304851174354553, -0.02708231471478939, 0.010222525335848331, 0.028434496372938156, -0.03383142873644829, -0.0026436815969645977, 0.036389369517564774, -0.007205153815448284, -0.019854623824357986, -0.0066205901093780994, -0.03279785439372063, -0.02010471373796463, 0.0189064834266901, -0.03716732934117317, 0.007595445029437542, 0.03996053710579872, 0.011767142452299595, -0.043763019144535065, 0.003378171706572175, 0.0357806459069252, -0.03417268022894859, 0.008525306358933449, 0.022069409489631653, -0.0030795212369412184, -0.02403661049902439, -0.020969917997717857, -0.014000771567225456, 0.012343330308794975, -0.01026140246540308, -0.017836200073361397, 0.020025203004479408, -0.02036486752331257, -0.012472102418541908, -0.06239962577819824, -0.021269218996167183, -0.02931770123541355, 0.040344711393117905, -0.02856520004570484, -0.06312691420316696, 0.02918841876089573, 0.03798604756593704, -0.006306216586381197, 0.02354135923087597, -0.019861895591020584, -0.0030559098813682795, 0.039495162665843964, 0.05685008689761162, 0.00016168624279089272, 0.011845257133245468, 0.04086526855826378, -0.03537736460566521, 0.01014360599219799, -0.03639938682317734, 0.019995396956801414, 0.0070526390336453915, -0.027795396745204926, -0.005068307276815176, 0.017054768279194832, -0.0206544641405344, -0.035478927195072174, -0.0016948975389823318, 0.06184742599725723, -0.012064623646438122, -0.048886388540267944, -0.06017671525478363, -0.018711423501372337, -0.061600539833307266, 0.004050057381391525, -0.038483280688524246, -0.012189649045467377, 0.007477211765944958, -0.006732718553394079, -0.009160658344626427, -0.0413990244269371, 0.14935429394245148, 0.04987586662173271, 0.04867158457636833, 0.033470530062913895, 0.03496773913502693, 0.020241234451532364, -0.0030749249272048473, -0.021813994273543358, -0.03349686041474342, -0.023824943229556084, 0.024939995259046555, 0.002607419854030013, 0.03296533226966858, 0.017191611230373383, 0.021591681987047195, 0.033556532114744186, -0.03699555993080139, 0.0012170398840680718, 0.03438545763492584, -0.036635871976614, -0.06925514340400696, 0.015219698660075665, -0.008001450449228287, 0.05485023930668831, -0.006557820830494165, -0.007302991114556789, -0.007292724680155516, -0.04200819507241249, -0.010553386062383652, -0.05778524652123451, 0.04924791306257248, -0.04183392599225044, 0.05606257542967796, 0.01570308953523636, -0.028867360204458237, 0.027269423007965088, -0.010349022224545479, 0.021280083805322647, -0.0043138680048286915, -0.014161261729896069, -0.0035505930427461863, -0.0041840095072984695, 0.0024008869659155607, -0.042061224579811096, -0.01592238061130047, -0.004154551774263382, -0.027747109532356262, 0.03756547346711159, 0.003312045009806752, -0.04906534403562546, 0.06859174370765686, -0.006342864129692316, 0.06553680449724197, -0.013436906039714813, -0.024647682905197144, 0.009099901653826237, 0.012784515507519245, -0.023965125903487206, 0.0040771509520709515, 0.025771673768758774, 0.004049817565828562, 0.03960456699132919, -0.012383945286273956, -0.0036746319383382797, -0.03925471007823944, -0.017343666404485703, 0.003167934250086546, 0.07325499504804611, 0.02053089812397957, -0.01570107229053974, -0.0213021133095026, -0.041170839220285416, 0.011220501735806465, -0.02926824614405632, -0.004609860945492983, 0.038087330758571625, -0.01232832670211792, 0.03457702696323395, 0.013275641947984695, -0.03676284849643707, -0.004862982779741287, -0.017320919781923294, -0.0066160657443106174, -0.025687046349048615, 0.03156610205769539, 0.045575834810733795, -0.07072017341852188, -0.006508324295282364, 0.007598152384161949, 0.06585100293159485, 0.03791261091828346, 0.049012504518032074, -0.01931171678006649, -0.04499153792858124, -0.034671131521463394 ]
For only having 2 ingredients this "cookie" is very healthy and quick to make. Taste wise it's lacking if you're craving that sweet cookie taste and texture, but for health food fans it's pretty good. I would say this has more of a heavy biscuit or bread texture which I like too and even better when you add honey and cinnamon to the recipe.
[ -0.019199537113308907, 0.012559622526168823, -0.013798016123473644, -0.010175876319408417, -0.047123946249485016, -0.006791040766984224, 0.0075448439456522465, 0.02748946100473404, -0.0042516798712313175, 0.016932234168052673, 0.04698142036795616, -0.03919064998626709, 0.018813883885741234, -0.0523989275097847, -0.02845774218440056, -0.0039166854694485664, -0.03474654629826546, -0.03786009922623634, -0.011248242110013962, 0.024828199297189713, 0.02605452947318554, 0.00546583067625761, -0.07535933703184128, -0.022803453728556633, -0.02013486810028553, 0.011927279643714428, 0.02914729341864586, -0.03116403892636299, 0.06455539166927338, 0.06982563436031342, -0.02106270007789135, -0.04518735781311989, 0.04559805244207382, -0.04469413310289383, -0.00796586461365223, -0.009920544922351837, 0.02148776315152645, -0.04104560986161232, 0.006437088828533888, -0.05792965739965439, 0.054341331124305725, -0.038307733833789825, 0.026295015588402748, -0.028420891612768173, -0.0108650466427207, 0.003504945896565914, -0.028530430048704147, -0.006027540657669306, 0.026471486315131187, -0.011182446964085102, 0.005591215565800667, 0.011426731012761593, 0.0016052810242399573, -0.00705905444920063, -0.00703585846349597, 0.035888370126485825, 0.03190915659070015, -0.002551346318796277, -0.012986736372113228, 0.0371139794588089, 0.008267856203019619, -0.003381352871656418, 0.029453245922923088, -0.06344011425971985, 0.029756400734186172, 0.03380677476525307, -0.018786396831274033, -0.0037313031498342752, 0.016713205724954605, -0.02189425565302372, 0.023634281009435654, -0.008037740364670753, -0.033297982066869736, -0.03443321958184242, -0.013248967938125134, -0.01416837703436613, 0.022393887862563133, 0.01981545239686966, -0.019171539694070816, 0.003856807481497526, -0.030553707852959633, 0.06613041460514069, 0.013852883130311966, 0.013985413126647472, -0.05837429314851761, -0.036182720214128494, -0.00023347556998487562, 0.007574604358524084, 0.04550229012966156, -0.014658804051578045, 0.009020674973726273, 0.03534160554409027, -0.007678686641156673, -0.009004315361380577, 0.04251713305711746, 0.043526239693164825, -0.06189807504415512, 0.05359305813908577, 0.027660299092531204, 0.015708835795521736, 0.027016520500183105, -0.0058051892556250095, 0.0177316777408123, 0.033841777592897415, -0.042744848877191544, -0.014058578759431839, 0.015720142051577568, -0.024310845881700516, -0.030896708369255066, -0.003673047758638859, -0.011031732894480228, -0.015244592912495136, 0.008348088711500168, -0.0005871768807992339, -0.03434111177921295, 0.04312022402882576, 0.0030520178843289614, 0.08566740155220032, -0.03913068771362305, 0.011491110548377037, -0.035220589488744736, 0.0022281494457274675, 0.04270435869693756, -0.018138369545340538, 0.015117413364350796, -0.033002737909555435, -0.0318419523537159, 0.03755873441696167, -0.061297912150621414, -0.015737051144242287, 0.019432228058576584, -0.01329858973622322, 0.018468115478754044, 0.007340233772993088, -0.003729180432856083, 0.0063435048796236515, -0.021510865539312363, 0.054422151297330856, 0.03260355442762375, -0.04607000574469566, 0.03376328572630882, 0.017037514597177505, -0.009162523783743382, 0.09297002106904984, -0.011844041757285595, -0.003569576656445861, 0.00574286375194788, -0.0024059375282377005, -0.04072098806500435, 0.0336245521903038, -0.015913542360067368, 0.05578494071960449, -0.019823577255010605, 0.0014636832056567073, -0.012248929589986801, 0.010627497918903828, -0.007218882907181978, 0.011197236366569996, 0.04797939956188202, 0.012846657074987888, -0.011430412530899048, 0.02713700383901596, -0.022896233946084976, 0.07509615272283554, -0.053858183324337006, 0.051960136741399765, -0.04289498180150986, -0.00904739461839199, -0.0068542021326720715, -0.031416621059179306, 0.014650375582277775, -0.007247901055961847, -0.020286398008465767, 0.010122625157237053, 0.006793071981519461, 0.05771690234541893, 0.06306151300668716, -0.04206746444106102, 0.07930129021406174, 0.040087006986141205, -0.05538002401590347, -0.0030817617662250996, -0.002883768640458584, 0.05418647825717926, -0.014862826094031334, -0.024738989770412445, -0.01339769922196865, -0.011615030467510223, -0.03290100023150444, -0.04108210653066635, -0.01868046075105667, 0.028150267899036407, -0.027318082749843597, 0.02873282879590988, 0.001360060996375978, -0.0035490323789417744, -0.030383380129933357, 0.02216944471001625, -0.048600371927022934, -0.0346844457089901, -0.01570434309542179, 0.03732096776366234, -0.0015589045360684395, 0.013803357258439064, -0.005130298435688019, -0.019753826782107353, 0.02163274586200714, 0.046535853296518326, -0.0582086406648159, 0.024115445092320442, 0.03522272780537605, -0.002538303378969431, -0.01593942940235138, -0.009038855321705341, -0.028509387746453285, 0.0005237715668044984, -0.01754111237823963, 0.00906257051974535, 0.003124670358374715, -0.022880053147673607, 0.00588840339332819, 0.005251400638371706, 0.02386796474456787, 0.007615638431161642, 0.005267675966024399, 0.006372096948325634, -0.01633206009864807, 0.03910231217741966, -0.003296763403341174, -0.024754546582698822, -0.043892037123441696, 0.04106344282627106, 0.011508744210004807, 0.06103089451789856, 0.02205532044172287, 0.017997218295931816, 0.008248086087405682, 0.008916244842112064, 0.01275588572025299, 0.03779824078083038, -0.008799088187515736, 0.020451471209526062, 0.03808785602450371, 0.019793160259723663, -0.00040595282916910946, 0.024223243817687035, -0.028114324435591698, 0.020973186939954758, -0.01580493524670601, 0.037991963326931, 0.00617841025814414, 0.03273536264896393, 0.029165048152208328, 0.05998331680893898, 0.010318886488676071, -0.018110891804099083, 0.013117789290845394, 0.04325713962316513, -0.016759678721427917, -0.007290280424058437, 0.0008273784769698977, 0.040981732308864594, -0.016342399641871452, 0.020663779228925705, 0.04029770940542221, 0.03503717482089996, -0.019006649032235146, 0.02571665309369564, 0.016890348866581917, -0.03903908282518387, -0.031602613627910614, -0.027582315728068352, -0.05279352143406868, -0.052211906760931015, -0.04064780846238136, 0.019108636304736137, 0.03782087191939354, -0.06399393081665039, 0.012397591955959797, 0.004938663449138403, -0.0072987559251487255, -0.014585019089281559, -0.03138481080532074, 0.02146688848733902, 0.008065828122198582, 0.037330832332372665, -0.028818847611546516, 0.02851119451224804, -0.004546199459582567, 0.022503819316625595, -0.002159102587029338, -0.04963008314371109, -0.0145900072529912, -0.025836020708084106, 0.02913902886211872, -0.021231140941381454, -0.015338722616434097, -0.022817937657237053, -0.03722420707345009, -0.045036233961582184, 0.026732200756669044, 0.0053094131872057915, -0.010234883055090904, 0.016445355489850044, -0.051766134798526764, 0.03821945562958717, 0.019106194376945496, -0.035083264112472534, 0.04671773687005043, 0.02603575959801674, -0.002895318204537034, 0.05386294797062874, 0.023375654593110085, 0.010481834411621094, -0.0570402555167675, -0.0007106647826731205, 0.050134383141994476, -0.009857011027634144, -0.05131028965115547, -0.028591172769665718, -0.026420285925269127, 0.01004029717296362, 0.014561953023076057, -0.030671874061226845, -0.018237818032503128, 0.0354350283741951, -0.008973892778158188, -0.062105391174554825, 0.02859465219080448, -0.008505442179739475, -0.05476102605462074, -0.016165563836693764, -0.010737685486674309, 0.022537386044859886, 0.03271983563899994, 0.037360940128564835, 0.01717163436114788, -0.005447421222925186, 0.007057662587612867, 0.012838643975555897, 0.044130679219961166, -0.014683745801448822, 0.005562099628150463, 0.04966650530695915, -0.014420432969927788, 0.045186836272478104, 0.030001714825630188, -0.01820613630115986, -0.008532026782631874, 0.02048063836991787, 0.002965402090921998, 0.02684679441154003, 0.043404918164014816, 0.035205040127038956, 0.030199315398931503, 0.08805602788925171, -0.03741440176963806, -0.0014757101889699697, 0.028679119423031807, -0.009058045223355293, 0.04462487995624542, 0.0033706461545079947, 0.007613352965563536, 0.00439038360491395, -0.061235446482896805, -0.03824732452630997, 0.043962348252534866, -0.012489177286624908, 0.05223558843135834, -0.03906378522515297, 0.05189230293035507, -0.039589378982782364, 0.010421819984912872, 0.050761301070451736, -0.04865735396742821, -0.017675576731562614, 0.06217491999268532, -0.013109940104186535, 0.055115073919296265, -0.015461155213415623, 0.03777369111776352, -0.05089467763900757, 0.025470951572060585, -0.004721129313111305, -0.022583015263080597, 0.033238641917705536, -0.040648993104696274, -0.017203213647007942, -0.01662912592291832, -0.026072075590491295, -0.018993673846125603, -0.008434321731328964, 0.010166923515498638, -0.01675884984433651, -0.025305375456809998, -0.03509826213121414, 0.024175016209483147, -0.0000544686263310723, 0.04349279776215553, -0.003406969364732504, -0.006187841296195984, 0.014803517609834671, 0.03840121626853943, 0.03924040496349335, 0.004989147651940584, -0.010782495141029358, -0.0629650205373764, 0.031303972005844116, 0.014556090347468853, -0.015875881537795067, -0.014361614361405373, -0.0292062871158123, -0.035330042243003845, 0.021468453109264374, 0.0015902771847322583, -0.03664850816130638, -0.030756505206227303, 0.05769164115190506, -0.03392495587468147, 0.04339064285159111, -0.03185687214136124, -0.016397394239902496, -0.05907411500811577, 0.04368557780981064, 0.04520655423402786, -0.07353391498327255, -0.005510442890226841, -0.0600309744477272, 0.042546797543764114, 0.0443153902888298, -0.0010940567590296268, -0.03947890177369118, -0.03897855803370476, -0.017572574317455292, -0.0268784798681736, 0.02392956055700779, 0.04650271311402321, -0.00793490745127201, 0.013948476873338223, -0.037718407809734344, -0.0032681901939213276, 0.013566317968070507, -0.022886071354150772, -0.026102574542164803, -0.02578173577785492, 0.04655798524618149, 0.0006191062857396901, 0.058601196855306625, -0.021380044519901276, -0.024616852402687073, 0.01667722687125206, -0.030058572068810463, 0.01894199475646019, -0.0006559134344570339, -0.039870861917734146, 0.006504026707261801, -0.00885121151804924, 0.0068781389854848385, 0.01632765308022499, -0.02475145272910595, 0.021576011553406715, -0.007608022540807724, 0.02792263962328434, -0.029596295207738876, -0.011830827221274376, 0.05187646672129631, -0.03786303475499153, -0.03464403375983238, 0.034481726586818695, 0.03911992534995079, 0.002688610227778554, -0.002286340808495879, 0.053707897663116455, -0.05484916642308235, 0.0334862656891346, -0.00920087844133377, 0.014285411685705185, -0.012439558282494545, -0.0223966334015131, -0.01652466505765915, -0.04633179306983948, -0.000010697564903239254, 0.01599576510488987, -0.011466057039797306, -0.05280042439699173, -0.029672225937247276, -0.0343412309885025, 0.028426075354218483, -0.02459709346294403, 0.01559000089764595, 0.025342732667922974, -0.016994530335068703, 0.008050382137298584, -0.004011316224932671, -0.02882586233317852, 0.0131327323615551, -0.0021849304903298616, -0.012526348233222961, -0.0004975501215085387, 0.029469136148691177, 0.04100865125656128, -0.020101409405469894, -0.053279709070920944, -0.02968854270875454, 0.02680768445134163, 0.010510638356208801, -0.03223801404237747, 0.007755102124065161, -0.010677666403353214, -0.025223366916179657, -0.025470780208706856, 0.04180428758263588, -0.014870141632854939, -0.0035827597603201866, 0.05723562464118004, 0.005476673133671284, 0.024666957557201385, -0.00568189425393939, -0.05076569691300392, 0.03269331529736519, 0.032201848924160004, -0.04699864611029625, -0.05514119938015938, 0.033656045794487, 0.00298348069190979, 0.01958974450826645, 0.025966817513108253, -0.04137332737445831, -0.053448636084795, -0.056647200137376785, -0.009979459457099438, -0.026629403233528137, -0.03830784186720848, -0.06676492840051651, -0.06088137999176979, -0.026378177106380463, 0.042171698063611984, -0.007484952919185162, -0.012729180045425892, -0.035633768886327744, -0.029163118451833725, -0.019157856702804565, -0.01499139703810215, -0.0433603934943676, -0.029183581471443176, 0.006364711094647646, 0.014059667475521564, 0.035913944244384766, -0.002683217404410243, 0.02522217109799385, -0.006631468888372183, 0.028692875057458878, 0.01776399277150631, 0.007676273584365845, -0.04216161370277405, -0.0036136950366199017, -0.002034666482359171, -0.009816208854317665, 0.010013574734330177, -0.014725569635629654, -0.04756125062704086, 0.03390757367014885, -0.06700854003429413, 0.013212502002716064, -0.032426461577415466, 0.02928396500647068, 0.037305425852537155, -0.006233306135982275, 0.040700528770685196, -0.005191677249968052, -0.008246125653386116, -0.03473752737045288, 0.03054800070822239, 0.03031020611524582, 0.007797092664986849, -0.020418768748641014, -0.0280587337911129, -0.03808898478746414, -0.043332576751708984, -0.006536729168146849, -0.009775753132998943, -0.003511999035254121, -0.05332951992750168, -0.024869827553629875, 0.019820459187030792, 0.013123482465744019, 0.035605866461992264, 0.04324151575565338, -0.010687737725675106, -0.01720113679766655, -0.059839606285095215, 0.032721146941185, 0.02370033971965313, -0.034342654049396515, -0.01657312549650669, 0.007082395255565643, -0.03364451229572296, -0.018994150683283806, -0.03956848010420799, -0.011856424622237682, -0.05915818735957146, 0.006609654985368252, 0.046885885298252106, -0.05644776672124863, 0.007266992703080177, 0.026425862684845924, -0.02289952151477337, -0.04491843283176422, 0.05526876449584961, 0.011468617245554924, 0.006279981229454279, 0.041728727519512177, 0.01917695812880993, -0.01213563047349453, -0.008586090989410877, 0.010729529894888401, 0.004330470692366362, -0.02223137393593788, 0.034151285886764526, -0.036292318254709244, -0.037081196904182434, 0.04672536253929138, 0.033074479550123215, -0.0912223532795906, -0.025781534612178802, -0.018734561279416084, -0.014488382264971733, 0.006860862486064434, -0.02023184858262539, 0.0028203220572322607, -0.003822740400210023, 0.003773696254938841, 0.01609705574810505, 0.026832783594727516, -0.015777548775076866, 0.040806956589221954, -0.0041185710579156876, 0.01984877698123455, -0.0466422513127327, -0.028391839936375618, 0.03350933641195297, -0.022813834249973297, -0.0415140725672245, 0.014864719472825527, 0.029776932671666145, -0.016861746087670326, 0.03204246237874031, 0.052782051265239716, -0.0011799606727436185, 0.025660378858447075, 0.021737970411777496, -0.03091379813849926, 0.03529402241110802, -0.002901763655245304, -0.011139723472297192, 0.005343178752809763, -0.01589805819094181, -0.04083610698580742, -0.07016821950674057, 0.00960372295230627, -0.0161543320864439, 0.043803621083498, -0.006470192223787308, 0.01692461594939232, 0.009125526994466782, -0.020631855353713036, -0.00456991046667099, -0.014576821587979794, -0.047799307852983475, -0.03428398072719574, -0.036387279629707336, -0.0365561842918396, -0.03200537711381912, -0.0025204727426171303, 0.03430012986063957, 0.03220238536596298, -0.012852516025304794, -0.004320732317864895, 0.029968760907649994, -0.04256892949342728, 0.02349010482430458, -0.02274351939558983, 0.039634596556425095, -0.038148414343595505, -0.06975255161523819, -0.052575305104255676, 0.004372158087790012, -0.010636338032782078, 0.021457482129335403, -0.02672777883708477, 0.003950395621359348, 0.005907670594751835, 0.04827355220913887, -0.009826918132603168, 0.031296130269765854, -0.010710678063333035, -0.05783480405807495, 0.021273484453558922, 0.035883236676454544, 0.012771295383572578, 0.04078187793493271, 0.03868690878152847, -0.032490212470293045, 0.01831037364900112, 0.01297595351934433, -0.0410320907831192, -0.028182294219732285, 0.008269192650914192, 0.019257426261901855, -0.0045854877680540085, -0.023409780114889145, -0.02610376477241516, -0.009831329807639122, -0.0282809529453516, -0.0018019690178334713, -0.005614299327135086, 0.010326501913368702, 0.018762413412332535, 0.021036304533481598, 0.005049495492130518, 0.08441661298274994, 0.0002031857002293691, 0.010981651023030281, 0.0031720304396003485, 0.037395358085632324, 0.0031248251907527447, -0.006795773282647133, 0.01677982695400715, 0.041568733751773834, 0.023499978706240654, -0.038519926369190216, -0.024536725133657455, 0.0042268866673111916, 0.014683909714221954, 0.029889173805713654, -0.017219480127096176, -0.02062489092350006, -0.01642904058098793, -0.017050446942448616, 0.025721173733472824, 0.06750743836164474, 0.0028161422815173864, 0.001219955855049193, 0.034525178372859955, -0.05557543411850929, -0.03892890363931656, -0.015142214484512806, -0.034120526164770126, -0.01568353734910488, 0.029790345579385757, -0.010388891212642193, -0.0029769036918878555, -0.030811810865998268, -0.032393407076597214, 0.029958559200167656, -0.01765499822795391, 0.018066100776195526, -0.020498696714639664, 0.016628187149763107, 0.007959464564919472, 0.035274311900138855, -0.011793026700615883, -0.041158679872751236, -0.009095514193177223, 0.02509533055126667, -0.06297191232442856, -0.06244334578514099, 0.0296455230563879, 0.024004951119422913, 0.01512085273861885, -0.008731739595532417, 0.00706294784322381, 0.026672547683119774, 0.02801385521888733, -0.0019791529048234224, -0.012204721570014954, -0.02909686788916588, -0.01720241643488407, 0.04383038729429245, -0.036319274455308914, -0.030997470021247864, -0.025486210361123085, 0.04806363210082054, 0.0009602598147466779, -0.03131883963942528, -0.043635789304971695, 0.05267930403351784, 0.03941158205270767, -0.004754334222525358, 0.053511425852775574, 0.002916828030720353, 0.024966320022940636, -0.008100450970232487, 0.02056596614420414, 0.002444708254188299, 0.04731757938861847, 0.03172531723976135, 0.03131633996963501, 0.011340578086674213, 0.001417851890437305, 0.07814298570156097, -0.0005479610408656299, 0.01770191825926304, 0.04131137207150459, 0.034680940210819244, 0.0033714266028255224, 0.005026007071137428, 0.0015964286867529154, 0.03643054515123367, -0.007332337088882923, 0.028740189969539642, -0.022136352956295013, 0.016638506203889847, 0.02075376734137535, 0.0017259973101317883, -0.03262535110116005, 0.0366484560072422, -0.04475979506969452, -0.005784992594271898, 0.001139586791396141, 0.003404528135433793, -0.03130890429019928, 0.04261988773941994, -0.046564266085624695, 0.031523581594228745, 0.06268025189638138, 0.03344763070344925, 0.0038231813814491034, 0.06095447391271591, -0.0017932371702045202, 0.009726457297801971, -0.010129265487194061, 0.008615792728960514, 0.006182539742439985, -0.03997763991355896, -0.03170984983444214, 0.008798380382359028, -0.02942471392452717, 0.029422752559185028, -0.0139753557741642, -0.02138262614607811, 0.05257495120167732, -0.032257530838251114, -0.042067792266607285, -0.0476655550301075, 0.010427839122712612, -0.015351198613643646, -0.006866834592074156, 0.039417147636413574, 0.0012387266615405679, -0.014692661352455616, 0.011341867037117481, 0.021437523886561394, 0.017469292506575584, 0.031968653202056885, 0.05420433357357979, 0.008208240382373333, 0.027161529287695885, 0.03250918164849281, -0.025545882061123848, -0.026007583364844322, 0.042973872274160385, -0.0375637449324131, -0.036223191767930984, -0.0027334990445524454, -0.008695644326508045, -0.010714558884501457, -0.022110462188720703, -0.02321498841047287, 0.00003435574399190955, 0.0383165143430233, 0.0007678108522668481, -0.06138018146157265, 0.0025367853231728077, 0.027150839567184448, -0.04889116436243057, -0.0163866113871336, -0.0019907255191355944, 0.012673880904912949, -0.01284350547939539, -0.03089464269578457, -0.02002790942788124, -0.04070557281374931, 0.0029414091259241104, -0.019135374575853348, 0.06825605034828186, -0.04527264088392258, -0.01606564223766327, -0.041861604899168015, -0.07746229320764542, -0.047429975122213364, 0.0008672703406773508, -0.04691825807094574, -0.041453439742326736, 0.020953113213181496, 0.05659444257616997, 0.010589053854346275, -0.006294597871601582, -0.024338362738490105, 0.03716535493731499, 0.008153952658176422, 0.04680337756872177, -0.021307922899723053, 0.03645714372396469, 0.02592836506664753, -0.005847257096320391, 0.025445541366934776, -0.028791265562176704, 0.06480088084936142, -0.028346817940473557, -0.01342682633548975, -0.015336190350353718, 0.041370145976543427, -0.001900749048218131, -0.0354163721203804, 0.04922156408429146, 0.0007605997379869223, 0.001573363901115954, -0.011112209409475327, -0.05074585601687431, -0.0014841239899396896, -0.03295130655169487, 0.003799873637035489, -0.03655663877725601, 0.031641747802495956, 0.031281452625989914, -0.015133017674088478, 0.014317281544208527, -0.06907601654529572, 0.13410411775112152, 0.06126483529806137, 0.02902047708630562, 0.027347467839717865, 0.034558143466711044, 0.035503797233104706, 0.016072377562522888, 0.017156114801764488, 0.001928019686602056, -0.0024187476374208927, 0.055297140032052994, -0.023000765591859818, 0.02430875599384308, 0.01628180593252182, 0.006853538565337658, 0.05301332101225853, -0.026045262813568115, -0.0038560363464057446, -0.006488217506557703, -0.02760513871908188, -0.07110951095819473, 0.008465554565191269, 0.02184147574007511, 0.016675442457199097, -0.020335016772150993, 0.018818553537130356, 0.004837697837501764, -0.0008875698549672961, -0.006032557226717472, -0.05216222628951073, 0.054826825857162476, -0.020787447690963745, 0.007106422912329435, 0.00002096614844049327, -0.05303036794066429, 0.03964307904243469, -0.010793216526508331, -0.04007091745734215, 0.009864361956715584, 0.009712007828056812, -0.05526822432875633, -0.0011775324819609523, 0.04706652835011482, -0.06770181655883789, 0.017308538779616356, 0.06120787933468819, -0.03578153997659683, 0.006934130564332008, 0.02537197433412075, -0.04655132442712784, 0.06385985016822815, -0.027162868529558182, 0.03533308580517769, -0.043402522802352905, -0.02485889568924904, -0.017333628609776497, 0.028324078768491745, -0.010210564360022545, -0.002901192056015134, -0.006780511233955622, 0.03867774084210396, 0.007216162048280239, -0.00008872534817783162, 0.011555146425962448, -0.05732949823141098, 0.0054883104749023914, 0.03213905170559883, 0.05011163651943207, 0.0035511243622750044, -0.016719738021492958, -0.008327134884893894, -0.01723981462419033, 0.0026273129042237997, 0.0036414547357708216, 0.06459148973226547, 0.006934118457138538, -0.030853955075144768, 0.015412839129567146, 0.022153425961732864, 0.009504743851721287, -0.016390206292271614, -0.055245161056518555, 0.007415895815938711, 0.022659052163362503, 0.023694276809692383, 0.026236409321427345, -0.03153699263930321, -0.02855563722550869, -0.017491435632109642, 0.05331694334745407, 0.0465133897960186, 0.005456879734992981, -0.008601320907473564, 0.012445623055100441, 0.0010494551388546824 ]
United Cannabis Corp in the forth quarter recorded net loss of $ -3.25 millions. According to the results reported in the forth quarter, United Cannabis Corp achieved the best Net Income growth in Biotechnology & Drugs industry. While United Cannabis Corp' s Net Income no change of % ranks overall at the positon no. in the forth quarter. Recent results of -3.25 millions by United Cannabis Corp come out even less good compare to the -2.98 millions net loss a quarter before. Within Biotechnology & Drugs industry United Cannabis Corp achieved highest sequential Net Income growth. While United Cannabis's Net Income growth quarter on quarter, overall rank is . Current accomplishment of -3.25 millions by United Cannabis Corp appear even more unfavourable compare to the -2.98 millions in the third quarter. United Cannabis Corp' has realized cumulative trailing twelve months net loss of $ -24 millions in the Dec 31 2018 period. The results are getting worse as the cumulative net loss is becoming larger from $ -23.54 millions in the twelve months ending a quarter before and $ -2.98 millions for the twelve months ending in the quarter Dec 31 2017. United Cannabis Corp achieved highest trailing twelve month year on year Net Income growth. While overall Net Income growth ranking, remained unchanged compare to the previous quarter at no. . The situation is getting worse as the cumulative net loss is getting bigger from $ -23.54 millions in the twelve months ending a quarter before and $ -2.98 millions for the twelve months ending in the quarter a year ago Zoé Wouters told.
[ -0.0016747101908549666, -0.013636672869324684, -0.016105569899082184, -0.00901088397949934, -0.008787560276687145, -0.004435207229107618, 0.005470472853630781, 0.026281511411070824, 0.018791034817695618, 0.020493492484092712, 0.03710545226931572, -0.0015139441238716245, 0.004068370908498764, -0.019844481721520424, -0.017053961753845215, -0.0029849610291421413, 0.0037949925754219294, -0.002653233241289854, 0.015462249517440796, 0.01994403265416622, 0.012855267152190208, 0.024386826902627945, -0.052614737302064896, -0.025203993543982506, -0.014118846505880356, 0.0215863436460495, 0.01612773910164833, -0.01852472871541977, 0.07437270134687424, 0.052291467785835266, -0.031899310648441315, -0.05420300364494324, 0.012539004907011986, -0.06326911598443985, -0.00833738874644041, -0.009913481771945953, 0.00044466927647590637, -0.009193616919219494, -0.01180623471736908, -0.05274955928325653, 0.0060681309551000595, -0.02938215620815754, 0.043765779584646225, 0.0049036601558327675, -0.026957828551530838, -0.015965359285473824, -0.02359190583229065, -0.05929804593324661, 0.03146639093756676, -0.0075577180832624435, 0.009354200214147568, -0.015428833663463593, 0.029599126428365707, -0.02609027549624443, 0.030123962089419365, 0.027415379881858826, 0.015283620916306973, 0.002967522479593754, -0.020728612318634987, 0.05278073251247406, 0.018232829868793488, -0.0006713576731272042, 0.040887974202632904, -0.04398147761821747, 0.05760134011507034, 0.007304901722818613, -0.03745304420590401, -0.023465145379304886, 0.0407128669321537, -0.014654740691184998, -0.037562381476163864, 0.004318794701248407, -0.048846837133169174, 0.006634960416704416, -0.029348591342568398, -0.005487900692969561, 0.0035964935086667538, 0.014170131646096706, -0.01040675025433302, 0.013156852684915066, -0.007226462010294199, 0.038826145231723785, 0.023916706442832947, 0.01271697599440813, -0.06620010733604431, -0.043497707694768906, -0.020588982850313187, 0.01944977417588234, 0.008792408742010593, 0.023935647681355476, 0.00985766015946865, 0.017502296715974808, -0.004454592242836952, -0.012207833118736744, 0.005012036766856909, 0.06929709017276764, -0.06331805884838104, 0.017023641616106033, -0.02649829536676407, -0.017554499208927155, 0.034472428262233734, -0.015115568414330482, -0.01355765014886856, 0.061482083052396774, -0.0497157983481884, -0.01565067656338215, 0.04216310381889343, -0.01345998328179121, 0.00889433640986681, -0.04521441087126732, -0.006750883534550667, -0.015483273193240166, 0.011958560906350613, 0.014685561880469322, 0.018382864072918892, 0.06267153471708298, -0.019993511959910393, 0.025039397180080414, -0.0379808135330677, 0.021556586027145386, 0.042809534817934036, -0.021534454077482224, 0.049417346715927124, -0.016596591100096703, 0.038173191249370575, -0.01625433936715126, -0.014940951950848103, 0.050665680319070816, -0.03312017023563385, -0.02771294303238392, 0.026372674852609634, -0.05144481360912323, -0.04488986358046532, 0.012305716052651405, -0.0008984055602923036, 0.015569404698908329, -0.015846723690629005, 0.03595362976193428, 0.010620291344821453, -0.0402841754257679, 0.05027253180742264, 0.04004929959774017, -0.00690423883497715, 0.1059604287147522, 0.0017407137202098966, 0.035824332386255264, 0.006704785395413637, -0.007529979571700096, -0.007965963333845139, 0.011670095846056938, -0.045469045639038086, 0.03295590355992317, -0.01594042032957077, 0.005657226778566837, -0.006159481592476368, -0.014877036213874817, -0.005296037066727877, 0.007593613583594561, 0.006476633716374636, 0.007319875527173281, 0.0010108707938343287, 0.011425331234931946, -0.022433001548051834, 0.031078215688467026, -0.005892323795706034, 0.04133119434118271, -0.018710417672991753, -0.013908854685723782, -0.04536384344100952, -0.030742084607481956, 0.04618584364652634, -0.020864661782979965, -0.02930963970720768, 0.026031002402305603, 0.036231935024261475, 0.0762709230184555, 0.06960978358983994, 0.010486209765076637, 0.020773231983184814, 0.03027946874499321, -0.03863990679383278, -0.02447618544101715, -0.018720652908086777, 0.07216950505971909, 0.016248200088739395, -0.013121604919433594, 0.026795674115419388, -0.05107412114739418, -0.030883897095918655, -0.03582906350493431, -0.008269411511719227, 0.021840820088982582, -0.027682799845933914, 0.025060465559363365, -0.0017626318149268627, -0.007209089584648609, -0.009821551851928234, 0.028392454609274864, 0.0004595962818711996, -0.05805811658501625, -0.0225363876670599, 0.04268414527177811, -0.056653231382369995, 0.04126860201358795, 0.006728575099259615, -0.013160709291696548, 0.015944311395287514, 0.035798538476228714, -0.029563622549176216, -0.0023510269820690155, 0.056661106646060944, 0.0029642945155501366, 0.008547905832529068, -0.03986753150820732, 0.01467944122850895, -0.010101499035954475, -0.04811408743262291, 0.0461973175406456, 0.018935417756438255, -0.018660368397831917, -0.0033459276892244816, -0.00008506407175445929, 0.009683659300208092, 0.02641051821410656, 0.017911911010742188, -0.037730809301137924, 0.012970460578799248, 0.049592018127441406, -0.02605852484703064, 0.0011864007683470845, -0.014559950679540634, 0.04169544577598572, 0.017390847206115723, 0.052033793181180954, 0.016325965523719788, 0.0003748317249119282, 0.029545120894908905, 0.013396816328167915, -0.03355524688959122, 0.030450085178017616, 0.006256999913603067, 0.012288698926568031, -0.011070349253714085, 0.008560800924897194, -0.00441335653886199, 0.04778462275862694, -0.013191480189561844, 0.02114175073802471, -0.020959097892045975, 0.04996156692504883, -0.02119596302509308, 0.047114621847867966, 0.030656443908810616, 0.047040682286024094, -0.04436560347676277, 0.0099158501252532, 0.019119037315249443, 0.01977761648595333, -0.040253058075904846, -0.016371648758649826, -0.02548738196492195, 0.032718151807785034, -0.013598223216831684, 0.012380080297589302, 0.04694839194417, -0.0035578329116106033, -0.023522714152932167, 0.03332250937819481, -0.008960680104792118, -0.02854505553841591, -0.05112346261739731, -0.05187414959073067, -0.050598982721567154, -0.06249450519680977, -0.053895317018032074, -0.01069899182766676, 0.03820742294192314, -0.01762939803302288, 0.03385073319077492, 0.0030673404689878225, 0.0042756651528179646, -0.042103976011276245, 0.01893257349729538, 0.047133669257164, -0.019565187394618988, 0.056998759508132935, -0.014824657700955868, 0.05043477192521095, 0.014412308111786842, 0.025546103715896606, -0.02144547365605831, 0.009056422859430313, -0.04300002381205559, -0.029148999601602554, 0.031429532915353775, -0.025536809116601944, -0.010679119266569614, 0.012690740637481213, -0.03571392595767975, -0.013461632654070854, -0.01940765418112278, 0.007924878038465977, -0.008288825862109661, -0.005296832881867886, -0.03195522725582123, 0.045796703547239304, 0.04744317755103111, -0.009085999801754951, 0.060236312448978424, 0.020145293325185776, -0.03165419399738312, 0.017201712355017662, 0.027714813128113747, 0.022664854303002357, -0.060964297503232956, 0.0524631068110466, 0.04820120334625244, 0.01865444891154766, -0.018329424783587456, -0.02557399868965149, -0.016408683732151985, 0.009948880411684513, 0.02554217539727688, -0.006797331385314465, -0.013357369229197502, 0.01663651317358017, 0.048486944288015366, -0.08222738653421402, 0.05491643399000168, -0.04421696439385414, -0.05294580012559891, -0.03518227860331535, -0.044154103845357895, 0.012913036160171032, -0.006363589782267809, 0.003898011753335595, -0.010947668924927711, -0.010988752357661724, -0.0009067364153452218, -0.011756622232496738, 0.054420921951532364, -0.023776400834321976, 0.007132602855563164, 0.06610944867134094, 0.03022976964712143, 0.03884182125329971, 0.04538989067077637, -0.012661423534154892, 0.018701255321502686, 0.013894451782107353, -0.011330227367579937, 0.005150552373379469, 0.059888213872909546, -0.01813894882798195, -0.005762377288192511, 0.03523523360490799, -0.011510745622217655, 0.020900316536426544, -0.0180968064814806, 0.027662547305226326, 0.04665507376194, -0.0027153133414685726, 0.028993695974349976, -0.009186129085719585, -0.02805042825639248, -0.042839013040065765, 0.02390955202281475, 0.007952271960675716, 0.07185208052396774, -0.05465288087725639, 0.028501229360699654, 0.01748649589717388, -0.016299113631248474, 0.046167269349098206, -0.020906604826450348, -0.007061421405524015, 0.020285876467823982, -0.023343460634350777, 0.003900187788531184, -0.020052578300237656, 0.002435529138892889, 0.0034169668797403574, 0.02287224307656288, 0.03612494841217995, 0.0033572460524737835, 0.04509352892637253, -0.044144872575998306, -0.014071010984480381, -0.012299476191401482, -0.029988698661327362, 0.014332229271531105, -0.019824106246232986, 0.030398067086935043, 0.0068396893329918385, -0.03693097084760666, -0.03855382651090622, 0.03486664593219757, 0.033139217644929886, 0.013792276382446289, 0.0024381845723837614, 0.052414730191230774, 0.0040597771294415, 0.016744624823331833, 0.02215929515659809, -0.00013516969920601696, -0.028250720351934433, -0.020159726962447166, 0.03254968300461769, -0.001234847353771329, -0.0520331896841526, -0.03800131008028984, -0.011131258681416512, -0.036485958844423294, 0.019541995599865913, -0.003342124866321683, -0.013926004990935326, -0.01573382318019867, 0.03833435848355293, 0.028829190880060196, 0.021774236112833023, -0.011864842846989632, -0.023678386583924294, -0.03048325702548027, 0.026244090870022774, 0.028232041746377945, -0.0958375334739685, 0.023081954568624496, -0.030340885743498802, 0.03600025549530983, 0.060613032430410385, -0.029997771605849266, -0.02324061281979084, -0.019612429663538933, -0.04493020474910736, -0.04223401099443436, 0.007551702670753002, 0.03880925476551056, -0.013108774088323116, -0.015788929536938667, -0.02656884863972664, 0.04114969074726105, 0.027634719386696815, -0.018727922812104225, -0.003347906284034252, -0.0004718316486105323, 0.00957832857966423, -0.012462981045246124, 0.046026404947042465, 0.02969926781952381, -0.021450717002153397, 0.01832125335931778, -0.07022730261087418, 0.01669977232813835, 0.0040261768735945225, -0.04167540743947029, 0.0003034010878764093, 0.02799837850034237, -0.0044870562851428986, 0.025208940729498863, -0.0017387981060892344, 0.030286520719528198, -0.026885665953159332, 0.017962919548153877, -0.029576905071735382, -0.03689936175942421, 0.0469319187104702, 0.03520721197128296, -0.010219624266028404, 0.03299053758382797, 0.014579270035028458, -0.028991566970944405, 0.019067829474806786, 0.03924553468823433, -0.04031744971871376, 0.037129078060388565, -0.017710519954562187, 0.015115573070943356, -0.03606100752949715, -0.03692587837576866, 0.030971014872193336, -0.027611808851361275, 0.025686757639050484, 0.011562289670109749, -0.02285933867096901, -0.0251359473913908, -0.0725686103105545, -0.019000688567757607, 0.01405305229127407, -0.04815560206770897, 0.04677079990506172, 0.02014538086950779, -0.014426893554627895, 0.008986434899270535, -0.024279093369841576, -0.01993660256266594, 0.009666779078543186, -0.026942795142531395, -0.004777588881552219, 0.010537817142903805, 0.01356885489076376, 0.023977139964699745, -0.05796726047992706, -0.03788057342171669, 0.01886211521923542, 0.003002432407811284, -0.011248746886849403, -0.05988175794482231, -0.0008011419558897614, -0.031146788969635963, -0.017623890191316605, -0.03488926589488983, 0.029077446088194847, 0.0012349407188594341, 0.01340404525399208, 0.00755435973405838, 0.0012184964725747705, -0.004278347361832857, 0.023033270612359047, -0.02217976562678814, 0.04628489539027214, 0.0198654942214489, -0.028490418568253517, -0.028391828760504723, 0.0294443741440773, -0.010833753272891045, 0.053747907280921936, -0.00011447974247857928, -0.04057261720299721, -0.04591972008347511, -0.037999626249074936, 0.010532084852457047, -0.03862243518233299, -0.0013808771036565304, -0.05354967340826988, -0.06461828947067261, -0.019851401448249817, 0.04070555791258812, 0.02510792948305607, -0.00131536356639117, 0.0011375495232641697, -0.044923122972249985, -0.002017516875639558, -0.02425772324204445, -0.023383092135190964, -0.049169231206178665, -0.02072715200483799, -0.008806345984339714, 0.054508257657289505, 0.02807869203388691, 0.025312498211860657, -0.004135693423449993, -0.000325282831909135, 0.015466699376702309, -0.0024094977416098118, -0.039948634803295135, -0.04862086474895477, 0.017321428284049034, -0.007183761335909367, -0.00026419333880767226, -0.014698280952870846, -0.05689578503370285, 0.04125285521149635, -0.05188998579978943, -0.0006959625170566142, -0.022576456889510155, -0.022503308951854706, -0.030079800635576248, -0.0069554694928228855, 0.08136016875505447, 0.004781700670719147, 0.030348725616931915, -0.0008740550256334245, 0.055644869804382324, 0.040446434170007706, 0.023782409727573395, -0.024370014667510986, -0.045618895441293716, -0.04310334473848343, -0.05164080113172531, 0.021073680371046066, -0.02626011334359646, -0.022095797583460808, -0.008918164297938347, -0.01668219454586506, 0.02285952679812908, -0.007783154025673866, 0.07264738529920578, 0.03891946002840996, -0.009797229431569576, 0.00042319446220062673, -0.014277967624366283, 0.03435994312167168, 0.03791208937764168, -0.014551842585206032, -0.011836718767881393, -0.023602057248353958, -0.03950091823935509, -0.011695675551891327, -0.07121558487415314, -0.03202783316373825, -0.049136269837617874, 0.00648511853069067, 0.04733538255095482, -0.027948638424277306, 0.02340538054704666, -0.02080686017870903, -0.027879580855369568, -0.040181029587984085, 0.04411635175347328, 0.00038576172664761543, 0.05007195845246315, 0.056446269154548645, 0.004512264858931303, -0.027461888268589973, 0.036247506737709045, 0.005435728933662176, 0.0041665551252663136, -0.06306621432304382, 0.07571390271186829, -0.016901928931474686, -0.03811636194586754, 0.03754919394850731, 0.018293332308530807, -0.03346043452620506, -0.04600199684500694, -0.008636824786663055, -0.00279699033126235, 0.005833450239151716, -0.020031869411468506, 0.04091448709368706, -0.002995427930727601, -0.029598508030176163, 0.0061362688429653645, 0.026488274335861206, -0.022223254665732384, 0.04255908355116844, -0.014978872612118721, 0.03369000926613808, -0.06880705058574677, -0.0029951310716569424, 0.037268687039613724, -0.003522909013554454, -0.01064337883144617, 0.0034771417267620564, -0.04943384230136871, 0.014487417414784431, 0.014199224300682545, 0.04833851754665375, -0.022595640271902084, 0.019634755328297615, 0.017124883830547333, 0.00968928448855877, 0.0519191138446331, 0.00009493833204032853, -0.005972734186798334, 0.015840642154216766, -0.008944709785282612, -0.034664399921894073, -0.030664736405014992, 0.026895731687545776, -0.0004664881562348455, 0.03182069584727287, -0.05005837231874466, 0.012613094411790371, 0.03718431666493416, -0.0005991609650664032, -0.018318457528948784, -0.05949513986706734, -0.029706761240959167, -0.021329322829842567, -0.07670152932405472, -0.040227048099040985, -0.007760543841868639, -0.02771824412047863, 0.04743439331650734, 0.019996996968984604, -0.052945155650377274, 0.028928326442837715, 0.028685564175248146, -0.024029485881328583, -0.023829126730561256, -0.023764435201883316, 0.03374442085623741, -0.019756803289055824, -0.0625557005405426, -0.04742490500211716, -0.022663554176688194, 0.0026286772917956114, 0.023423535749316216, -0.023154189810156822, 0.02618476189672947, 0.010108569636940956, 0.012305558659136295, 0.010518153198063374, -0.015595434233546257, -0.002676123520359397, -0.04719408228993416, -0.027996469289064407, 0.027412479743361473, -0.02597242407500744, 0.022397005930542946, 0.04110594466328621, -0.023506175726652145, 0.05411817878484726, 0.013896452262997627, -0.007208218798041344, -0.019899016246199608, 0.0169012863188982, 0.007439520675688982, 0.024977944791316986, -0.00042969686910510063, -0.03150276094675064, 0.0025112773291766644, -0.07829062640666962, 0.023143839091062546, -0.014715692028403282, 0.011326172389090061, 0.028773806989192963, -0.01146318856626749, -0.015452121384441853, 0.05899989604949951, 0.004664867650717497, 0.021447280421853065, 0.031209001317620277, 0.005421510897576809, 0.01604526862502098, 0.027019398286938667, 0.02133108116686344, 0.022363265976309776, 0.018740365281701088, -0.027528123930096626, 0.006151748355478048, 0.050476279109716415, -0.018767569214105606, 0.014192786999046803, -0.003920820541679859, 0.016197752207517624, -0.04222557321190834, -0.025386426597833633, 0.0015611723065376282, 0.06273069232702255, 0.0036151958629488945, 0.010783192701637745, 0.031673189252614975, -0.0446077361702919, -0.023227687925100327, 0.005833454895764589, -0.041023802012205124, -0.016455160453915596, 0.05434085428714752, -0.006975994911044836, -0.03640403226017952, -0.02019469439983368, -0.03017471916973591, -0.008393335156142712, -0.03042597509920597, -0.02328984998166561, -0.024893293157219887, 0.03379453718662262, -0.01529756560921669, 0.029611647129058838, 0.006724509876221418, 0.023536115884780884, 0.02128189243376255, 0.06590430438518524, -0.03915923833847046, -0.055323682725429535, 0.011400513350963593, 0.02528030425310135, 0.001795064308680594, -0.01580648310482502, -0.01342065166682005, 0.018222825601696968, 0.01097181811928749, -0.002999706659466028, -0.005506748799234629, -0.0002870200842153281, 0.0040950109250843525, -0.002179104834794998, 0.00615486316382885, -0.0005795032484456897, -0.04474225267767906, 0.03135063499212265, -0.017568469047546387, -0.0421626977622509, -0.057249169796705246, 0.024488631635904312, 0.052123747766017914, -0.0315614752471447, 0.05571440979838371, 0.016017263755202293, 0.039077017456293106, -0.0027126308996230364, 0.008343015797436237, -0.016977254301309586, 0.08091319352388382, 0.026924269273877144, 0.027930080890655518, -0.016067415475845337, 0.016262583434581757, 0.060828935354948044, -0.006441473960876465, -0.019235100597143173, 0.03491152450442314, 0.0008359107305295765, -0.006663758773356676, 0.0028779797721654177, -0.049452219158411026, 0.03920727223157883, -0.010397669859230518, -0.03332199901342392, -0.01271969173103571, -0.0009388052858412266, -0.010698753409087658, 0.0008893630583770573, -0.013544961810112, 0.03858397156000137, -0.04996128007769585, 0.00021023090812377632, -0.00631446810439229, -0.034765422344207764, 0.010204141959547997, 0.04236939549446106, 0.001681881956756115, -0.006152187939733267, 0.04902798682451248, 0.030440468341112137, 0.010291154496371746, 0.035348765552043915, 0.028311068192124367, -0.0055784666910767555, -0.07414979487657547, 0.016413645818829536, 0.001451894175261259, -0.0030685230158269405, -0.016480738297104836, 0.0071590254083275795, -0.046450451016426086, 0.020157910883426666, -0.040074869990348816, -0.013901395723223686, 0.01856277324259281, -0.06574784964323044, -0.007064662408083677, -0.023095466196537018, 0.03323390707373619, -0.04916991665959358, -0.02753549814224243, 0.019150666892528534, -0.030896393582224846, -0.024607690051198006, -0.011756902560591698, 0.006682154722511768, 0.04133175313472748, -0.0064293378964066505, 0.02824360877275467, -0.014808941632509232, 0.04978078231215477, 0.03493204340338707, -0.021086163818836212, 0.015244470909237862, 0.05086483806371689, -0.015964441001415253, -0.010092667303979397, -0.03860490396618843, -0.003360011614859104, -0.005071661900728941, 0.015513687394559383, -0.0443275161087513, -0.025713058188557625, 0.03277568519115448, 0.005711240228265524, -0.08180766552686691, -0.017031919211149216, 0.002691388363018632, -0.02616218850016594, -0.0028941226191818714, 0.027867859229445457, 0.05517762526869774, -0.013628575019538403, -0.01472804881632328, -0.005063315853476524, -0.0323074646294117, -0.010887833312153816, 0.0032193746883422136, 0.006376422941684723, -0.011347195133566856, -0.015294086188077927, -0.03168562799692154, -0.04605335742235184, -0.015135594643652439, -0.013249105773866177, -0.047429557889699936, -0.04966603219509125, 0.059226006269454956, 0.025171009823679924, 0.032039955258369446, -0.022539054974913597, -0.02177373692393303, 0.020576603710651398, -0.010621124878525734, 0.03526559844613075, -0.006926795933395624, 0.021697022020816803, 0.030881542712450027, 0.02100585401058197, 0.02608409710228443, -0.04340784624218941, 0.04040795564651489, -0.04005718231201172, -0.03249162808060646, -0.005330294836312532, 0.02158479206264019, -0.01429146621376276, -0.07147517055273056, 0.007710832636803389, 0.05232015624642372, 0.009384630247950554, -0.014019723050296307, -0.06969004124403, 0.0014946365263313055, -0.036253783851861954, 0.009454987943172455, -0.03252639248967171, 0.020481303334236145, 0.005077339243143797, -0.0022499875631183386, 0.017828291282057762, -0.06784578412771225, 0.14747248589992523, 0.05999108776450157, 0.04717402160167694, 0.018325094133615494, 0.03503046929836273, 0.0035668464843183756, 0.022649424150586128, -0.033110931515693665, 0.006688091903924942, -0.018243059515953064, 0.020711852237582207, 0.0047804019413888454, 0.03747374564409256, 0.018708283081650734, 0.010105251334607601, 0.03117815963923931, -0.04719157516956329, 0.010807241313159466, 0.03290912136435509, -0.04922965541481972, -0.05752161890268326, 0.02996995858848095, 0.009136701002717018, 0.025639113038778305, -0.006605279166251421, 0.013939525000751019, -0.0030274419113993645, -0.044980816543102264, -0.019809499382972717, -0.013209948316216469, 0.0363045409321785, -0.027629029005765915, 0.03954266011714935, -0.03295711800456047, -0.055422570556402206, 0.05219290032982826, 0.005216824822127819, -0.027013320475816727, 0.021604377776384354, -0.008914635516703129, -0.011171217076480389, 0.009635623544454575, -0.0005486634327098727, -0.0430695116519928, -0.005322914570569992, 0.014834466390311718, -0.05769478529691696, -0.0029586274176836014, 0.02937932126224041, -0.057646844536066055, 0.036050327122211456, -0.03492119535803795, 0.026387449353933334, -0.022083165124058723, -0.042194969952106476, 0.01812305673956871, -0.02592146396636963, -0.005971514154225588, 0.0071394359692931175, 0.022885626181960106, 0.06600619107484818, 0.004925526678562164, -0.005392744671553373, 0.011914883740246296, -0.035465024411678314, 0.03592447564005852, 0.004439506214112043, 0.014473975636065006, -0.011702782474458218, 0.009218006394803524, -0.03742075338959694, 0.002244947012513876, -0.01144755631685257, -0.016462236642837524, 0.034035347402095795, 0.0418296754360199, -0.03858281672000885, 0.040261514484882355, 0.0018164681969210505, -0.01634245738387108, 0.010625033639371395, -0.04940260201692581, -0.009704831056296825, -0.02448725700378418, 0.01821114309132099, 0.0360051728785038, -0.0069343638606369495, -0.03395842760801315, -0.013224581256508827, 0.06083868071436882, 0.07135878503322601, 0.028905127197504044, -0.0011966308811679482, -0.0054890126921236515, -0.005366795230656862 ]
Home News Social Media AMD unviles its own dual core chip AMD unviles its own dual core chip T.O. Whenham AMD might be late to the party, but at least they have shown up. Four months after rival Intel unveiled the Core Duo processor for notebooks, chipmaker Advanced Micro Devices has announced the Turion 64 X2, its own version of a mobile dual core processor. The new model of chips will be available in four different varieties – the 1.6GHz TL-50, 1.6GHz TL-52, 1.8GHz TL-56 and 2.0GHz TL-60. Prices for the processors will range from $184 to $354 in 1,000 unit lots. The first notebooks featuring the Turion are expected to ship later this month, with several major makers expected to ship by July. The first generation of Turion chips helped AMD increase their market share to an all-time high of 12% in the last quarter of 2005. The company obviously hopes that the Turion 64 X2 will continue that trend. AMD has also announced an upgrade to their single-core Sempron chip, making it mobile-friendly and upgrading it to 64-bit capabilities. Previous articleSprint says go ahead and use Treo 700p as a modem Next articleIsuzu posts record profit Scanadu Scout Is a Star Trek Medical Tricorder for the Real World Clash of Clans Dev Supercell Injected with $1.5 Billion from Softbank, GungHo Online Prototype Steam Machine Specs
[ -0.02298060432076454, -0.015046731568872929, -0.021729666739702225, -0.0011297210585325956, -0.011837984435260296, 0.006149592809379101, 0.013280067592859268, 0.011616550385951996, 0.00805234257131815, 0.051221273839473724, 0.03607119619846344, -0.0051911440677940845, 0.017799098044633865, -0.03473783656954765, -0.012819330208003521, 0.024243859574198723, -0.02021043747663498, -0.06323842704296112, -0.03673036769032478, -0.00858890637755394, -0.000013587034118245356, -0.012486327439546585, -0.06361410766839981, -0.027185751125216484, -0.003584283171221614, 0.02439005672931671, -0.00295784673653543, 0.0027247292455285788, 0.0665753111243248, 0.05531973019242287, -0.03105839714407921, -0.04086586833000183, -0.007051997352391481, -0.02419867366552353, -0.028553472831845284, -0.04029224067926407, -0.004521034192293882, -0.0014553742948919535, -0.04661977291107178, -0.020314769819378853, 0.029700452461838722, -0.010627266019582748, 0.041343819350004196, -0.030058180913329124, -0.043011073023080826, -0.03175308555364609, 0.0040501621551811695, -0.033668383955955505, 0.02513103559613228, -0.04438279941678047, 0.006398612633347511, 0.027589226141572, 0.02067751996219158, -0.02723899483680725, -0.008427442982792854, 0.0077046798542141914, 0.016676025465130806, -0.0038246777839958668, -0.03055143542587757, 0.04008397459983826, 0.04046843573451042, -0.0021664025261998177, 0.018901420757174492, -0.07117584347724915, 0.02698235958814621, 0.007981640286743641, -0.0032285964116454124, -0.007296764757484198, 0.013088969513773918, -0.002041695173829794, -0.022333800792694092, 0.01606493629515171, -0.0360267348587513, -0.042739853262901306, 0.019843334332108498, -0.010037733241915703, -0.01573575660586357, 0.017465993762016296, -0.01589391566812992, -0.021395554766058922, 0.05793998762965202, 0.060139089822769165, 0.009388941340148449, -0.0018351826583966613, -0.06107204034924507, -0.010289465077221394, -0.008303923532366753, -0.012147501111030579, 0.008805514313280582, 0.014305817894637585, -0.004643561784178019, 0.031200330704450607, 0.015749258920550346, -0.01571246236562729, 0.027584686875343323, 0.0370437353849411, -0.016095582395792007, 0.037406791001558304, 0.0036546955816447735, -0.024054227396845818, 0.039068493992090225, 0.001983694965019822, 0.008993114344775677, 0.05824583023786545, -0.043503835797309875, -0.027719218283891678, 0.004704458639025688, -0.006285382434725761, 0.018219418823719025, -0.03533978387713432, 0.03047211281955242, -0.014771612361073494, 0.0030140879098325968, 0.003594552632421255, -0.01509989332407713, 0.027113327756524086, -0.020142093300819397, -0.0003397944674361497, -0.03437440097332001, -0.0014864467084407806, 0.030206836760044098, 0.002818556735292077, 0.014074813574552536, -0.005451159551739693, 0.0011754456209018826, -0.020355163142085075, -0.03152244910597801, 0.04316646605730057, -0.050098929554224014, -0.018951082602143288, 0.009302248246967793, -0.040544409304857254, -0.03548312559723854, 0.03838448226451874, 0.007160312496125698, 0.01620151288807392, -0.016036050394177437, 0.019270313903689384, 0.04426898807287216, -0.054215386509895325, 0.039748672395944595, 0.00030101346783339977, 0.011453836224973202, 0.08786245435476303, 0.008982180617749691, 0.05603405833244324, -0.010585328564047813, -0.02320731431245804, -0.017404213547706604, 0.03776077553629875, -0.013893535360693932, -0.002365803113207221, -0.015338161960244179, 0.024137865751981735, -0.017148686572909355, 0.025617169216275215, 0.00455796904861927, 0.006632994394749403, 0.017783181741833687, 0.04240572080016136, -0.019345901906490326, 0.00005125662937643938, 0.018990665674209595, 0.057471781969070435, -0.017940351739525795, 0.06684315204620361, -0.041912611573934555, -0.008381941355764866, 0.0057219541631639, -0.02597368136048317, 0.017435144633054733, -0.03135387971997261, -0.04032871127128601, 0.03877928480505943, 0.019928665831685066, 0.053964246064424515, 0.03832654654979706, 0.01237414125353098, 0.02368902787566185, 0.05007956922054291, -0.06495606154203415, -0.014966965653002262, -0.01725233718752861, 0.048911456018686295, 0.03126920387148857, 0.018102571368217468, 0.032532740384340286, -0.0729866474866867, -0.035865556448698044, -0.0024171737022697926, -0.02381737157702446, 0.025274546816945076, -0.015858426690101624, 0.0556521974503994, 0.006079140584915876, 0.006288446485996246, -0.019749779254198074, -0.0381803996860981, -0.015337376855313778, -0.06494415551424026, -0.004278214648365974, 0.04078010469675064, -0.0236141886562109, 0.03286445885896683, -0.0018054799875244498, -0.023780032992362976, 0.04490594565868378, 0.08184266090393066, -0.06999465823173523, 0.0031861986499279737, 0.057324785739183426, 0.02599550224840641, -0.01979452557861805, -0.02489551156759262, 0.009786135517060757, 0.008592801168560982, 0.008337573148310184, 0.01777666248381138, -0.026736706495285034, 0.011113726533949375, 0.014064967632293701, -0.025156814604997635, 0.057962629944086075, 0.04539143294095993, -0.03519298881292343, -0.007781217806041241, 0.011663120239973068, 0.0393073670566082, 0.004584130365401506, 0.006598318926990032, -0.015101288445293903, 0.04032526910305023, -0.014645685441792011, 0.0608547143638134, 0.049025338143110275, 0.015402698889374733, 0.020720407366752625, 0.02084215171635151, -0.01567857153713703, 0.028865812346339226, -0.006545157637447119, 0.0035143515560775995, 0.04404324293136597, -0.018208561465144157, 0.04266981780529022, 0.029203277081251144, -0.0013692914508283138, -0.02644493617117405, -0.012493779882788658, 0.029263384640216827, 0.024564974009990692, 0.044465988874435425, 0.01758558116853237, 0.009698767215013504, -0.02354452572762966, -0.030893683433532715, 0.04582624137401581, 0.06052191182971001, 0.002810122910887003, -0.015091595239937305, 0.0119852339848876, 0.004397268407046795, -0.018034005537629128, 0.0009376913076266646, 0.030892549082636833, 0.030385226011276245, 0.02471749112010002, 0.00982093345373869, -0.016704397276043892, -0.028949445113539696, -0.028611505404114723, -0.04166315123438835, -0.039362844079732895, -0.05340610072016716, -0.054479025304317474, 0.0007063629454933107, 0.05962779000401497, -0.04804132878780365, 0.051708467304706573, -0.021769622340798378, 0.00561053492128849, -0.005812700372189283, -0.03665595129132271, 0.05237504094839096, 0.055571381002664566, 0.021596373990178108, -0.01986759714782238, 0.06171136349439621, -0.004368024878203869, 0.029813474044203758, -0.021508455276489258, -0.02794199436903, 0.019322983920574188, -0.01178042497485876, 0.015362385660409927, 0.015106386505067348, -0.012691969983279705, 0.007087226491421461, -0.04378710687160492, -0.04312152415513992, -0.014883256517350674, 0.005605131853371859, -0.021645376458764076, 0.0027392457704991102, -0.054716162383556366, 0.030849754810333252, 0.007154558319598436, -0.052990201860666275, 0.07279244065284729, 0.04321504756808281, -0.05155240371823311, 0.04557749256491661, -0.013708030804991722, 0.02173694781959057, -0.057204339653253555, 0.05175306648015976, 0.018687397241592407, 0.0012536117574200034, -0.03251966834068298, -0.0030698103364557028, -0.008664472959935665, 0.004504870623350143, 0.022707050666213036, -0.03861669823527336, -0.04003303870558739, 0.017473794519901276, 0.03315575048327446, -0.041292790323495865, 0.030878515914082527, -0.0163180660456419, 0.02962067723274231, 0.0029577540699392557, -0.04950882866978645, 0.018333325162529945, 0.0119444215670228, 0.010232356376945972, 0.015418988652527332, 0.0007468650001101196, -0.010730383917689323, 0.0022472268901765347, 0.052278563380241394, -0.008969748392701149, 0.020781230181455612, 0.038615599274635315, 0.024632276967167854, 0.004613474477082491, 0.025277037173509598, -0.013249875977635384, -0.009415913373231888, -0.03624487295746803, -0.019065719097852707, 0.017971890047192574, 0.015779836103320122, 0.03352440148591995, 0.03570627048611641, 0.05498688668012619, -0.04738052934408188, -0.03373139724135399, 0.03382615000009537, -0.024445410817861557, 0.018638571724295616, 0.024720381945371628, -0.007712236139923334, 0.017800580710172653, -0.009201696142554283, -0.039340753108263016, 0.04993966594338417, 0.05237641930580139, 0.04994529113173485, -0.023863008245825768, 0.04003215208649635, -0.028207894414663315, -0.07149183750152588, 0.0352364107966423, -0.04341595619916916, 0.0010371205862611532, 0.03057560883462429, -0.030136767774820328, 0.05402938276529312, -0.04149434715509415, 0.0012518599396571517, -0.0034742553252726793, 0.01542571373283863, 0.03502504527568817, 0.03272363916039467, 0.03721311315894127, -0.023276569321751595, -0.04267198219895363, -0.013172083534300327, -0.01525911781936884, -0.020940667018294334, -0.013875843025743961, -0.010365181602537632, -0.008142867125570774, -0.02587122470140457, -0.03727792575955391, 0.04799104481935501, -0.0036079867277294397, 0.0331389494240284, -0.01722061075270176, 0.06007464602589607, -0.008409742265939713, -0.003732783952727914, 0.01630668342113495, -0.006805593613535166, -0.006447506137192249, -0.037085313349962234, 0.057125404477119446, -0.007320014759898186, -0.056360598653554916, -0.0615287646651268, -0.03224077448248863, -0.06549537181854248, 0.03668110817670822, -0.03958113119006157, -0.029641134664416313, -0.026476044207811356, 0.026866266503930092, -0.026197826489806175, 0.04358934983611107, -0.029529960826039314, -0.026134110987186432, -0.03360521420836449, 0.0165835190564394, 0.039709482342004776, -0.04621436819434166, -0.00708638783544302, -0.033376678824424744, 0.027339328080415726, 0.03375943750143051, -0.02278025634586811, -0.03133989870548248, -0.031258825212717056, -0.024989215657114983, -0.012265965342521667, -0.004481340758502483, 0.03271767869591713, 0.026560403406620026, 0.008616135455667973, -0.03043043613433838, 0.005142420995980501, 0.025922054424881935, 0.0126050328835845, -0.02886980213224888, -0.011023230850696564, 0.0024941922165453434, 0.005360404495149851, 0.024350952357053757, 0.00251862034201622, 0.027238640934228897, 0.027523919939994812, -0.05746990069746971, 0.024073323234915733, -0.02845238521695137, -0.02287163771688938, -0.010388035327196121, 0.011710635386407375, 0.02135356515645981, 0.024122798815369606, -0.007557556498795748, -0.00009630571003071964, -0.03277643397450447, 0.0444200299680233, -0.03634430095553398, -0.04540316388010979, 0.007045543286949396, -0.015937985852360725, -0.008460985496640205, 0.021695755422115326, 0.06470270454883575, -0.03153899312019348, 0.004672301467508078, 0.03984324261546135, -0.058469973504543304, 0.03905339911580086, -0.006895502097904682, 0.028102580457925797, -0.001566852442920208, -0.049118772149086, -0.019945815205574036, -0.030336137861013412, 0.020997613668441772, 0.035944364964962006, -0.005792719312012196, -0.061678048223257065, -0.03313782811164856, 0.0015728777507320046, 0.03243911266326904, -0.0016833038534969091, 0.01934749446809292, -0.010914831422269344, 0.002157839247956872, 0.004941452760249376, 0.003525571199133992, 0.014661614783108234, -0.010248344391584396, -0.04363005980849266, -0.019236261025071144, 0.009757492691278458, 0.03635728731751442, 0.021998539566993713, 0.004601835738867521, -0.044374000281095505, 0.014917435124516487, -0.037572961300611496, -0.019724687561392784, -0.04707256332039833, -0.011976509355008602, -0.020141463726758957, -0.013899124227464199, -0.0354074165225029, 0.0023238868452608585, 0.00566294277086854, 0.030237827450037003, 0.006728518754243851, 0.0037933855783194304, 0.001899995026178658, 0.029798485338687897, -0.0657249167561531, 0.05378606170415878, 0.03222768381237984, -0.06884463876485825, -0.03837724030017853, 0.008966240100562572, 0.009001066908240318, 0.010295928455889225, 0.03008447214961052, -0.0422111414372921, -0.03536265343427658, -0.04050340875983238, -0.013556881807744503, -0.018308408558368683, 0.0009883655002340674, -0.028593823313713074, -0.04589818790555, -0.0006967531517148018, 0.018382832407951355, 0.007423029746860266, -0.034229032695293427, -0.009071948938071728, -0.03744763508439064, 0.0024657335598021746, -0.013667244464159012, -0.04047553241252899, -0.04514586552977562, -0.018817370757460594, 0.009845844469964504, 0.02509330026805401, 0.0033280060160905123, 0.0032943198457360268, -0.020795226097106934, 0.019833041355013847, 0.014063038863241673, 0.033551931381225586, -0.04725273698568344, -0.05739453807473183, -0.006947547663003206, 0.005200634710490704, -0.021409885957837105, 0.014712151139974594, -0.03593501076102257, 0.07405196875333786, -0.04518250375986099, -0.0025714198127388954, -0.002174596069380641, 0.022155744954943657, -0.001729554496705532, -0.02684483490884304, 0.04832691326737404, -0.022990470752120018, 0.014677751809358597, -0.01081601157784462, 0.03446720167994499, 0.060776181519031525, 0.020562537014484406, -0.02146083302795887, -0.012610378675162792, -0.004746698308736086, -0.07093913108110428, 0.028728241100907326, -0.04782632365822792, -0.020228229463100433, -0.03075680322945118, 0.022984948009252548, 0.02102559246122837, -0.03801678866147995, 0.06020568311214447, 0.08155329525470734, -0.00045409047743305564, -0.020452171564102173, -0.011661617085337639, 0.010578763671219349, 0.04539776220917702, -0.038689177483320236, -0.009038640186190605, -0.037837713956832886, -0.038165491074323654, 0.018212638795375824, -0.025764772668480873, -0.0499521866440773, -0.040292419493198395, -0.008576871827244759, 0.04129216447472572, -0.038406845182180405, 0.01671709679067135, -0.024325573816895485, -0.04202449321746826, -0.037418778985738754, 0.04721195995807648, -0.020992865785956383, 0.02393895760178566, 0.042691513895988464, -0.0031973838340491056, -0.006161689292639494, 0.012517519295215607, -0.028886888176202774, -0.0174444280564785, -0.04222883656620979, 0.028435535728931427, -0.03351304307579994, -0.02662535198032856, 0.06297323107719421, 0.030171729624271393, -0.032593633979558945, -0.04064161330461502, -0.0244307704269886, 0.013884802348911762, -0.025791838765144348, -0.0379820242524147, 0.005406542681157589, -0.016938097774982452, -0.02952430211007595, -0.018248824402689934, 0.05827316641807556, -0.018427619710564613, 0.026768401265144348, 0.007098319474607706, 0.037586748600006104, -0.010998164303600788, 0.01866116374731064, 0.008465148508548737, 0.016427725553512573, -0.014001404866576195, -0.028831737115979195, 0.025794176384806633, 0.01367790624499321, -0.011526432819664478, 0.04039911553263664, -0.023018328472971916, 0.042252928018569946, 0.007933865301311016, 0.012700620107352734, 0.04414534568786621, 0.004085012711584568, -0.01695571094751358, 0.008980531245470047, -0.016102731227874756, -0.04517819732427597, -0.03932909294962883, 0.006920922081917524, 0.011485652066767216, 0.034430235624313354, -0.01654176600277424, 0.051124799996614456, 0.012097341939806938, -0.009540319442749023, -0.028829578310251236, -0.04794430360198021, -0.0491347461938858, -0.03797512128949165, -0.04640176147222519, 0.010382584296166897, -0.015370423905551434, 0.00039726641261950135, 0.02692108042538166, 0.004348307382315397, -0.029363073408603668, -0.007410325109958649, 0.0025070938281714916, -0.011918678879737854, 0.003467752132564783, -0.014465339481830597, 0.0013212334597483277, -0.03152750805020332, -0.06818442791700363, -0.050978414714336395, 0.022050024941563606, -0.02479451522231102, 0.006214823108166456, -0.02788662165403366, 0.014530711807310581, -0.01249105017632246, 0.021555624902248383, -0.0122384550049901, 0.034827180206775665, -0.01953030750155449, -0.04220746457576752, -0.014291665516793728, 0.03840594366192818, 0.004507370293140411, 0.039617400616407394, 0.03842037543654442, -0.04466606676578522, 0.039183132350444794, -0.0036460289265960455, -0.02965437062084675, -0.022371351718902588, 0.017286617308855057, 0.007560068275779486, 0.0002046886511379853, -0.04146759212017059, -0.07604726403951645, 0.0015914828982204199, -0.02443690598011017, 0.022133154794573784, -0.013151983730494976, 0.04690186306834221, 0.00046626137918792665, -0.012304112315177917, -0.0055318125523626804, 0.08091969788074493, 0.013440086506307125, 0.052642155438661575, -0.004179934039711952, 0.011196293868124485, 0.008820700459182262, 0.03083164244890213, 0.02949208952486515, 0.00018609562539495528, 0.020948311313986778, -0.021988041698932648, 0.019753336906433105, 0.03261183202266693, -0.005636772606521845, 0.05191337689757347, 0.0028140824288129807, -0.006216633599251509, -0.05438777059316635, -0.013290327973663807, 0.012920202687382698, 0.01884046383202076, 0.03114953264594078, 0.012797954492270947, 0.003448139177635312, 0.00724180880934, -0.05821698158979416, 0.0007818600279279053, -0.030113166198134422, -0.006081358529627323, 0.04127374291419983, -0.04609600827097893, 0.016223207116127014, 0.0032178943511098623, -0.03180419281125069, 0.010615982115268707, 0.000512178463395685, -0.004975433461368084, -0.0004271580546628684, 0.021720733493566513, 0.019546840339899063, 0.047573164105415344, -0.01613437943160534, 0.003006421262398362, -0.0020764763467013836, 0.08163420110940933, -0.07988735288381577, -0.05955071747303009, 0.019623493775725365, 0.036405786871910095, 0.0014505473664030433, 0.0012634160229936242, -0.029843714088201523, 0.007684764917939901, 0.021177634596824646, -0.016663366928696632, -0.035887379199266434, 0.0423547588288784, -0.005463803187012672, 0.051306236535310745, -0.008200783282518387, -0.014755209907889366, -0.022432450205087662, 0.03634358569979668, 0.006952637806534767, -0.003090187441557646, -0.04730084165930748, 0.04363330453634262, 0.043295666575431824, -0.022521205246448517, 0.03257380425930023, 0.017580777406692505, -0.002902624197304249, -0.016101861372590065, 0.05821133032441139, -0.02322741225361824, 0.05357750505208969, 0.028486089780926704, 0.04613470658659935, -0.016279518604278564, 0.0360712893307209, 0.05745423212647438, -0.0066718123853206635, 0.007834134623408318, 0.022480783984065056, 0.012187035754323006, -0.038571760058403015, 0.00005058516762801446, -0.034879960119724274, 0.036356665194034576, 0.012558300979435444, 0.00942037720233202, -0.026237161830067635, -0.0414343923330307, 0.012311381287872791, -0.0035435438621789217, 0.0030494756065309048, 0.032069526612758636, -0.035670023411512375, 0.023266954347491264, -0.019971871748566628, -0.0357653945684433, 0.005086582154035568, 0.03694525361061096, 0.028164496645331383, -0.020651061087846756, 0.046144552528858185, 0.03783445432782173, 0.010093765333294868, 0.025404803454875946, 0.009035775437951088, 0.03440629318356514, -0.04742260277271271, 0.012535376474261284, 0.006711666937917471, -0.01625104807317257, -0.008296175859868526, -0.009021810255944729, -0.039625853300094604, 0.05640820413827896, -0.04329909756779671, -0.02466346137225628, 0.014377394691109657, -0.01751396805047989, -0.019816918298602104, -0.05833428353071213, 0.043475303798913956, -0.04510672390460968, 0.017629047855734825, 0.020211314782500267, -0.010504329577088356, -0.03179328888654709, 0.019710242748260498, -0.013775276951491833, 0.05824080854654312, 0.01626916043460369, 0.0025391201488673687, 0.005418016109615564, 0.06486667692661285, 0.04808728024363518, -0.012302707880735397, 0.009653612039983273, -0.008820702321827412, -0.049554307013750076, -0.03526207059621811, 0.017507972195744514, -0.009828469716012478, -0.01489314902573824, 0.010162507183849812, 0.0010370989330112934, 0.014470300637185574, 0.04490303993225098, -0.01042382512241602, -0.026750793680548668, -0.0013481202768161893, 0.0348118431866169, -0.02576969563961029, 0.004822398070245981, 0.01654396578669548, 0.04625307396054268, -0.010568097233772278, -0.033795516937971115, -0.047071658074855804, -0.05645762011408806, -0.01236907672137022, -0.028710732236504555, 0.07003325968980789, 0.007777164690196514, -0.030547289177775383, -0.03264806419610977, -0.041825950145721436, -0.03563951700925827, 0.009145993739366531, -0.04600612819194794, -0.008655774407088757, 0.04921191558241844, 0.0503658764064312, 0.02088206075131893, 0.01729687675833702, -0.014122232794761658, -0.005600185599178076, 0.02405802346765995, 0.05060698091983795, -0.027688227593898773, 0.03687744960188866, 0.06562098115682602, 0.004628830123692751, 0.010569236241281033, -0.04525746405124664, 0.021680820733308792, -0.017346849665045738, 0.025815732777118683, -0.02604835294187069, -0.00590833043679595, -0.011567513458430767, -0.06194223463535309, 0.027150481939315796, 0.03331758826971054, 0.0312204547226429, -0.03300759568810463, -0.07331172376871109, 0.007132945582270622, -0.057018306106328964, 0.0008563282899558544, -0.05206339806318283, 0.0020562387071549892, -0.01047678105533123, -0.012153192423284054, 0.008699913509190083, -0.046983134001493454, 0.15009449422359467, 0.07662399858236313, 0.018676750361919403, 0.012484848499298096, -0.016665197908878326, 0.0508066862821579, 0.0076628196984529495, -0.008893916383385658, -0.006616642232984304, -0.052223414182662964, 0.04690755158662796, 0.011596830561757088, 0.03464961796998978, 0.013443985022604465, -0.001243016216903925, 0.07391457259654999, -0.05342326685786247, 0.007877309806644917, -0.0011628065258264542, -0.043828319758176804, -0.07189591974020004, 0.025308741256594658, -0.007245016284286976, 0.009119919501245022, -0.021160461008548737, 0.050231412053108215, 0.00211893767118454, -0.03940458968281746, -0.0032285910565406084, -0.013084795325994492, 0.023252293467521667, -0.012078975327312946, 0.027127310633659363, -0.008947296999394894, -0.040741097182035446, 0.06628923863172531, -0.0038561574183404446, -0.025645673274993896, -0.005264714825898409, 0.023296065628528595, -0.04138365760445595, 0.0009362758719362319, 0.027685511857271194, -0.02608918584883213, -0.023279283195734024, 0.04660703241825104, -0.012807573191821575, 0.00884057953953743, 0.022508585825562477, -0.04845534637570381, 0.05385761708021164, -0.027775226160883904, 0.036988548934459686, 0.0007287094485946, -0.018745673820376396, 0.007419455796480179, -0.011697648093104362, -0.013453188352286816, 0.02748221345245838, -0.013200001791119576, 0.03145069628953934, 0.008448401466012001, -0.008133507333695889, -0.02693038433790207, -0.007750678341835737, 0.004907557275146246, 0.007559967692941427, 0.027676383033394814, -0.009597632102668285, 0.003928333055227995, -0.00561130465939641, -0.02361147105693817, -0.01876954361796379, 0.00038107403088361025, 0.032810550183057785, 0.006517902947962284, -0.013482049107551575, 0.004174010828137398, 0.033617857843637466, 0.001868557883426547, -0.03788122534751892, -0.0291758980602026, 0.0013226558221504092, -0.007609296590089798, 0.0017749510006979108, 0.01833748072385788, -0.03881918638944626, -0.03958497941493988, -0.02373606525361538, 0.05908855423331261, 0.04104442521929741, 0.046734247356653214, -0.05085458979010582, -0.03117104060947895, -0.028281236067414284 ]
The volunteers' services will be needed for the time periods the festival's annual cycle of events take place. The festival's event schedule is the following: ANO SPRING / March (concert); ANO PRO / June (concert); ANO FESTIVAL / August (concerts/side-by-side events); and ANO CHRISTMAS / December (concert). Volunteers will become part of the festival's structure, depending on their studies' scope and on their fields of knowledge. They will be gaining invaluable experience in the preparations and implementation surrounding a dynamic, cultural planned festival of the region. Additionally, they will attend a specially designed educational seminar so that they may acquire the skills they need to carry out the duties assigned to them. They will also have a rare opportunity to watch up close the rehearsals and concerts of the artists performing during the Festival; and to participate in the festival's side-by-side events. For a limited number of volunteers who will be joining the festival's planning team but do not live on Syros, we will be covering their traveling and accommodations expenses for the festival's main event in August. All volunteers will receive a memento commemorating the festival and a certificate by its planning committee attesting to their participation in the festival's event they volunteered for and to the task they were assigned to. For more information, please send your e-mails to the "ANO" International Organ Festival at [email protected] or use the contact form. Interested in becoming an "ANO" Festival volunteer? Please, fill out the VOLUNTEER FORM.
[ 0.003552568843588233, 0.006035216618329287, -0.044633157551288605, -0.0038413049187511206, -0.021480098366737366, 0.012370563112199306, -0.014892464503645897, 0.031029585748910904, 0.04670795798301697, 0.01741999387741089, 0.031193554401397705, -0.030171744525432587, 0.001954619539901614, -0.02950575202703476, -0.04538555443286896, 0.008783516474068165, -0.04846755415201187, -0.031642671674489975, -0.01266148779541254, -0.034076493233442307, 0.007023123558610678, 0.0033748080022633076, -0.0469488650560379, -0.031269170343875885, -0.03814386948943138, 0.013770570047199726, 0.005275809671729803, 0.0010953055461868644, 0.0638725683093071, 0.03344391658902168, -0.00023566819436382502, -0.03169623017311096, 0.01995815522968769, -0.06612203270196915, 0.0033310188446193933, -0.023338180035352707, 0.045142509043216705, -0.05862263962626457, -0.021400978788733482, -0.06600047647953033, -0.002778999973088503, 0.006667617242783308, 0.030953340232372284, -0.0373535118997097, -0.0426921471953392, -0.013154085725545883, 0.008209389634430408, -0.02233538031578064, 0.011268217116594315, -0.024097342044115067, 0.019555548205971718, -0.005422904156148434, 0.010901236906647682, -0.002416035160422325, 0.0033653874415904284, 0.010811977088451385, 0.03100265935063362, -0.037502314895391464, -0.030408145859837532, 0.0166049525141716, 0.005759234074503183, 0.009899457916617393, 0.009801439009606838, -0.052948493510484695, 0.03074885904788971, 0.007219280581921339, -0.02587338723242283, 0.002787053817883134, 0.011104093864560127, -0.0400378480553627, -0.003371696686372161, -0.00587686849758029, -0.031078675761818886, -0.02727305330336094, 0.01581977866590023, 0.005464612506330013, -0.009652074426412582, -0.009631527587771416, 0.010164406150579453, 0.008198182098567486, 0.027645902708172798, 0.02653355710208416, 0.0008945828885771334, 0.010923781432211399, -0.0775049477815628, -0.01641981303691864, -0.00785816926509142, 0.0059026251547038555, 0.043735649436712265, -0.011893589980900288, -0.005837332457304001, 0.04451753944158554, -0.007069012150168419, 0.023732487112283707, 0.0350198857486248, 0.03397320955991745, -0.045725028961896896, 0.05024722218513489, 0.03300129622220993, -0.0042998697608709335, 0.03978689759969711, 0.002536893356591463, 0.001649274374358356, 0.0446469746530056, -0.033914633095264435, -0.004326000344008207, -0.00016193994088098407, -0.009772301651537418, -0.012688507325947285, -0.03264204040169716, 0.011309894733130932, -0.019644398242235184, 0.05328596010804176, -0.017952032387256622, 0.01657973788678646, 0.045552097260951996, 0.005620680283755064, 0.01033079531043768, -0.043754301965236664, -0.013849391601979733, 0.013611816801130772, 0.0033208616077899933, 0.043370235711336136, -0.009991789236664772, 0.030205093324184418, -0.03175220265984535, -0.016196658834815025, 0.025186363607645035, -0.03185829892754555, -0.03430861979722977, 0.01456051878631115, -0.036577675491571426, 0.0017499738605692983, 0.025229020044207573, -0.016474705189466476, 0.03664305806159973, 0.01399113517254591, 0.018818674609065056, 0.03242097795009613, -0.06501287966966629, 0.05232606083154678, 0.034488823264837265, 0.008313673548400402, 0.10002486407756805, -0.0053929234854876995, 0.03473871201276779, 0.010042622685432434, 0.004899612627923489, -0.005712403450161219, 0.055968672037124634, -0.002430037362501025, 0.00007976362394401804, -0.01142787840217352, 0.03397566080093384, 0.00047227879986166954, 0.024831028655171394, -0.009899264201521873, 0.015587524510920048, 0.01847432553768158, 0.05767982080578804, -0.027320103719830513, 0.015047207474708557, -0.04296048358082771, 0.05201466381549835, 0.004523942247033119, 0.018290290609002113, -0.009203854016959667, -0.018976489081978798, 0.026037011295557022, -0.03263677656650543, 0.01805449277162552, -0.027697958052158356, -0.0016361919697374105, 0.012130217626690865, 0.02721749246120453, 0.023926187306642532, 0.04287721589207649, -0.02211129292845726, 0.052823506295681, 0.04502188041806221, -0.03788274899125099, -0.007334487978368998, 0.0024127080105245113, 0.051431383937597275, 0.04225489869713783, -0.004718848038464785, -0.02972286567091942, -0.001748173963278532, -0.032253604382276535, -0.04692719131708145, -0.0035108088050037622, 0.027557430788874626, -0.0058214012533426285, 0.03304966911673546, 0.016166968271136284, -0.003316613147035241, -0.004059901461005211, -0.019472869113087654, -0.03583099693059921, -0.04108342155814171, 0.004667927976697683, 0.043616313487291336, -0.008570022881031036, 0.036818839609622955, -0.00726392911747098, -0.011343264020979404, 0.019707782194018364, 0.07270806282758713, -0.03668692708015442, 0.0019776560366153717, 0.05656018853187561, 0.005298837088048458, -0.03181413561105728, 0.004956838209182024, 0.009018533863127232, -0.034208156168460846, -0.024904828518629074, 0.05198041722178459, -0.02649860270321369, -0.03734028339385986, -0.028324324637651443, -0.0005344867240637541, 0.02876354195177555, 0.027552587911486626, 0.003077738918364048, 0.03325405344367027, 0.012639452703297138, 0.04590625688433647, -0.01724439114332199, 0.028718402609229088, -0.013084793463349342, 0.026326879858970642, 0.05230802297592163, 0.07630811631679535, 0.05889521539211273, 0.017335757613182068, 0.041283417493104935, 0.046959374099969864, -0.018550384789705276, 0.03900211676955223, -0.0023242931347340345, -0.0012090497184544802, 0.06633198261260986, 0.013024108484387398, -0.028350207954645157, 0.0242916326969862, 0.02403603307902813, -0.004447926767170429, 0.00007591916073579341, 0.03128133341670036, 0.0011676483554765582, 0.06447471678256989, 0.01716301590204239, 0.037249255925416946, -0.048711247742176056, -0.03465676307678223, 0.04583515226840973, 0.052970368415117264, -0.029945263639092445, -0.03262629732489586, -0.017167266458272934, -0.0025358074344694614, 0.014153406023979187, 0.02548007294535637, -0.0038650811184197664, 0.013380971737205982, 0.008670635521411896, 0.00858436431735754, -0.02845570258796215, -0.041672613471746445, -0.04024871066212654, -0.02886662818491459, -0.03695552051067352, -0.03623601794242859, -0.04361916333436966, 0.015080797486007214, 0.04401084780693054, -0.049208592623472214, 0.02647583745419979, -0.01033382210880518, -0.029627125710248947, -0.014691397547721863, -0.03017168678343296, 0.05061015114188194, 0.028343286365270615, 0.0033005066215991974, -0.024125365540385246, 0.01148874219506979, -0.005926618352532387, 0.03287537395954132, -0.026737427338957787, -0.001607081270776689, -0.026472294703125954, -0.021603379398584366, 0.014541998505592346, 0.0025997490156441927, -0.03308457136154175, -0.00005403143950388767, -0.032757390290498734, -0.04512564837932587, -0.01470495481044054, 0.032595444470644, 0.0035939509980380535, 0.04160202667117119, -0.0325014553964138, 0.03356168046593666, -0.0010852880077436566, -0.032231513410806656, 0.04700208827853203, 0.035059791058301926, -0.022638123482465744, 0.046009574085474014, 0.03452632203698158, -0.0025403518229722977, -0.04416841268539429, 0.05261647701263428, 0.02026621252298355, 0.012481356039643288, -0.015105155296623707, 0.01653004065155983, -0.0273444801568985, -0.022135283797979355, 0.013993758708238602, -0.017136942595243454, -0.027987176552414894, 0.047898221760988235, 0.010060761123895645, -0.0815170556306839, 0.026413239538669586, -0.0217300858348608, -0.019193299114704132, -0.03653986006975174, -0.037968363612890244, 0.009071444161236286, 0.017594216391444206, 0.05721594765782356, -0.007234073709696531, -0.010457349009811878, -0.017954951152205467, 0.013356810435652733, 0.05486002936959267, -0.04095550253987312, 0.003852184396237135, 0.0467475987970829, -0.01386670395731926, -0.008851708844304085, 0.026609569787979126, -0.019082756713032722, -0.023022376000881195, -0.00666684890165925, -0.04058266431093216, 0.041809290647506714, 0.006351215299218893, -0.027383560314774513, 0.04241419583559036, 0.06955035030841827, -0.040769562125205994, -0.002568189287558198, -0.005727103445678949, 0.032548774033784866, 0.005040178075432777, -0.000362267775926739, 0.044588956981897354, -0.0034563690423965454, -0.02474920079112053, -0.04419369250535965, 0.030586348846554756, 0.03765174001455307, 0.06552667170763016, -0.09312637150287628, 0.06070215255022049, -0.005922429263591766, -0.020287299528717995, 0.0019784187898039818, -0.08003555983304977, -0.006244402378797531, 0.046647150069475174, 0.003136433195322752, 0.08527225255966187, -0.03935403376817703, -0.017860189080238342, -0.007626139093190432, 0.014762011356651783, 0.004063940141350031, -0.02192682959139347, 0.02351267822086811, -0.0076265279203653336, -0.013691744767129421, -0.019928306341171265, -0.036689743399620056, 0.010820108465850353, -0.03375951200723648, 0.020389443263411522, 0.00463066203519702, -0.037608370184898376, -0.019288739189505577, 0.06519246846437454, 0.0239301435649395, 0.03401840478181839, -0.014903663657605648, 0.005808595567941666, 0.016158871352672577, 0.04626410827040672, 0.03631116822361946, 0.000029963683118694462, 0.032847873866558075, -0.048006895929574966, 0.06954596191644669, 0.02872507832944393, -0.03663834556937218, -0.01592893898487091, 0.002749328501522541, -0.04059581458568573, 0.016395151615142822, 0.0177143681794405, -0.031135085970163345, -0.051019035279750824, 0.021123360842466354, -0.023885000497102737, 0.02598923072218895, 0.024441169574856758, -0.013363699428737164, -0.020109644159674644, 0.048561327159404755, 0.0016067923279479146, -0.03157618269324303, 0.014689833857119083, -0.02905556745827198, 0.06815365701913834, 0.0359615795314312, -0.03511916100978851, -0.045305974781513214, -0.00960212480276823, -0.011634420603513718, -0.01118658296763897, -0.0005024222191423178, 0.024442395195364952, 0.010075152851641178, -0.013402575626969337, -0.03669660910964012, 0.032680317759513855, -0.00334836239926517, -0.009541095234453678, -0.016344837844371796, -0.016728442162275314, 0.04585638269782066, 0.024847596883773804, 0.024592723697423935, -0.0044614337384700775, 0.0042734453454613686, 0.022381430491805077, -0.034324098378419876, 0.01170664094388485, 0.019720574840903282, 0.011618691496551037, -0.00023915588099043816, -0.008223067969083786, 0.04332800582051277, 0.0034519059117883444, -0.0112892622128129, -0.02273941971361637, -0.01663266494870186, 0.042949333786964417, -0.048841796815395355, -0.03724999353289604, 0.06090329587459564, -0.020150968804955482, -0.017473014071583748, 0.03134816884994507, 0.05433240532875061, -0.034266602247953415, -0.002634661504998803, 0.04288877919316292, -0.04250152409076691, 0.004121404141187668, -0.04098750650882721, -0.011727382428944111, -0.018767094239592552, -0.025387262925505638, 0.01990898698568344, -0.012864174321293831, 0.017369044944643974, -0.0029549505561590195, -0.021119266748428345, -0.05068754032254219, -0.05342477932572365, 0.01378272008150816, 0.025450125336647034, -0.0075116874650120735, 0.02520972676575184, 0.024506162852048874, -0.018565043807029724, -0.000399353593820706, -0.0071289814077317715, 0.02013316936790943, -0.028286559507250786, -0.01989971101284027, 0.015360025689005852, 0.010819859802722931, -0.002029401483014226, 0.023133743554353714, 0.0015708629507571459, -0.06920842826366425, -0.00814999919384718, 0.007437744177877903, -0.021263565868139267, -0.04186248779296875, -0.01744822785258293, -0.025624940171837807, -0.049905650317668915, -0.040918976068496704, -0.0013230162439867854, -0.009558211080729961, 0.0311067383736372, 0.04436620697379112, 0.0050997245125472546, 0.021893393248319626, 0.0007792635005898774, -0.03047732450067997, 0.03339672088623047, 0.022933822125196457, -0.06569412350654602, -0.03064187802374363, 0.02029024437069893, -0.013193185441195965, 0.05333597958087921, -0.006393061950802803, -0.003452079137787223, -0.04614117741584778, -0.06597571820020676, -0.01792958378791809, -0.0688798800110817, -0.039317481219768524, -0.045293744653463364, -0.016845786944031715, -0.04399992525577545, 0.0010055131278932095, 0.031659193336963654, -0.0009570902911946177, -0.005869176704436541, -0.05510711297392845, 0.021806035190820694, -0.02398991584777832, -0.022013751789927483, -0.01985657960176468, -0.029254650697112083, -0.014198084361851215, 0.060355398803949356, 0.029112152755260468, -0.000019051323761232197, 0.010482922196388245, -0.00039892911445349455, 0.012519992887973785, -0.018321581184864044, -0.03964105248451233, -0.037314366549253464, 0.0013843653723597527, 0.013290458358824253, 0.009510312229394913, 0.015997225418686867, -0.021213850006461143, 0.05735168233513832, -0.025145165622234344, -0.023524191230535507, -0.007890480570495129, -0.023082880303263664, -0.0006526774377562106, -0.021160131320357323, 0.0600813589990139, -0.014700694009661674, 0.02507735788822174, -0.017140215262770653, 0.035622481256723404, 0.03732984513044357, -0.016766728833317757, -0.026548558846116066, -0.038387712091207504, -0.04280264303088188, -0.03696884214878082, 0.006937042344361544, -0.018332507461309433, -0.011014352552592754, -0.03266199678182602, -0.016490712761878967, 0.037914667278528214, -0.018128827214241028, 0.03692246600985527, 0.039360370486974716, 0.011068162508308887, -0.004822839051485062, -0.020738838240504265, 0.05655955523252487, 0.03379468992352486, 0.019824231043457985, -0.002100870944559574, -0.01528250053524971, -0.024396659806370735, 0.006608861964195967, -0.0517544187605381, -0.04441828653216362, -0.02771267294883728, 0.013057263568043709, 0.057708606123924255, -0.006841202266514301, 0.019631337374448776, -0.009478488937020302, -0.029488136991858482, -0.047770388424396515, 0.04254402220249176, -0.010594469495117664, -0.006891844794154167, 0.047352902591228485, -0.023493638262152672, -0.020774077624082565, -0.003388505196198821, 0.001521168276667595, 0.004810412414371967, -0.032321665436029434, 0.05743468180298805, -0.0025400544982403517, -0.04334712401032448, -0.005958142224699259, 0.038957204669713974, -0.031287696212530136, -0.024718770757317543, -0.009215125814080238, 0.006342247128486633, 0.007580465171486139, -0.025997059419751167, -0.012363974936306477, -0.018268000334501266, 0.00837388914078474, 0.0048109060153365135, -0.013246670365333557, -0.018193958327174187, 0.053134895861148834, -0.006294531282037497, 0.03145119920372963, -0.04613060876727104, 0.05299808084964752, 0.028052842244505882, -0.00507770013064146, -0.04203056916594505, -0.04161662980914116, 0.012988388538360596, -0.013824171386659145, 0.026603171601891518, 0.025469370186328888, -0.010424072854220867, 0.0205820444971323, 0.05057479441165924, 0.00606927927583456, 0.03527737408876419, 0.003943985793739557, -0.016496622934937477, 0.040095482021570206, -0.05730728805065155, -0.05986117571592331, -0.010820429772138596, 0.021032769232988358, -0.0131883779540658, 0.04657571390271187, -0.04290134459733963, -0.004312786739319563, 0.05804228037595749, 0.0167465191334486, 0.013434960506856441, -0.033474698662757874, -0.021389517933130264, -0.025319648906588554, -0.03739763796329498, -0.019287660717964172, -0.0193170178681612, 0.01773163489997387, -0.009934092871844769, -0.023416167125105858, -0.05124668404459953, -0.000885666930116713, -0.0048890854232013226, -0.0331355482339859, 0.00858339574187994, -0.02692234143614769, 0.014969958923757076, -0.054307810962200165, -0.05717960000038147, -0.05932825431227684, -0.00503368116915226, -0.032585740089416504, 0.016941919922828674, -0.012244150973856449, 0.01867048628628254, 0.025544423609972, 0.05225671827793121, 0.027336305007338524, 0.023393478244543076, -0.028519481420516968, -0.018331285566091537, -0.00550528010353446, 0.04408752918243408, 0.004350102972239256, 0.044216398149728775, 0.019778823480010033, -0.004660665523260832, 0.024244576692581177, 0.0010781408054754138, -0.03218662738800049, -0.01915668323636055, 0.0003292276232969016, 0.01545812003314495, 0.005834056064486504, -0.05864943936467171, -0.01098644733428955, -0.015916023403406143, -0.029810331761837006, 0.02496575005352497, -0.02366882935166359, -0.006803344003856182, 0.011063573881983757, -0.012986178509891033, 0.017040617763996124, 0.07270791381597519, 0.002327589550986886, 0.02189166657626629, 0.035233110189437866, 0.021446533501148224, -0.005655578337609768, 0.001512601156719029, 0.04183081164956093, 0.026721736416220665, 0.018814481794834137, -0.026648256927728653, 0.007592619862407446, 0.012297927401959896, -0.022911952808499336, 0.028804676607251167, -0.02143685333430767, -0.04389793425798416, -0.05987570062279701, -0.0005092282081022859, -0.000788239820394665, 0.045431219041347504, -0.004699219483882189, -0.0018465573666617274, 0.02081987075507641, 0.004634410608559847, -0.016994347795844078, -0.005417472217231989, -0.054437197744846344, -0.073420949280262, 0.019489416852593422, -0.046153683215379715, -0.025617578998208046, -0.007794851902872324, -0.035928525030612946, 0.01176292635500431, -0.009136658161878586, -0.02825622819364071, -0.02808872051537037, -0.010443391278386116, 0.00880917627364397, 0.04521496221423149, -0.016761941835284233, -0.005267309956252575, 0.010524831712245941, 0.054162319749593735, -0.030142109841108322, -0.05729471519589424, 0.06066877767443657, 0.029627470299601555, 0.01632089726626873, -0.022827858105301857, 0.01727302372455597, 0.04630924016237259, -0.02731304056942463, 0.00893156137317419, 0.003346305573359132, 0.019390903413295746, 0.019925910979509354, 0.0032787551172077656, -0.010710342787206173, -0.012180025689303875, -0.011965900659561157, 0.0520486906170845, -0.00597250834107399, -0.025285977870225906, -0.042241621762514114, 0.04362280294299126, 0.03916768729686737, -0.0300081018358469, 0.02614593878388405, 0.016511954367160797, 0.01830063946545124, 0.012066162191331387, 0.006584833841770887, 0.010039474815130234, 0.028753772377967834, 0.03242696821689606, 0.060748565942049026, 0.024544844403862953, 0.03152946010231972, 0.04315594583749771, -0.006330506876111031, -0.01589677855372429, 0.05677707865834236, 0.04759785532951355, -0.02654462680220604, 0.007960590533912182, -0.027481401339173317, 0.013299749232828617, 0.011505513451993465, -0.025465894490480423, 0.019237151369452477, -0.031642161309719086, 0.02896065078675747, -0.0291181281208992, 0.0007944825338199735, 0.04697408527135849, -0.03170694783329964, 0.03951151669025421, -0.003949929028749466, -0.011113468557596207, -0.00024561549071222544, 0.048448774963617325, -0.011334418319165707, 0.01763421669602394, 0.03229453042149544, 0.02906622737646103, -0.013333857990801334, 0.059295326471328735, 0.01775052770972252, 0.027009759098291397, -0.04848479479551315, 0.01053550187498331, 0.024915661662817, -0.005361935589462519, -0.020061535760760307, -0.0025764568708837032, -0.05091571807861328, 0.014051872305572033, -0.04520661011338234, -0.029701998457312584, 0.03573760390281677, -0.0321766659617424, 0.01346785482019186, -0.06291385740041733, 0.03712628409266472, -0.04826442524790764, 0.009529047645628452, 0.028000377118587494, 0.002527690026909113, -0.02075023017823696, 0.03108532726764679, -0.023825379088521004, 0.034767765551805496, 0.022463655099272728, 0.07454811036586761, -0.024620067328214645, 0.0030391791369765997, 0.044936906546354294, -0.0565781444311142, -0.038858454674482346, -0.0014709857059642673, 0.022209251299500465, -0.060117077082395554, -0.01454034075140953, -0.04484359920024872, 0.0020398807246237993, -0.016533197835087776, -0.023600568994879723, 0.0012164253275841475, 0.053055539727211, -0.025881502777338028, -0.062141772359609604, 0.008687078952789307, 0.042356133460998535, -0.039651740342378616, 0.0024350949097424746, 0.012820929288864136, 0.04030102118849754, -0.009899238124489784, -0.017169969156384468, 0.014922603033483028, -0.041168052703142166, -0.006303425878286362, -0.048001281917095184, 0.03245634585618973, -0.02430366352200508, -0.019582491368055344, -0.047390151768922806, -0.024250365793704987, 0.002539583947509527, 0.01018183771520853, -0.038898468017578125, -0.02272126078605652, 0.03423396497964859, 0.05556567385792732, 0.01126454584300518, 0.0024991289246827364, -0.047076258808374405, 0.02391025237739086, 0.029857052490115166, 0.05317426100373268, -0.009276879951357841, 0.02400396019220352, -0.002758714370429516, -0.020244769752025604, 0.019868286326527596, -0.035397011786699295, 0.008694584481418133, -0.00569153344258666, -0.02946275658905506, -0.0233255997300148, 0.0119923185557127, -0.043511755764484406, -0.04766552895307541, 0.010532335378229618, 0.006525867618620396, -0.004158682655543089, -0.025170158594846725, -0.06609592586755753, -0.005253998097032309, -0.06402181088924408, -0.017387500032782555, -0.07396341860294342, 0.03201564401388168, -0.02609427645802498, -0.004382578656077385, -0.0006835025269538164, -0.05220002308487892, 0.14200302958488464, 0.03768019750714302, 0.04298924282193184, 0.023321842774748802, -0.004835192579776049, 0.08930306881666183, 0.02277272380888462, 0.025499500334262848, -0.0033589324448257685, -0.04407867044210434, 0.041489481925964355, 0.007578378543257713, -0.0013622577534988523, -0.004788514226675034, 0.02121349796652794, 0.04795261472463608, -0.026605967432260513, 0.013584143482148647, 0.057384200394153595, -0.03679749369621277, -0.05487813800573349, -0.004017469473183155, 0.014126806519925594, 0.016299808397889137, -0.04515772685408592, 0.05533086135983467, 0.023070096969604492, -0.02441098354756832, -0.0068263462744653225, -0.019039537757635117, 0.035484910011291504, -0.023187242448329926, 0.04265325888991356, -0.004597504157572985, -0.021231792867183685, 0.06721886247396469, -0.005163934547454119, -0.06707070022821426, -0.022875702008605003, 0.0319548025727272, -0.020710177719593048, 0.030934268608689308, 0.05029928311705589, -0.04914860799908638, 0.027010617777705193, 0.045103028416633606, -0.023536356166005135, 0.02047125995159149, 0.009483889676630497, -0.029912211000919342, 0.059387076646089554, -0.05259805545210838, 0.000276240665698424, -0.005508332047611475, -0.055999040603637695, 0.005788515787571669, 0.009912784211337566, -0.04625067114830017, -0.0373956561088562, -0.009497475810348988, 0.006022188812494278, 0.010509603656828403, -0.0019241520203649998, 0.012680895626544952, -0.047985903918743134, 0.006796278990805149, 0.028897741809487343, -0.016231192275881767, -0.04290219768881798, -0.032703056931495667, -0.017159346491098404, -0.02489074319601059, 0.027093594893813133, -0.018422439694404602, 0.037956610321998596, 0.02570733241736889, -0.013577813282608986, 0.032465141266584396, -0.00964086689054966, -0.01931403949856758, -0.024073833599686623, -0.02252749167382717, 0.0004078506608493626, -0.014656933955848217, 0.041641715914011, 0.02691478095948696, -0.0195974912494421, -0.04000159353017807, -0.019609130918979645, 0.04615547135472298, 0.05853049457073212, 0.014839161187410355, -0.04888637736439705, -0.006848863326013088, -0.0071667893789708614 ]
Join us for our scrumdiddlyumptious chocolate factory-themed tea party. Enjoy a fizzy lifting drink on arrival and a selection of savoury snacks in the magnificent ballroom before heading into our very own inventing room to sample our weird and wonderful sweet treats, all inspired by the children's classic. Contact us on 01283 575671 to book.
[ -0.005532527808099985, -0.00038026057882234454, -0.008339247666299343, -0.0014970876509323716, -0.005444928538054228, -0.025378983467817307, 0.0023099910467863083, 0.024922186508774757, -0.0065008061937987804, -0.0083008399233222, 0.01402485091239214, 0.022857122123241425, 0.018258260563015938, -0.030086509883403778, 0.009688930585980415, -0.01117307785898447, -0.029996085911989212, -0.044061142951250076, -0.015992458909749985, 0.008954159915447235, 0.023593181744217873, 0.016492122784256935, -0.07490961998701096, -0.024104613810777664, -0.006208354607224464, 0.054861944168806076, 0.014032709412276745, -0.006853895727545023, 0.0825609490275383, 0.046514034271240234, -0.014797807671129704, -0.02149084582924843, 0.034581899642944336, -0.05051714926958084, -0.01811986416578293, 0.004128061234951019, 0.02790866047143936, 0.0029088123701512814, -0.008250256069004536, -0.06801997870206833, 0.01168204564601183, -0.005943431053310633, 0.04364544898271561, -0.03446412831544876, -0.022939899936318398, 0.021610697731375694, -0.029276089742779732, -0.008891203440725803, 0.03182412311434746, -0.0195620059967041, -0.014201764948666096, -0.025700563564896584, 0.00366267585195601, 0.01090566162019968, 0.006656567100435495, 0.009576624259352684, -0.015164604410529137, -0.012926895171403885, -0.040405403822660446, 0.049852509051561356, -0.0035134213976562023, 0.03113708458840847, 0.01895868591964245, -0.057841092348098755, 0.046879950910806656, -0.0053685009479522705, -0.01294795237481594, -0.04214266315102577, -0.020380521193146706, -0.02332047000527382, 0.0010599314700812101, 0.002185658784583211, -0.025048770010471344, -0.014785231091082096, -0.021735604852437973, -0.02795078419148922, 0.00195200031157583, 0.026471255347132683, -0.026339489966630936, 0.0316818431019783, 0.04907951503992081, 0.04027673974633217, 0.0198852326720953, 0.029587598517537117, -0.05222323536872864, -0.016916140913963318, 0.02646680176258087, 0.03725438565015793, 0.029830746352672577, 0.003283670637756586, 0.023716695606708527, 0.05103332921862602, -0.010381893254816532, 0.00660950830206275, 0.04298790544271469, 0.04714532196521759, -0.054516665637493134, 0.023910796269774437, -0.00729874474927783, 0.014706543646752834, 0.032871805131435394, -0.006776607129722834, -0.0047273701056838036, 0.019605644047260284, -0.04705660790205002, -0.010406117886304855, 0.024897588416934013, -0.010885738767683506, -0.024700572714209557, -0.004820120520889759, -0.016249319538474083, -0.03411995992064476, 0.02932298183441162, -0.006983394268900156, 0.006233421619981527, 0.05433180555701256, 0.012937614694237709, 0.026400083675980568, -0.06556174159049988, 0.036066628992557526, 0.03601694852113724, 0.0157077144831419, 0.04499664157629013, 0.0032247186172753572, -0.015434430912137032, -0.03589240089058876, -0.01452641747891903, 0.03403131291270256, -0.03665916621685028, 0.0031743168365210295, 0.014323852956295013, -0.03572463616728783, -0.01304386556148529, 0.010889698751270771, -0.024159198626875877, 0.002890927018597722, -0.0071658059023320675, 0.04564452916383743, 0.005695480853319168, -0.06145476549863815, 0.0467255599796772, 0.005921739153563976, 0.011819123290479183, 0.0746038630604744, -0.004201572388410568, 0.005572711117565632, -0.029332276433706284, 0.016131719574332237, -0.07577040791511536, 0.007527858950197697, -0.02264799363911152, -0.0015866775065660477, 0.02073429524898529, 0.03782161697745323, 0.0032594806980341673, 0.029391741380095482, -0.00749430526047945, 0.006294946651905775, 0.01472384948283434, 0.048563629388809204, -0.03003462590277195, 0.012675042264163494, -0.016628675162792206, 0.07191083580255508, 0.010993734933435917, 0.02553703263401985, -0.022492073476314545, -0.019947640597820282, -0.015832271426916122, -0.04499020427465439, -0.033657256513834, 0.007568827830255032, -0.017766470089554787, 0.0238388292491436, 0.0008567044860683382, 0.04839622601866722, 0.0407126285135746, -0.008650691248476505, 0.03221593797206879, 0.01520836167037487, -0.06297016143798828, -0.02147216536104679, 0.012235524132847786, 0.05949323996901512, 0.025397097691893578, -0.020166952162981033, -0.007609855849295855, -0.01387800369411707, -0.043461404740810394, -0.03576251491904259, -0.010002393275499344, 0.030248982831835747, -0.04453591629862785, 0.022448839619755745, -0.0020647640340030193, -0.013265673071146011, -0.01711324043571949, -0.017741071060299873, -0.02396519109606743, -0.05657311528921127, -0.03350396081805229, 0.08255714178085327, -0.019110456109046936, 0.022064145654439926, 0.013930171728134155, -0.028758827596902847, -0.007920934818685055, 0.05987312272191048, -0.0701809674501419, -0.006400886457413435, -0.005099704954773188, 0.030511287972331047, -0.006141863763332367, 0.010509757325053215, 0.007459444459527731, -0.0030022424180060625, -0.03612685576081276, 0.031286027282476425, -0.007721858099102974, 0.01462690718472004, -0.002225274918600917, 0.0051087685860693455, 0.03691958263516426, 0.06286729872226715, -0.016199378296732903, 0.009833748452365398, 0.001788928871974349, 0.0467999242246151, -0.0024464037269353867, -0.008657390251755714, -0.01750834472477436, 0.07194270193576813, 0.021116968244314194, 0.06709931045770645, 0.04984278604388237, -0.014727870002388954, 0.008315296843647957, 0.018153710290789604, -0.02041877806186676, -0.0006691234302707016, -0.018660539761185646, -0.0023754234425723553, 0.024948498234152794, 0.026406720280647278, -0.00007826067303540185, 0.03679705783724785, -0.00789575558155775, 0.01480916514992714, -0.011753438040614128, 0.04681386053562164, 0.004266676958650351, 0.033024244010448456, 0.024589451029896736, 0.0405907966196537, -0.013495718128979206, -0.015033172443509102, 0.006123029626905918, 0.06182906776666641, -0.0016807322390377522, -0.027754373848438263, 0.02408558502793312, 0.030638543888926506, -0.02384302392601967, 0.0058109695091843605, 0.03965098410844803, 0.004246251657605171, -0.004619725979864597, 0.011920733377337456, -0.021297188475728035, -0.029279330745339394, -0.038959816098213196, -0.04788229241967201, -0.04784485697746277, -0.019168341532349586, -0.04998721554875374, 0.007355620618909597, 0.040169887244701385, -0.016853395849466324, 0.053326331079006195, -0.008755712769925594, 0.007440289948135614, -0.0014184234896674752, 0.021029356867074966, 0.03658708930015564, 0.04824542999267578, 0.04998336359858513, -0.04213482141494751, 0.012097027152776718, -0.03369239345192909, 0.04281452298164368, -0.04119842126965523, 0.008856920525431633, 0.007149477023631334, -0.011435817927122116, 0.04781512916088104, -0.016119956970214844, -0.02819577045738697, 0.010270699858665466, -0.024658560752868652, -0.035797618329524994, -0.0023632002994418144, 0.014383341185748577, 0.0030229196418076754, -0.007095366716384888, -0.0487058125436306, 0.04613994061946869, 0.03605707734823227, -0.02830914407968521, 0.061588551849126816, 0.018971990793943405, -0.028315028175711632, 0.03674345836043358, 0.020531065762043, -0.008764373138546944, -0.06208185479044914, 0.03469368815422058, 0.039641909301280975, 0.029765699058771133, -0.026782335713505745, -0.01864723116159439, -0.038285885006189346, 0.01770673133432865, 0.005836565513163805, -0.0019903481006622314, -0.005814767442643642, 0.035485245287418365, -0.003596253227442503, -0.06057073175907135, 0.0034034792333841324, -0.02514605224132538, -0.030363326892256737, -0.05268179252743721, -0.02612105943262577, -0.00011529718904057518, 0.016612323001027107, 0.03600750491023064, 0.018146269023418427, -0.049428436905145645, -0.0005381276132538915, 0.013453957624733448, 0.02881273627281189, -0.0019328021444380283, 0.012033562175929546, 0.04458186402916908, -0.01666104793548584, 0.013453923165798187, 0.022690458223223686, -0.024267086759209633, -0.019568627700209618, -0.006725780665874481, -0.00026242670719511807, -0.0008837423520162702, 0.06079794093966484, -0.010887278243899345, 0.03988012671470642, 0.05932281166315079, -0.03651949763298035, -0.0190046988427639, 0.022619066759943962, 0.044014204293489456, 0.014605449512600899, -0.02563447132706642, 0.057952169328927994, -0.01983463205397129, -0.05495412275195122, -0.062141165137290955, 0.039774343371391296, 0.037802018225193024, 0.06037940829992294, -0.06621664017438889, 0.05202770233154297, 0.016429424285888672, -0.01749792881309986, 0.046246521174907684, -0.04551957920193672, -0.025942888110876083, 0.016443096101284027, 0.0022259687539190054, 0.06216108053922653, -0.012176785618066788, 0.04533374309539795, -0.06106923520565033, 0.006177882198244333, 0.014196419157087803, 0.000053109703003428876, 0.03121187910437584, -0.008818716742098331, -0.0003070113598369062, 0.0011429310543462634, -0.013443723320960999, -0.008172672241926193, -0.0009316802606917918, -0.0082979341968894, 0.005695583298802376, -0.030259447172284126, -0.024890122935175896, 0.028478162363171577, 0.008625241927802563, 0.04531935602426529, -0.012522535398602486, 0.02267669327557087, 0.021876096725463867, -0.013415019027888775, 0.02417766861617565, -0.010429101064801216, 0.006059807725250721, -0.05508389323949814, 0.05690557882189751, 0.01044242363423109, -0.007107902783900499, -0.011011657305061817, -0.01326720416545868, -0.04172302782535553, 0.028704509139060974, 0.014895847998559475, -0.03959602862596512, -0.03467301279306412, 0.014719070866703987, -0.0006676938501186669, 0.03001410700380802, -0.030186664313077927, -0.014711037278175354, -0.0032217679545283318, 0.007340576965361834, 0.03205582872033119, -0.041934117674827576, 0.015187845565378666, -0.04629383981227875, 0.04450568929314613, 0.04323979467153549, -0.043030351400375366, -0.0615445151925087, -0.03270984813570976, -0.010470949113368988, -0.040363483130931854, -0.014744154177606106, 0.04370802268385887, -0.0002124028542311862, 0.04091198369860649, -0.03161435201764107, 0.02773943543434143, 0.02601752057671547, -0.008938018232584, -0.008862310089170933, 0.054794520139694214, 0.029629206284880638, 0.007980084978044033, 0.05935373157262802, -0.005579848773777485, -0.040680453181266785, 0.003290109569206834, -0.05823205038905144, -0.009199411608278751, -0.02973257191479206, -0.019572338089346886, -0.012318157590925694, 0.01223537977784872, 0.04075454920530319, 0.04455351084470749, -0.004233471117913723, 0.022758131846785545, 0.00007834141433704644, 0.00837534386664629, -0.041244808584451675, -0.03633621707558632, 0.05478407070040703, 0.014206207357347012, -0.03393980488181114, 0.018085572868585587, 0.05800366774201393, -0.02959403395652771, 0.004653173964470625, 0.05320783704519272, -0.05729666352272034, 0.0376521535217762, -0.01452615112066269, 0.025185704231262207, -0.023697933182120323, -0.01206242199987173, 0.0039011866319924593, -0.0357736311852932, 0.07019027322530746, -0.0013084232341498137, -0.0017864744877442718, -0.04115284979343414, -0.050065215677022934, -0.027379481121897697, 0.010353700257837772, -0.014911414124071598, 0.026195241138339043, 0.0066863857209682465, 0.00020089592726435512, 0.0005480199470184743, -0.027893973514437675, 0.031571920961141586, 0.016819849610328674, -0.018432753160595894, 0.007655644323676825, -0.020581837743520737, 0.02774154581129551, 0.012968046590685844, 0.021234462037682533, -0.05270707607269287, 0.00515143433585763, 0.011485091410577297, -0.0126764215528965, -0.04338572919368744, 0.017753561958670616, -0.024289021268486977, -0.011311874724924564, -0.019558481872081757, 0.009591635316610336, 0.020694192498922348, -0.011290982365608215, 0.032260991632938385, 0.0200232844799757, 0.02999921515583992, 0.011029841378331184, -0.03367304429411888, 0.04397071525454521, 0.0519862174987793, -0.04392973333597183, -0.05219978839159012, 0.04682508483529091, -0.018027080222964287, 0.030170604586601257, 0.01807490549981594, -0.027417466044425964, -0.039314933121204376, -0.058019474148750305, 0.011014598421752453, -0.08108631521463394, 0.0026864889077842236, -0.03256338834762573, -0.02150258608162403, -0.04931998252868652, 0.02352120354771614, -0.001720778876915574, -0.002189149148762226, 0.010494517162442207, -0.03703462705016136, 0.013026241213083267, -0.019384536892175674, -0.03871356323361397, -0.032016679644584656, 0.02233332395553589, -0.020373433828353882, 0.046489641070365906, -0.014395119622349739, 0.049429237842559814, 0.005405751056969166, 0.01596653088927269, 0.0004929521237500012, -0.008802170865237713, -0.049149442464113235, -0.03031105548143387, -0.029284780845046043, 0.031693968921899796, 0.013509652577340603, 0.0559827946126461, -0.03151537850499153, 0.03166241571307182, -0.023737279698252678, -0.0049301860854029655, -0.021206432953476906, -0.02053355611860752, -0.0332283079624176, 0.022631388157606125, 0.08600287139415741, -0.028995053842663765, 0.011348018422722816, -0.002221575705334544, 0.03560151159763336, 0.05867951363325119, 0.009682605043053627, -0.02056829072535038, -0.021537544205784798, -0.0495576374232769, -0.05369434505701065, 0.0315125547349453, -0.016962723806500435, -0.0072154700756073, 0.005350025836378336, 0.0014504992868751287, 0.02649027109146118, 0.010771632194519043, 0.025890441611409187, 0.06412167102098465, -0.02432253025472164, 0.004651961848139763, -0.04568566754460335, 0.012739385478198528, 0.05704256892204285, -0.016413766890764236, 0.00701922969892621, -0.02033931389451027, 0.0007787200738675892, 0.01126350462436676, -0.044116124510765076, -0.03911546617746353, -0.06905163824558258, -0.013361828401684761, 0.06948938965797424, -0.041725367307662964, 0.03443913534283638, -0.027046501636505127, -0.062432944774627686, -0.0590972937643528, 0.03355477750301361, -0.004847711883485317, 0.007802941370755434, 0.04012082889676094, 0.0037233743350952864, -0.023082979023456573, -0.013377808965742588, 0.00521114794537425, -0.04560721665620804, -0.03134666383266449, 0.057492680847644806, -0.00001281376535189338, -0.06811390072107315, 0.025706956163048744, 0.05700108781456947, -0.050260819494724274, -0.034306563436985016, -0.018952177837491035, -0.00939854420721531, 0.003222846193239093, -0.04340655729174614, 0.006093963980674744, -0.012767787091434002, -0.004388174042105675, 0.03232114762067795, 0.05262734740972519, -0.016592906787991524, 0.04870324954390526, 0.023607468232512474, 0.02562403492629528, -0.03922921419143677, -0.006667035631835461, 0.011080767959356308, -0.029794497415423393, -0.05914173647761345, -0.05313185229897499, -0.0034488001838326454, -0.024652941152453423, -0.020538222044706345, 0.03420596197247505, -0.005129674915224314, 0.039659034460783005, 0.029504947364330292, -0.017180854454636574, 0.028413191437721252, -0.00027970029623247683, 0.0016966421389952302, 0.010970007628202438, -0.04386964812874794, -0.04112663120031357, -0.05223428085446358, 0.013290466740727425, 0.022177059203386307, 0.020574521273374557, -0.04289059713482857, -0.010104549117386341, 0.0066240583546459675, 0.01672724448144436, -0.02479722537100315, -0.046193212270736694, -0.06582973897457123, -0.05271267145872116, -0.039024997502565384, -0.04461292177438736, -0.02153865061700344, 0.002839950378984213, 0.03561054915189743, 0.029403740540146828, -0.02690230682492256, -0.015245357528328896, -0.01103783119469881, -0.03952189162373543, 0.0009070814121514559, -0.032182514667510986, 0.03176753968000412, -0.038112886250019073, -0.03389221802353859, -0.03116198070347309, 0.01535565685480833, -0.03897631913423538, 0.0003713757614605129, -0.02558552846312523, 0.01675403118133545, -0.032414358109235764, 0.05105488374829292, -0.02618871070444584, 0.007460151799023151, -0.0013520646607503295, -0.04485144838690758, -0.03337405249476433, 0.040381211787462234, -0.010955504141747952, 0.023132329806685448, 0.009221876040101051, 0.00992246251553297, 0.0508604422211647, -0.011578448116779327, -0.023641828447580338, -0.0252919252961874, 0.004844307899475098, -0.00852737296372652, 0.005039562936872244, -0.032670535147190094, 0.011637945659458637, -0.008137928321957588, -0.04651190713047981, 0.04195603355765343, -0.03938913345336914, 0.003483391599729657, 0.03164051100611687, 0.034088972955942154, -0.016968507319688797, 0.07490381598472595, 0.002775326371192932, 0.03817714378237724, 0.03188501298427582, 0.005840014200657606, 0.007945586927235126, -0.000008258150046458468, 0.011020204052329063, 0.01312983501702547, 0.013416607864201069, -0.024976305663585663, 0.002238102024421096, -0.013875903561711311, -0.007180431392043829, 0.03741556778550148, 0.005620975513011217, -0.036701612174510956, -0.047075022011995316, -0.014600721187889576, 0.003966947086155415, 0.04019464552402496, -0.007995467633008957, -0.041103240102529526, 0.024827785789966583, -0.029067019000649452, -0.035798776894807816, 0.006410884205251932, -0.053490616381168365, -0.030623745173215866, 0.045600831508636475, 0.005276800598949194, -0.007940066047012806, -0.005934714339673519, -0.03531327471137047, 0.025652211159467697, -0.021031221374869347, 0.010668584145605564, -0.002366824774071574, 0.03793416544795036, -0.0011174731189385056, 0.012063032947480679, -0.005758975632488728, -0.020627666264772415, 0.0024546596687287092, 0.030379191040992737, -0.027212737128138542, -0.05990741774439812, 0.029713597148656845, 0.0156177943572402, 0.034615010023117065, 0.012622032314538956, 0.03286679834127426, 0.020557235926389694, 0.009185422211885452, 0.043426208198070526, -0.005331967957317829, 0.003559771226719022, 0.010950837284326553, 0.015917381271719933, 0.0006809185724705458, 0.017253505066037178, -0.03851458802819252, 0.05282805114984512, 0.006267737131565809, -0.04742561653256416, -0.014953612349927425, 0.05998148024082184, 0.02254348061978817, -0.005026713944971561, 0.046829260885715485, -0.0014258997980505228, 0.04816301539540291, -0.012109984643757343, 0.027845438569784164, -0.049524031579494476, 0.028433213010430336, 0.05566414073109627, 0.02965598553419113, 0.0038182013668119907, 0.04107894003391266, 0.05260605365037918, -0.027901344001293182, 0.011524150148034096, 0.06141839548945427, 0.03088054433465004, -0.03688820078969002, 0.0034982666838914156, -0.02665056847035885, 0.012927279807627201, -0.017519664019346237, -0.019921867176890373, 0.0015998377930372953, -0.010579376481473446, -0.009054329246282578, 0.013119167648255825, -0.03664730116724968, 0.03563147038221359, -0.03593362122774124, 0.006476280745118856, 0.0008655900601297617, -0.0037054247222840786, 0.005211232230067253, 0.04788940027356148, -0.014945078641176224, 0.03323620930314064, 0.01610281690955162, 0.021417520940303802, 0.004549219738692045, 0.04760674759745598, 0.0034632058814167976, -0.007477361708879471, -0.01326800137758255, 0.02230815216898918, -0.0054368674755096436, -0.0008222719188779593, -0.03015003353357315, 0.006081358529627323, -0.031707391142845154, 0.040720026940107346, -0.025986550375819206, -0.036542560905218124, 0.04044780135154724, -0.04330584034323692, 0.0071029700338840485, -0.0473860539495945, 0.03231645002961159, -0.0031892082188278437, 0.02754364348948002, 0.008124977350234985, 0.001224482781253755, -0.025771526619791985, 0.052951134741306305, -0.021167734637856483, 0.004269827622920275, 0.01390428002923727, 0.055931370705366135, -0.008790859021246433, 0.010013788007199764, 0.03238626569509506, -0.012294474989175797, -0.0404476560652256, 0.026605887338519096, -0.025833725929260254, -0.01454171258956194, -0.029034841805696487, -0.05802721902728081, -0.017564933747053146, -0.025353943929076195, -0.029828296974301338, -0.008820820599794388, 0.03843097388744354, -0.004196982830762863, -0.048983052372932434, 0.0007413079147227108, 0.01614806242287159, -0.05556377395987511, -0.006786040961742401, 0.009710635058581829, 0.0384175069630146, -0.009144919924438, 0.002564729191362858, -0.04614515230059624, -0.030178219079971313, -0.005989972036331892, -0.022060859948396683, 0.02818533405661583, -0.04821868613362312, -0.021858496591448784, -0.029586154967546463, -0.05358343943953514, -0.029355082660913467, -0.02405230887234211, -0.026963114738464355, -0.022684380412101746, 0.038260359317064285, 0.032398782670497894, 0.012469540350139141, -0.0003521959879435599, -0.02446039393544197, -0.017795270308852196, 0.02316836267709732, 0.06962327659130096, -0.012307053431868553, 0.015859346836805344, 0.053896740078926086, -0.04455489665269852, 0.017592260614037514, -0.04076099768280983, 0.038354646414518356, -0.021155865862965584, -0.00012127029913244769, -0.01535867154598236, 0.02031104452908039, -0.012893600389361382, -0.0545426681637764, 0.012556169182062149, -0.0026191161014139652, 0.026536185294389725, -0.021106839179992676, -0.0735357403755188, 0.00440466683357954, -0.05972902104258537, -0.008412719704210758, -0.052513670176267624, 0.020904572680592537, 0.026191044598817825, -0.011338104493916035, -0.023394471034407616, -0.07364968210458755, 0.1464301347732544, 0.05592801421880722, 0.025684993714094162, 0.022712893784046173, 0.020132316276431084, 0.048569001257419586, 0.054750215262174606, -0.013528427109122276, -0.024397069588303566, -0.04111883416771889, 0.03851127251982689, 0.020403889939188957, 0.06312359124422073, 0.004607816692441702, 0.019357606768608093, 0.05116280913352966, -0.04926636815071106, 0.0039631580002605915, 0.019126953557133675, -0.022187814116477966, -0.07413814216852188, 0.02918768674135208, 0.00014882863615639508, 0.03139469400048256, -0.027053259313106537, 0.010318160988390446, 0.01271637063473463, -0.06496720016002655, -0.051543913781642914, -0.018123283982276917, 0.017169710248708725, -0.02214004285633564, 0.052553094923496246, -0.01265625935047865, -0.036780860275030136, 0.037189941853284836, 0.0038644566666334867, -0.025172851979732513, 0.01694559119641781, 0.03022577613592148, -0.024464502930641174, 0.011297720484435558, 0.037255629897117615, -0.023565590381622314, 0.036040160804986954, 0.02904054895043373, -0.031507618725299835, 0.001001631491817534, 0.011241412721574306, -0.042893391102552414, 0.054112404584884644, -0.023836981505155563, 0.017301321029663086, -0.01214204728603363, -0.041565269231796265, -0.013783098198473454, 0.00907982885837555, -0.03620850294828415, -0.022058196365833282, 0.004441124852746725, 0.013354922644793987, -0.005333673674613237, -0.012178600765764713, 0.004999525845050812, -0.04804711788892746, -0.0021761320531368256, 0.037987105548381805, 0.023000719025731087, -0.015454783104360104, -0.006790518295019865, -0.009122388437390327, 0.0024062206503003836, -0.0315544493496418, -0.0028507811948657036, 0.01938009262084961, 0.02047123946249485, -0.01272476278245449, 0.04139716550707817, 0.028062021359801292, -0.03897128254175186, -0.005375185050070286, -0.03267897665500641, -0.017034217715263367, -0.016150761395692825, 0.022641973569989204, 0.020045815035700798, -0.03204704448580742, -0.049793634563684464, -0.02407390996813774, 0.040833353996276855, 0.04616151377558708, 0.03015843778848648, -0.023356037214398384, 0.005050986539572477, -0.005012012552469969 ]
According to one aspect of an embodiment a determination apparatus includes a reception unit that receives a notification, indicating that a user has visited a certain facility, from a terminal apparatus having a notification function that outputs the notification when the user visits the facility. The determination apparatus includes an estimation unit that estimates, on the basis of a statistical relation between a history of number of the notifications and a history of a using state of the facility, number of users who are visiting the certain facility from number of the notifications received in a certain period. The determination apparatus includes a determination unit that determines whether a new user is able to use the certain facility on the basis of a determination result by the estimation unit. The present application claims priority to and incorporates by reference the entire contents of Japanese Patent Application No. 2017-136647 filed in Japan on Jul. 12, 2017. The present invention relates to a determination apparatus, a method of determination, and a non-transitory computer readable storage medium. A technique has been conventionally known that detects visit states and using states of facilities by users and provides certain services on the basis of detection results. As an example of such a technology, a technique is known that, on the basis of the state of tables installed in a shop and the number of customers, determines whether the shop is at full occupancy. Japanese Laid-open Patent Publication No. 2005-070956. In recent years, a beacon technique is known that installs a transmission apparatus that transmits a certain signal in a facility, receives a notification that the certain signal has been received from a terminal apparatus used by a user, and thereby detects a visit to the facility by the user. Processing can be provided that identifies the number of users who have visited a shop and identifies whether the shop is at full occupancy on the basis of the identified number using such a technique. However, the technique described above cannot necessarily appropriately identify full occupancy. The technique described above cannot accurately identify the number of users who have visited the facility when there are some users who use a terminal apparatus that does not have a notification function for outputting the notification that the certain signal has been received among the users who have visited the facility, for example. According to one aspect of an embodiment a determination apparatus includes a reception unit that receives a notification, indicating that a user has visited a certain facility, from a terminal apparatus having a notification function that outputs the notification when the user visits the facility. The determination apparatus includes an estimation unit that estimates, on the basis of a statistical relation between a history of number of the notifications and a history of a using state of the facility, number of users who are visiting the certain facility from number of the notifications received in a certain period. The determination apparatus includes a determination unit that determines whether a new user is able to use the certain facility on the basis of a determination result by the estimation unit. The above and other objects, features, advantages and technical and industrial significance of this invention will be better understood by reading the following detailed description of presently preferred embodiments of the invention, when considered in connection with the accompanying drawings. FIG. 11 is a flowchart of an example of a procedure of privilege provision processing executed by the information provision apparatus according to the embodiment. The following describes modes for performing a determination apparatus, a method of determination, and a non-transitory computer readable storage medium according to the present application (hereinafter, referred to as "embodiments") in detail with reference to the accompanying drawings. These embodiments do not limit the determination apparatus, the method of determination, or the non-transitory computer readable storage medium according to the present application. In the following embodiments, the same parts and processing are denoted by the same reference symbols, and a duplicate description is omitted. The following description describes an information provision apparatus 10 that executes provision processing to provide, when a facility visited by a user U1 satisfies a certain condition, the user U1 with information on another facility, determination processing to determine whether a facility is at full occupancy, coupon provision processing to provide the user U1 with a certain coupon only when the user U1 is comparing a plurality of facilities with each other, and privilege provision processing to provide the user U1 with a privilege in accordance with a time during which a user has stayed at a facility (hereinafter, may be collectively referred to as "pieces of processing"). In other words, the information provision apparatus 10 is an example of a provision apparatus or a determination apparatus that executes the various kinds of processing described above. The following description describes an example in which the various kinds of processing described above are executed for a shop S1 providing foods and drinks (a restaurant, for example) as a facility; embodiments are not limited to this example. The information provision apparatus 10 can apply the provision processing, the determination processing, the coupon provision processing, and the privilege provision processing described below to any facilities such as halls in which events are being held, community centers, libraries, movie theaters, bathing facilities, accommodations such as hotels, amusement parks, and various kinds of attractions, for example. The following first describes the concepts of the pieces of processing executed by the information provision apparatus 10 with reference to FIG. 1. FIG. 1 is a diagram for illustrating an example of working effects exhibited by the information provision apparatus according to the embodiment. The information provision apparatus 10 is an information provision apparatus that is implemented by a single or a plurality of information provision apparatuses such as a server apparatus or a cloud system, for example and is communicable with a terminal apparatus 100 used by the user U1 via a network N such as a mobile communication network or a wireless local area network (LAN). Although the example illustrated in FIG. 1 illustrates the terminal apparatus 100 used by the user U1, the information provision apparatus 10 may be communicable with any number of terminal apparatuses 100 used by any number of users. In the example illustrated in FIG. 1, users other than the user U1 are indicated by circles. The terminal apparatus 100 is a mobile terminal such as a smartphone, a tablet terminal, or a personal digital assistant (PDA) or an information processing apparatus such as a notebook personal computer (PC), for example. The terminal apparatus 100 has a function of, upon receiving a signal transmitted from an access point, a beacon, or the like (hereinafter, collectively referred to as a "beacon signal") installed in the shop S1 or other shops OS1 and 0S2 (hereinafter, may be collectively referred to as a "shop OS"), transmitting a notification that the beacon signal has been received (hereinafter, collectively referred to as a "reception notification) to the information provision apparatus 10. A transmission apparatus B1 that transmits the beacon signal is installed in the shop S1, for example. The transmission apparatus B1 transmits a signal indicating identification information for identifying the shop S1 (an identifier of the shop S1, for example) via a wireless local area network (LAN), Bluetooth (registered trademark), or the like. The terminal apparatus 100 has a notification function of, upon receiving the beacon signal transmitted by the transmission apparatus B1, transmitting the reception notification indicating identification information indicated by the received beacon signal (a beacon identifier (ID), for example) to the information provision apparatus 10. The notification function may be implemented by hardware of the terminal apparatus 100 or implemented by an application that causes the terminal apparatus 100 to exhibit the notification function by being downloaded by the terminal apparatus 100 from any server apparatus and being installed. Not all terminal apparatuses 100 of all users related to the execution of the pieces of processing are required to have the notification function; partial terminal apparatuses 100 may have the notification function. A service can be provided that that detects whether a user has visited a shop using such a beacon signal and executes various processing in accordance with a detection result. When the terminal apparatus 100 of the user U1 receives a beacon signal containing the identification information of the shop S1 after the user U1 was provided with information on the shop S1, the terminal apparatus 100 is caused to display a message such as "Will you check in?" and when an operation to check in is performed, a reception notification indicating the identification information of the shop S1 is transmitted from the terminal apparatus 100 of the user U1 to the information provision apparatus 10, for example. A check-in service can be provided in which, when receiving the reception notification indicating the identification information of the shop S1 from the terminal apparatus 100 of the user U1, the information provision apparatus 10 determines that the user U1 has been guided to the shop S1, receives a reward for the guidance of the user U1 from the shop S1, and provides the user U1 with an incentive with the reward as a fund. A technique can be provided that determines whether each user is staying at the shop S1 on the basis of whether the reception notification indicating the identification information of the shop S1 has been received from the terminal apparatus 100 of each user and estimates the number of users who are staying at the shop S1 on the basis of a determination result. A technique can be provided that visualizes whether the shop S1 is at full occupancy and the number of seats in stock of the shop S1 in real time using such a technique. A technique can be provided that estimates how long each user has stayed at the shop S1 using such a technique. A conventional technique is known that acquires, via a shop terminal or the like installed in the shop S1, vacancy information of the shop and provides the user with the vacancy information of a shop that satisfies desired conditions input by the user U1. However, in such a technique, during a period from the provision of information that there is a vacancy in the shop S1 to the visit to the shop by the user U1, there is a risk that another user may enter the shop S1 to fill the vacancy. Thus, when the user U1 visits the shop S1 even though the shop S1 is at full occupancy, the user U1 has to search for another shop close to the shop S1 or another shop similar to the shop S1, which requires time and effort. In addition, when the user U1 is sent from the shop S1 to the other shop OS having a vacancy, although the vacancy of the shop OS as a customer sending destination can be filled, simply sending the user U1 to the other shop OS is not sending a user with conditions (per-customer spending, the number of people, and a staying time, for example) desired by the shop as a customer sending destination. Given these circumstances, the information provision apparatus 10 executes the following provision processing. First, the information provision apparatus 10 determines whether a first condition about the using state of a first facility (the shop S1, for example) is satisfied. When the first condition is satisfied, the information provision apparatus 10 searches for a second facility (a shop close to the shop S1 among the shops OS, for example) the relation with the first facility of which satisfies a certain second condition. The information provision apparatus 10 then provides the user U1 with a search result. When the user U1 visits the shop S1, if the shop S1 is at full occupancy, the information provision apparatus 10 provides the user U1 with information on another shop OS located close to the shop S1, the shop being similar to the shop S1 (the shop OS1, which is an Italian restaurant being the same as the shop S1, for example), for example. A technique can be provided that identifies the location of each user using positional information acquired by Global Positioning System (GPS) or the like or the beacon signal, estimates the number of users who are visiting the shop S1 on the basis of a determination result, and determines whether the shop S1 is at full occupancy on the basis of an estimation result. However, such a technique cannot appropriately identify the number of users who are visiting the shop S1 when only the terminal apparatuses 100 used by partial users among the users who have visited the shop S1 have the notification function. In other words, even when the fullness/vacancy of the shop S1 is attempted to be estimated from an application that transmits the beacon signal or the positional information, not all the users using the shop S1 necessarily have the terminal apparatus 100 that executes the application (that is, the terminal apparatus 100 having the notification function), and thus the degree of congestion cannot be determined. Given these circumstances, the information provision apparatus 10 executes the following determination processing. First, from the terminal apparatus 100 having the notification function that, when each user visits the shop S1, outputs a reception notification that the user has visited the shop S1, the information provision apparatus 10 receives the reception notification. The information provision apparatus 10 then estimates the number of users who are visiting the shop S1 from the number of notifications received in a certain period on the basis of a statistical relation between the history of the number of notifications and the history of the using state of the shop S1. A technique is known that provides the user U1 with a coupon that can be used at the shop S1 or the shop OS. In such a coupon, any details such as the discount rate or the discount details of the amount of money used ("free for one of them", for example) and the provision of a special menu are set by the shop side. In such a coupon, applicable conditions may be set; various kinds of conditions may be set such as conditions about the number of people such as "applicable to three or more", conditions about a date and time (including a day of the week) such as "applicable only to weekdays" or "inapplicable to lunch", and conditions about the amount of money used such as "applicable to 5,000 yen or more", for example. However, it is difficult to appropriately set such a coupon. It is considered that when the shop S1 provides users with a coupon with a more favorable condition than the shop OS (a coupon with a higher discount rate or a coupon with a looser condition, for example), more users can be guided to the shop S1, for example. However, if the other shop OS provides users with a coupon with a further more favorable condition in a competitive manner, excessive competition about the details and conditions of coupons may occur, and a price collapse and a condition collapse (nullification) may occur. When the user U1 visits the shop S1, the shop S1 is at full occupancy, and the user U1 may be introduced to the other shop OS1 similar to the shop S1 by the provision processing described above. However, when the user U1 has visited the shop S1 with the use of a coupon issues by the shop S1 as a precondition, the user U1 may show disapproval of a visit to the shop OS1 if the shop OS1 does not issue a coupon with similar details and conditions. When the shop S1 sets a 20% discount coupon, and when the coupon of the shop OS1 sets a 10% discount coupon, the user U1 may show disapproval of the use of the shop OS1, for example. Given these circumstance, the information provision apparatus 10 executes the following coupon provision processing. First, the information provision apparatus 10 determines whether the user is in a comparison state that compares the shop S1 and the other shop OS competing with the shop S1 with each other. The information provision apparatus 10 provides the user with a certain coupon about the shop OS only when it is determined that the user is in the comparison state. In other words, the information provision apparatus 10 provides the user with a coupon dedicated to the time of comparison, or a coupon with a favorable condition that is not usually provided, for example, only when the user U1 is comparing shops competing with each other. It is considered that when users present around the shop S1 are introduced to the shop S1 or are provided with coupons of the shop S1, many users can be guided to the shop S1. However, among the users, there are some users who would reduce the profitability of the shop S1, such as a user who stays for a long time while ordering only one item. Consequently, the full occupancy of the shop S1 is prolonged, and a new user cannot use the shop S1, which may degrade profitability. In the check-in service described above, abuse, that is, approaching the vicinity of the shop S1 and only acquiring an incentive despite of not actually using the shop S1 may occur. Such an unintended use, which only acquires visiting records or points by only checking in, is not favorable. Given these circumstances, the information provision apparatus 10 executes the following privilege provision processing. First, the information provision apparatus 10 acquires a use starting date and time at which a user started the use of the shop S1 and a use ending date and time at which the user ended the use of the shop S1. The information provision apparatus 10 then provides the user with a certain privilege in accordance with a period from the acquired use starting date and time to the acquired use ending date and time (hereinafter, may be collectively referred to as a "using period"). When the using period falls within a certain time ("2 hours", for example), the information provision apparatus 10 provides the user with various kinds of privileges beneficial for the user such as points, coupons, and discount services for example. For such privileges, not only privileges to be applied in the shop S1 that was used by the user, but also privileges with any details such as privileges that can be used at the other shop OS, various kinds of electronic online shopping malls, and the like can be employed. The following describes an example of a functional configuration and working effects of the information provision apparatus 10 that implements the provision processing, the determination processing, the coupon provision processing, and the privilege provision processing described above with reference to FIG. 2. Although the following description describes examples in which the information provision apparatus 10 executes the pieces of processing, embodiments are not limited to these examples. The working effects of the information provision apparatus 10 described below may be achieved by causing a provision server that executes the provision processing, a determination server that executes the determination processing, a coupon provision server that executes the coupon provision processing, and a privilege provision server that executes the privilege provision processing to cooperatively execute the pieces of processing, for example. In the following description, a "shop" may be read as a "facility". FIG. 2 is a diagram for illustrating an example of the functional configuration of the information provision apparatus according to the embodiment. As illustrated in FIG. 2, the information provision apparatus 10 has a communication section 20, a storage section 30, and a controller 40. The communication section 20 is implemented by Network Interface Card (NIC), for example. The communication section 20 is connected to the network N in a wired or wireless manner and transmits and receives questions and responses to and from the terminal apparatus 100 and a shop terminal ST. The storage section 30 is implemented by a semiconductor memory element such as a random access memory (RAM) or a flash memory or a storage apparatus such as a hard disk or an optical disc, for example. The storage section 30 has a beacon log database 31, a shop database 32, a user database 33, and a reward database 34. The following describes an example of information registered in the beacon log database 31, the shop database 32, the user database 33, and the reward database 34 (hereinafter, may be collectively referred to as "databases 31 to 34") with reference to FIG. 3 to FIG. 6. The history of information on reception notifications, or logs, are registered in the beacon log database 31. FIG. 3 is a diagram of an example of information registered in the beacon log database 31 according to the embodiment, for example. In the example illustrated in FIG. 3, pieces of information such as "terminal ID", "beacon ID", and "reception date and time" are registered in the beacon log database 31. Any information, if the information is various kinds of information indicated by the beacon signal or information on the terminal apparatus 100 that has received the beacon signal, may be registered in the beacon log database 31 apart from the information illustrated in FIG. 3. "Terminal ID" is an identifier of the terminal apparatus 100 as a transmission source of reception notifications, that is, the terminal apparatus 100 that has received the beacon signal. "Beacon ID" is identification information indicated by the beacon signal received by the terminal apparatus indicated by associated "terminal ID". "Reception date and time" is information indicating a date and time at which the terminal apparatus 100 indicated by associated "terminal ID" has received the beacon signal containing the identification information indicated by associated "beacon ID". In the example illustrated in FIG. 3, pieces of information such as the terminal ID "terminal #1", the beacon ID "beacon #1", and the reception date and time "date and time #1" are registered in the beacon log database 31 in association with each other, for example. Such pieces of information indicate that the terminal apparatus indicated by the terminal ID "terminal #1" has received the beacon signal containing the beacon ID "beacon #1" at the reception date and time "date and time #1". Although the example illustrated in FIG. 3 describes conceptual values such as "terminal #1", "beacon #1", and "date and time #1", in reality, numerical values and character strings for identifying the terminal apparatus and the beacon signal and numerical values, character strings, and the like for indicating the date and time are registered. Various kinds of information on the shop S1 and the shop OS (hereinafter, may be collectively referred to as a "shop S") are registered in the shop database 32. FIG. 4 is a diagram of an example of the pieces of information registered in the shop database according to the embodiment, for example. In the example illustrated in FIG. 4, "shop ID", "shop information", "shop interior information", "state history", "estimated using state", "normal coupon information", "special coupon information", and "beacon ID" are registered in the shop database 32 in association with each other. Any information, if the information is information related to the shop S, may be registered in the shop database 32 apart from the information illustrated in FIG. 4. "Shop ID" is information for identifying the shop S. "Shop information" is information on the shop S indicated by associated "shop ID" and is information indicating various kinds of attributions on the shop S such as the location of the shop S, the opening hours of the shop S, the type of the shop S such as a restaurant or an office, and the average price range of the shop S. "Shop interior information" is information on the interior of the shop S indicated by associated "shop ID" and is information on capacity, tables, seats, and the like. "State history" is the history of information indicating the state of the shop S indicated by associated "shop ID" and is information such as the degree of congestion (a degree indicating congestion such as a seat occupancy rate, for example) or whether the shop S is at full occupancy. Such "state history" is acquired via the shop terminal ST installed in each shop S, for example. "Estimated using state" is information indicating the current state of the shop S estimated by the determination processing and is information such as the degree of congestion or whether the shop S is at full occupancy. "Normal coupon information" is various kinds of information on a normal coupon, which is a coupon issued by the shop S indicated by associated "shop ID", the coupon the information being opened to the user U1 all the time, which is the details and conditions of the coupon, for example. "Special coupon information" is various kinds of information on a coupon provided only when it is determined that the shop S indicated by associated "shop ID" is being compared with another shop, that is, a special coupon, which is the details and conditions of the special coupon, for example. When the conditions and details of the special coupon are automatically changed in accordance with the conditions and details of the normal coupon issued by the other shop S to be compared, the upper limit and the like of the details and conditions set as the special coupon are registered as "special coupon information". "Beacon ID" is the beacon ID of the beacon signal transmitted by the transmission apparatus installed in the shop S indicated by associated "shop ID". In the example illustrated in FIG. 4, the shop ID "shop #1", the shop information "shop information #1", the shop interior information "capacity: 50 persons, table: 2 persons×25 tables, . . . ", the state history "state history #1", the estimated using state "using state #1", the normal coupon information "coupon information #1", the special coupon information "special coupon #1", and the beacon ID "beacon #1" are registered in the shop database 32 in association with each other, for example. Such pieces of information indicate that information on the attribution of the shop S indicated by the shop ID "shop #1" is the shop information "shop information #1" and that the capacity is "50" persons, and "25" tables for "2" persons are installed as the shop interior information. Such pieces of information indicate that the state history acquired from the shop terminal ST of the shop S indicated by the shop ID "shop #1" is "state history #1" and that the estimated state of the shop is "using state #1". Such pieces of information indicate that the shop S indicated by the shop ID "shop #1" issues the normal coupon indicated by the normal coupon information "coupon information #1", that the shop S indicated by the shop ID "shop #1" issues "special coupon #1" as the special coupon when it is compared with the other shop S, and that the transmission apparatus that transmits the beacon signal containing the beacon ID "beacon #1" is installed. Although the example illustrated in FIG. 4 describes conceptual values such as "shop #1", "shop information #1", "state history #1", "using state #1", "coupon information #1", and "special coupon #1", in reality, character strings and numerical values for identifying the shop, character strings indicating the attribution and the like of the shop, character strings indicating the state, and character strings and numerical values indicating the conditions and details of the coupon are registered in the shop database 32. Various kinds of information on users are registered in the user database 33. FIG. 5 is a diagram of an example of the information registered in the user database according to the embodiment, for example. In the example illustrated in FIG. 5, "user ID", "terminal ID", "attribution information", "search history", "use history", and "use tendency" are registered in the user database 33 in association with each other. Any information, if the information is information on users, may be registered in the user database 33 apart from the information illustrated in FIG. 5. "User ID" is information for identifying the user. "Terminal ID" is a terminal ID of a terminal apparatus used by the user indicated by associated "user ID". "Attribution information" is information indicating the attribution of the user such as demographic attribution or psychographic attribution of the user indicated by associated "user ID". "Attribution information" may be information registered on the basis of input by the user and may be information estimated on the basis of the purchase history or the history of browsing web contents, the history of a search query, the position history, or the like of the user. "Search history" is the history of web search by the user indicated by associated "user ID" and is the history of the search query, for example. "Use history" is the use history of each shop S by the user indicated by associated "user ID" and is information on a shop used, a date and time used, the amount of money used, the number of people using the shop S, and the like. "Use history" may be information collected on the basis of the history of a point-of-sales (POS) terminal installed in each shop S, credit card payment, web payment, or the like. "Use tendency" is the tendency of the use mode of the shop S by the user indicated by associated "user ID" and is information on the type of the shop S used by the user frequently, an average number of people using the shop S, an average amount of money used, and the like, for example. In the example illustrated in FIG. 5, the user ID "user ID #1", the terminal ID "terminal #1", the attribution information "attribution #1", the search history "search history #1", the use history "use history #1", and the use tendency "use tendency #1" are registered in the user database 33 in association with each other, for example. Such pieces of information indicate that the user indicated by the user ID "user #1" is using the terminal apparatus 100 indicated by the terminal ID "terminal #1" and has the attribution indicated by the attribution information "attribution #1". Such pieces of information indicate that the history of the search query input by the user indicated by the user ID "user #1" is the search history "search history #1", that the use mode of the shop S used is the use history "use history #1", and that the tendency of the use mode when the shop S is used is the use tendency "use tendency #1". Although the example illustrated in FIG. 5 describes conceptual values such as "user #1", "terminal #1", "attribution #1", "search history #1", "use history #1", and "use tendency #1", in reality, character strings and numerical values for identifying the user and character strings and numerical values indicating the attribution, the search history, the use history, and the use tendency are registered in the user database 33. Information on check-in at the shop S or a reward set with the guidance of the user U1 to another shop as an impetus is registered in the reward database 34. FIG. 6 is a diagram of an example of the information registered in the reward database according to the embodiment, for example. In the example illustrated in FIG. 6, pieces of information such as "provision source ID", "provision destination ID", "occurring event", "occurring date and time", and "reward amount" are registered in the reward database 34. Any information, if the information is information on the reward, may be registered in the reward database 34 apart from the information illustrated in FIG. 6. "Provision source ID" is information indicating the provision source of the reward. "Provision destination ID" is information indicating the provision destination of the reward. Information indicating the shop ID of the shop S to be the provision source or the provision destination of the reward at the time of check-in or the operator of various kinds of services provided by the information provision apparatus 10 is registered in the reward database 34 as "provision source ID" or "provision destination ID", for example. "Occurring event" is information indicating an event causing the occurrence of the reward; information such as "customer sending" indicating that a user who visited a shop S1 is introduced to another shop OS1, and the user U has checked in at the shop OS1, "check-in" indicating that the user U1 has checked in at the shop S, or "incentive" to be provided to the user who has checked in is registered, for example. "Occurring date and time" is information indicating a date and time at which an event indicated by associated "occurring event" occurred. "Reward amount" is information indicating a reward amount to be paid from the provision source indicated by associated "provision source ID" to the provision destination indicated by "provision destination ID". In the example illustrated in FIG. 6, the provision source ID "shop #2", the provision destination ID "operator #1", the occurring event "customer sending", the occurring date and time "date and time #1", and the reward amount "reward amount #1" are registered in association with each other, for example. Such pieces of information indicate that the reward amount indicated by the reward amount "reward amount #1", the reward occurring on the ground of the event occurring at the date and time indicated by the occurring date and time "date and time #1", the event being indicated by the occurring event "customer sending" is paid from the shop indicated by the provision source ID "shop #2" to the operator indicated by the provision destination ID "operator #1". Although the example illustrated in FIG. 6 describes conceptual values such as "operator #1", "date and time #1", and "reward amount #1", in reality, character strings identifying the operator, numerical values and character strings for identifying the date and time, and numerical values indicating the reward amount, and the like are registered. Referring back to FIG. 2, the description thereof is continued. The controller 40 is a controller, for example, and is implemented by executing various kinds of computer programs stored in a storage apparatus within the information provision apparatus 10 with a storage area such as a RAM as a work area by a central processing unit (CPU), a micro processing unit (MPU), an application specific integrated circuit (ASIC), a field programmable gate array (FPGA), or the like. In the example illustrated in FIG. 2, the controller 40 has a reception section 41, a full occupancy determination unit 50, an information provision unit 60, a comparison coupon provision unit 70, and a stay privilege provision unit 80. The full occupancy determination unit 50 has an estimation section 51, a full occupancy determination section 52, an inquiry section 53, and a correction section 54. The information provision unit 60 has a shop state determination section 61, a search section 62, a shop information provision section 63, and a reward setting section 64. The comparison coupon provision unit 70 has a comparison state determination section 71 and a coupon provision section 72. The stay privilege provision unit 80 has an acquisition section 81, an identification section 82, a notification section 83, and a privilege provision section 84. The connection relation among the reception section 41, the estimation section 51, the full occupancy determination section 52, the inquiry section 53, the correction section 54, the shop state determination section 61, the search section 62, the shop information provision section 63, the reward setting section 64, the comparison state determination section 71, the coupon provision section 72, the acquisition section 81, the identification section 82, the notification section 83, and the privilege provision section 84 (hereinafter, may be referred to simply as "processing sections") of the controller 40 is not limited to the connection relation illustrated in FIG. 2 and may be another connection relation. The processing sections implement and execute functions and actions of the pieces of processing as described below (FIG. 1, for example); these are functional units organized for description and do not necessarily correspond to actual hardware elements or software modules. In other words, so long as the functions and actions of the following selection processing and guidance processing can be implemented and executed, the information provision apparatus 10 may implement and execute the selection processing and the guidance processing by any functional unit. The following describes the details of the selection processing implemented and executed by the processing sections with reference to flowcharts illustrated in FIG. 7 to FIG. 11. FIG. 7 is a flowchart of an example of a procedure of the determination processing executed by the information provision apparatus according to the embodiment. FIG. 8 is a flowchart of an example of a procedure of processing to correct a statistical model for use in the determination processing by the information provision apparatus according to the embodiment. FIG. 9 is a flowchart of an example of a procedure of the provision processing executed by the information provision apparatus according to the embodiment. FIG. 10 is a flowchart of an example of a procedure of the coupon provision processing executed by the information provision apparatus according to the embodiment. FIG. 11 is a flowchart of an example of a procedure of the privilege provision processing executed by the information provision apparatus according to the embodiment. The following first describes an example of the procedure of the determination processing with reference to FIG. 7. The reception section 41 receives a reception notification (Step S101), for example. In other words, from the terminal apparatus 100 having a notification function to output, when a user visits a certain facility, a notification that the user has visited the facility, the reception section 41 receives the notification. The reception section 41 receives a reception notification indicating the beacon ID corresponding to the shop S1 from the terminal apparatus 100 that has received the beacon ID corresponding to the shop S1, for example. The reception section 41 further receives information indicating the using state of the certain facility from the shop terminal ST installed in the certain facility. The reception section 41 receives the number of people entered in the shop, bill details, the number of users staying at the shop, and the like at any time from the shop terminal ST such as a point-of-sales (POS) terminal installed in the shop S1, for example. The reception section 41 may receive information taken by an infrared camera or a monitoring camera installed in the shop S1 and identify the using state of the shop S1 (the number of people using the shop S1 or the degree of congestion, for example) on the basis of the received information, for example. The estimation section 51 identifies a shop corresponding to the reception notification (Step S102). The estimation section 51 then estimates the number of users staying at the shop on the basis of a statistical relation between the history of the number of reception notifications corresponding to the identified shop and the history of the using state of the shop (Step S103). In other words, the estimation section 51 estimates the number of users who are visiting a certain facility from the number of reception notifications received in a certain period on the basis of the statistical relation between the history of the number of reception notifications and the history of the using state of the facility. The estimation section 51 refers to the shop database 32 to identify the beacon ID corresponding to a shop for which a statistical model is generated (the shop S1, for example), for example. Subsequently, the estimation section 51 extracts reception notifications containing the identified beacon ID from the beacon log database 31. Subsequently, the estimation section 51 reads the state history and the shop interior information of the shop S1 from the shop database 32 and generates a statistical model corresponding to the shop S1 on the basis of the number of the extracted reception notifications, the state history, and the shop interior information. The estimation section 51 estimates the number of users in each past time zone on the basis of the degree of congestion indicated by the state history and information on the capacity and tables indicated by the shop interior information, for example. Subsequently, the estimation section 51 generates an estimation model for estimating the number of users who are using the shop S1 from the number of reception notifications received in a certain time on the basis of the ratio between the estimated number of users and the number of reception notifications received in each time zone. For such an estimation model, any model such as a multiple regression model can be employed. Subsequently, the estimation section 51 counts the number of reception notifications indicating the beacon ID corresponding to the shop S1 among the reception notifications received within a certain period from the time of processing (the past one hour, for example). The estimation section 51 then estimates the number of users who are using the shop S1 at the time of processing using the counted number and the statistical model. In other words, the estimation section 51 estimates the number of users who are visiting the certain facility on the basis of the ratio between the number of notifications received in a certain time zone and the number of users who used a certain facility in the certain time zone. In other words, the estimation section 51, with the terminal apparatus 100 having the notification function as a probe, estimates the number of users who are actually using the shop S1 on the basis of the number of probes that visited the shop S1. The full occupancy determination section 52 determines whether a new user can use the shop S1 on the basis of an estimation result by the estimation section 51 (Step S104). More specifically, the full occupancy determination section 52 determines whether a new user can use the certain facility on the basis of a comparison result between the number of users estimated by the estimation section 51 and the number of users who can use the certain facility. The full occupancy determination section 52 compares the number of users of the shop S1 estimated by the estimation section 51 and the number of users who can use the shop S1 registered as the shop interior information (that is, "capacity") with each other, for example. When the number of users of the shop S1 estimated by the estimation section 51 exceeds the number of users who can use the shop S1 registered as the shop interior information, the full occupancy determination section 52 determines that the shop S1 is at full occupancy. When the ratio of the number of users estimated by the estimation section 51 to the number of users who can use the shop S1 exceeds a certain ratio (80%, for example), the full occupancy determination section 52 may determine that the shop S1 is at full occupancy, for example. The full occupancy determination section 52 may calculate the ratio of the number of users estimated by the estimation section 51 to the number of users who can use the shop S1 as the degree of congestion. The full occupancy determination section 52 then registers a determination result in the shop database 32 as an estimated using state (Step S105). The following describes an example of the procedure of the determination processing with reference to FIG. 1. As illustrated in FIG. 1, when the terminal apparatus 100 receives a beacon signal transmitted by the transmission apparatus B1, the information provision apparatus 10 receives a reception notification containing a beacon ID indicated by the beacon signal transmitted by the transmission apparatus B1 (Step S1), for example. The information provision apparatus 10 acquires a use mode in the shop OS (the number of users who have been using the shop OS, for example) from the POS terminal, the shop terminal ST installed in the shop, or the like (Step S2) and acquires the use mode of the shop from the shop S1 (Step S3). In such a case, the information provision apparatus 10 identifies the number of people using the shop S1 at a certain date and time from the acquired use history of each shop S and counts the number of reception notifications indicating the beacon ID corresponding to the shop S1 among the reception notifications received at the certain date and time. The information provision apparatus 10 then generates a statistical model based on the ratio between the number of reception notifications and the actual number of people using the shop (Step S4). The information provision apparatus 10 may generate a statistical model based on the ratio between the value of the degree of congestion and the number of reception notifications, for example. The information provision apparatus 10 then determines whether the shop is at full occupancy using the statistical model and registers a determination result (Step S5). The information provision apparatus 10 estimates the number of all users who are using the shop S1 using the statistical model from the number of reception notifications indicating the beacon ID corresponding to the shop S1 among the reception notifications received within a certain period (the past one hour, for example), for example. The information provision apparatus 10 then compares the estimated number of users and the number of users who can use the shop S1 with each other and determines whether the shop S1 is at full occupancy on the basis of a comparison result. After that, the information provision apparatus 10 registers a determination result in the shop database 32 as a state history. In other words, the information provision apparatus 10 estimates the number of users including users who use the terminal apparatus 100 that does not have the notification function from the number of customers who have checked in using the terminal apparatus 100 that has the notification function among the users staying at the shop S1 and determines whether the shop S1 is at full occupancy on the basis of an estimation result. In other words, the information provision apparatus 10 estimates whether the shop S1 is at full occupancy from the number of customers who have checked in. More specifically, the information provision apparatus 10 estimates a fullness/vacancy state from a fullness/vacancy state obtained from the shop terminal ST or the like and the statistics of the ratio between the number of seats of the shop and the number of users who have checked in. The following describes an example of the procedure of the processing to correct the statistical model for use in the determination processing with reference to FIG. 8. The inquiry section 53 determines whether the difference between the estimated number of users and the number of users who can use the shop S1 is within a certain range (Step S111). In other words, when the relation between the number of users estimated by the estimation section 51 and the number of users who can use the certain facility satisfies a certain condition, the inquiry section 53 inquires about the using state of the certain facility. If the difference between the estimated number of users and the number of users who can use the shop S1 is within the certain range (Yes at Step S111), the inquiry section 53 identifies a user who is using the shop S1 (Step S112) and inquires of the identified user (Step S113). The inquiry section 53 searches the beacon log database 31 for the terminal apparatus 100 serving as an output source of the reception notification indicating the beacon ID corresponding to the shop S1 to be processed, for example. More specifically, the inquiry section 53 identifies the terminal apparatus 100 serving as an output source of a reception notification with the latest reception date and time among the reception notifications indicating the beacon ID corresponding to the shop S1. The inquiry section 53 then inquires of the identified terminal apparatus 100 about the using state of the shop S1. When inquiring about the using state of the shop S1, the inquiry section 53 may make inquiry about any details. The inquiry section 53 may inquire about whether the shop S1 is at full occupancy, whether the shop S1 is congested, whether a new user can use the shop S1, or the like, for example. Such an inquiry may cause the terminal apparatus 100 to display buttons for performing stepwise responses such as "being at full occupancy", "being congested", and "not being congested" in order to easily obtain a response by a user as an inquiry destination. When the terminal apparatus 100 serving as the output source of the notification contributes certain information to a network, the inquiry section 53 may inquire about the using state of the certain facility, for example. When the terminal apparatus 100 contributes various things to a social networking service (SNS) or the like, it is estimated that the user is using the terminal apparatus 100 while holding it, for example. Given these circumstances, the inquiry section 53 may inquire about the congestion state of the shop S1 with the fact that the terminal apparatus 100 has contributed various things such as pictures and sentences to the SNS as an impetus. In contrast, if the difference between the estimated number of users and the number of users who can use the shop S1 is not within the certain range (No at Step S111), the inquiry section 53 then ends the processing. The correction section 54 performs correction on the statistical model on the basis of an inquiry result (Step S114). In other words, the correction section 54 corrects the statistical relation between the history of the number of reception notifications and the history of the using state of the facility, that is, the statistical model on the basis of the inquiry result by the inquiry section 53. Consequently, the estimation section 51 estimates the number of users who are visiting the certain facility on the basis of the relation corrected by the correction section 54. When a certain number of reception notifications are received, and when a response that the shop S1 is not congested is obtained as a result of the inquiry even though the number of people estimated by the estimation section 51 exceeds the number of people that can use the shop S1, the correction section 54 corrects the statistical model so as to reduce the number of users estimated when the number of reception notifications are received, for example. When a certain number of reception notifications are received, and when a response that the shop S1 is at full occupancy is obtained as a result of the inquiry even though the number of people estimated by the estimation section 51 is less than the number of people that can use the shop S1, the correction section 54 corrects the statistical model so as to increase the number of users estimated when the number of reception notifications are received. In other words, the information provision apparatus 10 inquires of a visitor who has checked in at the shop S1 about its fullness/vacancy state and obtains the fullness/vacancy state through a inquiry result. The information provision apparatus 10 corrects a statistical result by the relation between a determination result and the inquiry result. The following describes an example of the procedure of the provision processing with reference to FIG. 9. The reception section 41 receives a reception notification (Step S201). In other words, the reception section 41 receives a notification that a signal transmitted by a certain transmission apparatus installed in the first facility has been received from the terminal apparatus 100 used by a user. The shop state determination section 61 identifies the shop S1 corresponding to the beacon ID indicated by the reception notification (Step S202). The shop state determination section 61 determines whether the first condition about the using state of the identified shop S1 is satisfied (Step S203). In other words, the shop state determination section 61 determines whether the first condition is satisfied on the basis of the received notification. The shop state determination section 61 refers to the shop database 32 for the estimated using state of the shop S1 corresponding to the beacon ID and determines whether the shop S1 is at full occupancy as the first condition, for example. The shop state determination section 61 may determine whether any condition is satisfied so long as it is a condition about the using state of the shop corresponding to the beacon ID. The shop state determination section 61 may determine whether a time estimated to be required until the shop S1 corresponding to the beacon ID becomes able to be used exceeds a certain threshold as the first condition, for example. More specifically, when the estimated using state of the shop S1 indicates full occupancy, the shop state determination section 61 estimates a time until the shop S1 has vacancies on the basis of the state history. For such estimation, various kinds of methods of estimation can be employed. When the estimated time exceeds a certain threshold (15 minutes, for example), the shop state determination section 61 may determine that the first condition is satisfied. The shop state determination section 61 may estimate the time until the shop S1 has vacancies on the basis of changes in the degree of congestion registered as using state #1,an average staying time per user, or the like. Such a staying time may be calculated on the basis of the average of a time duration from a time at which the beacon signal of the shop S1 becomes to be received to a time at which it becomes not to be received or the like or calculated on the basis of information obtained from the shop terminal ST (a time from entry to bill payment, for example) or the like, for example. The time estimated to be required until the shop S1 becomes able to be used may be estimated on the basis of a time elapsed from a date and time at which each terminal apparatus 100 received the beacon signal of the shop S1, for example. The shop state determination section 61 may estimate the number of users who are using the shop S1 as users and determine whether there are vacancies that can be used by the estimated number of users as the first condition. The shop state determination section 61 refers to the user database 33 and estimates an average number of people when the user of the terminal apparatus 100 as the transmission source of the reception notification uses the shop, for example. Such a number of people may be estimated on the basis of a value obtained by dividing an amount of money used at the shop S visited by the user in the past by an average amount of money used in the shop S, for example. The shop state determination section 61 may determine whether there are vacancies that can be used by the estimated number of users from the shop information and the estimated using state and, when there are not such vacancies, determine that the first condition is satisfied. The shop state determination section 61 may determine whether the first condition is satisfied on the basis of the number of reception notifications received in a certain period before receiving a reception notification. When receiving a reception notification indicating the beacon ID of the shop S1 from the terminal apparatus 100 of the user U1, the shop state determination section 61 counts the number of reception notifications received in the past one hour, the reception notifications indicating the beacon ID of the shop S1, for example. When the counted number of reception notifications exceeds the capacity of the shop S1, the shop state determination section 61 may estimate that the shop S1 is at full occupancy and determine that the first condition is satisfied. In other words, the shop state determination section 61 may determine whether the user of the terminal apparatus 100 as the transmission source of the reception notification can immediately use the shop S1 and, when it is determined that the user cannot immediately use the shop S1, determine that the first condition is satisfied. If it is determined that the first condition is satisfied (Yes at Step S203), the search section 62 searches for a shop the relation with the identified shop S1 of which satisfies the certain second condition (Step S204). The search section 62 searches for a shop common to the shop S1 corresponding to the beacon ID indicated by the reception notification in shop kind or type or the shop OS the distance from the shop S1 of which falls within a certain range as the shop that satisfies the second condition, for example. In other words, the search section 62 searches for the other shop OS similar to the shop S1. When it is determined that the first condition is satisfied for the shop S1, the search section 62 reads the shop information of the shop S1 from the shop database 32, for example. The search section 62 then compares the read shop information with another shop information and searches for another shop located within a certain range (a radius of 100 meters, for example) of the shop S1, the other shop being the same as or similar to the shop S1 in shop type (the shop OS1, for example). The search section 62 may search for any shop that satisfies the second condition so long as it is at least a shop located within a certain range from the shop S1. The search section 62 may search for a shop similar to the shop S1 in any information related to the shop such as the type of foods and drinks provided, a genre, a price range, an average staying time of users, opening hours, the details of issued coupons, whether entry with one's children is allowed, whether carrying-in is allowed, and attractions registered in advance by the shop as the shop that satisfies the second condition, for example. The search section 62 may calculate a similarity score indicating the degree of similarity between the shop S1 and the shop OS1 with these pieces of information as elements and, when the calculated score exceeds a certain threshold, determine that the shop S1 and the shop OS1 are similar to each other. In other words, the search section 62 may search for any shop so long as it is a shop that satisfies the first condition, that is, a shop similar to a shop that cannot be immediately used by the user U1 or a shop that competes therewith. The search section 62 may search for a shop that can be immediately used by the user U1 as the second condition. The search section 62 may search for a shop of the same type ("Italian restaurant", for example) as the shop S1, the shop being located within a certain range from the shop S1 and the using state registered in the shop database 32 of which being not at full occupancy, for example. The search section 62 may search for a shop that matches the taste of the user U1. The search section 62 may search for a shop similar in type to shops frequently used by the user U1 on the basis of the various kinds of attributions of the user U1, for example. The shop information provision section 63 provides the user with the shop OS1 searched for (Step S205). The shop information provision section 63 distributes the name, the telephone number, the details and pictures of foods and drinks to be provided, the price range, the location, and the like of the shop OS1 to the terminal apparatus 100 of the user U1, for example. The shop information provision section 63 may distribute contents for reserving the shop OS1 together with the information on the shop OS1. In contrast, if it is determined that the first condition about the using state of the identified shop S1 is not satisfied (No at Step S203), the shop state determination section 61 does not perform searching for the shop that satisfies the second condition and the like. Subsequently, the reward setting section 64 sets various kinds of rewards (Step S206). When the user U1 visits the shop S1, the reward setting section 64 sets a certain reward amount for the operator from the shop S1 and registers various kinds of information in the reward database 34 such that the certain reward amount will be paid from the operator to the user with the reward amount as fund, for example. When an advertisement for the shop S1 is being distributed to the user U1, and when the user U1 visits the shop S1 and performs a certain check-in operation, the reward setting section 64 sets a certain reward amount for the operator from the shop S1 and sets a reward amount for the user from the operator, for example. When the user U1 who has visited the shop S1 is provided with the information on the shop OS1, and when the user U1 visits the shop OS1 (that is, when the user U1 visits the shop OS1 as the second facility), the reward setting section 64 sets a certain reward amount for the shop O1 from the shop OS1. When a check-in operation at the shop OS1 is performed (that is, when the user U1 actually visits the other recommended shop), the reward setting section 64 sets a certain reward amount for the shop O1 from the shop OS1, for example. In other words, the reward setting section 64 sets an affiliate fee from the second facility as a customer sending destination for the first facility as a customer sending source as a compensation for opportunity loss and the like. The following describes an example of the procedure of the provision processing with reference to FIG. 1. In the example illustrated in FIG. 1, the information provision apparatus 10 receives a reception notification from the terminal apparatus 100 (Step S6), for example. In such a case, the information provision apparatus 10 determines that the user U1 has visited the shop S1 from the beacon ID indicated by the reception notification and refers to the latest state history associated with the shop S1. The information provision apparatus 10 then determines whether the shop S1 is at full occupancy. Subsequently, when it is determined that the shop S1 is at full occupancy, the information provision apparatus 10 searches for a shop that is located close to the shop S1 and is similar to the shop S1 in type and identifies the shop OS1, which is an Italian restaurant being the same as the shop S1 (Step S7), for example. The information provision apparatus 10 then provides the terminal apparatus 100 with the information on the identified shop OS (Step S8). In other words, the information provision apparatus 10 determines the vacancy state of the shop S1 through check-in by the beacon signal and, when the shop S1 is at full occupancy, guides the user U1 to the other shop OS1, which is similar to the shop S1. When the shop S1 is at full occupancy and cannot be checked in, the information provision apparatus 10 recommends a shop that is close to the shop S1, has a vacancy, and meets the condition of the user U1 instead, for example. Thus, the information provision apparatus 10 visualizes the vacancy information of shops and user attribution using the beacon, matches the pieces of data to each other in real time, guides a user from a fully occupied shop to a shop having vacancies, and can thereby improve a conversion (e.g. success-to-visit) rate. In addition, the information provision apparatus 10 determines the number of customers in shops through check-in using the beacon and can digitize the vacancy stock information of each shop S in real time. Even when the first facility (the shop S1, for example) visited by the user U1 is at full occupancy, the information provision apparatus 10 can provide the user U1 with the information on the second facility (the shop OS1, for example) similar to the first facility, that is, a second shop estimated to be liked by the user and can thus cause the user to immediately enter the favorite facility. The information provision apparatus 10 can provide the user U1 with a check-in point even when the first facility is at full occupancy. The information provision apparatus 10 sends the user who visited the first facility at full occupancy to the second facility and thereby causes the second facility to provide the first facility with affiliate. Consequently, the first facility can prevent simple opportunity loss. The second facility can fill its vacancy. The operator of the information provision apparatus 10 can improve the satisfaction level of the user U1, improve the satisfaction level of facilities receiving the provision of services by the various kinds of processing, and achieve affiliate income and efficient elimination of vacancies. The operator can achieve an increase in cost per acquisition (CPA) caused by an decrease in the number of check-in. The following describes an example of the procedure of the coupon provision processing with reference to FIG. 10. The comparison state determination section 71 determines whether the user U1 is in a certain comparison state (Step S301). More specifically, the comparison state determination section 71 determines whether the user U1 is in a comparison state that compares a certain facility with another facility that competes with the certain facility. When the user visits the shop S1, and when the shop S1 is at full occupancy and cannot thus be used, the comparison state determination section 71 determines that the user U1 is in the comparison state, for example. As a more specific example, the comparison state determination section 71 identifies the shop S visited by the user U1 using the beacon ID indicated by the reception notification received from the terminal apparatus 100 of the user U1. In other words, when receiving the reception notification from the terminal apparatus 100 used by the user U1, the comparison state determination section 71 determines that the user U1 has visited a certain shop S corresponding to the beacon ID indicated by the reception notification. When the shop S is at full occupancy and cannot thus be used, it is estimated that a state whether the user U1 waits for a vacancy occurring in the shop S or moves to another shop, that is, the comparison state that compares a plurality of shops with each other is occurring. When the provision processing described above is performed, it is estimated that the user U1 has been provided with the information on the shop OS1, and that the comparison state that compares the shop S and the shop OS1 with each other is occurring. Given these circumstance, the comparison state determination section 71 estimates that when the shop S visited by the user U1 is at full occupancy and cannot thus be used, the user U1 is in the comparison state. The coupon provision section 72 provides the user U1 with a certain coupon about the certain facility, that is, the special coupon only when it is determined that the user U1 is in the comparison state. When the user U1 is in the comparison state that compares the shop S1 visited by the user U1 and the other shop OS1 with each other, the coupon provision section 72 provides the user U1 with the special coupon of the shop OS1 to be compared, for example. In other words, the coupon provision section 72 distributes the special coupon that is not distributed at normal times but provided only when the shop OS1 is compared with the other competing shop S1. If it is determined by the comparison state determination section 71 that the user U1 is in the comparison state between the shop S1 and the shop OS1 (Yes at Step S301), the coupon provision section 72 determines whether the special coupon of the shop OS1 is to be automatically set (Step S302). If it is determined that the special coupon of the shop OS1 is to be automatically set (Yes at Step S302), the coupon provision section 72 determines the details of the special coupon on the basis of the coupon details of the coupon of the shop S1 to be compared and the use mode of the user U1 (Step S303). The coupon provision section 72 provides the user U1 with a coupon as the special coupon with a more favorable condition than that of the coupon provided to the user U1 by the shop S1, for example. As a more specific example, when the normal coupon of the shop S1 is a "10% discount" coupon, the coupon provision section 72 sets a "20% discount" coupon as the special coupon of the shop OS1. The coupon provision section 72 may set a coupon with a looser use condition than that of the normal coupon of the shop S1 or the like, for example. When the normal coupon of the shop S1 can be used only on Saturdays and Sundays, the coupon provision section 72 may set the special coupon that can be used regardless of the day of the week as the coupon of the shop OS1, for example. The coupon provision section 72 may set the special coupon with the same details as those of the coupon provided to the user U1 by the shop S1. In other words, the coupon provision section 72 sets a coupon as the special coupon with details corresponding to the details of the coupon provided to the user U1 by the shop S1 to be compared with the shop OS1. The coupon provision section 72 may set the details of the special coupon not on the basis of the coupon set by the shop S1 as the normal coupon but on the basis of the details of a coupon acquired by the user U1 with the intention of using it among the coupons set by the shop S1. In other words, the coupon provision section 72 may provide the user U1 with a coupon as the special coupon with details corresponding to the details of a coupon that has been provided to the user U1 by the shop S1. The coupon provision section 72 may set the special coupon with any details within a range from the upper limit of a discount rate and conditions registered as the special coupon information by the shop OS1. In other words, the coupon provision section 72 provides the user U1 with a special coupon as the special coupon with details automatically set within a range set in advance by the shop OS1. The coupon provision section 72 provides the user U1 with the special coupon (Step S304). In contrast, if it is determined that the special coupon is not to be automatically set (No at Step S302), the coupon provision section 72 provides the user U1 with the registered special coupon (Step S304) and ends the processing. If it is determined that the user U1 is not in the comparison state (No at Step S301), the coupon provision section 72 then ends the processing without providing the user U1 with the special coupon. The following describes an example of the procedure of the coupon provision processing with reference to FIG. 1. The information provision apparatus 10 receives a reception notification (Step S9), for example. In such a case, the information provision apparatus 10 determines that the user U1 has visited the shop S1 from the beacon ID indicated by the reception notification and determines whether the shop S1 is in a comparison state with another shop (Step S10). The information provision apparatus 10 refers to the latest state history associated with the shop S1, for example. The information provision apparatus 10 determines whether the shop S1 is at full occupancy. When the shop S1 is at full occupancy, it can be estimated that the user U1 is in the comparison state that compares the shop S1 and the shop OS1 with each other. Given these circumstances, when the shop S1 is at full occupancy, and when the user U1 is provided with the information on the shop OS1, the information provision apparatus 10 identifies the special coupon set by the shop OS1. The information provision apparatus 10 then provides the user U1 with the special coupon of the shop OS1 (Step S11). In other words, the information provision apparatus 10 provides the user U1 with a real-time competition coupon as the special coupon provided only when the shops compete with each other in real time. The information provision apparatus 10 provides the user U1 with a coupon with the same condition as or a more favorable condition than that of a shop to be compared automatically on the basis of setting. The following describes an example of the procedure of the privilege provision processing with reference to FIG. 11. The acquisition section 81 acquires a use starting date and time at which a user U2 started the use of the shop S1 and a use ending date and time at which the user U2 ended the use of the shop S1, for example. The acquisition section 81 acquires the use starting date and time (Step S401), for example. As a more specific example, the acquisition section 81 acquires a date and time at which a reception notification that the beacon signal transmitted by the certain transmission apparatus B1 installed in the shop S1 was received from the terminal apparatus 100 used by the user U2 as the use starting date and time. When thus identifying the use starting date and time using the beacon signal, the acquisition section 81 may identify the use starting date and time using the information registered in the beacon log database 31. When identifying that the user U2 has visited the shop S1 using the beacon signal, the acquisition section 81 causes the terminal apparatuses 100 to display a timer and display a message that prompts a clerk to perform a starting operation on the timer, for example. The acquisition section 81 may set a date and time at which the clerk of the shop S1 performed the staring operation on the timer as the use starting date and time. Subsequently, the identification section 82 identifies a use ending date and time at which a privilege can be provided (Step S402). More specifically, the identification section 82 identifies a use ending date and time at which a certain privilege is provided on the basis of the acquired use starting date and time. When the user U2 is provided with a certain point when the using period in the shop S1 by the user U2 is 2 hours or shorter, the identification section 82 identifies a date and time 2 hours after the use starting date and time as the use ending date and time at which a privilege can be provided, for example. Subsequently, the notification section 83 notifies the user U2 of the use ending date and time identified by the identification section 82 (Step S403). The notification section 83 causes the terminal apparatus 100 of the user U2 to display the use ending date and time identified by the identification section 82 and display a button to acknowledge leaving by the date and time in advance and a button not to acknowledge it, for example. When the user U2 selects the button to acknowledge leaving by the use ending date and time in advance, the notification section 83 determines that the user U2 has acknowledged leaving by the use ending date and time in advance. Subsequently, the acquisition section 81 acquires the use ending date and time (Step S404). The acquisition section 81 may acquire a date and time at which the terminal apparatus 100 of the user U2 becomes not to receive the beacon signal of the shop S1 as the use ending date and time, for example. When receiving a notification of a date and time at which the user U2 paid the bill or a notification of a date and time at which the user U2 left the shop S1 from the shop terminal ST installed in the shop S1, the acquisition section 81 may acquire the date and time as the use ending date and time, for example. In other words, the acquisition section 81 may acquire the use starting date and time and the use ending date and time using any method so long as it acquires a date and time at which the user U2 started the use of the shop S1 as the use starting date and time and acquires a date and time at which the user U ended the use of the shop S1 as the use ending date and time. The privilege provision section 84 provides the user U2 with a certain privilege in accordance with the using period, which is a period from the use starting date and time to the use ending date and time. The privilege provision section 84 determines whether the using period from the use starting date and time to the use ending date and time is a certain threshold or shorter (Step S405), for example. If it is determined that the using period is the threshold or shorter (Yes at Step S405), the privilege provision section 84 determines whether there is prior approval for a notification (Step S406). If there is no prior approval (No at Step S406), the privilege provision section 84 provides the user U2 with the certain privilege (Step S407). In contrast, if there is prior approval (Yes at Step S406), the privilege provision section 84 provides the user U2 with an extra privilege, the privilege details of which are increased than the certain privilege (Step S408). In other words, if the using period is the certain threshold or shorter, the privilege provision section 84 provides the user U2 with the privilege. When the user U2 approves the end of the use of the shop S1 at the use ending date and time notified of by the notification section 83 and ends the use of the shop S1 by the use ending date and time, the privilege provision section 84 provides the user U2 with an additional privilege together with the certain privilege. In contrast, if it is determined that the using period exceeds the certain threshold (No at Step S405), the privilege provision section 84 ends the processing without providing the user U2 with any privilege. The following describes an example of the procedure of the privilege provision processing with reference to FIG. 1. The information provision apparatus 10 acquires the use starting date and time of the user U2 who is using the shop S1 (Step S12), for example. The information provision apparatus 10 calculates a use ending date and time at which a privilege is provided (Step S13). The information provision apparatus 10 notifies the user U2 of the calculated use ending date and time at which a privilege is provided (Step S14). The information provision apparatus 10 acquires the use ending date and time of the user U2 (Step S15). The information provision apparatus 10 acquires a date and time at which the user U2 leaves the shop S1 as indicated by OT in FIG. 1, and the terminal apparatus 100 of the user U2 becomes not to receive the beacon signal of the beacon ID corresponding to the shop S1 as the use ending date and time, for example. The information provision apparatus 10 calculates the using period from the use starting date and time and the use ending date and time acquired and determines whether the calculated using period satisfies a certain condition (Step S16). The information provision apparatus 10 determines whether the using period is within 2 hours, for example. When the using period satisfies the certain condition, the information provision apparatus 10 provides the user U2 with the certain privilege (Step S17). As described above, the information provision apparatus 10 provides a privilege corresponding to an entry time and a leaving time. In other words, the information provision apparatus 10 provides a user with a leaving timing coupon corresponding to leaving timing. As a result of such processing, the information provision apparatus 10 can return business effects corresponding to the use scale, the staying time, and the like of the shop S1 to users and facilitate users desired by the shop S1 to visit the shop S1. The information provision apparatus 10 receives from the user U2 in advance an operation to express an intention to leave the shop S1 at the use ending date and time at which a privilege is provided. On top of that, when the user U2 actually leaves the shop S1 by the use ending date and time notified of, the information provision apparatus 10 provides the extra privilege. Thus, the information provision apparatus 10 receives the prior approval or provides the user U2 with the privilege according to the using period and can thereby estimate future vacancy stock (eight vacancies one hour later, for example) and achieve reservation reception according to an estimation result. The information provision apparatus 10 according to the embodiment described above may be performed in various different modes other than the embodiment. The following describes other embodiments of the information provision apparatus 10. The following first describes various modifications of the determination processing described above. In the above description, the information provision apparatus 10 generates the statistical model that statistically estimates the number of users from the number of reception notifications for each shop S and estimates the number of users from the number of reception notifications received in the certain time using the generated statistical model. However, embodiments are not limited to this example. When the shop S1 and the shop OS1 are shops positioned close to each other and share the same shop type "Italian restaurant", it is estimated that the numbers of users who use the shop S1 and the shop OS1 are similar to each other, for example. When the shop S1 and the shop OS1 are similar to each other in an average price range used, or when they are similar to each other in evaluation contributed to the Internet, it is estimated that the numbers of users who use the shop S1 and the shop OS1 are more similar to each other. Given these circumstances, the estimation section 51 may estimate the number of users who are visiting the shop S1 on the basis of a statistical relation between the history of the number of notifications received from the terminal apparatus 100 of the user that has visited the shop OS1 similar to the shop S1 and the history of the using state of the shop OS1, for example. In other words, the information provision apparatus 10 may estimate the number of users who are visiting the shop S1 using a statistical model that estimates the number of users in the shop OS1. The information provision apparatus 10 may use a statistical model for shops similar to each other in shop type or shop attribution. The information provision apparatus 10 generates a statistical model that estimates the number of users of the shop S1 on the basis of the histories of the numbers of reception notifications that the beacon signal indicating the shop S1 was received and reception notifications that the beacon signal indicating the shop OS1 was received and the history of the using state of the shop S1, for example. The information provision apparatus 10 may estimate the number of users of the shop S1 on the basis of the number of reception notifications received in a certain time, the reception notifications indicating either the beacon signal indicating the shop S1 or the beacon signal indicating the shop OS1. In other words, the information provision apparatus 10 may estimate, on the basis of the number of check-in performed on similar facilities at the same time, the number of users of any facility among the facilities. Using such an estimation model, the information provision apparatus 10 can improve the accuracy of estimating the number of users. The information provision apparatus 10 may select similar facilities on the basis any standard. The information provision apparatus 10 may set similar facilities on the basis of any standard such as facilities close to each other, facilities similar to each other in use modes such as the amount of money used, a using time, and the number of people using the facility, facilities similar to each other in evaluation, facilities similar to each other in shop type such as the type of foods and drinks provided, and facilities similar to each other in the scale of shops or a combination of these standards, for example. The information provision apparatus 10 may generate a statistical model on the basis of a statistical relation between the number of check-in at similar facilities and the using state of any facility included in these facilities and estimate the number of people using the facility using the generated statistical model. The information provision apparatus 10 may regard a plurality of similar facilities as one facility, generate a statistical model, and estimate the number of people using all the facilities on the basis of the total of the number of users who have checked in at each of the facilities. The information provision apparatus 10 may use a statistical model for each day or time zone. On the basis of a statistical relation between the history of reception notifications received at a date and time having certain commonness with a determination date and time at which it is determined whether a new user can use the shop S1 and the history of the using state of the shop S1 at the date and time, the estimation section 51 may estimate the number of users who are visiting the facility of the shop S1 at the determination date and time, for example. The information provision apparatus 10 generates a statistical model for Monday on the basis of the number of users who checked in at the shop S1 on Monday and the history of the using state on Monday, for example. When estimating the number of users of the shop S1 on Monday, the information provision apparatus 10 may estimate the number of users of the shop S1 from the statistical model on Monday on the basis of the number of reception notifications received in a certain time, that is, the number of check-in performed. The information provision apparatus 10 may generate a statistical model for, not only a day of the week, each time zone such as daytime or nighttime, each month, each season, or each weather and estimate the number of users using the statistical model corresponding to time zone, season, weather, or the like when estimating the number of users. When the user U1 who has checked in at the shop S1 also checks in at the shop OS1 five minutes later or the like, it is estimated that the shop S1 was at full occupancy. Given these circumstances, when the number of users who visited the shop S1 and then visited the other shop OS1 within a certain time exceeds a certain threshold, the information provision apparatus 10 may determine that the shop S is at full occupancy regardless of the estimated number of users. When the number of terminal apparatuses 100 that have output a reception notification indicating visit to another facility for a lapse of a certain time after outputting a reception notification indicating visit to a certain shop exceeds a certain number, the shop state determination section 61 may determine that a new user cannot use the certain shop regardless of the estimation result, for example. When a plurality of terminal apparatuses 100 that output a reception notification indicating visit to the shop S output a reception notification indicating visit to another shop S continually for a lapse of a certain time, the information provision apparatus 10 may determine that a new user cannot use the shop S. The information provision apparatus 10 may correct the statistical model on the basis of such a determination result. The information provision apparatus 10 may perform determination corresponding to the use history of a user. It is considered that the use history of each shop S by the user U1 shows tendencies of using the shop S by the user U1 such as whether the user U uses the shop alone or uses the shop in a group and an average using time, for example. Such tendencies of using the shop S by the user U1 can be indicators when it is determined whether the user U1 can use the shop S visited by the user U. When the user U uses the shop S in a group of ten on average, and when there are only two vacancies in the shop S, the user U cannot use the shop S, for example. Given these circumstances, the information provision apparatus 10 determines whether the user U1 can use the shop S on the basis of the history of the use mode of the shop S by the user U1 and the estimation result. The information provision apparatus 10 estimates the tendency of the use mode of the shop OS1 common to the shop S1 to be determined in type on the basis of the history of the use mode of the shop S by the user U1 and determines whether the user U1 can use the shop S1 on the basis of the estimated tendency and the estimation result, for example. In other words, when the user U uses the shop S1, it is estimated that its use mode is similar to the use mode of the shop OS1 similar to the shop S1. Given these circumstances, the information provision apparatus 10 estimates a use mode when the user U1 used the shop OS1 from the use history and determines whether the user U1 can use the shop S1 on the basis of the estimated tendency and the estimated number of people using the shop S1. The information provision apparatus 10 estimates an average number of people when the user U1 uses the shop OS1 from the history of the use mode of the shop OS1 by the user U1 and determines whether the user U1 can use the shop S1 on the basis of the estimated number of people and the estimated number of people using the shop S1, for example. When the user U1 visits the shop S1, the information provision apparatus 10 identifies a shop similar to the shop S1 used by the user U1 (the shop OS1, for example) from the use history of various kinds of shops S by the user U1 and identifies the amount of money used of the user U1 in the identified shop and the average amount of money used of the shop, for example. The information provision apparatus 10 divides the amount of money used of the user U1 in the identified shop by the average amount of money used of the shop to estimate the number of people using the shop OS when the user U1 uses the shop OS similar to the shop S1. For a plurality of shops OS similar to the shop S1, the information provision apparatus 10 may estimate the number of people using each shop OS and calculate the average of the estimated number of people using the shops. The information provision apparatus 10 may estimate the number of users who can newly use the shop S1 from the number of users estimated for the shop S1 and, when the number of people using the shop, which is similar to the shop S1 and is intended to be used by the user U1, is larger than the number of users who can newly use the shop S1, determine that the user U1 cannot use the shop S1. The information provision apparatus 10 may determine whether a new user can use the shop S in accordance with the attribution of the shop S. When each table installed in the shop S is being used by one user, it may be at full occupancy, for example. However, when the shop S permits table sharing during lunchtime or the like, it is considered that a new user can use the shop S also in such a case. Given these circumstances, the information provision apparatus 10 may determine whether a new user can use the shop S on the basis of information on the tables installed in the shop S, whether the shop S enables table sharing, and the estimated number of people using the shop S. The information provision apparatus 10 determines whether all the tables installed in the shop S are being used using the history of check-in, information acquired from the shop terminal ST, and the like, for example. When all the tables installed in the shop S are being used, and when the shop S is registered to enable table sharing at the time of determination (lunchtime, for example), the information provision apparatus 10 determines whether the estimated number of people using the shop S is the capacity of the shop S or less. When the estimated number of people using the shop S is less than the capacity of the shop S, the information provision apparatus 10 may determine that table sharing is enabled and determine that a new user can use the shop S. The information provision apparatus 10 may determine whether the user U1 can newly use the shop S1 on the basis of the history of the use mode of each shop S by the user U1, conditions related to the use of the shop S1, and the estimated number of people using the shop S1. The information provision apparatus 10 performs matching between user conditions (an average number of people using the shop S1, an average amount of money used, or an average using period, for example) desired by the shop S1 and the use mode based on the use history of the user U to calculate the degree of matching between the user U1 and the shop S1, for example. For such a degree of matching, various kinds of method of score calculation can be applied. When the number of people using the shop S1 exceeds a certain threshold (exceeds 80% of the capacity, for example), the information provision apparatus 10 may determine that the user U1 can use the shop S1 only when the degree of matching exceeds a certain threshold. The information provision apparatus 10 may provide the user U1 with such a determination result. When a user who made an inquiry responds, the information provision apparatus 10 may provide the user with a certain reward. When inquiring of the user U2 about the degree of congestion of the shop S1, and when the user U2 responds to the inquiry, for example, the information provision apparatus 10 may provide points to the user U2 or change the threshold to be compared with the using period in the privilege provision processing, for example. More specifically, when the user U2 responds to the inquiry, the information provision apparatus 10 may extend the using period that can provide a privilege from 2 hours to 3 hours. The following describes various kinds of modifications of the provision processing described above. In the description of the provision processing described above, the information provision apparatus 10 determines whether the shop S1 visited by the user U is at full occupancy, whether the degree of congestion of the shop S1 exceeds the certain threshold, or the like as the first condition. However, embodiments are not limited to these examples. The information provision apparatus 10 may determine whether there are some waiting users in the shop S1 or whether the number of the waiting users in the shop S1 exceeds a certain threshold as the first condition and, when there are some waiting users in the shop S1 or when the number of the waiting users in the shop S1 exceeds the certain threshold, provide the user U1 with information on the other shop OS, for example. When the number of people using the shop S1 estimated by the determination processing described above exceeds the capacity of the shop S1, the information provision apparatus 10 determines that waiting users WU exist as illustrated in FIG. 1, for example. When the waiting users WU exist, the information provision apparatus 10 may provide the user U1 with the information on the other shop OS. When the number of the waiting users WU exceeds the certain threshold, the information provision apparatus 10 may provide the user U1 with the information on the other shop OS. Even when the waiting users WU exist, and when the average using time of the shop S1 is short, it is considered that the user U1 does not wait for a very long time. Given these circumstances, the information provision apparatus 10 may determine whether the using state of the shop S1 satisfies the first condition corresponding to the use mode of the shop S1. When the average using time of the shop S1 falls below a certain threshold, although the shop S1 is at full occupancy, the information provision apparatus 10 does not necessarily provide the user U1 with the information on the other shop, for example. When the average using time of the shop S1 falls below a certain first threshold (30 minutes, for example), although the shop S1 is at full occupancy, or when the average using time of the shop S1 falls below a second threshold shorter than the first threshold (15 minutes, for example), although there are some waiting users in the shop S1, the information provision apparatus 10 does not necessarily provide the user U1 with the information on the other shop. The information provision apparatus 10 may estimate the number of the waiting users WU and, when the using time of the shop S1 falls below a threshold corresponding to the estimated number of the waiting users WU, that is, a threshold that becomes smaller as the number of the waiting users WU increases, does not necessarily provide the user U1 with the information on other shop. The information provision apparatus 10 may determine whether the first condition corresponding to the attribution of the user U1 is satisfied. The information provision apparatus 10 estimates a waiting time permitted by the user U on the basis of the behavior history and use history of the user U1, information registered in advance by the user U1, and the like, for example. When it can be estimated that a waiting time when the shop S1 is used exceeds the estimated waiting time, the information provision apparatus 10 may provide the user U1 with the information on the other shop OS. The information provision apparatus 10 may calculate a score based on the various kinds of conditions described above, that is, a score corresponding to a time until the user U1 uses the shop S1 and set whether the calculated score exceeds a certain threshold as the first condition. Such a score may be calculated in accordance with whether the shop S1 is at full occupancy, whether there are some waiting users WU, the number of the waiting users WU, an average using time in the shop S1, a waiting time permitted by the user U1, or the like. Similarly, also for the second condition, the information provision apparatus 10 may calculate a score indicating similarity between the shop S1 and the shop OS1 and determine whether the calculated score exceeds a certain threshold. In the description of the provision processing described above, when the shop S1 visited by the user U1 satisfies the certain first condition (when the shop S1 is at full occupancy, for example), the information provision apparatus 10 introduces a shop the relation with the shop S1 of which satisfies the second condition (a shop similar to the shop S1 in shop type or shop attribution such as the shop OS1, which is an Italian restaurant being the same as the shop S1, for example). However, embodiments are not limited to this example. Even when the shop OS1 is introduced to the user U1, when the shop OS1 is at full occupancy, the user U1 is adversely impressed, for example. Given these circumstances, the information provision apparatus 10 may introduce a shop S the using state of which satisfies a third condition among shops S that satisfy the second condition to the user U1. The information provision apparatus 10 may introduce a shop S that is not at full occupancy among shops S similar to the shop S1 as the shop S that satisfies the third condition, for example. As a more specific example, the information provision apparatus 10 may introduce a shop S determined to be not at full occupancy by the determination processing described above to the user U1. Similarly to the first condition described above, when the waiting time of the shop OS1 falls below a certain threshold or the waiting time permitted by the user U1 or the like, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1. The information provision apparatus 10 may set the second condition in accordance with the distance between the shop S1 and the shop OS1. When the distance from the shop S1 to the shop OS1 exceeds a certain threshold, the information provision apparatus 10 estimates a moving time to the shop OS1, for example. When a time obtained by subtracting the moving time to the shop OS1 from a time in which a vacancy is estimated to occur in the shop OS1 falls below the waiting time permitted by the user U1, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1. The information provision apparatus 10 may set the third condition based on the use mode of the user U1. The information provision apparatus 10 estimates an average number of people using the shop S when the user U1 uses the shop S on the basis of an average amount of money used when the user U1 uses the shop S and an average amount of money used of the shop S used by the user U1 as described above, for example. The information provision apparatus 10 may determine whether there are vacancies corresponding to the estimated number of people in the shop OS1 and, when it is determined that there are vacancies, provide the user U1 with the information on the shop OS1. Also for the third condition, the information provision apparatus 10 may calculate a score corresponding to the various kinds of using states of the shop OS1 (whether it is at full occupancy, the number of the waiting users WU, or an average using time, for example) and determine whether the calculated score exceeds a certain threshold. The information provision apparatus 10 may search for the second facility that further satisfies a certain fourth condition according to the use history of shops by the user U1. The information provision apparatus 10 may search for a shop S the preregistered average estimated price of which falls within the average amount of money used when the user U1 uses the shop S and a certain range as the shop that satisfies the fourth condition, for example. The information provision apparatus 10 may estimate an average staying time when the user U1 uses the shop S (that is, whether the user U1 stays for a long time) and search for a shop S the preregistered staying time of which falls within the average staying time of the user U1 and a certain range as the shop S that satisfies the fourth condition. In other words, when the tendency of the use mode of the shop S by the user U1 matches a condition designated by the shop OS1, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1. In other words, the information provision apparatus 10 may provide each user U with information on the shop on the basis of information such as the number of visiting people on the basis of a past visiting history, a price range, or a time required for meal (a time predicted from a past average record, the attribution of the user U1, the attribution of the shop S1, or the like) on the basis of a condition whether the information matches condition designation from the shop. Such a tendency of the use mode may be registered in advance by the user U1. Also for the fourth condition, the information provision apparatus 10 may calculate a score corresponding to the degree of matching between the use mode of the shop S by the user U1 and the using state of the shop OS1 and determine whether the calculated score exceeds a certain threshold. The information provision apparatus 10 may calculate a score that comprehensively determines the second condition, the third condition, and the fourth condition described above. In other words, for the shop OS1, the information provision apparatus 10 may calculate a score corresponding to the degree of similarity with the shop S visited by the user U1, whether the shop OS1 is at full occupancy or the number of the waiting users WU, the degree of matching with the use mode of the user U based on the use history of the user U, or the like and determine whether the calculated score exceeds a certain threshold. In other words, the information provision apparatus 10 sets the third condition and the fourth condition to perform comparison (matching) between the shop OS similar to the shop S1 when viewed from a user and a user having a use tendency welcomed by the shop OS. Consequently, the information provision apparatus 10 can send a user in a more appropriate manner. When providing the user U1 with the information on the shop OS1, the information provision apparatus 10 may receive a reservation for the shop OS1. The information provision apparatus 10 may provide the user U1 with contents for reserving the shop OS1 (that is, contents for making an instant reservation) together with the information on the shop OS1, for example. When the user U1 makes an instant reservation for the shop OS1, the information provision apparatus 10 may notify the reserved shop OS1 of the fact that a reservation has been made, for example. In such a case, the shop OS1 may update its vacancy stock in real time. When the instant reservation has been made, the information provision apparatus 10 may regard the user U1 as having checked-in at the shop OS1 and execute various kinds of processing. When the user U1 makes an instant reservation, the information provision apparatus 10 may provide the user U1 with a certain privilege such as points or coupons that can be used in the shop S1 as a customer sending source or the shop OS1 as a customer sending destination. To prevent getting points and coupons and escaping, the information provision apparatus 10 may provide a privilege that can be used only on the spot. The information provision apparatus 10 may provide the user U1 with points or coupons that can be used at the shop OS1 as a customer sending destination only at the time of reservation therefor, for example. When the shop S1 satisfies the first condition not only at the timing when the user U1 actually visits the shop S1 but also at the timing when the user U1 is about to visit the shop S1, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1. When it is estimated that the user U1 is moving toward the shop S1, or when it is estimated that the user U1 has entered a certain range from the shop S1 using the history of the positional information of the user U1 provided with the information on the shop S1 or the beacon signal received by the terminal apparatus 100, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1, for example. The information provision apparatus 10 may change timing to provide the user U1 with the information on the other shop OS1 in accordance with the using state of the shop S1. When it is determined that the shop S1 is at full occupancy, the information provision apparatus 10 provides the user U1 with the information on the shop OS1 at the timing when the distance between the user U1 and the shop S1 becomes shorter than a first threshold, for example. When the shop S1 is at full occupancy, and when the number of the waiting users WU exceeds a certain threshold, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1 at the timing when the distance between the user U1 and the shop S1 becomes shorter than a second threshold, which is longer than the first threshold. Such timing to provide the user U1 with the information on the shop OS1 may be determined in accordance with the distance between the user U1 and the shop S1, the time required for the user U1 to move to the shop S1, the current position of the user U1, the determination date and time, or the like, and any threshold can be employed. The information provision apparatus 10 may identify a route from the current position of the user U1 to the shop S1 and provide the user U1 with the information on the shop OS1 at a position that can be a branch point leading to the shop OS1 in the identified route, for example. In other words, the information provision apparatus 10 may control timing to introduce the shop OS1, conditions to be introduced, or details to be introduced as appropriate from various kinds of information that can be acquired via the terminal apparatus 100 or the shop terminal ST. When the information (coupons, for example) on the shop S1 has been issued to the user U1, the information provision apparatus 10 may provide the user U1 with the information on the shop OS1 at least after causing the user U1 to move to the shop front of the shop S1, for example. The information provision apparatus 10 may provide the user U1 with the information on the shop OS1 after causing the user U1 to move to the shop front of the shop S1 only when the distance from the shop S1 to the shop OS1 is within a certain threshold. When the shop OS1 is at full occupancy, the information provision apparatus 10 may further introduce the other shop OS similar to the shop OS1. In other words, the information provision apparatus 10 may repeatedly execute the processing described above. The information provision apparatus 10 may change a reward amount in accordance with an order in which shops have been introduced, for example. When providing a user who has moved from the shop S1 to the shop OS1 with information on a shop OS2 different from the shop OS1, the information provision apparatus 10 does not necessarily set a reward for customer sending for the shop OS1, for example. The following describes various modifications of the coupon provision processing described above. In the description of the coupon provision processing described above, it is determined that the user U1 is in a using state when the user U1 who has visited the shop S1 is provided with the information on the shop OS1. However, embodiments are not limited to this example. The comparison state determination section 71 may determine that the user U1 is in the comparison state when the user U1 cannot use the shop S1 when the user U1 visits the shop S1 the coupon of which has been provide to the user U1, for example. In other words, the comparison state determination section 71 may determine that the user U1 is in the comparison state when the user U1 cannot use the shop S1 visited in expectation of the use of the coupon. The information provision apparatus 10 may identify the shop OS of the same type as the shop S1 (that is, the shop OS similar to the shop S1) as the other shop OS competing with the shop S1 and determine whether the user U1 is in the comparison state that compares the shop S1 and the identified shop OS with each other. The information provision apparatus 10 may identify the shop OS located within a certain range from the shop OS1 as the other shop OS competing with the shop S1 and determine whether the user U1 is in the comparison state that compares the shop S1 and the identified shop OS with each other. The information provision apparatus 10 may determine that the user U1 is in the comparison state only when the shop OS1 the information of which has been provided to the user U1 and the shop S1 are similar to each other, or when the shop S1 and the shop OS1 are located within a certain range, for example. In other words, the information provision apparatus 10 may regard shops S similar to each other or located within a certain range as shops S competing with each other and determine whether the user U1 is in the comparison state that compares the competing shops S with each other. When there are a plurality of shops that are compared with the shop S1 and compete with the shop S1, the information provision apparatus 10 provides the user U1 with the special coupons issued by the individual competing shops. The information provision apparatus 10 may make only one special coupon selected by the user U1 able to be used among the provided special coupons and provide the user U1 with only information on the shop S corresponding to the selected special coupon. In other words, in the provision processing described above, the information provision apparatus 10 may provide the user U1 with the special coupons of the individual shops OS before providing the user U1 with the information on the shop OS different from the shop S1 visited by the user U1 and provide the user U1 with only information on the shop OS corresponding to the special coupon selected by the user U1. When the user U1 selects the provided special coupon, that is, when the user U expresses an intention to use the special coupon, the information provision apparatus 10 continues to provide the user U with the special coupon. In other words, when the user U1 selects the provided special coupon, the information provision apparatus 10 maintains the special coupon at a state that can be referred to by the user U1 until the special coupon is used even when the comparison state is cleared. The information provision apparatus 10 may set the details of the special coupon on the basis of any information other than the information on the coupon issued by the shop S1 as a customer sending source. The information provision apparatus 10 may provide the user U1 with the special coupon with details corresponding to the attribution of the user U1, for example. When providing the user U1 with the special coupon of the shop OS1, the information provision apparatus 10 may estimate the use mode of the shop OS1 by the user U1 on the basis of the use history of each shop S by the U1 and provide the user U1 with the special coupon with details corresponding to the estimated use mode. The information provision apparatus 10 estimates the amount of money used or a using time when the user U1 uses the shop OS1, for example. The information provision apparatus 10 estimates the amount of money used or a using time when the user U1 uses the shop OS. Such estimation can be achieved on the basis of the use history of each shop S by the user U1 as described above. The information provision apparatus 10 may estimate the use mode of the shop OS1 by the user U1 on the basis of the use history of the shop S similar to the shop OS1 in the history using the shop OS by the user U1, for example. The information provision apparatus 10 sets the details of the special coupon on the basis of the estimated use mode itself or a matching result between the estimated use mode and conditions registered in advance by the shop OS1. When the estimated amount of money used or number of people using the shop OS1 exceeds a certain threshold, when the using time falls below a certain threshold, or the like, the information provision apparatus 10 may set the special coupon with a more favorable condition (that is, a coupon with a large benefit for the user U1), for example. In other words, the information provision apparatus 10 may set the special coupon with a more favorable condition in accordance with the use record (an actual unit price or a staying time, for example) of the shop S. The information provision apparatus 10 may set the details of the special coupon in accordance with whether the estimated use mode satisfies conditions such as the threshold of the amount of money used, the threshold of the number of people using the shop OS1, and the threshold of the using time set by the shop OS1. It is considered that customers decrease in rainy days or the like. Given these circumstances, the information provision apparatus 10 may set the special coupon as the special coupon with the details corresponding to information on weather. The information provision apparatus 10 may acquires weather information from a certain server apparatus and set the details of the special coupon in accordance with weather, atmospheric temperature, and the like indicated by the acquired weather information, for example. The information provision apparatus 10 may set the details of the special coupon automatically on the basis of the setting of the other shop S positioned around the shop OS1 that provides the user U1 with the special coupon. When the majority of the other shops S positioned around the shop OS1 issue a 20% discount coupon, the information provision apparatus 10 may set the special coupon with 20% discount similarly, for example. The information provision apparatus 10 may perform weighting on the details of the coupons set by the other shops S positioned around the shop OS1 according to the distance from the shop OS1 and set the details of the special coupon on the basis of the result of weighting. The information provision apparatus 10 may estimate the presence or absence of a tendency to move to the shop S introduced by the provision processing described above from the behavior history of the user U1 and, when it is estimated that there is a tendency to move to the introduced shop S, provide the user U1 with the special coupon with a further more favorable condition. The information provision apparatus 10 may count the number of times the user U1 visited the shop introduced by the provision processing described above and, when the counted number of times exceeds a certain threshold, provide the user U1 with the special coupon with a more favorable condition together with information on the shop S, for example. Such setting of the special coupon can be achieved by changing application conditions such as free provision of a certain article, tax-included and before-tax prices, the number of people, a day, a time zone, a discount rate, and being limited to rainy days or numerical values set for each of the application conditions, for example. What application condition is set in what state, how the value set for each of the application conditions is changed in what state, the upper limit of the values, and the like are set in advance by the shop S that provides the user U1 with the special coupon. When the shop S sets the special coupon, the information provision apparatus 10 may provide the shop S with a selection screen for settable conditions and numerical values (that is, a coupon pattern) and employ the special coupon with the details selected by the shop S on the provided selection screen. Such a selection screen may display the condition and numerical values of coupons set by other shops competing with the shop S to facilitate setting of a coupon to be provided when compared with these coupons, for example. The information provision apparatus 10 may provide the user U1 with the special coupon at any state so long as it is a state in which it is estimated that the user U1 is comparing a plurality of shops S with each other. When the user U1 registers a plurality of shops in favorites or selects a plurality of shops using a checkbox such as "compare collectively" in shop search on the web, the information provision apparatus 10 may determine that the user U1 is in the comparison state, for example. In other words, when it can be estimated that the user U1 is comparing a plurality of shops with each other on the basis of the behavior of the user U1, the information provision apparatus 10 may determine that the user U1 is in an comparing state. The following describes various modifications of the privilege provision processing described above. Other than points, the information provision apparatus 10 may provide the user U2 with any privilege so long as it provides the user U2 with a benefit such as various kinds of coupons. The information provision apparatus 10 may provide the user U2 with coupons and points that can be used only in shops that were used by the user U2. The information provision apparatus 10 may provide the user U2 with the information on the other shop OS different from the shop S1 and provide the user U2 with coupons and points that can be used in the shop OS as a privilege. The information provision apparatus 10 notifies the user U2 of the use ending date and time at which a privilege is provided, and provides the user U2 with information on the other shop OS that can be used from the use ending date and time, for example. The information provision apparatus 10 may provide the user U2 with the information on the shop OS similar to the shop S1 being used by the user U2. The information provision apparatus 10 may receive an instant reservation for the shop OS. When the user U2 agrees to leave the shop S1 at the use ending date and time notified of, when an instant reservation for the other shop OS notified of is made, and when the user U2 leaves the shop S1 at the use ending date and time notified of, the information provision apparatus 10 may provide the user U2 with a coupon that can be used in the shop OS. The information provision apparatus 10 may provide the user U2 with a privilege with details corresponding to the length of the using period of the user U2. In other words, the information provision apparatus 10 may provide the user with a certain privilege corresponding to the period from the use starting date and time to the use ending date and time. The information provision apparatus 10 may provide larger points when the using time of the user U2 is shorter, for example. The information provision apparatus 10 may provide the user U2 with a reward according to the amount of money used. The information provision apparatus 10 may provide the user U2 with an addition of a certain fixed point and a point of a value obtained by multiplying the amount of money used of the shop S1 by a certain rate, for example. The information provision apparatus 10 may provide the user U2 with a privilege in any manner. When the using period of the user U2 is identified from the information registered in the beacon log database 31 in an ex post manner a few days after use of the shop S1 by the user U2, and when the identified using period falls below a certain threshold, the information provision apparatus 10 may provide the user U2 with a privilege, for example. When a certain period elapses from the use starting date and time, the information provision apparatus 10 may provide the user U2 with part of the privilege. When a privilege is provided when the using period is within 2 hours, the information provision apparatus 10 may provide the user U2 with part of the privilege (half the points, for example) 1 hour after the user U2 started the use of the shop S1, for example. When the user U2 leaves the shop S1 after the part of the privilege has been provided, the information provision apparatus 10 determines whether the using period was within 2 hours. When the using period was within 2 hours, the information provision apparatus 10 may provide the user U2 with the residual point. When the using period exceeds 2 hours even though the part of the privilege has been provided, the information provision apparatus 10 may cancel the part of the privilege provided to the user U2. The information provision apparatus 10 may provide the user U2 with the privilege separately at a date and time at which the user U2 visited the shop S1 and a date and time at which the user U2 left the shop S1 using the beacon. When the user U2 receives information (coupons, for example) on the shop S1 in advance, when the user U2 actually uses the shop S1, and when a usable period falls below a certain threshold, the information provision apparatus 10 may provide a privilege. When the user U2 is a group that is simultaneously using the shop S1, the information provision apparatus 10 may acquire the use starting date and time and the use ending date and time of the group and provide the user U2 or provide all the users contained in the group with a privilege in accordance with the period from the use starting date and time to the use ending date and time. The information provision apparatus 10 may provide the user U2 with a privilege according to the number of people of the group containing the user U2. The information provision apparatus 10 may provide the user U2 with more privileges as the number of members of group containing the user U2 increases, for example. The information provision apparatus 10 may set any timing as the use starting date and time so long as it is timing considered to be appropriate as the date and time at which the user U2 started the use of the shop S1. The information provision apparatus 10 may set any timing as the use ending date and time so long as it is timing considered to be appropriate as the date and time at which the user U2 ended the user of the shop S1. The information provision apparatus 10 acquires the use starting date and time and the use ending date and time with the check-in of the user U2 at the shop S1 as an impetus, for example. However, embodiments are not limited to this example. When receiving reception notifications indicating the beacon ID of the shop S1 from the terminal apparatus 100 used by the user U2 continually for a certain period, the information provision apparatus 10 may set a date and time at which a reception notification indicating the beacon ID of the shop S1 was received for the first time as the use starting date and time, for example. The information provision apparatus 10 may identify a date and time at which the user U2 visited the shop S1 from a position history as the history of a position acquired by the terminal apparatus 100 using Global Positioning System (GPS) or the like, for example, without using the beacon and set the identified date and time as the use starting date and time. The information provision apparatus 10 may identify a date and time at which the user U2 left the shop S1 from the position history and set the identified date and time as the use ending date and time. The information provision apparatus 10 may cause the shop S1 to print a barcode indicating a date and time on a receipt when the user U2 paid the bill in the shop S1, cause the terminal apparatus 100 to read the barcode, and cause the terminal apparatus 100 to transmit the date and time shown by the barcode to the information provision apparatus 10 to acquire the date and time at which the user U2 paid the bill in the shop S1, for example. In other words, the information provision apparatus 10 may acquire the date and time at which the user U2 started the use of the shop S1 and the date and time at which the user U2 ended the use of the shop S1 on the basis of any methods or information. It is considered that what timing is set as the use starting date and time and the use ending date and time changes by article, services, and the like provided by the shop S1. Given these circumstances, the information provision apparatus 10 may acquire a date and time at which a certain action according to the business category of the shop S1 was performed as the use starting date and time and the use ending date and time. When the shop S1 is a facility that provides foods and drinks, the information provision apparatus 10 may acquire a date and time at which certain foods and drinks were provided as the use starting date and time, for example. As a more specific example, the information provision apparatus 10 may acquire a date and time at which the provision of certain foods and drinks or more has completed such as a date and time at which all of foods and drinks or the majority of foods and drinks ordered by the user U2 at the beginning were provided, a date and time at which certain drinks among the foods and drinks ordered by the user U2 at the beginning were provided, or a date and time at which all the drinks and the majority of the foods were provided as the use staring date and time. Such a use starting date and time can be acquired by the acquisition of the date and time at which foods and drinks were provided from the shop terminal ST or by operating the terminal apparatus 100 of the user U2 by a clerk of the shop S1, for example. The information provision apparatus 10 may acquire a date and time at which the user U2 paid the bill along with the use of the shop S1 or a date and time at which the user U 2 left the shop S1 as the use ending date and time. The information provision apparatus 10 may set a date and time at which a notification that payment ended was received from the shop terminal ST as the use ending date and time, for example; when electronic payment using the terminal apparatus 100 was executed, the information provision apparatus 10 may set timing at which the electronic payment was executed as the use ending date and time, for example. The information provision apparatus 10 may set a date and time at which the terminal apparatus 100 becomes not to receive the beacon ID of the shop S1 as the use ending date and time. In the example described above, the information provision apparatus 10 provides the user U2 with a privilege when the using period falls below the certain threshold. However, embodiments are not limited to this example. It is considered that the average using time in the shop S1 changes by the business category of the shop S1, for example. As a more specific example, it is considered that the average using time of the shop S that provides fast foods is shorter than that of a general restaurant. Given these circumstances, when the period from the use starting date and time to the use ending date and time is a period corresponding to the business category of the shop S1 or shorter, the information provision apparatus 10 may provide the user U2 with a privilege. When the using period of the user U2 falls below the average using period of the shop S1, the information provision apparatus 10 may provide the user U2 with a privilege, for example. Such a threshold of the using period may be automatically set from an average using time when each user uses the shop S1, or a period set in advance by the shop S1 may be employed. When the shop S1 is congested, it is considered that a demand for causing the user U2 to leave the shop S1 earlier occurs in the shop S1. In contrast, when the shop S1 is not congested, it is considered that if the user U2 is caused to leave the shop S1 earlier, harmful effects such as degradation of impression about the shop S1 and a reduction in order opportunity occur. Given these circumstances, the information provision apparatus 10 may determine whether the user U2 is provided with a privilege on the basis of whether the using period exceeds a threshold according to the using state of the shop S1. More specifically, the information provision apparatus 10 may provide the user U2 with a privilege in accordance with the period from the use starting date and time to the use ending date and time and a period based on the using state of the shop S1. The information provision apparatus 10 identifies the vacancy state of the shop S1 as the using state of the shop S1, for example. The information provision apparatus 10 may estimate the number of users who are using the shop S1 using the beacon described above and determine the vacancy state of the shop S1 from an estimation result, for example. The information provision apparatus 10 may acquire the vacancy state of the shop S1 from the shop terminal ST. When the vacancy state satisfies a certain condition, the information provision apparatus 10 extends a period based on the using state of the facility. When the degree of congestion falls below a certain threshold, the information provision apparatus 10 extends the period based on the using state of the facility from 2 hours to 3 hours, for example. When the degree of congestion exceeds the certain threshold, the information provision apparatus 10 may reduce the period based on the using state of the facility from 2 hours to 1.5 hours, for example. When the using period is shorter than the period based on the using state of the facility, the information provision apparatus 10 may provide the user with a certain privilege. The information provision apparatus 10 may implement the processing described above by correcting the using period in accordance with a shop state. The information provision apparatus 10 causes the terminal apparatus 100 of the user U2 to display a timer until the use ending date and time at which a privilege is provided, for example. When a clerk of the shop S1 performs a temporary stop operation on the timer via the terminal apparatus 100 or the shop terminal ST when the shop S1 is vacant, the information provision apparatus 10 temporarily stops the timer, for example. When a clerk performs a starting operation on the timer when the shop S1 becomes congested or the like, the information provision apparatus 10 resumes the progress of the timer. When the value of the timer does not exceed a certain threshold when the user U2 leaves the shop S1 or the like, the information provision apparatus 10 may provide the user U2 with a privilege. Thus, the information provision apparatus 10 may change conditions for providing a privilege in accordance with the fullness/vacancy state of the shop S1. When a condition for providing a privilege is changed, the information provision apparatus 10 may present the changed condition to the user U2 each time. The information provision apparatus 10 does not necessarily change conditions disadvantageous for the user U2, for example. The shop S1 may want to urge the user U2 to leave the shop S1 when the total amount of money used of the user U2 is small and want to make the user U2 use the shop S1 continuously when the total amount of money used thereof is large. Given these circumstances, the information provision apparatus 10 may provide the user with a privilege in accordance with the period from the use starting date and time to the use ending date and time and the amount of money used of the shop S1. The information provision apparatus 10 may extend a using period that provides the user U2 with a privilege to 3 hours when the amount of money used at the shop S1 exceeds a certain threshold for a lapse of a certain time after the entry of the user U2 and limit the using period that provides the user U2 with a privilege to 2 hours when the amount of money used of the shop S1 falls below the certain threshold, for example. In the processing described above, the information provision apparatus 10 executes the determination processing, the provision processing, the coupon provision processing, and the privilege provision processing described above for each shop S. Given these circumstances, the information provision apparatus 10 may execute the various kinds of processing described above for each shop group containing a plurality of shops. The information provision apparatus 10 regards a first shop building in which a plurality of restaurant-related shops are located and a second shop building that is positioned within a certain range from the first shop building and in which a plurality of restaurant-related shops are located similarly to the first shop building as a single shop each, for example. When the user U1 moves to the entrance of the first shop building, the information provision apparatus 10 may determine whether all the shops of the first shop building are at full occupancy and, when it is determined that they are at full occupancy, provide the user U1 with information on the second shop building or other shops located in the second shop building. The information provision apparatus 10 may introduce another shop located in the second shop building, the shop similar in type to a shop visited and used by the user U1 (a shop having a coupon, for example). The information provision apparatus 10 may, for the first shop building and the second shop building each, determine whether each shop is at full occupancy or the degree of congestion and integrate the degree of satisfaction of the shops to estimate the degree of satisfaction of the first shop building and the second shop building. The information provision apparatus 10 may issue the special coupon for the first shop building and the second shop building each. The information provision apparatus 10 may identify a using time for the first shop building and the second shop building each and provide the user U1 with a privilege according to the identified using time. When the using period of a first shop contained in the first shop building satisfies a certain condition, the information provision apparatus 10 may provide the user U1 with a coupon of a second shop contained in the first shop building as a privilege. The embodiment is only by way of example, and the present invention includes embodiments exemplified below and other embodiments apart therefrom. The functional configuration, the data structure, and the order and the details of the pieces of processing indicated in the flowcharts in the present application are only by way of example, for example; the presence or absence, the arrangement and the order of processing execution and the like, the specific details, and the like of the elements can be changed as appropriate. The provision processing, the determination processing, the coupon provision processing, and the privilege provision processing described above can also be implemented as apparatuses, methods, and computer programs in a cloud system apart from the implementation by the information provision apparatus 10 as exemplified in the embodiment, for example. The whole or part of the processing described as being automatically performed among the pieces of processing described in the embodiment can also be performed manually; on the contrary, the whole or part of the processing described as being manually performed can also be performed automatically by known methods. In addition, information including the processing procedure, the specific names, the various kinds of data and parameters indicated in the text and the drawings can be freely changed except cases specified. The various kinds of information illustrated in the drawings are not limited to the illustrated pieces of information, for example. The components of each illustrated apparatus are functionally conceptual and are not necessarily required to be configured as physically illustrated. In other words, the specific mode of the distribution and integration of each apparatus is not limited to the illustrated one; the whole or part thereof can be configured by being distributed or integrated functionally or physically by any unit in accordance with various kinds of loads, using states, and the like. The embodiments can be combined with each other as appropriate to the extent that processing details are not contradictory to each other. As described above, from the terminal apparatus having the notification function to output, when a user visits a certain facility, a notification that the user has visited the facility, the information provision apparatus 10 receives the notification. The information provision apparatus 10, on the basis of the statistical relation between the history of the number of the notification and the history of the using state of the facility, estimates the number of users who are visiting the certain facility from the number of notifications received in a certain period. The information provision apparatus 10 then determines whether a new user can use the certain facility on the basis of the estimation result. Consequently, the information provision apparatus 10 appropriately estimates the number of users who are visiting the facility even when the users of the terminal apparatus having the communication function are only part of all the users and can thus achieve fullness/vacancy determination on the facility with high precision. The information provision apparatus 10 estimates the number of users who are visiting the certain facility on the basis of the ratio between the number of notifications received in a certain time zone and the number of users who used the certain facility in the certain time zone. The information provision apparatus 10 determines whether a new user can use the certain facility on the basis of a comparison result between the estimated number of users and the number of users who can use the certain facility. Consequently, the information provision apparatus 10 can achieve fullness/vacancy determination on the facility with high precision. The information provision apparatus 10 further receives information indicating the using state of the certain facility from a terminal apparatus installed in the certain facility. The information provision apparatus 10 estimates the number of users who are visiting the certain facility on the basis of the statistical relation between the history of the number of the notification and the history of the using state of the certain facility. Consequently, the information provision apparatus 10 can achieve fullness/vacancy determination on the current facility with high precision on the basis of the relation between the using state of the facility in the past and the number of users of the terminal apparatus having the communication function. When receiving a notification, the information provision apparatus 10 inquires of a terminal apparatus serving as an output source of the notification about the using state of the certain facility. The information provision apparatus 10 inquires about whether a new user can use the certain facility as the using state of the certain facility, for example. When the terminal apparatus serving as the output source of the notification contributes certain information to a network, the information provision apparatus 10 inquires about the using state of the certain facility, for example. Consequently, the information provision apparatus 10 can perform fullness/vacancy determination on the current facility on the basis of the impression of the user who is actually using the facility. When the relation between the estimated number of users and the number of users who can use the certain facility satisfies a certain condition, the information provision apparatus 10 inquires about the using state of the certain facility. When the difference between the estimated number of users and the number of users who can use the certain facility falls within a certain range, the information provision apparatus 10 inquires about the using state of the certain facility, for example. Consequently, in a state in which the accuracy of the determination result based on the estimated number of users is prone to degrade, the information provision apparatus 10 performs fullness/vacancy determination on the current facility on the basis of the impression of the user who is actually using the facility and can thus improve the accuracy of the determination result. The information provision apparatus 10 corrects the statistical relation between the history of the number of notifications and the history of the using state of the facility on the basis of the inquiry result. The information provision apparatus 10 estimates the number of users who are visiting the certain facility on the basis of the corrected relation. Consequently, the information provision apparatus 10 can continually improve the estimation accuracy. The information provision apparatus 10 estimates the number of users who are visiting the certain facility on the basis of the statistical relation between the history of the number of notifications received from the terminal apparatus that visited a facility similar to the certain facility and the history of the using state of the facility similar to the certain facility. Consequently, the information provision apparatus 10 can, by the type of the facility, estimate the number of users who are visiting the facility of the type on the basis of the statistical relation between the history of the number of notifications and the history of the using state. On the basis of the statistical relation among a determination date and time at which it is determined whether a new user can use a certain facility, the history of the number of notifications received at a date and time having certain commonness, and the history of the using state of the facility at the date and time, the information provision apparatus 10 estimates the number of users who are visiting the certain facility at the determination date and time. Consequently, the information provision apparatus 10 can estimate the number of users who are visiting the facility on the basis of the statistical relation between the history of the number of notifications and the history of the using state for each date and time or day at which the facility is used. When the number of terminal apparatuses that have output a notification indicating visit to another facility for a lapse of a certain time after outputting a notification indicating visit to a certain facility exceeds a certain number, the information provision apparatus 10 determines that a new user cannot use the certain facility regardless of the estimation result. Consequently, the information provision apparatus 10 can prevent false determination in a case clearly determinable to be at full occupancy. The information provision apparatus 10 determines whether a new user can use the certain facility on the basis of the history of the use mode of the facility by the user and the estimation result. The information provision apparatus 10 estimates the tendency of the use mode of a facility common to the certain facility in type on the basis of the history of the use mode of the facility by the user and determines whether a new user can use the certain facility on the basis of the estimated tendency and the estimation result by the estimation section, for example. As a more specific example, the information provision apparatus 10 estimates an average number of people when the user uses the facility from the history of the use mode of the facility by the user and determines whether a new user can use the certain facility on the basis of the estimated number of people and the number of users estimated by the estimation section. The information provision apparatus 10 determines whether a new user can use the certain facility on the basis of information on tables installed in the certain facility, whether the certain facility enables table sharing, and the estimation result. Consequently, the information provision apparatus 10 can achieve fullness/vacancy determination according to the user. The information provision apparatus 10 determines whether a new user can use the certain facility on the basis of the history of the use mode of the facility by the user, conditions related to the use of the certain facility, and the estimation result. Consequently, the information provision apparatus 10 can achieve fullness/vacancy determination according to a matching result between the history of the use mode of the user and conditions required for the user by the facility. The embodiments of the present application have been described in detail on the basis of the drawings; these are by way of example, and the present invention can be performed in other modes on which various modifications and improvements have been made on the basis of the knowledge of those skilled in the art, including the modes described in the disclosure of the invention. The "section" described above can be read as "means", "circuit", or the like. The selection section may be read as selection mean or a selection circuit, for example. A mode of the embodiment can estimate full occupancy more appropriately even when users of terminal apparatuses that do not have a notification function are mixed in users who visit facilities. a determination unit that determines whether a new user is able to use the certain facility on the basis of a determination result by the estimation unit. 2. The determination apparatus according to claim 1, wherein the estimation unit estimates the number of users who are visiting the certain facility on the basis of a ratio between number of notifications received in a certain time zone and number of users who have used the certain facility in the certain time zone. 3. The determination apparatus according to claim 1, wherein the determination unit determines whether a new user is able to use the certain facility on the basis of a comparison result between the number of users estimated by the estimation unit and number of users who are able to use the certain facility. the estimation unit estimates the number of users who are visiting the certain facility on the basis of a statistical relation between the history of the number of the notifications and a history of the using state of the certain facility. 5. The determination apparatus according to claim 1, further comprising an inquiry unit that, when the reception unit receives the notification, inquires of a terminal apparatus serving as an output source of the notification about a using state of the certain facility. 6. The determination apparatus according to claim 5, wherein the inquiry unit inquires about whether a new user is able to use the certain facility as the using state of the certain facility. 7. The determination apparatus according to claim 5, wherein the inquiry unit inquires about the using state of the certain facility when the terminal apparatus serving as the output source of the notification contributes certain information to a network. 8. The determination apparatus according to claim 5, wherein the inquiry unit inquires about the using state of the certain facility when a relation between the number of users estimated by the estimation unit and the number of users who are able to use the certain facility satisfies a certain condition. 9. The determination apparatus according to claim 8, wherein the inquiry unit inquires about the using state of the certain facility when a difference between the number of users estimated by the estimation unit and the number of users who are able to use the certain facility falls within a certain range. the estimation unit estimates the number of users who are visiting the certain facility on the basis of the relation corrected by the correction unit. 11. The determination apparatus according to claim 1, wherein the estimation unit estimates the number of users who are visiting the certain facility on the basis of a statistical relation between a history of number of notifications received from a terminal apparatus that visited a facility similar to the certain facility and a history of a using state of the facility similar to the certain facility. 12. The determination apparatus according to claim 1, wherein on the basis of a statistical relation between a history of number of the notifications received at a date and time having certain commonness with a determination date and time at which whether a new user is able to use the certain facility is determined and a history of a using state of the facility at the date and time, the estimation unit estimates the number of users who are visiting the certain facility at the determination date and time. 13. The determination apparatus according to claim 1, wherein the determination unit determines that a new user is not able to use the certain facility regardless of the estimation result by the estimation unit when number of terminal apparatuses that have output a notification indicating visit to another facility for a lapse of a certain time after outputting a notification indicating visit to the certain facility exceeds a certain number. 14. The determination apparatus according to claim 1, wherein the determination unit determines whether a new user is able to use the certain facility on the basis of a history of a use mode of the facility by the user and the estimation result by the estimation unit. 15. The determination apparatus according to claim 14, wherein the determination unit estimates a tendency of a use mode of a facility common to the certain facility in type on the basis of the history of the use mode of the facility by the user and determines whether a new user is able to use the certain facility on the basis of the estimated tendency and the estimation result by the estimation unit. 16. The determination apparatus according to claim 14, wherein the determination unit estimates an average number of people when the user uses the facility from the history of the use mode of the facility by the user and determines whether a new user is able to use the certain facility on the basis of the estimated number of people and the number of users estimated by the estimation unit. 17. The determination apparatus according to claim 1, wherein the determination unit determines whether a new user is able to use the certain facility on the basis of information on tables installed in the certain facility, whether the certain facility enables table sharing, and the estimation result by the estimation unit. 18. The determination apparatus according to claim 1, wherein the determination unit determines whether a new user is able to use the certain facility on the basis of the history of the use mode of the facility by the user, conditions related to use of the certain facility, and the estimation result by the estimation unit. determining whether a new user is able to use the certain facility on the basis of a determination result at the estimating.
[ -0.010464451275765896, 0.006519535556435585, 0.007725945208221674, 0.014769269153475761, -0.009502746164798737, -0.002792044309899211, -0.02829716168344021, 0.03442855924367905, 0.030193215236067772, 0.045361265540122986, 0.026900896802544594, 0.005257259123027325, -0.017225012183189392, 0.004054263699799776, -0.013585414737462997, -0.012045562267303467, -0.028055286034941673, -0.009847712703049183, -0.021153578534722328, -0.0018059650901705027, -0.0064783706329762936, 0.045060038566589355, -0.05948884040117264, -0.02520359680056572, -0.020704779773950577, 0.03551477566361427, 0.03115353174507618, -0.01918977126479149, 0.09649191796779633, 0.07619860768318176, -0.013475366868078709, -0.033412206918001175, 0.031710900366306305, -0.04121886566281319, -0.030678553506731987, -0.029706332832574844, 0.048363279551267624, -0.05728492885828018, -0.011169999837875366, -0.04889507591724396, 0.01196033600717783, 0.0197258573025465, 0.05312485247850418, -0.0773867666721344, -0.05915779247879982, -0.020248116925358772, -0.015831978991627693, -0.025696277618408203, 0.017155317589640617, -0.0117656160145998, -0.011891321279108524, 0.0008613269892521203, 0.00420138007029891, -0.00572959054261446, 0.021553291007876396, -0.017645547166466713, 0.003646074328571558, -0.012695920653641224, -0.008183863945305347, 0.0701911598443985, 0.018853463232517242, -0.0003694601764436811, 0.039219047874212265, -0.04578215256333351, 0.05117417126893997, 0.015005062334239483, 0.009974249638617039, -0.027446847409009933, 0.015753429383039474, -0.04359856992959976, -0.004540541674941778, -0.018216539174318314, -0.040343016386032104, -0.03782161697745323, 0.0060148583725094795, 0.017590520903468132, 0.0023272279649972916, -0.01588285341858864, 0.0035149871837347746, 0.024323945865035057, 0.03272081911563873, 0.035628266632556915, 0.008198237046599388, -0.0011638174764811993, -0.03426346182823181, -0.025134466588497162, 0.018318219110369682, -0.017353935167193413, 0.003560116980224848, -0.02103271335363388, -0.021005235612392426, 0.025148725137114525, 0.009814285673201084, -0.00850005354732275, 0.025341590866446495, 0.04424133524298668, -0.023699210956692696, 0.03218131512403488, 0.008975674398243427, -0.018790332600474358, 0.05241052061319351, 0.045100390911102295, -0.01269850879907608, 0.0535614937543869, -0.040120016783475876, 0.012867782264947891, 0.03416872397065163, 0.008181199431419373, -0.026227815076708794, -0.05593297630548477, 0.005049569997936487, -0.02054079994559288, -0.002192764077335596, 0.013337135314941406, -0.028470704331994057, 0.06951766461133957, 0.010257535614073277, 0.027859868481755257, -0.03765551373362541, 0.01659414730966091, -0.008123273029923439, 0.016856465488672256, 0.0495099201798439, 0.0014719369355589151, 0.029291631653904915, -0.023961270228028297, -0.006938466802239418, 0.05612362176179886, -0.03942273184657097, -0.019097967073321342, -0.007795062847435474, -0.025220217183232307, -0.025470465421676636, 0.018127406015992165, -0.013641675002872944, 0.020590046420693398, 0.02040458843111992, 0.02881450206041336, 0.03605544567108154, -0.06705570966005325, 0.045992374420166016, 0.015310975722968578, 0.009787274524569511, 0.0882195234298706, -0.0012775366194546223, 0.05572696030139923, -0.02703372947871685, 0.010754366405308247, -0.05387457460165024, 0.0035405803937464952, -0.02262110635638237, 0.026146799325942993, -0.0035705487243831158, 0.031560711562633514, 0.012614604085683823, 0.008701757527887821, -0.010167796164751053, 0.004899133928120136, -0.018834935501217842, 0.023547254502773285, -0.009347639977931976, 0.016273217275738716, -0.009651917032897472, 0.015936756506562233, -0.013043412007391453, 0.0491596944630146, -0.03035615012049675, -0.0005499513354152441, -0.005035522859543562, -0.0339745432138443, 0.011571942828595638, 0.014806706458330154, -0.019989171996712685, 0.04651935026049614, 0.03446732088923454, 0.03640428185462952, 0.04346376657485962, 0.006808869075030088, 0.018247947096824646, 0.041080716997385025, -0.03675122186541557, -0.03254012390971184, 0.006208997685462236, 0.06818921118974686, -0.003920950926840305, 0.033979713916778564, -0.003971274010837078, -0.04914812371134758, -0.04419395327568054, 0.005378457717597485, 0.019899340346455574, 0.036092519760131836, -0.037673428654670715, 0.031847137957811356, -0.043377939611673355, 0.013161219656467438, -0.010877048596739769, 0.0011635244591161609, -0.032030049711465836, -0.060928184539079666, -0.0247521810233593, 0.056112296879291534, -0.028758171945810318, 0.031014470383524895, -0.014571750536561012, -0.023271916434168816, 0.040435053408145905, 0.05232668295502663, -0.046031028032302856, -0.007700228597968817, 0.027758557349443436, 0.04283909499645233, -0.030204281210899353, -0.04019585996866226, 0.008372754789888859, -0.011778506450355053, -0.010169454850256443, 0.04953226447105408, -0.001260708668269217, 0.004343204665929079, -0.01125050988048315, 0.007022050209343433, 0.02392880618572235, 0.03917370364069939, -0.002016922691836953, -0.013092909008264542, 0.012034979648888111, 0.054870206862688065, -0.016812806949019432, 0.0030917201656848192, -0.02076856978237629, 0.0530550442636013, 0.016279172152280807, 0.07788703590631485, 0.026494935154914856, 0.011446462944149971, 0.03756728395819664, 0.043568212538957596, -0.018222037702798843, 0.02046350948512554, 0.0035708460491150618, 0.02468486689031124, 0.06319233775138855, 0.018162423744797707, -0.016699550673365593, 0.03461134433746338, -0.006599632557481527, 0.006352673750370741, -0.03821269050240517, 0.025864379480481148, -0.007683722767978907, 0.037758275866508484, 0.029795484617352486, 0.05114833638072014, -0.039209939539432526, -0.019551146775484085, 0.024447526782751083, 0.0482478141784668, -0.029743393883109093, -0.033863216638565063, -0.0009669804130680859, 0.039870742708444595, 0.0011953531065955758, -0.04025730490684509, 0.016550853848457336, 0.02609879896044731, 0.033318210393190384, 0.0186245646327734, -0.035794418305158615, -0.047842223197221756, -0.06359875202178955, -0.039587218314409256, -0.04782670736312866, -0.03141799941658974, -0.05035548284649849, -0.0065801492892205715, 0.0360938161611557, -0.035410381853580475, 0.036841683089733124, 0.0022669273894280195, -0.023509535938501358, -0.0064097498543560505, -0.008056135848164558, 0.044168099761009216, 0.001558051910251379, 0.037747934460639954, -0.04281621426343918, 0.015062615275382996, -0.02303432859480381, 0.06746891885995865, -0.043622445315122604, -0.030377574265003204, -0.03743262588977814, -0.008750779554247856, 0.03926726430654526, -0.011445065960288048, 0.00010886759991990402, -0.005110803060233593, -0.017987044528126717, -0.038442328572273254, -0.014058866538107395, 0.00720891822129488, 0.001594019471667707, 0.00450618052855134, -0.04859571158885956, 0.04772161692380905, 0.0012471540831029415, -0.03025938756763935, 0.0484977550804615, 0.05785616114735603, -0.04260369762778282, 0.030655130743980408, -0.004239422734826803, 0.004637396894395351, -0.05541102960705757, 0.041961755603551865, 0.04859733581542969, -0.009383875876665115, -0.006194200366735458, -0.02263544499874115, -0.03092062473297119, 0.011648248881101608, 0.017527882009744644, -0.0035509837325662374, -0.019374927505850792, 0.03227812051773071, 0.023594163358211517, -0.07165703177452087, 0.04437727853655815, -0.07488753646612167, -0.039968572556972504, -0.03230311721563339, -0.04690045118331909, 0.0381169356405735, 0.030595196411013603, 0.04480455070734024, 0.00387383159250021, -0.04321314021945, 0.0074028330855071545, 0.03129752352833748, 0.06158726289868355, -0.06082110479474068, 0.02507830783724785, 0.025244347751140594, 0.01849893480539322, 0.022780641913414, 0.017889373004436493, -0.009399764239788055, -0.017704958096146584, -0.002317975275218487, 0.0007446366362273693, 0.04369845241308212, 0.0348367877304554, 0.0365329310297966, 0.006364548113197088, 0.050512392073869705, -0.03863617032766342, 0.0003317011287435889, 0.00481134420260787, 0.02242114581167698, 0.044138308614492416, -0.0010091671720147133, 0.0014127714093774557, -0.002753443783149123, -0.03412581607699394, -0.03232938423752785, 0.00606760336086154, 0.012509249150753021, 0.041482724249362946, -0.08836779743432999, 0.058041442185640335, -0.013568486087024212, -0.010443056933581829, 0.05852483585476875, -0.07820151001214981, -0.05176123231649399, 0.04775537922978401, -0.017983078956604004, 0.06704416126012802, -0.04074124991893768, 0.020109200850129128, -0.025546854361891747, 0.01157983299344778, 0.024493610486388206, -0.0006459582946263254, 0.03274929150938988, -0.03513377532362938, -0.007176714483648539, 0.0066094896756112576, -0.026136839762330055, -0.02009420655667782, -0.03968597576022148, 0.005579548887908459, -0.012445451691746712, -0.06413121521472931, -0.04321443662047386, 0.020199770107865334, 0.03602905571460724, 0.042962051928043365, -0.026595991104841232, 0.03970558941364288, 0.0003981968911830336, 0.016055939719080925, 0.037106215953826904, -0.02747085876762867, 0.0013255109079182148, -0.010605326853692532, 0.024304337799549103, 0.009393551386892796, 0.004624074790626764, -0.025409778580069542, -0.023004494607448578, -0.054095037281513214, 0.018214190378785133, 0.015384368598461151, -0.015309295617043972, -0.030545372515916824, 0.006963151041418314, -0.021701594814658165, -0.009765205904841423, -0.03471536189317703, -0.006264852825552225, -0.02558557502925396, 0.0377231165766716, 0.03425760194659233, -0.03919588029384613, -0.0021677310578525066, -0.03815130889415741, 0.03103363886475563, 0.06369800120592117, 0.0047838264144957066, -0.047387633472681046, -0.03890480846166611, -0.028397686779499054, -0.02421705424785614, 0.006513660773634911, 0.022140581160783768, -0.00359299941919744, 0.01368128601461649, -0.045585792511701584, 0.009710424579679966, 0.024240795522928238, -0.03669571876525879, -0.013036114163696766, -0.005554886534810066, 0.03397514671087265, -0.004632316529750824, 0.03652874380350113, -0.008938497863709927, -0.04339770972728729, 0.00767915602773428, -0.0649731233716011, 0.027965910732746124, -0.030632566660642624, -0.0007334216497838497, -0.01716252975165844, 0.04406118020415306, -0.008376797661185265, 0.026008140295743942, -0.021837148815393448, 0.011277210898697376, 0.002662734594196081, 0.030668873339891434, -0.029682215303182602, -0.024351367726922035, 0.03791997581720352, 0.004074044059962034, -0.026556001976132393, 0.03944914788007736, 0.02342819981276989, -0.0213569737970829, 0.02035655453801155, 0.02309001237154007, -0.06841392070055008, 0.055907536298036575, -0.010935832746326923, 0.024664323776960373, 0.001371943042613566, -0.04676008224487305, 0.028610005974769592, -0.028887802734971046, 0.02782735973596573, 0.01756509765982628, -0.026292691007256508, -0.035411011427640915, -0.05262831225991249, -0.018477438017725945, 0.0006667643319815397, -0.03847958892583847, 0.028282489627599716, 0.012084577232599258, -0.002122335135936737, -0.007318444550037384, -0.004583906847983599, -0.0027767636347562075, 0.006236204411834478, -0.03175792098045349, -0.0031048126984387636, 0.007379386108368635, 0.02100246213376522, 0.0210551954805851, -0.03170470520853996, -0.03075719065964222, 0.00596588384360075, -0.0029761383775621653, -0.03911205381155014, -0.07657156884670258, 0.022576535120606422, -0.013394529931247234, 0.005628187675029039, -0.07272443175315857, 0.0048726205714046955, -0.019545521587133408, 0.004861306399106979, 0.018395811319351196, -0.006472856272011995, 0.011681650765240192, 0.006612962577491999, -0.03337477892637253, 0.0275559164583683, 0.02573086880147457, -0.04907438904047012, -0.016762565821409225, 0.03819317743182182, -0.03287610784173012, 0.028645826503634453, 0.018907055258750916, -0.022617988288402557, -0.0018177209421992302, -0.04159792140126228, 0.012885292060673237, -0.02277437224984169, -0.00799452606588602, -0.053424954414367676, -0.007202078588306904, -0.0025356982368975878, 0.032923221588134766, 0.029328089207410812, 0.0025810925289988518, -0.01042053010314703, -0.023958895355463028, 0.017164049670100212, -0.03271111100912094, -0.014142727479338646, -0.01652834750711918, -0.0019104995299130678, 0.0029946875292807817, 0.03454839810729027, -0.0007841311162337661, 0.007554459851235151, -0.015104709193110466, 0.01695723459124565, 0.012387829832732677, -0.015200386755168438, -0.04962160065770149, -0.05635445937514305, -0.03272940590977669, 0.009082907810807228, 0.006067202892154455, 0.013852773234248161, -0.02265171892940998, 0.05182136595249176, -0.039906423538923264, 0.013677183538675308, -0.01097946148365736, -0.025030896067619324, -0.01832631789147854, 0.024272559210658073, 0.058183763176202774, -0.03876368701457977, -0.009177706204354763, -0.016750197857618332, 0.046925757080316544, 0.01992192305624485, 0.009778684005141258, -0.03506140038371086, -0.025159258395433426, -0.049020230770111084, -0.044421494007110596, 0.01584930717945099, -0.022295411676168442, -0.019215548411011696, -0.009366339072585106, -0.012525271624326706, 0.04472414404153824, -0.03521328791975975, 0.04373965412378311, 0.0742064118385315, 0.01919359341263771, -0.006780697964131832, -0.008318674750626087, 0.025219229981303215, 0.04165161773562431, -0.03603386506438255, 0.01202550157904625, -0.028635164722800255, -0.049639347940683365, 0.005934838205575943, -0.022048236802220345, -0.07373742759227753, -0.05686809867620468, -0.013713116757571697, 0.0631241574883461, -0.027569539844989777, 0.03844399005174637, -0.014968965202569962, -0.05876210704445839, -0.02826518751680851, 0.031232744455337524, 0.005995693150907755, 0.024024831131100655, 0.05650719627737999, -0.01216802280396223, -0.002220473950728774, 0.005821600090712309, -0.004781907889991999, 0.003308713436126709, -0.05710797756910324, 0.059687089174985886, -0.014614809304475784, -0.051466770470142365, 0.05209723114967346, 0.05915830284357071, -0.023723136633634567, -0.05966200307011604, 0.025424975901842117, -0.019525805488228798, -0.0032960877288132906, -0.0296048391610384, -0.006819796282798052, -0.0018329182639718056, 0.006500924937427044, -0.0029364514630287886, 0.004862839821726084, 0.011240599676966667, 0.023191720247268677, -0.010487488470971584, 0.023404452949762344, -0.045937780290842056, 0.031865544617176056, 0.02353856712579727, 0.0069819241762161255, 0.0015003002481535077, -0.03166947141289711, 0.0027579383458942175, 0.00537359993904829, 0.003936949651688337, 0.023777086287736893, -0.019711589440703392, 0.00902419351041317, 0.037620384246110916, 0.0019895462319254875, 0.040687162429094315, -0.005103690549731255, 0.00010318279237253591, 0.029858220368623734, -0.03460041433572769, -0.0755414366722107, -0.018092989921569824, 0.030806168913841248, -0.005694306921213865, 0.010457105003297329, -0.02830362133681774, 0.0004119675431866199, 0.04584985971450806, 0.011206536553800106, -0.01709996722638607, -0.06092637777328491, -0.03878231719136238, -0.053551822900772095, -0.042364563792943954, -0.047778964042663574, 0.008299731649458408, 0.00978801865130663, 0.0028918967582285404, 0.014630524441599846, -0.015401473268866539, 0.0006266918499022722, 0.032488156110048294, -0.02276243455708027, -0.00925991591066122, -0.04034718498587608, 0.03457044064998627, -0.022628886625170708, -0.042432691901922226, -0.039497703313827515, 0.009258691221475601, -0.009318472817540169, 0.013416987843811512, -0.01032255683094263, 0.028635375201702118, -0.03516920655965805, 0.01143426913768053, 0.013601303100585938, 0.018413644284009933, -0.022531261667609215, -0.04672060161828995, 0.005197616759687662, 0.031107373535633087, 0.009412058629095554, 0.038876913487911224, 0.010894752107560635, -0.0050298417918384075, 0.011948365718126297, -0.017380760982632637, -0.014614210464060307, -0.018477557227015495, 0.013280061073601246, -0.00032661284785717726, 0.00045145986950956285, -0.020803408697247505, -0.025507638230919838, 0.012729964219033718, -0.05187813565135002, 0.00037552491994574666, 0.0042542447336018085, 0.015114504843950272, -0.009567618370056152, 0.005746281240135431, 0.01058840099722147, 0.04653352126479149, -0.0007041091448627412, 0.0325307659804821, -0.02175501361489296, 0.014324063435196877, 0.027209017425775528, 0.011983150616288185, 0.025332514196634293, 0.022588027641177177, 0.0175621435046196, -0.032825060188770294, 0.01748371310532093, 0.006924777291715145, -0.026640446856617928, 0.0236755833029747, -0.045130494982004166, -0.019267622381448746, -0.04122380539774895, 0.009553633630275726, -0.0009312013862654567, 0.037479836493730545, 0.022675637155771255, 0.004080598242580891, 0.0410657674074173, -0.007050192914903164, -0.04404187574982643, -0.0036595123820006847, -0.07004453986883163, -0.030237296596169472, 0.06256858259439468, -0.005697259679436684, -0.024398978799581528, -0.018253283575177193, -0.0572655014693737, -0.009811369702219963, -0.0060559832490980625, -0.010164768435060978, -0.007902395911514759, 0.020188165828585625, -0.011795729398727417, 0.06303899735212326, -0.030003180727362633, -0.01802317053079605, 0.009449033997952938, 0.045955609530210495, -0.03524935618042946, -0.05237710475921631, -0.005499555729329586, 0.04545629024505615, 0.006634156219661236, -0.013818226754665375, -0.01819123513996601, 0.019082045182585716, 0.005088177043944597, -0.01745421625673771, 0.0004432637069839984, 0.02990829385817051, -0.019557878375053406, 0.03664662688970566, -0.004467361140996218, -0.0015215729363262653, -0.021445777267217636, 0.041679468005895615, -0.02017570473253727, -0.0209245253354311, -0.02992835082113743, 0.007570209447294474, 0.03948533162474632, -0.0100495470687747, 0.04183619096875191, -0.006265421863645315, 0.04966021329164505, -0.005656592082232237, 0.03196985647082329, 0.025205159559845924, 0.037312883883714676, 0.056128330528736115, 0.03185298293828964, -0.044343672692775726, 0.032308127731084824, 0.0626782774925232, -0.008246093057096004, 0.02996252104640007, 0.05911627784371376, -0.01489541120827198, -0.03644370660185814, 0.0037494522985070944, -0.01993728242814541, -0.0024800109677016735, -0.02011815272271633, -0.021778704598546028, -0.015918023884296417, -0.04386037588119507, -0.0008309312397614121, -0.02035709284245968, -0.025963133201003075, 0.05533163249492645, -0.0073119038715958595, -0.00958926323801279, -0.013124899938702583, -0.018162433058023453, -0.01043789554387331, 0.001035733032040298, -0.031463902443647385, 0.015148601494729519, 0.024599751457571983, 0.031128091737627983, 0.0017119713593274355, 0.053284723311662674, 0.022210460156202316, 0.022697223350405693, -0.02912704274058342, 0.011908591724932194, 0.003554639173671603, 0.005242933984845877, -0.02023565024137497, 0.0022603869438171387, -0.01826559193432331, 0.011060619726777077, -0.0217190720140934, -0.022975962609052658, 0.036884624511003494, -0.06272820383310318, 0.006601559929549694, -0.04459373280405998, 0.029207376763224602, -0.022972026839852333, -0.018499057739973068, 0.030247999355196953, 0.0037204010877758265, -0.01312321051955223, 0.06796494871377945, -0.004023621324449778, 0.03306664898991585, 0.019154619425535202, 0.04548391327261925, 0.019878482446074486, 0.024603214114904404, 0.06909287720918655, -0.028736833482980728, -0.012872391380369663, 0.02574177086353302, -0.011578412726521492, -0.02530401013791561, -0.02978813834488392, -0.039382461458444595, -0.030070412904024124, 0.011327944695949554, 0.005088495556265116, -0.028529871255159378, 0.0346127450466156, 0.025743918493390083, -0.027775408700108528, -0.006523911841213703, 0.020060693845152855, -0.025813275948166847, 0.012858672067523003, 0.00660831481218338, 0.035915471613407135, 0.006140389014035463, -0.04006478190422058, -0.016370609402656555, -0.026383250951766968, 0.005248308181762695, -0.05257733538746834, 0.04813661426305771, 0.01668372005224228, -0.016865544021129608, -0.029416101053357124, -0.062446609139442444, 0.002432200126349926, -0.0007544030668213964, -0.04135151952505112, -0.02767718769609928, 0.020236581563949585, 0.027909722179174423, 0.025252491235733032, 0.015650026500225067, -0.035830944776535034, -0.02931964211165905, 0.01691833883523941, 0.055260758846998215, -0.008875885047018528, 0.069851353764534, 0.04070413485169411, 0.010183741338551044, 0.033288706094026566, -0.02100607194006443, 0.035214632749557495, -0.027914375066757202, -0.024489717558026314, -0.005268547218292952, 0.00978648941963911, -0.04707881435751915, -0.048734400421381, -0.001458110986277461, 0.04018373787403107, 0.000413246190873906, -0.018888210877776146, -0.04327835142612457, 0.0012635121820494533, -0.05189144238829613, -0.017487432807683945, -0.02504442073404789, 0.018847700208425522, 0.004615421872586012, -0.010968320071697235, -0.03041142039000988, -0.06221513822674751, 0.1581277996301651, 0.027894074097275734, 0.03415002301335335, 0.007627018727362156, 0.04097766429185867, 0.08756759017705917, 0.043054964393377304, -0.039207685738801956, -0.0010889190016314387, -0.020980315282940865, 0.0370364673435688, -0.02980627864599228, 0.013025620020925999, 0.006540920585393906, 0.02476590871810913, 0.03372187539935112, -0.010654637590050697, -0.0030010046903043985, 0.040865011513233185, -0.04107251390814781, -0.06716378778219223, 0.012214738875627518, 0.01103960070759058, 0.0019261966226622462, -0.036784518510103226, 0.01784146949648857, 0.01297729555517435, -0.03514648973941803, -0.02033107727766037, -0.06384896486997604, 0.01663563959300518, -0.040762536227703094, 0.04935529828071594, 0.0038940170779824257, -0.030518298968672752, 0.032721031457185745, 0.010286770761013031, -0.0071392301470041275, -0.02297946624457836, -0.0037669790908694267, -0.00925432052463293, -0.008217580616474152, 0.004886823706328869, -0.03644615411758423, 0.0068220472894608974, 0.03411820903420448, -0.007218117360025644, 0.013950793072581291, 0.028521645814180374, -0.050465766340494156, 0.09099769592285156, -0.03515656664967537, 0.045154422521591187, -0.00502825016155839, -0.04206143319606781, 0.016991963610053062, 0.03513830527663231, -0.03443242982029915, -0.03331093117594719, 0.014461592771112919, 0.024673469364643097, 0.011831090785562992, -0.0054928031750023365, -0.0023929900489747524, -0.012758339755237103, 0.0106371333822608, -0.010671978816390038, 0.0073912423104047775, 0.012427303940057755, 0.0009808073518797755, 0.008780624717473984, -0.003076873952522874, -0.011390605010092258, -0.026014380156993866, 0.00840848870575428, 0.047666676342487335, -0.02544456534087658, 0.013301298953592777, -0.00027047249022871256, -0.045710816979408264, -0.02469688095152378, -0.026304956525564194, 0.005179330240935087, -0.026750097051262856, 0.036417700350284576, 0.049585115164518356, -0.0307554230093956, -0.04759129881858826, -0.048391442745923996, 0.05177745223045349, 0.06594560295343399, 0.025193437933921814, 0.013745100237429142, -0.029690919443964958, -0.0060450793243944645 ]
Foreign Relations Secretary Marcelo Ebrard to visit Merida on February 18 Polish tourist climbs the Pyramid of Chichén Itzá Tag: heatwave More than 20,000 heat-related deaths in Europe Summer heat waves in France, Germany, Spain and Britain caused more than 20,000 "excess" deaths,. Valladolid News Due to heatstroke, 33 people have been hospitalized in the Yucatan Peninsula Mérida, Yucatán, (October 09, 2021) .- So far this year, due to high temperatures, 33. Yucatan TimesOctober 9, 2021 Consequences of climate change in Yucatan Due to its location, Yucatan is more vulnerable to the negative effects of climate change.. Yucatan TimesJune 11, 2021 Don't forget your umbrella, storms will continue in Yucatan. Also forecasted, temperatures will reach 39 degrees Celsius Also forecasted, temperatures will reach 39 degrees. Strong heat for Yucatan this Wednesday Take precautions to follow the strong temperatures MÉRIDA, Yucatan.- The weather in Yucatan this Wednesday,. Yucatan TimesJune 9, 2021 Strong heat and rain for Tuesday in Yucatan In Merida the thermal sensation could reach well over 40 degrees Celsius. MÉRIDA, Yucatan –. First fatal case of heatstroke registered in Yucatan this year Due to the intense heatwave that prevails in the Yucatan, the first death was registered. Extreme heat in the Yucatan Peninsula. The heatwave in the Yucatan Peninsula will be one of the most intense in years.. Yucatan TimesApril 13, 2021 Extreme heat in Mérida: the thermometer could reach 43+ degrees Celsius Starting this week, the heat would return with intensity to the Yucatan Peninsula, with temperatures. Yucatan TimesApril 6, 2021 Heatwave will hit almost all the United States territory A sweltering summer heat wave will grip an unusually vast swath of the nation this. Yucatan TimesJuly 7, 2020 On February 18, the Secretary of Foreign Affairs, Marcelo Ebrard Casaubón, will visit Mérida to preside over the "Dialogues for… A Polish tourist that goes by the name of Pawel Tomasz climbed the Chichen Itza Pyramid known as The Castle,…
[ -0.025484144687652588, 0.010151335969567299, -0.009099647402763367, 0.008736761286854744, -0.020096296444535255, 0.037579748779535294, -0.03499443456530571, 0.012908343225717545, 0.030255474150180817, 0.025258474051952362, 0.04636891186237335, -0.005300038959830999, -0.021489160135388374, -0.03899490833282471, -0.04234926402568817, -0.008736075833439827, -0.022623445838689804, -0.03159229829907417, 0.028035936877131462, 0.005732196848839521, -0.028108589351177216, 0.009966242127120495, -0.04587594047188759, -0.04646638408303261, -0.02710045874118805, 0.03187774121761322, 0.033229898661375046, -0.02842218056321144, 0.06484128534793854, 0.039808109402656555, -0.020939378067851067, -0.03200443834066391, 0.051969919353723526, -0.05335961654782295, -0.02254396863281727, -0.023738304153084755, 0.04388799890875816, -0.034126076847314835, -0.0013020735932514071, -0.015282767824828625, 0.012752765789628029, -0.02366885542869568, 0.037953633815050125, -0.02848471701145172, -0.024351874366402626, -0.02527507022023201, -0.013332273811101913, -0.0019815401174128056, 0.029933733865618706, -0.024374810978770256, 0.0019062220817431808, 0.014662160538136959, 0.021225998178124428, 0.010944655165076256, -0.021392010152339935, -0.0033232856076210737, 0.0036558008287101984, -0.023980842903256416, -0.023159906268119812, 0.022874023765325546, 0.020627763122320175, 0.0022634854540228844, 0.028852131217718124, -0.06966084986925125, 0.013961436226963997, 0.030661167576909065, 0.009955385699868202, -0.024291200563311577, 0.040240656584501266, -0.023036012426018715, -0.002647722139954567, 0.006689597852528095, -0.005031608045101166, -0.01870696432888508, -0.006129282992333174, 0.010427446104586124, -0.021600836887955666, 0.017464222386479378, -0.0071856253780424595, -0.008455020375549793, 0.017444685101509094, 0.0527220293879509, -0.011543040163815022, 0.016123557463288307, -0.06286796927452087, -0.005562177859246731, -0.015053468756377697, 0.02156105265021324, -0.011608394794166088, 0.012437376193702221, -0.012853549793362617, 0.05605320259928703, 0.0034422080498188734, -0.018330711871385574, 0.05868715047836304, 0.052888937294483185, -0.046143997460603714, 0.03957589343190193, -0.010977847501635551, 0.01547804195433855, 0.03335191681981087, 0.02192647196352482, -0.020605159923434258, 0.08826427906751633, -0.027073010802268982, -0.012709232978522778, -0.0016963290981948376, -0.006120992824435234, 0.005913194734603167, -0.04596966505050659, 0.020605558529496193, -0.010599758476018906, 0.008250442333519459, -0.017442801967263222, -0.006391668692231178, 0.04883792623877525, 0.001982328947633505, 0.03366268053650856, -0.06307919323444366, -0.0015183287905529141, -0.024370616301894188, -0.003734797239303589, 0.028353555127978325, -0.008057774044573307, 0.01735333539545536, -0.04101996868848801, -0.03580787032842636, 0.04377971217036247, -0.027025241404771805, -0.03304390236735344, -0.010792886838316917, -0.051026053726673126, -0.010482391342520714, 0.038113612681627274, -0.027576323598623276, 0.027123751118779182, 0.016710354015231133, 0.030613139271736145, 0.00642471993342042, -0.07531145960092545, 0.03771020844578743, 0.01815037615597248, 0.02999333292245865, 0.10365623980760574, 0.010035023093223572, 0.047263309359550476, 0.017077259719371796, -0.011599665507674217, -0.03155739605426788, 0.03870175778865814, -0.03424336761236191, 0.021799074485898018, -0.02184204012155533, -0.007241019047796726, 0.010632345452904701, -0.0007729495409876108, -0.00784041453152895, 0.011196241714060307, 0.006640888750553131, 0.04823306202888489, -0.043498266488313675, 0.004240913782268763, -0.012208783999085426, 0.007429840974509716, -0.0028846412897109985, 0.009420298039913177, -0.02301180362701416, -0.002650028094649315, -0.0074949730187654495, -0.06493642926216125, 0.036801595240831375, -0.014748040586709976, -0.006137256044894457, 0.01834569126367569, 0.0016615592176094651, 0.022155331447720528, 0.02912888303399086, -0.0024684558156877756, 0.0643579363822937, 0.04597417637705803, -0.029381291940808296, 0.005400328431278467, 0.0036894369404762983, 0.027561349794268608, 0.005604375619441271, -0.004856697749346495, 0.007939166389405727, -0.022904513403773308, -0.02407700940966606, 0.011874208226799965, -0.004845222923904657, -0.002008665120229125, -0.026873964816331863, 0.046617958694696426, 0.038297075778245926, 0.006116241216659546, -0.05031700059771538, 0.01466855313628912, 0.013525506481528282, -0.050871774554252625, -0.030705489218235016, 0.06818042695522308, -0.03110138140618801, 0.009530856274068356, -0.006348030176013708, -0.03730649873614311, 0.04203188791871071, 0.05298552289605141, -0.031018363311886787, 0.012283365242183208, 0.049458399415016174, 0.00816363375633955, 0.005876980721950531, -0.01263932604342699, 0.007100991439074278, -0.011870124377310276, -0.031261246651411057, 0.07081026583909988, -0.01724337600171566, 0.020391030237078667, 0.018443483859300613, 0.019300192594528198, 0.049023207277059555, 0.043652188032865524, 0.009875569492578506, 0.024279646575450897, 0.009095036424696445, 0.0763985812664032, -0.004393370356410742, 0.007495471276342869, 0.02054668217897415, 0.02782588265836239, 0.030165662989020348, 0.04703337699174881, 0.04781642183661461, 0.011312102898955345, 0.03851066157221794, 0.04184550791978836, -0.007168550044298172, 0.002442094497382641, -0.010969911701977253, 0.013557975180447102, 0.05129653587937355, 0.019608840346336365, 0.015138957649469376, 0.061871305108070374, -0.005605502054095268, 0.005017759744077921, -0.03735891729593277, 0.05230500549077988, 0.0059903888031840324, 0.04113604500889778, 0.04202299192547798, 0.010872655548155308, -0.028465749695897102, 0.03242115676403046, 0.040565259754657745, 0.06717850267887115, -0.02687702886760235, -0.05496926233172417, -0.015874873846769333, 0.019457954913377762, 0.0001559586962684989, 0.0030564400367438793, 0.03952369466423988, 0.05581870302557945, -0.02749648317694664, 0.03218349441885948, 0.0038132425397634506, -0.05681762471795082, -0.054024092853069305, -0.04563567414879799, -0.03063044510781765, -0.0490986593067646, -0.05561794713139534, 0.024054212495684624, 0.04950505495071411, -0.032957907766103745, 0.025836020708084106, -0.011278629302978516, -0.02501733973622322, -0.023520395159721375, -0.015806566923856735, 0.03856643661856651, 0.024378668516874313, 0.05811355635523796, -0.02622162364423275, 0.025010578334331512, 0.028029821813106537, -0.018405552953481674, -0.011094965972006321, -0.006517744157463312, -0.005979103967547417, 0.0008189597865566611, 0.02981298789381981, 0.00407776702195406, -0.01928914338350296, -0.011403114534914494, -0.03924126178026199, -0.030454767867922783, -0.00041077868081629276, 0.020639482885599136, -0.004298390354961157, -0.006439235061407089, -0.0338442400097847, 0.029667964205145836, 0.05356748029589653, -0.01907258853316307, 0.059317268431186676, 0.04952126368880272, -0.017358269542455673, 0.04907902702689171, 0.03383837267756462, 0.018859542906284332, -0.06879006326198578, 0.07724031060934067, 0.05836308002471924, -0.0005152152734808624, -0.014586495235562325, 0.02053730934858322, -0.025821126997470856, 0.019897131249308586, 0.00026370203704573214, -0.016800787299871445, -0.030403492972254753, 0.03362659737467766, 0.017737988382577896, -0.0664881020784378, 0.0346076637506485, -0.03459028899669647, -0.030616069212555885, -0.027710532769560814, -0.033913254737854004, 0.026020636782050133, 0.03770432993769646, 0.032548658549785614, -0.008227180689573288, -0.025367923080921173, -0.016709620133042336, 0.011946023441851139, 0.022227490320801735, -0.0401950404047966, 0.015833120793104172, 0.037392470985651016, -0.018042774870991707, 0.03699542209506035, 0.04353665933012962, 0.022218909114599228, -0.00806446559727192, 0.023269379511475563, -0.017237134277820587, 0.02037190832197666, 0.03132631629705429, 0.017040317878127098, -0.009669272229075432, 0.05207020044326782, -0.021721744909882545, 0.01080217957496643, 0.020072197541594505, 0.047661472111940384, 0.04365614056587219, -0.015874311327934265, -0.000350468180840835, -0.00022516350145451725, -0.038762230426073074, -0.046866510063409805, 0.045579344034194946, 0.028418395668268204, 0.058426111936569214, -0.05019626021385193, 0.04344405233860016, 0.006763385608792305, -0.05203622952103615, 0.03737593814730644, -0.05036003887653351, -0.019664840772747993, 0.06605218350887299, 0.026868559420108795, 0.03161829337477684, -0.038771118968725204, 0.018169794231653214, -0.013302398845553398, 0.023477353155612946, 0.03588886931538582, -0.011179953813552856, 0.03689593821763992, -0.016570648178458214, -0.015054465271532536, -0.021749284118413925, -0.022574715316295624, 0.00904071144759655, -0.03939274698495865, 0.010612559504806995, -0.014721017330884933, -0.03406655043363571, -0.07526730746030807, 0.030478063970804214, 0.02164614573121071, 0.025656897574663162, -0.005747877527028322, 0.034085292369127274, 0.012782743200659752, 0.029582563787698746, 0.00944618508219719, -0.001746443915180862, -0.0012579570757225156, -0.025762051343917847, 0.057691264897584915, 0.005638258997350931, -0.04001419246196747, -0.000004405114850669634, -0.05485126003623009, -0.008620909415185452, 0.001586475525982678, 0.011166601441800594, -0.011564514599740505, -0.030405769124627113, 0.02362046390771866, 0.005041063763201237, 0.04042111337184906, -0.03751319646835327, 0.0066328831017017365, -0.027481812983751297, 0.04917668551206589, 0.001487585948780179, -0.038077693432569504, -0.015661027282476425, -0.05711597949266434, 0.027094706892967224, 0.026964887976646423, 0.0015955324051901698, -0.05487414449453354, -0.02364593744277954, -0.00736783305183053, -0.042983971536159515, -0.0025423341430723667, 0.06034460663795471, -0.0393558032810688, -0.00678118783980608, -0.04147908836603165, 0.008992315270006657, 0.029537862166762352, 0.010603816248476505, -0.03420570492744446, -0.004162076860666275, 0.010281618684530258, 0.0032142847776412964, 0.04295911267399788, -0.008257804438471794, -0.03230403736233711, -0.0025394195690751076, -0.08854537457227707, 0.022964220494031906, -0.0034562230575829744, -0.04184572398662567, -0.005231026094406843, -0.0013865205692127347, 0.003402573289349675, 0.04781926050782204, -0.021841123700141907, -0.027596192434430122, -0.0026368957478553057, 0.020156003534793854, -0.04046059027314186, -0.05423854663968086, 0.057040899991989136, -0.011279059574007988, -0.015148748643696308, 0.01825147122144699, 0.03929577022790909, -0.0061938767321407795, 0.009754854254424572, 0.034129150211811066, -0.06756321340799332, 0.010470150038599968, -0.0468912348151207, 0.016903690993785858, -0.004220169503241777, -0.019954785704612732, 0.01891915127635002, -0.030776211991906166, 0.024382492527365685, 0.00895447563380003, -0.04217083379626274, -0.03196932002902031, -0.05748381093144417, -0.02098439261317253, 0.028021614998579025, -0.03493385761976242, 0.016954010352492332, 0.001461874577216804, -0.026426449418067932, 0.00368705322034657, 0.013204444199800491, -0.02908160723745823, 0.0038698469288647175, -0.027397099882364273, 0.009985723532736301, 0.011176489293575287, -0.0036427469458431005, 0.016869692131876945, -0.0034051525872200727, -0.02896694839000702, 0.017113016918301582, -0.015188916586339474, -0.04194165766239166, -0.04730784893035889, -0.007541376166045666, -0.02103027142584324, 0.003905931720510125, -0.03513537719845772, -0.04003225266933441, -0.04377086088061333, 0.008139720186591148, 0.037930697202682495, 0.0026059297379106283, 0.01245662197470665, -0.02234319970011711, -0.011012797243893147, 0.06432824581861496, -0.014336768537759781, -0.06406804919242859, -0.013791775330901146, 0.06251496821641922, 0.007368629332631826, 0.05436844378709793, 0.008725171908736229, -0.007979528047144413, -0.03936773166060448, -0.04507468640804291, -0.02390456385910511, -0.058429304510354996, 0.009783975780010223, -0.03186994791030884, -0.015515591017901897, -0.015746358782052994, 0.054494962096214294, 0.013983916491270065, 0.017781052738428116, 0.016287023201584816, -0.018662316724658012, -0.005789374466985464, -0.03512078523635864, -0.03170699253678322, -0.017552345991134644, -0.03550740331411362, -0.01754925586283207, 0.04347127676010132, 0.021548982709646225, 0.025262178853154182, 0.01623663492500782, 0.004707718268036842, 0.0006607261602766812, -0.029887530952692032, -0.04518110305070877, -0.05047447606921196, 0.01761562190949917, 0.009121947921812534, -0.005509468726813793, -0.024060897529125214, -0.04301062971353531, 0.04410943388938904, -0.033217545598745346, 0.002716486342251301, -0.02811754308640957, -0.024798987433314323, -0.007399267517030239, -0.014428457245230675, 0.0596032552421093, -0.029752474278211594, 0.00369950826279819, 0.009555256925523281, 0.04966716468334198, 0.045659471303224564, -0.002411831868812442, -0.008551998995244503, -0.04638119041919708, -0.0323101207613945, -0.06578215211629868, 0.05517525598406792, -0.04471932351589203, -0.025615287944674492, -0.022264858707785606, 0.023564603179693222, 0.05171553045511246, 0.015520602464675903, 0.0276869535446167, 0.06486421078443527, -0.012379885651171207, -0.013435724191367626, -0.02473674900829792, 0.03788900747895241, 0.03425854071974754, 0.007844671607017517, -0.0010666435118764639, -0.015282024629414082, -0.023297397419810295, -0.0053009456023573875, -0.036546334624290466, -0.0596756711602211, -0.06667985767126083, 0.003796506440266967, 0.06354018300771713, -0.011119112372398376, 0.06181773543357849, 0.006687846966087818, -0.05817253142595291, -0.05783074349164963, 0.033606402575969696, 0.025213392451405525, 0.015251833945512772, 0.058395661413669586, -0.002010025316849351, -0.024188119918107986, 0.01714741252362728, 0.009040961973369122, -0.006964093539863825, -0.0426412969827652, 0.05634221434593201, -0.009580598212778568, -0.05096198990941048, 0.009519746527075768, 0.05306651070713997, -0.053398340940475464, -0.018951022997498512, -0.009779391810297966, -0.034316446632146835, 0.0050517055206000805, -0.0332191064953804, 0.009486977942287922, -0.020728636533021927, -0.015972569584846497, -0.0052047003991901875, 0.016543617472052574, 0.005123725160956383, 0.012046578340232372, 0.013042984530329704, 0.020943913608789444, -0.03572681546211243, -0.02091149613261223, -0.002596306847408414, -0.03914983198046684, -0.016243286430835724, -0.034025274217128754, -0.034518223255872726, 0.036929190158843994, -0.014467181637883186, 0.04327370598912239, -0.01649598963558674, 0.01078325416892767, 0.03532500937581062, -0.008198907598853111, 0.02374344877898693, -0.005384847521781921, -0.017298515886068344, 0.02954019419848919, -0.002423217985779047, -0.03535580635070801, -0.05966227129101753, 0.04515959322452545, -0.004339481238275766, 0.029674500226974487, -0.05565860494971275, -0.020453602075576782, 0.021237988024950027, -0.02210959792137146, -0.013924580998718739, -0.03852145001292229, -0.043400101363658905, -0.06386245042085648, -0.06963495165109634, -0.023233238607645035, -0.022823086008429527, -0.03541512414813042, 0.010745421051979065, -0.011647088453173637, -0.044789817184209824, 0.003195024561136961, 0.012329084798693657, -0.033937882632017136, 0.024861708283424377, -0.034908685833215714, 0.018929498270154, -0.052259575575590134, -0.03608107194304466, -0.048130571842193604, -0.005678803194314241, -0.005097802262753248, 0.010139228776097298, -0.005283803679049015, 0.01251854095607996, -0.026521941646933556, 0.014054033905267715, 0.01049499399960041, 0.014853237196803093, -0.0045445081777870655, -0.05982600897550583, -0.019391249865293503, 0.028189878910779953, 0.020264359191060066, 0.03763313218951225, 0.019194869324564934, -0.02051936648786068, 0.010071379132568836, -0.013645594008266926, -0.02120068296790123, -0.00370786152780056, -0.01365825068205595, 0.001331145060248673, 0.003991339355707169, -0.040249671787023544, -0.01837550476193428, -0.008799328468739986, -0.04068388044834137, 0.03449848294258118, -0.034101445227861404, 0.02709258906543255, -0.023612773045897484, -0.03756227716803551, 0.023022133857011795, 0.03974030166864395, -0.007630727253854275, 0.04740382358431816, -0.01541955303400755, 0.028167659416794777, 0.02058093436062336, 0.008840437047183514, 0.02778572402894497, 0.00034115533344447613, 0.03490621969103813, -0.03660059720277786, 0.024318302050232887, 0.031431157141923904, -0.015455964021384716, 0.01777062751352787, -0.008284675888717175, -0.03789253905415535, -0.03385164961218834, -0.0206037275493145, 0.0008737349999137223, 0.054254237562417984, 0.03103223629295826, 0.003545802552253008, -0.005879334639757872, -0.017817091196775436, -0.048863571137189865, 0.02940717525780201, -0.05744621157646179, 0.008358441293239594, 0.02377285435795784, -0.02433566004037857, -0.02257629670202732, 0.012702839449048042, -0.04595351591706276, 0.013420755043625832, -0.0464736670255661, -0.017442230135202408, -0.009652623906731606, 0.037981268018484116, 0.014704286120831966, 0.04539017751812935, 0.005014668684452772, 0.023375989869236946, 0.015305908396840096, 0.05422579497098923, -0.046123579144477844, -0.02303103171288967, -0.0071627008728682995, 0.037169698625802994, 0.006699314806610346, 0.0051169628277421, 0.002631337381899357, 0.03889377415180206, -0.007667419034987688, -0.004374964628368616, -0.00899327453225851, 0.007731761783361435, 0.015328544192016125, 0.02211655117571354, -0.03816352039575577, -0.007658154703676701, -0.018429940566420555, 0.02190675027668476, -0.0037927827797830105, -0.019057821482419968, -0.0329991951584816, 0.025156697258353233, 0.010654812678694725, 0.00484998757019639, 0.03354143351316452, -0.005527405999600887, 0.045813869684934616, -0.025849858298897743, 0.024921100586652756, -0.03939876705408096, 0.047167614102363586, 0.02722994051873684, 0.027427250519394875, 0.020749574527144432, 0.015235994942486286, 0.052673377096652985, -0.03887195885181427, -0.01575092226266861, 0.056502267718315125, 0.044263437390327454, 0.012554565444588661, 0.01273444201797247, -0.03273182362318039, 0.011514673009514809, 0.02422323077917099, -0.006720411591231823, -0.0063560958951711655, -0.024344846606254578, 0.027401702478528023, -0.00913218129426241, -0.0017864650581032038, 0.08579820394515991, -0.028273025527596474, 0.009170078672468662, -0.02800552174448967, -0.051553934812545776, 0.002103545004501939, 0.036818474531173706, -0.00042713424772955477, 0.022704701870679855, 0.041769493371248245, 0.03742581233382225, -0.014361520297825336, 0.02937440015375614, -0.0016708305338397622, 0.007355077192187309, -0.06963852792978287, 0.013593199662864208, 0.020913193002343178, 0.01633438840508461, -0.02990414947271347, -0.01746191270649433, -0.02464820258319378, 0.02872878685593605, -0.04081287235021591, 0.0007672854699194431, 0.010795945301651955, -0.013176608830690384, -0.016461240127682686, -0.06120126694440842, 0.01998443715274334, -0.03907974064350128, -0.014457646757364273, 0.0074341134168207645, 0.011549810878932476, -0.004521660972386599, 0.02793295308947563, 0.00818630214780569, 0.022093189880251884, 0.005143134389072657, 0.046869486570358276, -0.017658201977610588, 0.03273452818393707, 0.04717215895652771, -0.033925436437129974, -0.022716449573636055, 0.030790608376264572, -0.03345775231719017, -0.02451612427830696, -0.03773567080497742, -0.04709382355213165, 0.007527943234890699, 0.02274339646100998, -0.015561792999505997, -0.011635406874120235, 0.06134776398539543, -0.0037924875505268574, -0.05991452932357788, 0.004102520644664764, 0.026929548010230064, -0.023104902356863022, 0.016728464514017105, 0.002344198292121291, 0.028602495789527893, -0.02732202783226967, -0.010594791732728481, -0.03632994368672371, -0.01449650153517723, 0.02386544831097126, -0.05722229555249214, 0.030638758093118668, -0.009380025789141655, -0.008185263723134995, -0.03551265597343445, -0.058136023581027985, 0.0008250327664427459, 0.007144545670598745, -0.06618673354387283, -0.00561779597774148, 0.03033967688679695, 0.05716066062450409, -0.0001602730480954051, 0.012154510244727135, -0.02992255426943302, 0.025547677651047707, 0.03264841437339783, 0.08483128249645233, -0.003867500927299261, 0.012203224934637547, 0.018461128696799278, -0.0023799508344382048, 0.016589874401688576, -0.027210257947444916, 0.05098787322640419, -0.02103978581726551, -0.03953484073281288, -0.016864245757460594, 0.0005266480729915202, -0.034531641751527786, -0.035690534859895706, 0.019614003598690033, 0.0112045519053936, 0.006653535645455122, -0.054456647485494614, -0.058371420949697495, -0.009768662974238396, -0.022207872942090034, 0.031687717884778976, -0.024919897317886353, 0.0075763920322060585, 0.001208250760100782, 0.017780181020498276, 0.002029615454375744, -0.0913386195898056, 0.15376600623130798, 0.03328922390937805, 0.017647702246904373, -0.03819188475608826, 0.02156599424779415, 0.04851275309920311, 0.005878254771232605, -0.02137153223156929, 0.006519771181046963, -0.027435094118118286, 0.02597133070230484, -0.0037289406172931194, 0.0030700345523655415, 0.013499123975634575, 0.007117556408047676, 0.058924105018377304, -0.04820074513554573, -0.008748390711843967, 0.027106473222374916, -0.04472194239497185, -0.035598695278167725, 0.04409738630056381, -0.002026467816904187, 0.022250652313232422, 0.008377127349376678, 0.027897020801901817, 0.020664365962147713, -0.038200680166482925, -0.0008350605494342744, -0.000917211000341922, 0.022992778569459915, -0.04654386267066002, 0.029995493590831757, 0.002853380050510168, -0.036720871925354004, 0.04980025440454483, 0.0039423806592822075, -0.012584186159074306, 0.0016559814102947712, -0.00003871148146572523, -0.016339071094989777, 0.03284893184900284, 0.04312314838171005, -0.039466969668865204, 0.019620902836322784, 0.027933994308114052, -0.03140396997332573, 0.011069412343204021, 0.046249981969594955, -0.012709726579487324, 0.06651971489191055, -0.04811684414744377, 0.010800028219819069, -0.007814610376954079, -0.05314228683710098, 0.016697421669960022, 0.020246822386980057, -0.024864744395017624, -0.027377953752875328, 0.014212044887244701, 0.025163399055600166, -0.013353102840483189, 0.006764667574316263, -0.00508755212649703, -0.06679688394069672, 0.025851547718048096, 0.0070835016667842865, -0.023846609517931938, -0.021590327844023705, -0.023959342390298843, -0.011891127564013004, -0.03041606768965721, -0.020749619230628014, -0.022605419158935547, 0.025707794353365898, 0.01972915790975094, -0.0066563524305820465, 0.037473492324352264, 0.009457271546125412, -0.018901431933045387, -0.02418641932308674, -0.035358499735593796, -0.009098398499190807, -0.006137507501989603, 0.01549462229013443, 0.03324538841843605, -0.029125366359949112, -0.019621746614575386, -0.004523467738181353, 0.03930845111608505, 0.038976192474365234, 0.021306978538632393, -0.0220193974673748, -0.029045047238469124, 0.006584540009498596 ]
The Nursery team is Ms Wright, Ms Ferreira, Ms Karachaliou and Mrs Barnard. In Nursery, the children are continuing to develop their social skills through small group work, circle time and playing together. They are working on their fine motor skills by threading beads and necklaces, playing with peg boards and using tools like tweezers and pipettes. We are also continuing with the popular Dough Disco every Thursday! The children are enjoying making marks in a variety of ways which, this half-term, include using sticks in soil, painting bread and writing messages in bottles. The children love investigating texture in our malleable area. Amongst other things, they have been mashing, crushing, pouring and moulding peas, jelly, dough and gloop and painting with spaghetti brushes and dinosaurs. We have also started linked provision this half term, which focuses on improving the children's speaking and listening skills.
[ -0.00954311341047287, 0.021375417709350586, -0.03525213152170181, -0.010569869540631771, -0.007093324325978756, -0.000009300461897510104, -0.002601803280413151, 0.02418077364563942, 0.021407943218946457, 0.010069824755191803, 0.023117924109101295, 0.029100218787789345, 0.026720769703388214, -0.015442732721567154, -0.01232399046421051, 0.010185956954956055, -0.03435506299138069, -0.025500250980257988, -0.01415520440787077, -0.0003294149355497211, -0.007415479980409145, 0.03949439525604248, -0.05372718349099159, -0.027929455041885376, -0.017536750063300133, 0.052770934998989105, 0.036438096314668655, -0.010958943516016006, 0.0654626116156578, 0.04575248435139656, -0.027095135301351547, -0.020438138395547867, 0.040940966457128525, -0.03684120252728462, -0.03444190323352814, -0.01349372323602438, 0.045242637395858765, -0.00854465737938881, 0.012969871051609516, -0.08717082440853119, 0.0295706894248724, -0.0008124373271130025, 0.030381958931684494, -0.05849157273769379, -0.02347220666706562, 0.021654922515153885, 0.019589893519878387, -0.009465957060456276, 0.020722609013319016, -0.021343987435102463, 0.02196751907467842, 0.0061797345988452435, 0.013289369642734528, -0.03760740906000137, 0.007735097780823708, 0.013848531991243362, 0.0005273418501019478, -0.025891803205013275, -0.03587409108877182, 0.029834123328328133, 0.03202827274799347, 0.03439801558852196, 0.03101539798080921, -0.07207939028739929, 0.008826364763081074, 0.012002273462712765, -0.008495119400322437, -0.029191628098487854, -0.010237802751362324, -0.03645062446594238, -0.01454356499016285, 0.003422331064939499, -0.01690269447863102, -0.03641548007726669, 0.0008708538371138275, -0.014901608228683472, -0.0334467776119709, -0.010399043560028076, -0.020751487463712692, -0.0017117889365181327, 0.008401318453252316, 0.026920953765511513, 0.000522456772159785, 0.020083893090486526, -0.045527320355176926, -0.02127053774893284, 0.0013254384975880384, 0.03939962014555931, 0.019508380442857742, 0.002607906237244606, 0.009390011429786682, 0.05686233192682266, -0.03157084062695503, 0.0055656032636761665, 0.05691833794116974, 0.03392259404063225, -0.04638807848095894, 0.04272552207112312, -0.004838909488171339, 0.013997994363307953, 0.05069800093770027, 0.03208588808774948, -0.0020024871919304132, 0.02360960654914379, -0.05603823438286781, -0.009933496825397015, 0.002965083345770836, 0.0035096656065434217, -0.034717511385679245, 0.0006427058251574636, -0.007963400334119797, -0.010052134282886982, 0.05103834345936775, -0.015676826238632202, 0.010434828698635101, 0.056162167340517044, 0.03190465644001961, 0.04098217934370041, -0.0651966780424118, 0.026209140196442604, 0.012037070468068123, 0.019902635365724564, 0.020856864750385284, -0.022363951429724693, 0.0028372230008244514, 0.003860113676637411, -0.04158949851989746, 0.05473088473081589, -0.0007776488782837987, -0.014992867596447468, -0.018910177052021027, -0.06413628160953522, -0.008262942545115948, 0.01190128829330206, -0.016607902944087982, 0.03710139915347099, -0.012375988066196442, 0.04628327861428261, 0.020292865112423897, -0.05814328044652939, 0.031176747754216194, 0.03988317772746086, -0.002170595806092024, 0.07084404677152634, 0.01557996403425932, 0.000430923915700987, -0.039952173829078674, -0.008243301883339882, -0.05026881396770477, -0.004081894177943468, -0.01119039673358202, -0.0012687734561040998, 0.0021772875916212797, 0.0015210832934826612, -0.002965438412502408, -0.015378134325146675, -0.03300505504012108, 0.008385987021028996, 0.014223427511751652, 0.006848424207419157, -0.02325136959552765, 0.0010730762733146548, -0.005624854005873203, 0.04339223355054855, -0.02074255980551243, 0.014256847091019154, 0.002741038566455245, -0.021923774853348732, -0.0020925416611135006, -0.01876693218946457, 0.022815844044089317, 0.013932705856859684, -0.0070247710682451725, 0.009360907599329948, -0.005911447107791901, 0.05402372032403946, 0.037947650998830795, 0.003897955408319831, 0.04147244617342949, 0.016277626156806946, -0.018763400614261627, -0.02766242064535618, 0.01696562021970749, 0.04965723678469658, 0.016373777762055397, -0.01940912753343582, 0.009298967197537422, -0.010611475445330143, -0.009655030444264412, -0.0451105572283268, -0.029173042625188828, 0.03727026283740997, -0.04856162145733833, 0.02271232195198536, 0.016433192417025566, -0.0022950589191168547, -0.006259276997298002, 0.017518300563097, -0.02666095457971096, -0.027093907818198204, -0.06504567712545395, 0.08298180997371674, -0.02413029782474041, 0.03537606820464134, -0.019282348453998566, -0.05755576491355896, 0.014888977631926537, 0.058486755937337875, -0.049979522824287415, -0.012166447937488556, 0.03666754066944122, -0.0034826304763555527, -0.0037505130749195814, 0.005198035389184952, 0.007140543777495623, -0.02153967320919037, -0.012095410376787186, 0.06011439859867096, -0.01662372425198555, -0.002251660916954279, 0.027089986950159073, 0.014863122254610062, 0.0445626899600029, 0.022421792149543762, -0.02774476632475853, 0.014717203564941883, -0.006956764496862888, 0.04319951310753822, 0.023660635575652122, 0.02152915485203266, -0.025163976475596428, 0.07819695770740509, 0.031783170998096466, 0.06546380370855331, 0.0393148735165596, 0.014310814440250397, 0.015642471611499786, 0.02254514954984188, -0.0023088473826646805, 0.027646156027913094, -0.013266605325043201, -0.03304612264037132, 0.02476547658443451, 0.021746493875980377, -0.00784314889460802, 0.021415993571281433, -0.013864556327462196, 0.02782595343887806, -0.0111323781311512, 0.028274238109588623, -0.038604818284511566, 0.0551542304456234, 0.018787549808621407, 0.03206714987754822, -0.025223787873983383, 0.012123982422053814, 0.017972450703382492, 0.04682047665119171, -0.03618137165904045, 0.012119957245886326, 0.009470819495618343, 0.025968676432967186, -0.006906334310770035, 0.008341203443706036, 0.03639329597353935, 0.027187101542949677, 0.00894748605787754, 0.03140616416931152, -0.018336080014705658, -0.043340377509593964, -0.03253444656729698, -0.05028446391224861, -0.04068705067038536, -0.048514485359191895, -0.043068721890449524, 0.007771277334541082, 0.0160052590072155, -0.031178748235106468, 0.03493779897689819, 0.003976832143962383, -0.022785721346735954, -0.016939332708716393, -0.01502976194024086, 0.05352046713232994, 0.03480225056409836, 0.03459363430738449, -0.03572395443916321, 0.015598260797560215, -0.024788469076156616, 0.035002559423446655, -0.04443113133311272, 0.003245219122618437, -0.004077123943716288, -0.029552558436989784, 0.02775244042277336, -0.01998181641101837, -0.011198341846466064, -0.019984617829322815, -0.031934816390275955, -0.034596774727106094, -0.027495766058564186, -0.0023725582286715508, 0.00882473960518837, 0.002038482343778014, -0.04456411302089691, 0.04008343815803528, 0.034078411757946014, -0.023320702835917473, 0.05608604848384857, 0.04736417904496193, -0.02352898009121418, 0.03937168046832085, 0.030744735151529312, -0.011315084993839264, -0.06445734202861786, 0.016480961814522743, 0.048190999776124954, 0.017840716987848282, -0.05678700655698776, -0.005131861194968224, -0.022703154012560844, 0.02094258740544319, 0.02898871898651123, 0.007617731112986803, -0.047405220568180084, 0.04647664725780487, 0.007782775908708572, -0.0686337798833847, 0.03331243246793747, -0.025522148236632347, -0.024535197764635086, -0.03397821635007858, -0.03330086171627045, 0.011997397989034653, 0.015983903780579567, 0.041909825056791306, -0.007971176877617836, -0.023543357849121094, 0.01786406897008419, 0.006561002228409052, 0.03935771808028221, 0.011777342297136784, 0.03093758225440979, 0.015559562481939793, -0.0150443771854043, 0.014807134866714478, 0.028482986614108086, -0.023901289328932762, 0.008549971505999565, 0.03024103119969368, 0.024082288146018982, 0.0025972742587327957, 0.04198409989476204, -0.0032725585624575615, 0.010962995700538158, 0.06697556376457214, -0.051906272768974304, 0.0010617556981742382, 0.031494852155447006, 0.02386152185499668, 0.01476670615375042, -0.020976630970835686, 0.0278686061501503, -0.0514121875166893, -0.0865650400519371, -0.03997092321515083, 0.06350962072610855, 0.013648945838212967, 0.042944520711898804, -0.07336890697479248, 0.03692212328314781, -0.03837775066494942, 0.00012499277363531291, 0.07361871004104614, -0.058864571154117584, -0.026342911645770073, 0.043483417481184006, -0.033876631408929825, 0.06606080383062363, -0.023755459114909172, 0.019218582659959793, -0.017429105937480927, -0.019239529967308044, 0.01994035206735134, -0.017735153436660767, 0.012946131639182568, -0.006381474435329437, 0.023818200454115868, 0.005467269103974104, -0.013742257840931416, -0.0005262556369416416, -0.027482734993100166, 0.016013875603675842, -0.025932539254426956, -0.019519541412591934, -0.03805684670805931, 0.02756139636039734, 0.023704152554273605, 0.04316479340195656, -0.026018980890512466, 0.005808726418763399, 0.009040710516273975, 0.00407417630776763, 0.043693847954273224, -0.013804578222334385, 0.04622644558548927, -0.05376294627785683, 0.010878046974539757, 0.02804890275001526, -0.039214055985212326, -0.015731947496533394, -0.013004610314965248, -0.04824526607990265, 0.023838112130761147, 0.0166527908295393, -0.04554321616888046, -0.0570671483874321, 0.0027417652308940887, -0.01627509295940399, 0.03476811945438385, -0.047052569687366486, -0.02076389081776142, -0.00752979377284646, 0.031630873680114746, 0.023636357858777046, -0.04481246694922447, 0.018166910856962204, -0.03309378772974014, 0.041749559342861176, 0.03154376894235611, -0.031761523336172104, -0.019880570471286774, -0.03908032178878784, -0.033109769225120544, 0.010332869365811348, -0.018259601667523384, 0.04469035565853119, 0.01419397909194231, 0.0016551294829696417, -0.036690544337034225, 0.02539057843387127, 0.030565345659852028, -0.00265518669039011, -0.010402143001556396, 0.021028142422437668, 0.04481913894414902, -0.0041473424062132835, 0.05222158879041672, -0.010897668078541756, -0.02815493941307068, 0.016242802143096924, -0.053608816117048264, 0.009374290704727173, -0.005499870050698519, 0.01536251325160265, -0.0025698435492813587, 0.007424585055559874, 0.028016014024615288, 0.04715004935860634, -0.018762849271297455, 0.016125334426760674, -0.006095694378018379, 0.0613284669816494, -0.041685111820697784, -0.017002811655402184, 0.031555503606796265, 0.0077418670989573, -0.0543275848031044, 0.005429796874523163, 0.05660431087017059, -0.05667451024055481, -0.018946873024106026, 0.04193871468305588, -0.04707137122750282, 0.057365696877241135, -0.02941177412867546, 0.02147897705435753, -0.02893937937915325, -0.032991912215948105, -0.0040936460718512535, -0.02252349443733692, 0.02832578308880329, -0.004694646690040827, -0.0010811322135850787, -0.05265308916568756, -0.046648021787405014, -0.0142016327008605, 0.013108761981129646, -0.02129078283905983, 0.01938263699412346, 0.0220887940376997, -0.027866892516613007, 0.008232735097408295, 0.012701719999313354, 0.035917676985263824, -0.0020630937069654465, -0.016680628061294556, -0.007085926830768585, 0.004546992480754852, 0.019826428964734077, 0.03943200781941414, -0.003058464964851737, -0.037635501474142075, -0.017269710078835487, -0.011831063777208328, -0.0019130645086988807, -0.05448939651250839, -0.009414362721145153, -0.03660500794649124, -0.008678735233843327, -0.021553702652454376, 0.026946483179926872, -0.0037425935734063387, -0.008255749940872192, 0.02266261726617813, -0.006563530303537846, 0.007316209841519594, 0.00619103666394949, -0.024803023785352707, 0.05429355055093765, 0.037801504135131836, -0.041742585599422455, -0.025802738964557648, 0.04501989483833313, -0.0323195718228817, 0.044089268893003464, 0.0026466422714293003, 0.016646794974803925, -0.05361190810799599, -0.05309716984629631, -0.020438142120838165, -0.04612929746508598, -0.011377112939953804, -0.035877421498298645, -0.01971736177802086, -0.026583829894661903, 0.02905336767435074, -0.006590728648006916, 0.0018435105448588729, -0.007741778157651424, -0.04118833318352699, 0.007578265853226185, -0.030774030834436417, -0.029986953362822533, -0.024647681042551994, 0.0036453537177294493, 0.0009736659121699631, 0.03969862312078476, 0.0191697645932436, 0.021656770259141922, 0.01853090152144432, -0.007708044722676277, 0.01646560989320278, 0.004479668568819761, -0.0424947552382946, -0.03575269505381584, -0.0028015095740556717, 0.01723090559244156, -0.009040022268891335, 0.00701005756855011, -0.03511727601289749, 0.02902233600616455, -0.03732616454362869, -0.008616539649665356, -0.03655257448554039, -0.02316337823867798, -0.03392854705452919, -0.006280678790062666, 0.0844736099243164, 0.0006508001242764294, 0.014721344225108624, -0.01076488196849823, 0.03973603993654251, 0.047501493245363235, 0.010922933928668499, -0.040610093623399734, -0.030326735228300095, -0.07612000405788422, -0.04514559730887413, 0.012264511547982693, -0.01666383631527424, 0.0006952692638151348, -0.03620530664920807, 0.011987308971583843, 0.04128067567944527, 0.03940647467970848, 0.049326859414577484, 0.03359628841280937, -0.019259346649050713, 0.01587712951004505, -0.06456734240055084, 0.020721934735774994, 0.01253662072122097, -0.012622482143342495, -0.012669328600168228, -0.023481715470552444, -0.005474194418638945, 0.03333863243460655, -0.05334657058119774, -0.024902839213609695, -0.035628240555524826, -0.007976474240422249, 0.0634147971868515, -0.047889214009046555, 0.03261788189411163, -0.03733803704380989, -0.028521038591861725, -0.03631194680929184, 0.019161267206072807, -0.006077898666262627, 0.002650093287229538, 0.03896356001496315, 0.013347071595489979, -0.0019508891273289919, -0.01261111255735159, 0.015435854904353619, -0.014779552817344666, -0.033806949853897095, 0.07062171399593353, -0.015254663303494453, -0.05503193661570549, -0.007472741883248091, 0.04565450921654701, -0.046017836779356, -0.041297461837530136, -0.0016989961732178926, -0.0001725576730677858, 0.023997722193598747, -0.020800938829779625, -0.002359736477956176, 0.005797010380774736, 0.005033941473811865, 0.016553780063986778, 0.051294680684804916, 0.0041695707477629185, 0.043479472398757935, 0.005843899212777615, 0.02304200455546379, -0.04396424442529678, -0.004183823708444834, 0.04439869895577431, -0.015452741645276546, -0.02804896980524063, 0.005252590868622065, -0.02110045589506626, 0.006584171671420336, -0.0038884871173650026, 0.03742939233779907, -0.00596719840541482, 0.028244981542229652, 0.0383131168782711, -0.02566654235124588, 0.021012645214796066, -0.02158454991877079, 0.019061312079429626, 0.039697468280792236, -0.05702455714344978, -0.043117888271808624, -0.029067231342196465, 0.010367605835199356, 0.025825029239058495, 0.030564118176698685, -0.042710281908512115, 0.003074592212215066, 0.01773432269692421, 0.0027130593080073595, -0.003922973293811083, -0.04064500331878662, -0.03283841162919998, -0.05551988631486893, -0.062120504677295685, -0.038373105227947235, -0.013377534225583076, 0.010987453162670135, 0.035541191697120667, 0.016267433762550354, -0.026805013418197632, 0.029519500210881233, 0.013842502608895302, -0.044231344014406204, 0.006276002153754234, -0.039830975234508514, 0.027944305911660194, -0.029949232935905457, -0.04175594076514244, -0.0493045337498188, 0.010575605556368828, -0.0025353683158755302, -0.012454783543944359, -0.0483911968767643, 0.021039482206106186, -0.00223965710029006, 0.03826124966144562, -0.003647034289315343, -0.007555823307484388, -0.03613888472318649, -0.0464809387922287, 0.0042491634376347065, 0.038503509014844894, -0.018705204129219055, 0.016236787661910057, 0.007902923040091991, -0.018764358013868332, 0.02694059908390045, 0.026430627331137657, -0.0352754108607769, -0.04110203683376312, 0.016817810013890266, 0.01740330457687378, -0.016594326123595238, -0.01691480539739132, 0.008488559164106846, 0.009221594780683517, -0.025380156934261322, 0.01208846177905798, -0.023433774709701538, -0.0015275791520252824, 0.031164230778813362, -0.018641838803887367, -0.01768852397799492, 0.0887436717748642, 0.03235822543501854, 0.04376722872257233, 0.017825957387685776, 0.017221352085471153, 0.014460408128798008, -0.002531894715502858, -0.003764214925467968, 0.016289180144667625, 0.002039322629570961, -0.004189221654087305, -0.011759699322283268, 0.006510999985039234, -0.01881260983645916, 0.025740904733538628, -0.034321244806051254, -0.0033925350289791822, -0.025623830035328865, -0.010329706594347954, 0.0005066468729637563, 0.041278302669525146, -0.007969770580530167, -0.05301795154809952, 0.04250849038362503, -0.03947021812200546, -0.016983596608042717, 0.03754483908414841, -0.056603267788887024, -0.033124517649412155, 0.041422151029109955, -0.011710344813764095, -0.0156465545296669, -0.023257466033101082, -0.030696894973516464, -0.013887656852602959, -0.010796806775033474, -0.01786559447646141, -0.028196299448609352, 0.03459621220827103, -0.015167033299803734, 0.03933769837021828, 0.020174061879515648, -0.00936964526772499, 0.007545648608356714, 0.040527742356061935, -0.03824023902416229, -0.06499077379703522, 0.01969706267118454, 0.00020349747501313686, 0.0013102381490170956, -0.014202633872628212, 0.019174063578248024, 0.0301786120980978, -0.008785777725279331, 0.03748517856001854, -0.0064894347451627254, 0.012712276540696621, -0.003564430633559823, 0.006259076297283173, 0.009140475653111935, 0.019167780876159668, -0.03527713939547539, 0.0794881135225296, 0.013652266003191471, -0.042263213545084, -0.03611352667212486, 0.05932898819446564, 0.009788338094949722, 0.0020476090721786022, 0.05492750555276871, 0.01657313108444214, 0.05791996046900749, 0.000019117971532978117, 0.020706037059426308, 0.02753452956676483, 0.04294165223836899, 0.012556105852127075, 0.03655798360705376, 0.027200937271118164, 0.022348856553435326, 0.04291468858718872, -0.018094725906848907, 0.011320872232317924, 0.029510561376810074, 0.010136363096535206, -0.017951341345906258, 0.0038341647014021873, -0.02197812870144844, 0.016571879386901855, -0.0018931736703962088, -0.018478764221072197, -0.012701603583991528, -0.01919890195131302, -0.012115469202399254, -0.01359433215111494, -0.006810734048485756, 0.030726835131645203, 0.010983509942889214, 0.018929554149508476, 0.011337196454405785, 0.003509776433929801, 0.026934221386909485, 0.048139188438653946, -0.0414615236222744, 0.007976220920681953, 0.04369034245610237, 0.023168515413999557, 0.0028520617634058, 0.049082547426223755, 0.014812969602644444, 0.017385272309184074, -0.013086429797112942, 0.03334212675690651, 0.026501033455133438, -0.0008626776398159564, -0.02852386049926281, 0.0007609478197991848, -0.048437654972076416, 0.05494895577430725, -0.020895197987556458, -0.04597681015729904, 0.05343633145093918, -0.015708694234490395, -0.0335676334798336, -0.03220989182591438, 0.01796078123152256, -0.03500202298164368, 0.018907705321907997, 0.05641472339630127, -0.017071420326828957, -0.020926350727677345, 0.030648306012153625, 0.006078134290874004, 0.024840770289301872, 0.02600042149424553, 0.02747412584722042, 0.005657526198774576, 0.012749833054840565, 0.04363348335027695, 0.00022807970526628196, 0.006840468849986792, 0.023907529190182686, -0.04468049481511116, -0.02577926404774189, -0.017951568588614464, -0.027369946241378784, -0.004672522656619549, -0.042151425033807755, -0.03507871925830841, -0.007234875112771988, 0.02581106871366501, -0.018039464950561523, -0.03570147231221199, -0.0016746975015848875, 0.048528049141168594, -0.07828085869550705, 0.009646964259445667, 0.019566595554351807, 0.01451847143471241, -0.00267461477778852, 0.0055006081238389015, -0.016023701056838036, -0.03856249153614044, -0.009662339463829994, -0.025053149089217186, 0.025825172662734985, -0.04682442918419838, -0.02424863912165165, -0.016111882403492928, -0.0465056337416172, -0.054568082094192505, 0.028810499235987663, -0.03573508560657501, -0.06617781519889832, 0.05082525312900543, 0.01446238998323679, 0.02565264143049717, -0.0047769732773303986, -0.05044453963637352, 0.007707145530730486, 0.019901273772120476, 0.04745044559240341, -0.03972708433866501, 0.009094014763832092, 0.003034275257959962, -0.02868371270596981, 0.014412658289074898, -0.02709408476948738, 0.040694136172533035, -0.038223907351493835, -0.0013958464842289686, 0.004133907612413168, 0.014931620098650455, -0.0131671242415905, -0.0706736370921135, 0.024255072697997093, 0.026339078322052956, -0.006287435535341501, -0.037418264895677567, -0.08103931695222855, -0.0176260843873024, -0.07730533927679062, -0.010471673682332039, -0.05601798743009567, 0.06280442327260971, -0.004872469697147608, -0.04060494899749756, -0.005913909990340471, -0.07425849884748459, 0.1737416833639145, 0.05242228880524635, 0.013340837322175503, 0.014139550738036633, 0.011223684065043926, 0.06788951903581619, 0.034616537392139435, -0.011304624378681183, -0.014097089879214764, -0.032433852553367615, 0.013210323639214039, 0.02179282158613205, 0.052249666303396225, 0.003199651837348938, 0.041142016649246216, 0.04720514640212059, -0.01961829513311386, 0.016375377774238586, 0.0366036482155323, -0.03594789281487465, -0.051915984600782394, 0.027837708592414856, 0.006881318520754576, 0.01563717983663082, -0.025167666375637054, 0.002049807459115982, 0.01304652914404869, -0.056990817189216614, -0.010540004819631577, -0.001206329558044672, 0.05254729464650154, -0.036743659526109695, 0.03146425634622574, -0.025842800736427307, -0.03357340022921562, 0.05332380160689354, -0.007550148759037256, -0.042499344795942307, 0.006391534581780434, -0.004052966367453337, -0.03647639602422714, 0.016556266695261, 0.03264959901571274, -0.02545779198408127, 0.032119154930114746, 0.024181848391890526, -0.04158807545900345, -0.0021900427527725697, 0.01516526099294424, -0.043525855988264084, 0.06481039524078369, -0.05722713842988014, 0.018628308549523354, -0.03045390546321869, -0.024462701752781868, -0.019583461806178093, 0.01907915249466896, -0.022262396290898323, -0.042766936123371124, 0.024091849103569984, 0.013204638846218586, -0.003179447492584586, -0.009300283156335354, 0.041712988168001175, -0.05020177364349365, -0.023501569405198097, 0.005028906278312206, 0.004305399954319, -0.03703850507736206, -0.0179453082382679, -0.0322304293513298, -0.001816833857446909, 0.016667572781443596, -0.017244882881641388, 0.034749578684568405, 0.004086078144609928, -0.03390941023826599, 0.03547798842191696, 0.0309248436242342, -0.029058612883090973, -0.0029820536728948355, -0.03968505188822746, -0.004997515585273504, -0.007738967891782522, 0.0286797434091568, 0.04769153147935867, -0.04631674289703369, -0.052393391728401184, -0.03495354205369949, 0.05308052524924278, 0.03153367340564728, -0.0003154462028760463, -0.012242271564900875, -0.008860025554895401, 0.013593441806733608 ]
var express = require('express'); var app = express(); app.use(function(req, res, next) { res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); next(); }); var http=require('http'); var controllers=require("./controllers/starterController.js"); var bodyParser=require('body-parser'); controllers.init(app); app.set("view engine", "vash"); app.use(bodyParser.urlencoded({ extended: true })); app.use(bodyParser.json()); var server = http.createServer(app); var port = process.env.PORT || 3000; if(!module.parent) { server.listen(port, function(err){ console.log("serrver started on port" + port); }); } module.exports.getApp = app; // var path = require('path'); // var favicon = require('serve-favicon'); // var logger = require('morgan'); // var cookieParser = require('cookie-parser'); // var bodyParser = require('body-parser'); // var index = require('./routes/index'); // var users = require('./routes/users'); // // view engine setup // app.set('views', path.join(__dirname, 'views')); // app.set('view engine', 'jade'); // // uncomment after placing your favicon in /public // //app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))); // app.use(logger('dev')); // app.use(bodyParser.json()); // app.use(bodyParser.urlencoded({ extended: false })); // app.use(cookieParser()); // app.use(express.static(path.join(__dirname, 'public'))); // app.use('/', index); // app.use('/users', users); // // catch 404 and forward to error handler // app.use(function(req, res, next) { // var err = new Error('Not Found'); // err.status = 404; // next(err); // }); // // error handler // app.use(function(err, req, res, next) { // // set locals, only providing error in development // res.locals.message = err.message; // res.locals.error = req.app.get('env') === 'development' ? err : {}; // // render the error page // res.status(err.status || 500); // res.render('error'); // }); // module.exports = app;
[ -0.01688206009566784, 0.006271215155720711, -0.0037538690958172083, -0.00913295615464449, -0.025307541713118553, -0.012340657413005829, -0.01629558391869068, 0.02092757262289524, 0.00796428695321083, 0.043834786862134933, 0.001902035903185606, -0.0006545251817442477, 0.03687422350049019, -0.031138930469751358, -0.020335352048277855, -0.008598707616329193, -0.040983978658914566, -0.03389843925833702, -0.05723170191049576, 0.0039028001483529806, 0.015075065195560455, 0.006064354907721281, -0.05615967884659767, -0.04353881999850273, -0.015396547503769398, 0.012989403679966927, 0.006749672815203667, -0.01359789352864027, 0.05269940197467804, 0.07085602730512619, -0.016863549128174782, -0.028095794841647148, 0.028233664110302925, -0.05343715846538544, 0.021395834162831306, -0.005971790291368961, 0.018556205555796623, -0.0251125767827034, -0.03148854896426201, -0.0660688653588295, 0.003100278554484248, -0.0451635979115963, 0.02618812955915928, -0.043099530041217804, -0.0466872900724411, 0.0015426974277943373, 0.009826064109802246, -0.011481976136565208, -0.000917397323064506, -0.006539300084114075, 0.022058609873056412, 0.021321600303053856, 0.023107612505555153, 0.011683725751936436, -0.019952833652496338, 0.009278732351958752, 0.0024659419432282448, -0.0225956030189991, -0.05450393259525299, 0.0241826381534338, 0.006369289010763168, -0.008937779814004898, 0.006841910537332296, -0.051058657467365265, 0.024755239486694336, 0.022959308698773384, -0.016737189143896103, 0.017184462398290634, 0.019388988614082336, -0.01863684691488743, -0.045937106013298035, -0.0051256269216537476, -0.01028306782245636, -0.05928489938378334, 0.00025586492847651243, 0.017251530662178993, -0.021402891725301743, 0.009980362839996815, 0.013606978580355644, 0.02223728783428669, -0.0188372153788805, 0.053193576633930206, -0.0027033360674977303, 0.011521358042955399, -0.04944019019603729, -0.009806412272155285, -0.010331136174499989, -0.007214323617517948, -0.02254103124141693, -0.03076810948550701, -0.015918022021651268, 0.029567981138825417, -0.02267928048968315, -0.017139261588454247, 0.03240954875946045, 0.08063739538192749, -0.037300050258636475, 0.036581993103027344, -0.012049279175698757, -0.01383046805858612, 0.05580233037471771, 0.0015108875231817365, -0.04174905642867088, 0.020884135738015175, -0.019380616024136543, -0.00962963979691267, -0.007326347287744284, 0.024101853370666504, -0.03574927896261215, -0.029352212324738503, -0.0033464254811406136, -0.003798735560849309, 0.03606928139925003, -0.004522829316556454, -0.005441431887447834, 0.032784998416900635, -0.007355576381087303, 0.0103651387616992, -0.0400702990591526, 0.01005958579480648, 0.006246842909604311, -0.004297545645385981, 0.018282786011695862, -0.0321095772087574, 0.005528036504983902, 0.02171604335308075, -0.009519561193883419, 0.04558562487363815, -0.0193310733884573, -0.03790169209241867, 0.007711931597441435, -0.04182463139295578, 0.014510727487504482, 0.024168476462364197, -0.029988529160618782, 0.047082290053367615, -0.02138652838766575, 0.026059012860059738, 0.014905031770467758, -0.06135021150112152, 0.006341674830764532, 0.03975467011332512, 0.003327110083773732, 0.10962902754545212, 0.010454768314957619, 0.02553972788155079, -0.02139824628829956, -0.01626010425388813, -0.035898733884096146, 0.02548770047724247, -0.023565389215946198, 0.020743833854794502, -0.00045318042975850403, 0.010285180993378162, -0.043128710240125656, 0.004286568611860275, -0.016660109162330627, -0.008128565736114979, 0.026018211618065834, 0.03199971467256546, -0.02696688286960125, 0.02980710007250309, -0.03985219448804855, 0.08047717064619064, -0.02478046342730522, 0.036364950239658356, -0.04412984848022461, -0.03108798898756504, -0.012418242171406746, -0.02579960785806179, 0.016823185607790947, -0.000641188002191484, -0.03134817257523537, -0.02442699857056141, 0.028429171070456505, 0.03143354505300522, 0.012215491384267807, 0.005232797935605049, 0.005542495287954807, 0.032366443425416946, -0.017024915665388107, 0.026150858029723167, -0.005726984702050686, 0.0666441023349762, 0.03243853524327278, -0.010639292187988758, 0.017065776512026787, -0.006969207897782326, -0.035910267382860184, -0.036620281636714935, 0.012879518792033195, 0.03052336722612381, -0.05426067113876343, 0.0050005000084638596, 0.007171259261667728, 0.006814975757151842, -0.03707416355609894, 0.03476487472653389, -0.009287296794354916, -0.06621386855840683, -0.033882882446050644, 0.04535415396094322, -0.013360218144953251, 0.042951811105012894, 0.020827822387218475, -0.052718404680490494, 0.0006090040551498532, 0.04749152064323425, -0.05882465839385986, -0.00822887010872364, 0.046626895666122437, 0.018088992685079575, -0.02947896160185337, -0.034258387982845306, 0.01957101561129093, -0.02007298730313778, -0.036891184747219086, 0.03205073997378349, 0.009359699673950672, -0.007621161639690399, -0.006294404622167349, 0.0007003357168287039, -0.00004183977216598578, 0.025471646338701248, 0.006410819943994284, -0.014520873315632343, -0.016703549772500992, 0.03005826473236084, -0.048792000859975815, -0.01725446991622448, -0.02440701425075531, 0.02553289569914341, 0.0009851938812062144, 0.08198583126068115, 0.010989377275109291, 0.0023560260888189077, 0.05750999227166176, 0.05575031414628029, -0.011325348168611526, 0.03575526922941208, -0.006515553221106529, 0.03170284628868103, 0.021025678142905235, 0.002895341021940112, -0.0048280092887580395, 0.016857782378792763, 0.004375593736767769, -0.016555776819586754, -0.007809078320860863, 0.041342053562402725, 0.0023528779856860638, 0.04547302424907684, 0.04148640111088753, 0.029884986579418182, -0.01589786447584629, -0.007247633300721645, 0.017738142982125282, 0.050207819789648056, -0.020331356674432755, -0.018061218783259392, 0.004393030423671007, -0.009819287806749344, -0.01966455951333046, 0.01719937101006508, 0.02422335557639599, 0.02201101742684841, 0.007864649407565594, 0.0038939265068620443, -0.01582036353647709, -0.055126678198575974, -0.03112822212278843, -0.027077963575720787, -0.04276791960000992, -0.017068618908524513, -0.038641415536403656, 0.004144074860960245, 0.061656512320041656, -0.013109605759382248, 0.032742686569690704, 0.021865466609597206, -0.0000584429144510068, -0.008917899802327156, -0.006208052393049002, 0.05723269656300545, 0.007906761951744556, 0.021065346896648407, -0.020905693992972374, 0.02245248109102249, -0.03301673382520676, 0.03249257802963257, -0.06299027055501938, -0.0019957185722887516, 0.004598035477101803, -0.0049171773716807365, 0.0222297552973032, -0.008840220049023628, 0.013768929988145828, 0.015871213749051094, -0.029073402285575867, -0.04322243109345436, -0.028808511793613434, -0.01936332695186138, 0.01209302432835102, 0.020805219188332558, -0.009464512579143047, 0.037338972091674805, 0.016621258109807968, -0.009336219169199467, 0.06413868814706802, 0.025557490065693855, -0.04283076524734497, 0.04731426760554314, -0.0015657944604754448, 0.0027705642860382795, -0.05466168746352196, 0.06083989515900612, 0.05348098650574684, 0.024460669606924057, -0.03521856665611267, -0.04285704717040062, -0.0051863547414541245, -0.006232080981135368, 0.005540857557207346, -0.009074632078409195, -0.014543294906616211, 0.050597548484802246, -0.012425198219716549, -0.054021675139665604, 0.0562359020113945, -0.04094715043902397, -0.023341499269008636, -0.03273716941475868, -0.04705891013145447, 0.0023968855384737253, 0.0028446782380342484, 0.028080729767680168, -0.001610828679986298, 0.020599184557795525, 0.0016333607491105795, -0.016132429242134094, 0.06181155517697334, -0.02311035804450512, 0.009570133872330189, 0.033915579319000244, -0.024709250777959824, 0.017937343567609787, 0.027539128437638283, -0.02962055616080761, -0.010245207697153091, 0.010404492728412151, -0.007924654521048069, 0.024055691435933113, 0.04712468758225441, 0.02067280001938343, 0.013536391779780388, 0.08311085402965546, -0.03809978812932968, 0.0015183980576694012, 0.019999543204903603, 0.02838931791484356, 0.03745803236961365, -0.0025175930932164192, 0.01206415519118309, -0.00674712099134922, -0.035696934908628464, -0.054198164492845535, 0.044503699988126755, 0.022964132949709892, 0.0582771860063076, -0.06872443109750748, 0.060190215706825256, -0.014638626947999, -0.02934516780078411, 0.04820293188095093, -0.0529615581035614, 0.0022332794032990932, 0.039058562368154526, 0.0000978350653895177, 0.05455508083105087, -0.018530359491705894, 0.02412167377769947, -0.03785128518939018, -0.021624969318509102, 0.03768087923526764, -0.005880784709006548, 0.01904546096920967, -0.03136923536658287, -0.009913178160786629, -0.022338956594467163, -0.02260550856590271, -0.00870977807790041, -0.03366263583302498, 0.02060643583536148, 0.005890640430152416, -0.020763391628861427, -0.07169165462255478, 0.018110571429133415, 0.03650682047009468, 0.09142877906560898, -0.018843041732907295, 0.012750058434903622, -0.009543363936245441, -0.003889400279149413, 0.014864906668663025, -0.027071762830018997, 0.011471116915345192, -0.02057124674320221, 0.01430779043585062, 0.025766853243112564, -0.03604673966765404, -0.016549088060855865, -0.02484729513525963, -0.025216836482286453, 0.03686824068427086, 0.02507016994059086, -0.038338880985975266, -0.0717301070690155, 0.014216766692698002, -0.011178850196301937, 0.0033652905840426683, -0.0009325948194600642, -0.03985080122947693, -0.03221547603607178, 0.03243092820048332, 0.06208772957324982, -0.03742136433720589, -0.007137187756597996, -0.039384543895721436, 0.03541465103626251, 0.03379824012517929, 0.0034209154546260834, -0.029797282069921494, -0.030855854973196983, -0.0407121516764164, -0.01998036541044712, 0.008495716378092766, 0.040367137640714645, -0.012615162879228592, 0.020560014992952347, -0.030199240893125534, 0.01978873647749424, 0.006314942147582769, 0.018840713426470757, -0.004745897836983204, -0.013006455264985561, -0.0018990100361406803, -0.007882422767579556, 0.0467301569879055, -0.0054369280114769936, -0.009688911028206348, 0.025637444108724594, -0.024511417374014854, 0.05831439048051834, 0.006516322959214449, -0.014755004085600376, -0.03784427419304848, 0.011799406260251999, 0.014464772306382656, 0.04162572696805, -0.023020461201667786, 0.011181727051734924, -0.009833582676947117, 0.016251247376203537, -0.03462658450007439, -0.0327625572681427, 0.0454397015273571, -0.00954257883131504, -0.029866205528378487, 0.03121587261557579, 0.0485159270465374, -0.04017385467886925, 0.013419918715953827, 0.0034181782975792885, -0.03802037984132767, 0.026660609990358353, -0.029974672943353653, 0.0021654225420206785, -0.023239849135279655, -0.060503266751766205, 0.018440833315253258, -0.058285001665353775, 0.0452994666993618, 0.019578227773308754, -0.030415985733270645, -0.00462200865149498, -0.03935258090496063, 0.01506886538118124, 0.019872456789016724, -0.00533694913610816, 0.021531717851758003, 0.0055209798738360405, 0.0005557737313210964, -0.02775108627974987, 0.0018462871666997671, 0.005468615330755711, -0.008448758162558079, -0.01068344246596098, 0.018352052196860313, 0.020413173362612724, 0.013408094644546509, 0.02507835440337658, -0.00816895067691803, -0.04517604783177376, 0.025676481425762177, 0.010924826376140118, -0.008593965321779251, -0.06036510691046715, 0.021911954507231712, -0.006793525535613298, -0.017485911026597023, -0.05190732330083847, 0.018857309594750404, -0.013592497445642948, 0.003756260499358177, 0.025297516956925392, 0.04404229670763016, -0.003919386304914951, -0.001454315846785903, -0.03087768703699112, 0.028891077265143394, 0.03388320654630661, -0.054199520498514175, -0.012545582838356495, 0.04841843619942665, -0.007844975218176842, 0.07508304715156555, 0.006311686709523201, -0.02221907302737236, -0.023130841553211212, -0.04196265712380409, -0.005628034472465515, -0.042506974190473557, -0.017773007974028587, -0.05163440853357315, -0.018094999715685844, -0.04916274547576904, 0.04129793494939804, 0.002335946075618267, -0.03265789523720741, -0.002868056297302246, -0.024064352735877037, 0.030913513153791428, -0.03289242833852768, -0.019364021718502045, -0.015339864417910576, 0.00023271511599887162, -0.011780905537307262, 0.06314723193645477, -0.0006767205777578056, 0.017656469717621803, 0.020486608147621155, 0.0389707088470459, 0.033636704087257385, -0.008397289551794529, -0.05618174001574516, -0.029000459238886833, 0.021351108327507973, -0.005202405620366335, 0.0009564895881339908, 0.01828656531870365, -0.018563203513622284, 0.032041437923908234, -0.04260920360684395, -0.010421688668429852, -0.009276107884943485, -0.03982067108154297, -0.023011060431599617, 0.013724789023399353, 0.042056549340486526, -0.03604332357645035, 0.014111718162894249, -0.04419452324509621, 0.06916635483503342, 0.030824514105916023, -0.021095767617225647, -0.03478733077645302, -0.020930195227265358, -0.04894652217626572, -0.05191022530198097, 0.018321137875318527, -0.016620956361293793, -0.023047739639878273, -0.029231209307909012, -0.010295587591826916, 0.03392715007066727, -0.0006260346854105592, 0.042289555072784424, 0.08827084302902222, 0.008731158450245857, 0.012178463861346245, -0.041485823690891266, 0.08732844144105911, 0.04319783300161362, -0.012620162218809128, 0.014245524071156979, 0.02885555289685726, -0.04226798936724663, -0.015777703374624252, -0.02673185057938099, -0.04149504005908966, -0.05358234792947769, -0.021503129974007607, 0.06267943233251572, -0.022501708939671516, 0.04339670389890671, -0.01018584705889225, -0.053233224898576736, -0.06346964091062546, 0.046056654304265976, 0.006282900460064411, 0.0005671188700944185, 0.06277657300233841, 0.0063174995593726635, 0.04277224466204643, 0.022130977362394333, 0.0020615211687982082, 0.02969750389456749, -0.0532584972679615, 0.06862909346818924, 0.006963870022445917, -0.019035110250115395, 0.016884174197912216, 0.052861083298921585, -0.037824612110853195, -0.06752200424671173, -0.03632529452443123, -0.022003207355737686, -0.00023847378906793892, -0.0302592646330595, 0.01757565513253212, -0.014439435675740242, 0.019854478538036346, 0.02775888331234455, 0.02833438478410244, 0.023194335401058197, 0.04414449259638786, 0.008874825201928616, 0.03881509229540825, -0.011042538098990917, 0.014775875955820084, 0.04941757395863533, -0.009704741649329662, -0.010378717444837093, -0.054038166999816895, -0.003301219316199422, 0.003479765495285392, 0.012468039058148861, 0.04888766258955002, 0.010462547652423382, 0.014459454454481602, 0.02124517597258091, -0.00004726770202978514, 0.03432834893465042, 0.0069539714604616165, 0.009300809353590012, 0.007608230225741863, -0.061241257935762405, -0.05100909620523453, -0.031572580337524414, 0.02918088436126709, -0.025413598865270615, 0.03552722930908203, -0.025344442576169968, 0.04284778609871864, 0.011663173325359821, 0.003233565716072917, -0.022464072331786156, -0.06754618138074875, -0.010070949792861938, -0.07261744141578674, -0.034235190600156784, -0.037147119641304016, 0.012220014818012714, -0.008394336327910423, -0.0070526450872421265, -0.010553854517638683, -0.020211802795529366, -0.009018002077937126, 0.011804342269897461, -0.0055837081745266914, -0.02188597247004509, -0.031449489295482635, 0.020267924293875694, -0.05479075387120247, -0.05657897889614105, -0.05175315588712692, -0.0034151291474699974, -0.017845112830400467, 0.01492759957909584, -0.012211867608129978, -0.00012225337559357285, -0.034603022038936615, 0.014258250594139099, 0.005319724325090647, 0.01936366781592369, -0.01060789730399847, -0.0327085480093956, 0.00027360860258340836, 0.009858377277851105, -0.004743631463497877, 0.027116673067212105, 0.02793274261057377, -0.025575662031769753, 0.01511348970234394, 0.012993164360523224, -0.012790040113031864, -0.02101108431816101, 0.008153331466019154, -0.0024441892746835947, 0.018875455483794212, -0.011588905937969685, -0.011617574840784073, 0.015173296444118023, -0.04378291964530945, 0.02181203104555607, 0.002807023236528039, 0.008539976552128792, 0.01012903731316328, -0.011494523845613003, -0.006500395480543375, 0.05721331760287285, -0.026667524129152298, 0.019545387476682663, 0.014579231850802898, 0.028291616588830948, 0.022173700854182243, -0.03728007525205612, 0.0001662068098085001, 0.03039989247918129, 0.032043807208538055, -0.012285575270652771, 0.0036151972599327564, -0.014828728511929512, -0.009350288659334183, 0.02826087549328804, -0.031674303114414215, 0.011506068520247936, -0.02123941481113434, -0.0002713672292884439, 0.01222737692296505, 0.04780340939760208, 0.007441672030836344, 0.025561867281794548, 0.034690991044044495, -0.025988362729549408, -0.02195686288177967, 0.006372261326760054, -0.0872434750199318, -0.04643955081701279, 0.02362055517733097, -0.017804864794015884, 0.007010213099420071, -0.03599519655108452, -0.04936286807060242, -0.027440309524536133, -0.020453179255127907, -0.01773042231798172, -0.003959301393479109, 0.022016091272234917, 0.030008159577846527, 0.05920978635549545, -0.017226077616214752, 0.007792125456035137, 0.0273512601852417, 0.042842134833335876, -0.03689998388290405, -0.05497947335243225, 0.025513334199786186, 0.037064388394355774, 0.03885910287499428, -0.01661389321088791, -0.038746755570173264, 0.004613811615854502, -0.0153162507340312, 0.010860924609005451, 0.044912487268447876, -0.0004691045905929059, -0.009325044229626656, 0.02564362622797489, -0.008160688914358616, 0.019027473405003548, -0.054019294679164886, 0.04575907438993454, 0.014639521948993206, -0.012001177296042442, -0.01633848436176777, 0.04695087671279907, 0.056890591979026794, -0.015432655811309814, 0.03249747306108475, -0.0019902782514691353, 0.033906206488609314, 0.00024314632173627615, 0.016632679849863052, -0.008289126679301262, 0.061825450509786606, 0.043125201016664505, 0.04070030525326729, 0.036981966346502304, 0.022384800016880035, 0.04677683115005493, -0.010803336277604103, -0.02116631157696247, 0.024260150268673897, 0.018079858273267746, -0.028138577938079834, 0.030054353177547455, -0.009178970009088516, 0.019672801718115807, 0.016696760430932045, -0.03261737525463104, -0.009601354598999023, -0.06702934205532074, 0.00668012909591198, -0.02193945087492466, -0.005871201865375042, 0.06573817878961563, -0.015524397604167461, 0.01773650571703911, -0.004577881656587124, -0.008387607522308826, 0.009308502078056335, 0.05546434968709946, -0.004357349127531052, -0.011603877879679203, 0.0395999439060688, 0.03891226276755333, 0.0047919005155563354, 0.03722048178315163, 0.014246336184442043, 0.021695412695407867, -0.015542100183665752, -0.01840783841907978, 0.0020043475087732077, -0.011013025417923927, -0.018135840073227882, -0.0199213158339262, -0.07182500511407852, 0.02463912032544613, -0.03002016246318817, 0.01287924312055111, 0.03252428025007248, -0.03032693639397621, -0.001448828261345625, -0.03708791360259056, 0.020250961184501648, 0.0030440730042755604, 0.016744444146752357, 0.042121872305870056, 0.020442655310034752, -0.03488340973854065, 0.05308236554265022, -0.015575309284031391, 0.03718430548906326, -0.03071196749806404, 0.07849925756454468, 0.005363016854971647, 0.031889401376247406, 0.030036786571145058, 0.0013779242290183902, -0.02433185838162899, 0.03045675717294216, -0.036384712904691696, -0.04411724954843521, -0.024164855480194092, -0.05101289227604866, 0.002625080058351159, -0.043409425765275955, -0.04205924645066261, -0.03195633739233017, 0.032574888318777084, -0.010125807486474514, -0.04036545753479004, 0.01232872437685728, 0.012975807301700115, -0.0397794246673584, -0.0009120024042204022, 0.011656568385660648, 0.03609355166554451, -0.01183262187987566, -0.036795586347579956, -0.03639248386025429, -0.014697984792292118, -0.008117378689348698, -0.03309163451194763, 0.029540052637457848, -0.049896594136953354, 0.004374859854578972, -0.03737492859363556, -0.04223603382706642, -0.039723366498947144, 0.009287748485803604, -0.0494953989982605, -0.058458469808101654, 0.02918671816587448, 0.027954895049333572, 0.02461744099855423, 0.03302030637860298, 0.0011497875675559044, 0.008744979277253151, 0.017122449353337288, 0.06194643676280975, 0.004698376636952162, 0.04177585616707802, 0.01321492064744234, -0.021765869110822678, 0.01884407177567482, -0.03299608826637268, 0.046931687742471695, 0.0010271830251440406, -0.03241730481386185, 0.0165115837007761, 0.01240066159516573, -0.038108162581920624, -0.04899346083402634, 0.030093003064393997, 0.03781808912754059, 0.0017675060080364347, 0.024247899651527405, -0.07172001153230667, -0.004762203432619572, -0.06651738286018372, -0.016494179144501686, -0.051102254539728165, 0.012097422033548355, -0.0009527594083920121, -0.04054442048072815, 0.01623137667775154, -0.040669869631528854, 0.15358880162239075, 0.05578199774026871, 0.01989707723259926, 0.012794860638678074, 0.03894278407096863, 0.039461974054574966, 0.038880255073308945, -0.006070843897759914, 0.04167507216334343, -0.047516994178295135, 0.04221031442284584, 0.01997089758515358, 0.036057524383068085, 0.024933358654379845, 0.0001055913744494319, 0.06597595661878586, -0.03609083592891693, 0.0031751005444675684, 0.019774721935391426, -0.0368402823805809, -0.07619355618953705, 0.008083848282694817, -0.0041512674652040005, 0.032230254262685776, -0.016831424087285995, 0.01563815400004387, -0.010727761313319206, -0.06462153792381287, -0.015581239946186543, -0.051036469638347626, 0.03182582929730415, -0.02049950510263443, 0.054291222244501114, 0.01939268223941326, 0.0011448035947978497, 0.03835535794496536, 0.029806405305862427, 0.0071531240828335285, -0.004751657601445913, 0.009984569624066353, -0.0056160870008170605, -0.04632940888404846, 0.0278488602489233, -0.04262196272611618, 0.024045251309871674, 0.023124493658542633, -0.044035736471414566, -0.009410684928297997, 0.0041884551756083965, -0.023774119094014168, 0.029897669330239296, -0.025474850088357925, 0.018990308046340942, 0.010990857146680355, -0.02831450290977955, 0.003135445062071085, 0.038150276988744736, -0.03864736109972, -0.009752469137310982, -0.01796683482825756, 0.01281661819666624, -0.0022291045170277357, -0.013557618483901024, 0.015479047782719135, -0.05068123713135719, 0.0020932212937623262, 0.019858501851558685, 0.02036326378583908, -0.014320813119411469, -0.02457519993185997, -0.022554678842425346, -0.0012233676388859749, 0.0021196084562689066, -0.03378783538937569, 0.040833763778209686, 0.0178762748837471, -0.03445425629615784, 0.04092218726873398, 0.008013758808374405, -0.03986017033457756, -0.008879417553544044, -0.013126077130436897, -0.0007965787081047893, -0.012606055475771427, 0.05296938121318817, 0.02491438388824463, -0.03193720430135727, -0.04558127373456955, -0.04047262296080589, 0.05298616737127304, 0.05525779351592064, 0.016598355025053024, -0.030551865696907043, 0.01016471441835165, -0.005691648926585913 ]
Have You Heard the Tragic Tale of New York's "Clawfoot People"? Will Phillips Will Phillips Published: October 18, 2022 It's a true tale that's stranger than fiction. Zoar Valley, New York (Google Maps) THE ZOAR VALLEY IN WESTERN NEW YORK The Zoar Valley is a region of natural gorges near Gowanda, New York-- a small village about an hour south of Buffalo in the Western part of the state. By the late 19th century, most residents in the area found that they were suffering from the same physical deformity... their feet and hands would twist and distort like claws. How could it be that an entire population exhibited the same strange deformity? Was there something in the water? Were they banging lobsters? What exactly was going on here? As it turns out, many of the residents of Gowanda were descendants of the same woman-- an English prostitute who suffered from untreated syphilis. Because of this, the woman passed on a genetic mutation to her descendants, who then passed it on to theirs... in total, there were hundreds of people who suffered from this claw-like deformity. It didn't take long before the "Clawfoot People" started to gain notoriety throughout the Zoar Valley. Its residents were shunned and treated as social outcasts. This obviously had severe psychological effects on these people. One legend says that a man grew so ashamed of his condition that he separated his fingers with an axe. Another story surrounds a man who was miraculously NOT afflicted with the malady, and had a relatively normal life, marrying a woman and having a son... but the son WAS born with the affliction, which caused the wife to completely abandoned her family. A HEARTBREAKING PACT Finally, in a move that was equal parts sad and brave, every single person who was afflicted mutually agreed to not have children, so that they would pass on the genetic mutation no further. It was a pact that everyone surprisingly upheld. By the early 20th century, the Clawfoot People all died off, and today there are no traces of the deformity in area. These days, the very same affliction can be corrected with surgery, thanks to modern scientific advancements... but back in those days, it seemed like there was no hope. An extremely sad tale about how an entire population willfully made themselves extinct. NEW YORK MYTHS, MONSTERS, AND URBAN LEGENDS Three Places With the Most Bigfoot Sightings in New York State The top three places with the largest concentration of Bigfoot sightings in the State of New York. 18 of the Official Emblems of New York State How familiar are you with some of these things New York State has deemed "official"? Source: Have You Heard the Tragic Tale of New York's "Clawfoot People"? Categories: NY News Lakes are Freezing! 4 Important Tips to Follow While Ice Fishing in NY This is Illegal in New York When Blowing Snow in Your Driveway Another Winter Storm Will Create Difficult Travel in Parts of CNY
[ 0.008427709341049194, 0.01929747313261032, -0.007307014428079128, 0.01892913319170475, -0.00499299680814147, 0.004264752846211195, -0.009544171392917633, 0.030880648642778397, 0.027706289663910866, 0.02756359800696373, 0.05756101757287979, -0.028198054060339928, 0.01912364549934864, -0.020824160426855087, -0.013873693533241749, -0.0022593822795897722, -0.016923516988754272, -0.041223809123039246, -0.006522797048091888, -0.006964870262891054, 0.00918828509747982, -0.015665510669350624, -0.03185360133647919, -0.02604341320693493, -0.008954768069088459, 0.028783515095710754, 0.024112321436405182, 0.00809397827833891, 0.028707154095172882, 0.040743838995695114, -0.023809967562556267, -0.02236107364296913, 0.024929679930210114, -0.04446877911686897, -0.017878610640764236, -0.03486745432019234, 0.040499065071344376, -0.01053133886307478, -0.028302980586886406, -0.047472741454839706, 0.004247301258146763, -0.025949470698833466, 0.03551115095615387, -0.019114013761281967, -0.012004026211798191, 0.011662210337817669, -0.029857981950044632, -0.022481922060251236, -0.0028681850526481867, -0.018164929002523422, 0.025612717494368553, -0.0220696572214365, 0.006591486278921366, 0.03635002300143242, -0.0026394634041935205, -0.004984442610293627, -0.001993879908695817, 0.0014912679325789213, -0.0028689440805464983, 0.0298816729336977, -0.010707678273320198, 0.0004386705986689776, 0.03590387478470802, -0.06344033032655716, 0.01777683012187481, 0.014803995378315449, -0.005152852274477482, -0.005020975135266781, 0.030724063515663147, -0.038308415561914444, 0.0054016634821891785, 0.013363461010158062, -0.016652284190058708, -0.03461439907550812, -0.01796942949295044, 0.004192909691482782, -0.01607382670044899, 0.011646862141788006, -0.015690971165895462, 0.009498370811343193, 0.02551214210689068, 0.04201320931315422, 0.019717665389180183, 0.022838899865746498, -0.06560835987329483, 0.010307636111974716, -0.031192533671855927, 0.05652390047907829, 0.021440939977765083, 0.025337357074022293, 0.02413276955485344, 0.06498678028583527, 0.02006353810429573, -0.009438163600862026, 0.048854514956474304, 0.046370863914489746, -0.04455627128481865, 0.0392858162522316, 0.0034715114161372185, -0.01627221703529358, 0.02465212531387806, 0.02839561365544796, 0.008402512408792973, 0.05023066699504852, -0.023941408842802048, -0.02762237749993801, 0.029354434460401535, -0.0006018096464686096, 0.0017446134006604552, -0.020445307716727257, -0.001672661048360169, -0.02440231293439865, 0.014447377063333988, 0.01943829655647278, -0.013306800276041031, 0.02732357755303383, -0.004072871059179306, 0.026777690276503563, -0.039546944200992584, 0.01921846903860569, -0.013929421082139015, -0.027274860069155693, 0.04883619025349617, -0.01658475771546364, 0.03134028613567352, -0.037158407270908356, -0.05648883804678917, 0.03728638216853142, -0.006650238763540983, -0.0008196491398848593, 0.017040275037288666, -0.034354373812675476, -0.009916538372635841, 0.0071352263912558556, 0.0027025642339140177, 0.013950136490166187, -0.02055135741829872, 0.01375222485512495, 0.03551662713289261, -0.052775587886571884, 0.04456711560487747, 0.01715492084622383, -0.005333246663212776, 0.08600787073373795, 0.01010714191943407, -0.0020510719623416662, 0.005495993420481682, -0.011211722157895565, -0.036884211003780365, 0.03607349842786789, -0.03465449810028076, 0.02114049345254898, -0.0004837959713768214, 0.013800696469843388, -0.007963300682604313, 0.02978658117353916, -0.01711411587893963, 0.00489758001640439, 0.0388183519244194, 0.06145370379090309, -0.02872099168598652, 0.006090631242841482, 0.013722792267799377, 0.04312097281217575, -0.01641673967242241, 0.029716316610574722, -0.026951586827635765, 0.022230640053749084, -0.010740318335592747, -0.024358533322811127, 0.039717402309179306, 0.011947566643357277, -0.031821273267269135, 0.013992346823215485, 0.0139238266274333, 0.03812965005636215, 0.048607032746076584, -0.018646584823727608, 0.03470839560031891, 0.045081816613674164, -0.03179064393043518, 0.014174891635775566, -0.007998863235116005, 0.042150918394327164, 0.014896557666361332, -0.044901810586452484, -0.02459206059575081, -0.02860889956355095, -0.03924180194735527, -0.012663591653108597, 0.003330646315589547, 0.050709471106529236, -0.027947138994932175, 0.006974947638809681, 0.024200834333896637, 0.004922701045870781, -0.026022935286164284, -0.045593976974487305, -0.009238660335540771, -0.05538621172308922, -0.06086662784218788, 0.06154819577932358, -0.020548207685351372, 0.018198510631918907, 0.0011157726403325796, -0.027750317007303238, 0.04434332996606827, 0.06595472991466522, -0.03152761980891228, 0.00018552517576608807, 0.035313498228788376, -0.00025337617262266576, -0.005772325675934553, -0.017418405041098595, -0.007587187457829714, 0.0011966661550104618, -0.02471546269953251, 0.06399513781070709, -0.016565097495913506, -0.00014003452088218182, -0.013919678516685963, 0.051637470722198486, 0.021098226308822632, 0.03850239887833595, -0.014909172430634499, 0.010016159154474735, 0.0633436068892479, 0.04974864795804024, -0.045344311743974686, -0.02995399758219719, 0.013132462278008461, 0.05221639946103096, 0.03910079225897789, 0.04794682562351227, 0.05241335183382034, 0.02438362129032612, 0.02285604178905487, -0.0015513442922383547, -0.05038071796298027, 0.031077992171049118, -0.02057141624391079, 0.022405073046684265, 0.03432203456759453, 0.009524350054562092, -0.011755143292248249, 0.04377589002251625, -0.027545563876628876, -0.007958308793604374, -0.02257866971194744, 0.024634042754769325, -0.008044213987886906, 0.051033906638622284, -0.009678327478468418, 0.037255074828863144, -0.032403264194726944, 0.021500704810023308, 0.04582357034087181, 0.04397527500987053, -0.032925158739089966, -0.037674978375434875, -0.02300262078642845, -0.007238712161779404, -0.0179003719240427, 0.000987231032922864, 0.05981360003352165, 0.008158999495208263, 0.0277074184268713, 0.011331956833600998, -0.0255153588950634, -0.055931199342012405, -0.02969948947429657, -0.06285721063613892, -0.04817468300461769, -0.01968168281018734, -0.04194629192352295, 0.007458750158548355, 0.02818646840751171, -0.04564938321709633, 0.0307598989456892, -0.004460896365344524, -0.013253862038254738, -0.03348095342516899, 0.008799306116998196, 0.04820282384753227, 0.04170854017138481, 0.03471704572439194, -0.052250780165195465, 0.04682035744190216, -0.005669909529387951, 0.05055993050336838, -0.04027115926146507, -0.016481997445225716, -0.008032687939703465, -0.011274373158812523, 0.010779473930597305, -0.008255419321358204, 0.008720493875443935, -0.010380390100181103, -0.04822254553437233, -0.055426426231861115, 0.009836504235863686, 0.014592107385396957, -0.022925332188606262, -0.001304037868976593, -0.053216561675071716, 0.07971110939979553, 0.03329506143927574, -0.030975649133324623, 0.036380473524332047, 0.02890053018927574, -0.029674947261810303, 0.052956778556108475, 0.029037058353424072, 0.034141991287469864, -0.030006350949406624, 0.0820431336760521, 0.022017277777194977, 0.012777146883308887, -0.04206902161240578, -0.032208945602178574, -0.04574120044708252, -0.014539806172251701, 0.013915772549808025, 0.00032757854205556214, -0.05196712911128998, 0.044554222375154495, 0.0286468043923378, -0.06722123175859451, 0.014115294441580772, -0.04382278025150299, -0.006280058529227972, -0.01540971826761961, -0.02948404662311077, 0.0075614876113832, 0.05210888013243675, 0.03567152097821236, 0.010840168222784996, -0.03159388527274132, -0.03304947540163994, -0.021679693832993507, 0.021182043477892876, -0.024658078327775, 0.005860011093318462, 0.0319003127515316, 0.033074505627155304, 0.01088385283946991, -0.006869932636618614, -0.0238279327750206, 0.011820233426988125, 0.00506351375952363, -0.016985027119517326, -0.0015830666525289416, 0.04216967895627022, -0.009599029086530209, 0.02507837489247322, 0.05949055403470993, -0.045830368995666504, -0.02237643487751484, 0.0098982322961092, 0.03042430803179741, 0.03125094249844551, -0.013895993120968342, -0.014190437272191048, -0.0030586491338908672, -0.02891106717288494, -0.047368645668029785, 0.030506087467074394, 0.0023129438050091267, 0.08645220845937729, -0.039384227246046066, 0.04202732443809509, -0.0008385418332181871, -0.022928832098841667, 0.04175085574388504, -0.042796872556209564, 0.005620070733129978, 0.04573830962181091, -0.017178688198328018, 0.044767625629901886, -0.035306237637996674, 0.013191444799304008, -0.013620716519653797, 0.03492650017142296, 0.07337427139282227, -0.012718056328594685, 0.034684620797634125, -0.022683970630168915, -0.05683869868516922, -0.008161074481904507, -0.015002304688096046, -0.02310923859477043, -0.02580837346613407, 0.02456173114478588, 0.0021762133110314608, -0.04422188922762871, -0.04829761013388634, 0.010441364720463753, 0.018455205485224724, 0.04241576045751572, -0.013485029339790344, 0.04499256610870361, -0.015584981068968773, 0.008766857907176018, 0.06494078785181046, -0.024729689583182335, 0.023041164502501488, -0.05198952928185463, 0.03007012978196144, 0.02290540188550949, -0.05650455504655838, -0.014872584491968155, -0.039808835834264755, -0.024654297158122063, 0.008774373680353165, 0.021075528115034103, -0.03543269634246826, -0.019805513322353363, 0.04209752753376961, 0.004486449062824249, -0.0015215540770441294, -0.03291736915707588, 0.0006738831871189177, -0.01809810847043991, 0.02166862227022648, 0.0395059660077095, -0.04846477508544922, 0.0007911099237389863, -0.07341039180755615, 0.049072202295064926, 0.04164313152432442, 0.015787994489073753, -0.055178895592689514, -0.01722593605518341, 0.002864197827875614, -0.008529584854841232, 0.013251695781946182, 0.03619244322180748, 0.00016227559535764158, -0.021393999457359314, -0.05045438930392265, 0.019679078832268715, 0.019217878580093384, 0.02741009183228016, -0.006602266803383827, -0.006777072325348854, 0.03543093800544739, -0.00559599231928587, 0.043709948658943176, -0.014229791238904, -0.04593402147293091, 0.037590980529785156, -0.06114822253584862, -0.0025623564142733812, -0.009574852883815765, -0.01813586987555027, -0.00871854368597269, 0.00888935849070549, -0.0023924142587929964, 0.04186343774199486, -0.006822856143116951, 0.00877274852246046, 0.0026200120337307453, 0.028310626745224, -0.03870850056409836, -0.0023990091867744923, 0.06623867899179459, -0.011814232915639877, -0.03278099372982979, 0.03624538332223892, 0.04863331466913223, 0.012116888538002968, -0.0022789754439145327, 0.01677217334508896, -0.06660524010658264, 0.03805949166417122, -0.02451091818511486, 0.024775486439466476, -0.004535655491054058, 0.0016266166931018233, 0.024131812155246735, -0.012447813525795937, 0.03132018819451332, -0.0027571748942136765, -0.03116450086236, -0.03999372571706772, -0.10122547298669815, -0.017785852774977684, 0.017942294478416443, -0.006758030503988266, 0.005294419825077057, 0.008077089674770832, -0.021993204951286316, 0.00944671779870987, 0.013092081993818283, 0.028351299464702606, 0.0019919255282729864, -0.027968350797891617, 0.01063735131174326, 0.0032218103297054768, 0.02955400012433529, 0.014801601879298687, 0.004054296761751175, -0.010360282845795155, 0.017256060615181923, 0.00348108378238976, -0.02259211428463459, -0.05775932967662811, 0.02088620327413082, 0.0043474468402564526, -0.0044014472514390945, -0.04311312362551689, -0.005958961322903633, -0.03444308042526245, 0.01800157129764557, 0.004926466848701239, 0.0036435972433537245, 0.02798166684806347, 0.00670319888740778, -0.037485893815755844, 0.03429504856467247, 0.033088359981775284, -0.02759319357573986, -0.028689876198768616, 0.039461150765419006, -0.005191910080611706, 0.04576808959245682, 0.008073135279119015, -0.016566436737775803, -0.06386733800172806, -0.05290341004729271, -0.0019904752261936665, -0.05878882482647896, -0.02031940594315529, -0.01686364784836769, -0.003281933721154928, -0.024393832311034203, 0.040684979408979416, 0.00910775363445282, 0.014582260511815548, -0.005291277077049017, -0.04698210209608078, -0.008461933583021164, -0.01995176263153553, -0.016424108296632767, -0.006383570842444897, -0.03667080029845238, -0.0280922744423151, 0.06959037482738495, 0.009831756353378296, 0.019044997170567513, 0.016871409490704536, 0.004514696542173624, 0.020137548446655273, -0.03935965895652771, -0.035029634833335876, -0.021190786734223366, -0.017062554135918617, -0.009167668409645557, 0.005802661180496216, 0.006043411325663328, -0.033233772963285446, 0.050349317491054535, -0.057489074766635895, -0.03200424090027809, 0.01024417020380497, -0.01600254327058792, 0.018254317343235016, -0.01335181389003992, 0.026564709842205048, -0.04338796064257622, 0.004708101972937584, -0.013751770369708538, 0.03355355188250542, 0.04007712006568909, -0.034571461379528046, -0.03563679754734039, -0.031013701111078262, -0.03079206869006157, -0.06285410374403, 0.0518614836037159, -0.0434182807803154, -0.013333515264093876, -0.014599278569221497, -0.018312616273760796, 0.03615083917975426, 0.0037494967691600323, 0.05576995015144348, 0.04610695317387581, -0.03197154030203819, 0.004759166389703751, -0.010416158474981785, 0.04555123671889305, 0.04009677842259407, -0.017567601054906845, 0.006322157569229603, -0.01288035698235035, -0.03861366957426071, 0.005339687690138817, -0.053197141736745834, -0.019863862544298172, -0.03301918879151344, -0.005309105850756168, 0.07856765389442444, 0.010181167162954807, 0.04818473756313324, -0.03134126588702202, -0.04257196560502052, -0.06243281066417694, 0.03354877233505249, 0.014591296203434467, 0.004491129890084267, 0.06032272055745125, 0.00697565171867609, -0.023514483124017715, 0.022912288084626198, -0.017197052016854286, -0.009309157729148865, -0.03193235024809837, 0.05929994583129883, 0.020037174224853516, -0.05468234419822693, 0.022781845182180405, 0.02252965234220028, -0.04714982584118843, -0.03301026299595833, -0.009715736843645573, -0.016572998836636543, -0.019212238490581512, -0.04666001722216606, 0.013093589805066586, -0.012841098941862583, 0.01314577367156744, 0.015520808286964893, 0.030607622116804123, -0.007238331250846386, 0.06197230517864227, -0.001129076350480318, 0.0449526309967041, -0.021944332867860794, 0.03136666491627693, 0.0046608042903244495, -0.001217047800309956, -0.05762765184044838, -0.04108312353491783, -0.024943871423602104, -0.005718607921153307, -0.011945564299821854, 0.03085063211619854, -0.022748097777366638, 0.014131598174571991, 0.004026365466415882, 0.005647293757647276, 0.0356130450963974, 0.0009972562547773123, -0.011152886785566807, 0.03825586289167404, -0.013748635537922382, -0.03582632914185524, -0.051816221326589584, 0.019057411700487137, -0.005349041428416967, 0.04219312220811844, -0.06210216134786606, -0.0026764560025185347, 0.05070877447724342, -0.01863803155720234, -0.020627636462450027, -0.056789204478263855, -0.03989442437887192, -0.039512936025857925, -0.0645746961236, -0.027826590463519096, -0.040945421904325485, 0.005088265985250473, -0.001356915570795536, -0.017716916278004646, -0.030580012127757072, -0.011148478835821152, 0.001993669429793954, -0.033812060952186584, 0.034008268266916275, -0.009197259321808815, 0.0300490390509367, -0.04200315847992897, -0.03812530264258385, -0.027845915406942368, 0.01796729490160942, -0.004840700887143612, 0.005881767254322767, 0.013037309050559998, 0.019438087940216064, -0.008862793445587158, 0.015397990122437477, 0.033641647547483444, -0.018438491970300674, -0.012749035842716694, -0.032973937690258026, -0.026338499039411545, 0.02681119553744793, 0.020199280232191086, 0.03942494094371796, 0.038411326706409454, -0.023065684363245964, 0.033082470297813416, 0.003911980893462896, -0.03403853625059128, 0.004287524148821831, 0.0048645539209246635, 0.0005823656101711094, -0.009732106700539589, -0.034278806298971176, -0.030934754759073257, -0.00008874094055499882, -0.045634493231773376, 0.03481156378984451, -0.003769656177610159, -0.00008033968333620578, 0.012904638424515724, 0.01564120128750801, 0.014076907187700272, 0.030720537528395653, 0.02415647730231285, 0.03711269050836563, -0.004661242477595806, 0.039700012654066086, 0.001295831403695047, -0.002916980069130659, 0.01376909576356411, 0.006995210889726877, 0.03880790248513222, -0.05748390406370163, 0.026243625208735466, 0.03874198719859123, -0.03485334292054176, 0.029313817620277405, -0.015699759125709534, -0.05104280263185501, -0.004154604859650135, -0.02207181230187416, -0.022521059960126877, 0.06746137887239456, -0.0008489349274896085, -0.016571223735809326, 0.03843899816274643, -0.042401693761348724, -0.0518476665019989, 0.026288336142897606, -0.10037072002887726, -0.014025770127773285, 0.017772112041711807, -0.025117814540863037, 0.019657989963889122, -0.051881782710552216, -0.04648901894688606, 0.009677001275122166, -0.038803622126579285, -0.006564262788742781, -0.016633938997983932, 0.001245422987267375, 0.021545937284827232, 0.05280008539557457, 0.01525854505598545, 0.013612128794193268, -0.023666050285100937, 0.023887932300567627, -0.054229021072387695, -0.047943081706762314, -0.011390911415219307, -0.027824027463793755, 0.00017301565094385296, -0.0019668717868626118, 0.0012504785554483533, -0.009546177461743355, -0.043612122535705566, 0.014416536316275597, -0.016154667362570763, 0.016406115144491196, -0.0005985221359878778, 0.01976279355585575, 0.020159965381026268, 0.015337923541665077, -0.028790365904569626, 0.041281506419181824, -0.007897637784481049, -0.033625148236751556, -0.03362598642706871, 0.041832663118839264, 0.04976581782102585, 0.012182766571640968, 0.025107400491833687, 0.0022318637929856777, 0.024274617433547974, -0.017959114164114, 0.015044080093502998, 0.0006975376163609326, 0.057079803198575974, 0.02759845368564129, 0.02787669561803341, 0.011273561045527458, 0.04347366467118263, 0.05613227188587189, 0.008090206421911716, -0.019867688417434692, 0.03441585227847099, 0.013510039076209068, -0.012796027585864067, -0.002277339342981577, -0.034296367317438126, -0.005638508591800928, 0.03953014686703682, -0.02738306298851967, -0.020410653203725815, -0.018742388114333153, -0.010883237235248089, -0.010678933002054691, -0.0018891654908657074, 0.06626001000404358, -0.028772782534360886, 0.00016624406271148473, -0.02144966833293438, -0.010685034096240997, 0.016545193269848824, 0.03649742528796196, -0.010178917087614536, -0.0008480293327011168, 0.0465443879365921, 0.03303525224328041, -0.013437055982649326, 0.03718572482466698, -0.004370430484414101, 0.01706174947321415, -0.020384760573506355, 0.008882087655365467, 0.021946463733911514, -0.001710777636617422, -0.0339447557926178, 0.0009379597613587976, -0.007319463882595301, 0.030522814020514488, -0.01331955287605524, -0.02230958081781864, 0.037601858377456665, -0.04666787013411522, -0.04161537438631058, -0.028585894033312798, 0.028702007606625557, -0.06215834990143776, -0.021671155467629433, 0.0160224549472332, 0.004255061503499746, 0.00009712708560982719, 0.047612741589546204, 0.019213177263736725, 0.045490819960832596, 0.00453294487670064, 0.03635062277317047, -0.013136706314980984, 0.027048995718359947, 0.059538714587688446, -0.04033175855875015, -0.03527773916721344, 0.012959679588675499, -0.014134731143712997, -0.05993857979774475, -0.04921821132302284, -0.02956375665962696, -0.03919653594493866, -0.019726771861314774, -0.019223270937800407, 0.007244254928082228, 0.023888908326625824, -0.011316965334117413, -0.060121774673461914, -0.017912760376930237, 0.018930016085505486, -0.03940519317984581, 0.0355161614716053, -0.0039060635026544333, 0.031203266233205795, -0.0026450082659721375, -0.01971503347158432, -0.03895720839500427, -0.04757362976670265, 0.0036267447285354137, -0.05351421982049942, 0.053071316331624985, 0.01446958165615797, -0.017853153869509697, -0.02104778401553631, -0.054345566779375076, -0.023969260975718498, -0.000329085742123425, -0.01452499907463789, -0.04125393554568291, 0.00880319345742464, 0.03740645572543144, -0.0055837021209299564, 0.012155668810009956, -0.025517206639051437, 0.0023000084329396486, 0.027190111577510834, 0.08874405920505524, 0.01452684123069048, 0.02300908789038658, 0.03717128187417984, -0.015235506929457188, 0.026669947430491447, -0.033688515424728394, 0.04695979878306389, 0.001106739742681384, -0.014371037483215332, -0.01954793557524681, 0.03172805532813072, -0.028242671862244606, -0.043851498514413834, 0.010193104855716228, 0.012057778425514698, 0.020808853209018707, -0.0484890341758728, -0.06310528516769409, 0.009708553552627563, -0.02303183078765869, 0.011669042520225048, -0.05039002001285553, -0.008956394158303738, -0.0008234935812652111, -0.004976783413439989, -0.0011903628474101424, -0.053543951362371445, 0.14961646497249603, 0.03106086142361164, 0.027235085144639015, -0.007016315124928951, -0.005023411475121975, 0.05281733721494675, 0.03565708547830582, 0.007440206129103899, -0.03880394250154495, -0.03809438273310661, 0.0423697754740715, 0.021127570420503616, 0.03655076026916504, 0.031022321432828903, 0.027952663600444794, 0.05220640078186989, -0.06827440857887268, 0.013109053485095501, 0.032068394124507904, -0.051873669028282166, -0.03659878671169281, 0.034208059310913086, 0.006500968709588051, 0.03399054706096649, 0.004705711267888546, 0.04779498279094696, 0.020683107897639275, -0.05391085520386696, -0.007331149652600288, -0.026179039850831032, 0.022568045184016228, -0.03198155015707016, 0.029486417770385742, 0.0029816816095262766, -0.0360369011759758, 0.03315502405166626, -0.0025885787326842546, -0.014829225838184357, 0.004114286508411169, 0.03554429113864899, -0.02584921196103096, 0.001289085834287107, 0.01210683025419712, -0.0286356620490551, -0.01600480265915394, 0.028501369059085846, -0.021799225360155106, -0.006198076531291008, 0.008541506715118885, -0.018194422125816345, 0.04991042613983154, -0.012803897261619568, 0.039278410375118256, -0.023298870772123337, -0.03022952750325203, 0.018457375466823578, 0.006632750853896141, -0.021825619041919708, -0.012658588588237762, -0.027834268286824226, 0.0565275102853775, -0.0024021409917622805, -0.021730629727244377, 0.03135786950588226, -0.027049804106354713, 0.008709294721484184, 0.0013061079662293196, -0.009675425477325916, -0.03558272495865822, -0.055558715015649796, -0.009131789207458496, -0.005997144617140293, -0.03164751082658768, -0.024991044774651527, 0.06390118598937988, 0.03825262561440468, -0.032887645065784454, 0.038611941039562225, -0.01894969493150711, -0.008936974219977856, -0.03637399524450302, -0.053366340696811676, 0.015230435878038406, -0.0012761949328705668, 0.028072405606508255, 0.032376017421483994, -0.05599598214030266, -0.024611713364720345, -0.02371496707201004, 0.04694719985127449, 0.06123580411076546, 0.038961268961429596, -0.013660439290106297, 0.001621545641683042, -0.01940353959798813 ]
NLADA Receives Grant from W.K. Kellogg Foundation to Support Civil Legal Aid During Pandemic Crisis Contact: Sharon Singh, [email protected] or [email protected] WASHINGTON, D.C. – The W.K. Kellogg Foundation has awarded the National Legal Aid & Defender Association (NLADA) $275,000 to build capacity, and coordinate strategies, leadership and best practices as civil legal aid programs shift their practices and develop new innovations in the face of challenges related to the COVID-19 pandemic. "COVID-19 and efforts to curb the virus have a disparate impact on communities of color," said Jo-Ann Wallace, president & CEO of NLADA. "This grant will enable NLADA to work with our members to address the stark inequalities faced by Black and Indigenous communities. We are grateful to WKKF for recognizing the significant role of civil legal aid in helping low-income and marginalized people secure basic human needs. WKKF's support is especially critical in this moment: millions of families are facing evictions as moratoria expire across the country, which is coinciding with a decrease in unemployment support, even as rates continue to rise." NLADA will work with civil legal aid providers to tailor effective strategies and elevate innovative delivery models to address the moment at hand. "The number of civil legal needs and the number of families and communities experiencing them has grown exponentially. By providing assistance to the organizations helping the hardest-hit populations, we are supporting people when they need it most," said Wallace. "The pandemic has exacerbated long-existing problems in the Black and Indigenous communities. NLADA is grateful for the W.K. Kellogg Foundation's generous grant. We have been continually inspired by the commitment and innovations shown by civil legal aid providers across the country, and the efforts we will undertake with this support will make a difference in addressing disparities and securing the health and stability in these most vulnerable communities," said Wallace. About the National Legal Aid & Defender Association: The National Legal Aid & Defender Association (NLADA), founded in 1911, is America's oldest and largest nonprofit association devoted to excellence in the delivery of legal services to those who cannot afford counsel. NLADA has pioneered access to justice at the national, state and local levels through the creation of our public defender systems and other important institutions from The Sentencing Project to the Legal Services Corporation. A leader in the development of national standards for civil legal aid and public defense, NLADA also provides advocacy, training and technical assistance for equal justice advocates across the country. About the W.K. Kellogg Foundation: The W.K. Kellogg Foundation (WKKF), founded in 1930 as an independent, private foundation by breakfast cereal innovator and entrepreneur Will Keith Kellogg, is among the largest philanthropic foundations in the United States. Guided by the belief that all children should have an equal opportunity to thrive, WKKF works with communities to create conditions for vulnerable children so they can realize their full potential in school, work and life. The Kellogg Foundation is based in Battle Creek, Michigan, and works throughout the United States and internationally, as well as with sovereign tribes. Special attention is paid to priority places where there are high concentrations of poverty and where children face significant barriers to success. WKKF priority places in the U.S. are in Michigan, Mississippi, New Mexico and New Orleans; and internationally, are in Mexico and Haiti. For more information, visit www.wkkf.org
[ -0.028023717924952507, 0.019086167216300964, -0.0528499074280262, 0.055149395018815994, -0.00030210960539989173, -0.0010169452289119363, -0.0044914307072758675, 0.01752394810318947, -0.02091197296977043, 0.03370056673884392, 0.0012751163449138403, -0.022039705887436867, 0.0025015193969011307, -0.04305865615606308, -0.021862510591745377, 0.016632359474897385, -0.026007717475295067, 0.0018855459056794643, 0.044910531491041183, 0.028072569519281387, -0.0035876219626516104, 0.05690629035234451, -0.06284927576780319, -0.04775959998369217, -0.011218956671655178, 0.0586431510746479, 0.008416935801506042, -0.007242885418236256, 0.06502628326416016, 0.026657937094569206, -0.017284870147705078, -0.07440472394227982, 0.01795705035328865, -0.041005104780197144, -0.05588924512267113, -0.027889996767044067, 0.04062994569540024, -0.03323671966791153, -0.011114908382296562, -0.05716176703572273, 0.03206983953714371, -0.028462618589401245, 0.03652360662817955, -0.04742328077554703, -0.029437944293022156, -0.011980267241597176, -0.04207291826605797, -0.02532591111958027, 0.03958694636821747, -0.04058864712715149, -0.009606556035578251, 0.014584549702703953, 0.012485443614423275, 0.007175877224653959, -0.019515937194228172, 0.009139730595052242, 0.018799252808094025, -0.018066231161355972, -0.036544181406497955, 0.02521536871790886, 0.02867155894637108, -0.0034560305066406727, 0.018009833991527557, -0.057527292519807816, 0.023274913430213928, 0.030555786564946175, -0.018774768337607384, -0.005211298353970051, 0.003669800702482462, -0.04969819262623787, 0.0031044993083924055, 0.026055481284856796, -0.05265006422996521, -0.01847698725759983, 0.021590393036603928, -0.028879690915346146, -0.004265084862709045, -0.0187775157392025, -0.007734043523669243, 0.024162419140338898, 0.017219724133610725, 0.03972020372748375, 0.014972926117479801, 0.024934303015470505, -0.06062522158026695, -0.02378080040216446, 0.010194366797804832, 0.02049184963107109, 0.03847736120223999, 0.016967594623565674, -0.03339352831244469, 0.04879796877503395, -0.025435609742999077, -0.014260333962738514, 0.04363930970430374, 0.04439356178045273, -0.04303387925028801, 0.04925241321325302, 0.013549563474953175, -0.00651979073882103, 0.0171534214168787, 0.003316837828606367, 0.009664347395300865, 0.07446721196174622, -0.008317248895764351, 0.0035584995057433844, 0.02630940079689026, -0.03280549868941307, 0.017856361344456673, -0.03464540094137192, 0.02636626549065113, -0.03482715040445328, 0.023965494707226753, -0.010950444266200066, 0.012957200407981873, 0.03971701115369797, -0.0037447784561663866, 0.04686126112937927, -0.014279342256486416, 0.024330373853445053, 0.0015965913189575076, -0.01355742011219263, 0.04942784085869789, -0.007619829848408699, 0.026482025161385536, -0.028626613318920135, -0.026954395696520805, 0.04884840548038483, -0.0022475288715213537, -0.007345579098910093, 0.0360858328640461, -0.02785409428179264, -0.016136009246110916, -0.0025209221057593822, 0.011247595772147179, 0.025405848398804665, 0.028741173446178436, 0.04054449126124382, 0.023317579180002213, -0.030412865802645683, 0.03709704428911209, 0.007443184498697519, -0.004918879363685846, 0.0927986353635788, 0.009629677049815655, 0.029377495869994164, 0.006396601442247629, -0.01523231528699398, -0.03111378662288189, 0.027400972321629524, -0.060629118233919144, 0.03556092455983162, -0.00558702927082777, 0.04235917329788208, 0.006592330057173967, -0.008432400412857533, 0.01044650748372078, 0.013998952694237232, 0.029115332290530205, 0.03659248724579811, -0.04680757597088814, 0.0119527792558074, -0.004216953180730343, 0.02722972072660923, -0.01948922500014305, -0.012370914220809937, -0.0200650691986084, 0.011546563357114792, 0.005857309326529503, -0.04943417012691498, 0.02477945387363434, 0.00582500733435154, -0.04823867231607437, 0.015453710220754147, 0.023042898625135422, 0.047952186316251755, 0.03378516063094139, -0.022678671404719353, 0.04102947562932968, 0.06371980160474777, -0.01442076824605465, 0.0021662397775799036, -0.032233595848083496, 0.06435375660657883, 0.03144398331642151, 0.0010527053382247686, 0.0018315702909603715, -0.019184397533535957, -0.040180087089538574, -0.02288796566426754, -0.01200172957032919, 0.020907830446958542, -0.03382214903831482, 0.06616080552339554, -0.013265266083180904, 0.01681273989379406, 0.008241856470704079, -0.02761409804224968, 0.0012059269938617945, -0.050476960837841034, -0.002305615460500121, 0.047580596059560776, 0.010196485556662083, 0.025026414543390274, -0.02136605605483055, -0.00292972382158041, 0.05326408892869949, 0.02796800062060356, -0.050426382571458817, 0.020338114351034164, 0.047110579907894135, 0.026873644441366196, -0.0010702568106353283, -0.027701489627361298, 0.012953094206750393, -0.006327031180262566, -0.02400106005370617, 0.08118979632854462, -0.02229803055524826, -0.013341664336621761, 0.003872242523357272, 0.01753806322813034, 0.018643366172909737, 0.050696056336164474, -0.01421475037932396, -0.03081177920103073, 0.012379989959299564, 0.04407083988189697, -0.01627093181014061, -0.02686060406267643, 0.020123865455389023, 0.05278097838163376, -0.0071301329880952835, 0.06712730973958969, 0.07175017893314362, 0.0018010188359767199, 0.02560756728053093, 0.07205033302307129, -0.001657323562540114, 0.026029380038380623, -0.015731170773506165, 0.030243191868066788, 0.0352347195148468, 0.018991105258464813, -0.004866259638220072, 0.0302910003811121, -0.02909679524600506, -0.007918678224086761, -0.03892979398369789, 0.015650492161512375, -0.001377674168907106, 0.06934744864702225, 0.03792847692966461, 0.047273777425289154, -0.011897983029484749, 0.014842369593679905, 0.04071284830570221, 0.043338824063539505, -0.03299875929951668, -0.03868044540286064, 0.012173679657280445, 0.039251893758773804, -0.018772004172205925, -0.0015655012102797627, 0.0015753944171592593, 0.025614192709326744, -0.026190703734755516, 0.0316661074757576, -0.037401773035526276, -0.0327983982861042, -0.05475304275751114, -0.05430586263537407, -0.039160843938589096, -0.03827536478638649, -0.0598505362868309, -0.03517957404255867, 0.017991047352552414, -0.05454903095960617, 0.005180300213396549, -0.02006736770272255, -0.02739434875547886, -0.032383471727371216, -0.04028867185115814, 0.025752687826752663, 0.03945962339639664, 0.03188293054699898, -0.03895645961165428, 0.01822391338646412, 0.023028163239359856, 0.011212607845664024, -0.02227162756025791, -0.022735783830285072, 0.0032776272855699062, -0.022795293480157852, 0.04538802057504654, -0.0066001866944134235, -0.016275906935334206, 0.022679375484585762, -0.03758392855525017, -0.023800574243068695, -0.019064851105213165, -0.023298053070902824, -0.02332254871726036, -0.011194220744073391, -0.051589976996183395, 0.03485700488090515, 0.018382489681243896, -0.026536190882325172, 0.04022998735308647, 0.04379082843661308, -0.023345548659563065, 0.04152492806315422, 0.03298385068774223, 0.007480997126549482, -0.03574385493993759, 0.06002398207783699, 0.04111291468143463, 0.001404772512614727, -0.03779156878590584, -0.027445020154118538, -0.04595271870493889, 0.016716789454221725, -0.002913937671110034, -0.039323486387729645, 0.0013430221006274223, 0.03219125419855118, 0.015045679174363613, -0.06654881685972214, 0.012082666158676147, -0.04538064822554588, -0.024109141901135445, -0.032296452671289444, -0.022111400961875916, 0.019351188093423843, 0.0283887330442667, 0.01119223516434431, 0.031109562143683434, -0.010711833834648132, -0.005229641683399677, 0.014585115015506744, 0.05933753401041031, -0.018760336562991142, 0.04280976951122284, 0.024525171145796776, -0.0034302661661058664, 0.014667404815554619, 0.011864890344440937, -0.020670775324106216, 0.01516720000654459, 0.034570034593343735, -0.003511660499498248, 0.012287002056837082, 0.04045785218477249, 0.020098967477679253, 0.01457175798714161, 0.04888680949807167, -0.04109058156609535, 0.010000837966799736, 0.011835694313049316, 0.04024854674935341, 0.03176875039935112, -0.005631504114717245, -0.009550212882459164, -0.029467079788446426, -0.028842754662036896, -0.0492827445268631, 0.02071763202548027, 0.024634288623929024, 0.06238816678524017, -0.0773097574710846, 0.04558833688497543, 0.009199562482535839, -0.02635737508535385, 0.036411549896001816, -0.06606581062078476, 0.001664898474700749, 0.06449519842863083, 0.010239281691610813, 0.04755140841007233, -0.04028482735157013, 0.022356033325195312, 0.0036045326851308346, 0.03324591740965843, 0.0355135016143322, -0.023724256083369255, 0.02714424394071102, -0.015675347298383713, -0.00015123069169931114, 0.010578766465187073, -0.007046661339700222, 0.0388922356069088, -0.047913599759340286, -0.017372308298945427, 0.0023913199547678232, -0.04747462645173073, -0.021092349663376808, 0.044743940234184265, 0.0008438597433269024, 0.046291571110486984, 0.005545663647353649, 0.04478059336543083, -0.011670984327793121, 0.05283813178539276, 0.01732090301811695, 0.012849511578679085, 0.02468123473227024, -0.05861087515950203, 0.04859248548746109, -0.0029307673685252666, -0.045388463884592056, -0.009419845417141914, -0.02884400635957718, -0.022132564336061478, 0.044879812747240067, 0.004675567150115967, -0.004029781557619572, -0.027513353154063225, 0.02519676275551319, -0.004679892677813768, 0.011640366166830063, -0.05001601204276085, -0.014565588906407356, 0.0072930958122015, 0.043952737003564835, 0.011489903554320335, -0.04953094199299812, 0.048221655189991, -0.05598945543169975, 0.028323598206043243, 0.03965577483177185, -0.018658967688679695, -0.03952912613749504, -0.011621775105595589, -0.00849789846688509, -0.023594317957758904, 0.041835397481918335, 0.031148744747042656, -0.013627287931740284, -0.002329806098714471, -0.037592269480228424, 0.05826548859477043, 0.021725807338953018, -0.0036153283435851336, -0.02691667526960373, -0.011632099747657776, -0.015181229449808598, -0.008008655160665512, 0.012149910442531109, -0.02234659530222416, -0.0033271925058215857, 0.014194680377840996, -0.04373834282159805, 0.037483099848032, 0.015467619523406029, -0.029909852892160416, -0.027997072786092758, 0.03886762633919716, 0.012499895878136158, 0.039125386625528336, -0.03825134038925171, -0.0119737908244133, 0.005347471684217453, 0.0247514508664608, -0.038460228592157364, -0.015898972749710083, 0.03321889415383339, -0.011321933940052986, -0.024584047496318817, 0.02435128763318062, 0.027035685256123543, -0.0289978738874197, 0.020695993676781654, 0.01762491837143898, -0.06818056851625443, 0.04578143358230591, -0.019459005445241928, 0.01337328553199768, -0.01815742626786232, -0.028125151991844177, 0.019989678636193275, -0.00787224993109703, 0.022235652431845665, -0.006766328122466803, -0.005961223039776087, -0.026092469692230225, -0.04482753947377205, 0.0016916478052735329, 0.026304729282855988, -0.02909400686621666, 0.012712536379694939, 0.020850198343396187, 0.011381692253053188, -0.021323606371879578, -0.02363375388085842, -0.018387505784630775, 0.025214606896042824, 0.00780240586027503, -0.014616680331528187, 0.015402832068502903, 0.004400651901960373, 0.019013963639736176, -0.007701211143285036, -0.03738855943083763, -0.013969634659588337, -0.004293991718441248, -0.038925398141145706, -0.039892274886369705, -0.004140808247029781, -0.02880161628127098, -0.01794551871716976, -0.011951037682592869, -0.010755067691206932, -0.019997982308268547, 0.03214983269572258, 0.007289359346032143, 0.02079330012202263, 0.014265399426221848, 0.022290050983428955, -0.034513331949710846, 0.059953782707452774, 0.04306414723396301, -0.04645240306854248, -0.029565172269940376, 0.03697892650961876, -0.004146046470850706, 0.05281354859471321, -0.005973163526505232, -0.01445145532488823, -0.04633999988436699, -0.02121550776064396, -0.010027237236499786, -0.05530114471912384, -0.011557085439562798, -0.02525465190410614, -0.016475439071655273, 0.01767604425549507, 0.04061920568346977, -0.00725171435624361, -0.024730509147047997, 0.018917245790362358, -0.04549200087785721, -0.012144307605922222, -0.030227242037653923, -0.030092395842075348, -0.015619304031133652, -0.04558079317212105, 0.003253149101510644, 0.053517911583185196, 0.05171245336532593, -0.018668990582227707, -0.007067118305712938, -0.010984295047819614, 0.004553032573312521, -0.007744489703327417, -0.05522690340876579, -0.03538331389427185, -0.009107292629778385, 0.014009407721459866, 0.006046938709914684, 0.004913440905511379, -0.034398507326841354, 0.03931421786546707, -0.03447233512997627, 0.003947981167584658, -0.013763777911663055, -0.022170724347233772, -0.012611057609319687, -0.023172272369265556, 0.04452171176671982, -0.023470638319849968, 0.0385124608874321, 0.019831033423542976, 0.024504192173480988, 0.008496664464473724, 0.00886816531419754, -0.030729956924915314, -0.013033661060035229, -0.04346238821744919, -0.06749510765075684, 0.01797259785234928, -0.03557052090764046, -0.005678375251591206, -0.029308568686246872, -0.05022972449660301, 0.03645600378513336, -0.03294152021408081, 0.04758628085255623, 0.037481434643268585, -0.03899092972278595, 0.012864872813224792, -0.016359597444534302, 0.042152129113674164, 0.03392333909869194, -0.030506489798426628, -0.02724599279463291, -0.025283435359597206, -0.042064838111400604, 0.022219814360141754, -0.04827241599559784, -0.027264868840575218, -0.03841724246740341, 0.0037100694607943296, 0.06611482799053192, -0.034926120191812515, 0.029313700273633003, -0.014207212254405022, -0.028898973017930984, -0.051469288766384125, 0.042798858135938644, -0.010891923680901527, 0.024363495409488678, 0.05643787980079651, 0.013335361145436764, -0.052882492542266846, 0.021260764449834824, -0.030413096770644188, 0.021595120429992676, -0.018345294520258904, 0.06806449592113495, 0.004402221646159887, -0.04348073527216911, 0.0146723547950387, 0.049776867032051086, -0.05240926891565323, -0.037067968398332596, -0.0040061562322080135, -0.012238290160894394, 0.001772193587385118, -0.03702687472105026, -0.008065462112426758, 0.012658950872719288, 0.00046649365685880184, -0.0017977793468162417, 0.027858970686793327, 0.018114132806658745, 0.06209201365709305, -0.003893669694662094, 0.04288731887936592, -0.040827661752700806, 0.017006197944283485, 0.008268974721431732, 0.011057581752538681, -0.03319663554430008, -0.02236877754330635, -0.01231016218662262, 0.0006999740726314485, 0.009829198941588402, 0.05740505829453468, -0.019932536408305168, 0.00860687904059887, 0.006886078044772148, -0.01822878234088421, 0.05005013942718506, -0.014845841564238071, -0.016840633004903793, 0.03561828285455704, 0.013223696500062943, -0.039125707000494, -0.01693282648921013, 0.004299847409129143, 0.02078467607498169, 0.057302601635456085, -0.07719496637582779, 0.022953791543841362, 0.03909926116466522, -0.0007131468155421317, 0.03230593726038933, -0.028070911765098572, -0.03982684016227722, -0.00173470051959157, -0.048127878457307816, -0.03371170908212662, -0.02938549779355526, 0.02262595295906067, 0.05043777823448181, 0.014870489947497845, -0.05128880590200424, -0.006980183534324169, -0.008022041991353035, -0.054216060787439346, -0.02625909633934498, -0.032577648758888245, -0.0026845557149499655, -0.03376815468072891, -0.07024267315864563, -0.010988050140440464, -0.013631806708872318, -0.03318750113248825, -0.001609987928532064, -0.01603713631629944, 0.016647132113575935, 0.025555839762091637, 0.041928667575120926, 0.0061970967799425125, 0.007262261118739843, -0.031754035502672195, -0.03378002718091011, -0.004248758312314749, 0.04839010536670685, 0.0003808292967732996, 0.024728771299123764, 0.04477635771036148, -0.03288230299949646, 0.020829113200306892, -0.010745703242719173, -0.028149502351880074, -0.007095305249094963, 0.015159709379076958, -0.002307903952896595, -0.0062538557685911655, -0.02772216871380806, -0.029987024143338203, -0.009331652894616127, -0.05128677561879158, -0.004437667317688465, -0.023511597886681557, 0.021535582840442657, 0.000272582343313843, -0.005191079340875149, -0.0016113925958052278, 0.04461492970585823, -0.038358885794878006, -0.01651058904826641, 0.014282923191785812, 0.02971365861594677, 0.044869519770145416, -0.0020663945470005274, 0.017499906942248344, 0.022456347942352295, 0.034889161586761475, -0.011180870234966278, 0.014725933782756329, 0.000049766986194299534, -0.0006987620727159083, 0.01410768087953329, -0.006333144381642342, -0.0348534993827343, -0.020723283290863037, -0.018853235989809036, -0.002115644281730056, 0.03280150890350342, 0.010101186111569405, 0.01572512648999691, 0.028961673378944397, -0.013266806490719318, -0.052635788917541504, 0.018941031768918037, -0.06074389070272446, -0.056153617799282074, 0.04249146953225136, -0.011707372963428497, -0.04110552743077278, -0.02348557859659195, -0.04114600643515587, -0.023480402305722237, -0.03202257305383682, -0.007511422038078308, -0.0442742258310318, 0.0004885855014435947, 0.014287035912275314, 0.021097101271152496, -0.0023718641605228186, -0.0016173506155610085, 0.01587042398750782, 0.041680365800857544, -0.022786004468798637, -0.04302942007780075, -0.005789171438664198, 0.05438544973731041, 0.012417607009410858, 0.00432602921500802, -0.017291244119405746, 0.015484076924622059, -0.04170744866132736, 0.008756308816373348, -0.020834816619753838, 0.03183857724070549, 0.010585173964500427, 0.0003397106484044343, -0.012750218622386456, -0.004699100740253925, -0.03123200312256813, 0.019450493156909943, -0.022185474634170532, -0.035600416362285614, -0.03272596746683121, 0.026402214542031288, 0.01387295126914978, -0.038151830434799194, 0.06153089553117752, -0.001849592663347721, -0.0012834270019084215, 0.017475569620728493, -0.0019062245264649391, -0.015122574754059315, 0.04602355882525444, 0.05015737935900688, 0.020336778834462166, 0.0032237148843705654, 0.01481433305889368, 0.06671156734228134, -0.007255470380187035, -0.008883143775165081, 0.05451248586177826, 0.026864876970648766, 0.0025628190487623215, -0.0026051306631416082, -0.03433537855744362, 0.005586901213973761, 0.004024231806397438, -0.014705728739500046, 0.0007659330149181187, -0.02711654081940651, 0.010556699708104134, -0.01386027131229639, -0.02464541234076023, 0.07319989055395126, -0.03315203636884689, -0.003874644171446562, -0.04509945213794708, -0.004481417592614889, 0.010257222689688206, 0.04728096351027489, 0.039852384477853775, 0.0027749533765017986, 0.03395801782608032, 0.020260639488697052, -0.027018247172236443, 0.03483697026968002, 0.01907249353826046, -0.02021935023367405, -0.04015645384788513, 0.02096419222652912, 0.0018589308019727468, 0.0009604777442291379, -0.025915946811437607, 0.025678422302007675, -0.022210748866200447, 0.047792352735996246, -0.015310276299715042, -0.017649253830313683, 0.01768093928694725, -0.04597274586558342, -0.01681295409798622, -0.056172408163547516, 0.05528967082500458, -0.061586927622556686, -0.026446888223290443, 0.04495649039745331, 0.0001937346823979169, -0.028642678633332253, 0.01844637654721737, -0.002013726392760873, 0.03457432612776756, -0.0011535430094227195, 0.03962565213441849, 0.0007916527101770043, 0.03966363146901131, 0.025168612599372864, -0.0656309574842453, -0.013945761136710644, 0.010217483155429363, 0.0047305878251791, -0.0564030259847641, -0.03009744919836521, -0.060439419001340866, -0.010827219113707542, -0.05035891756415367, -0.010281002148985863, -0.01831965707242489, 0.023090902715921402, -0.020713573321700096, -0.05558859556913376, 0.04868938773870468, 0.04146888479590416, -0.030919324606657028, 0.007741734851151705, -0.0027630897238850594, 0.05229493975639343, -0.007883988320827484, -0.010023869574069977, 0.007472125813364983, -0.02603788487613201, 0.006173561327159405, -0.015807436779141426, 0.07016397267580032, -0.046012118458747864, -0.00891662947833538, -0.02707095816731453, -0.06820914149284363, 0.009438890963792801, 0.021447572857141495, -0.06966977566480637, -0.020675716921687126, 0.018601741641759872, 0.055984336882829666, -0.004764880053699017, 0.011329584755003452, -0.01731484942138195, -0.004309775773435831, 0.04294074699282646, 0.049087755382061005, 0.004941184539347887, 0.042391348630189896, 0.02071215957403183, 0.0008212025859393179, 0.03281185030937195, 0.003577065421268344, 0.015729136765003204, -0.0238234531134367, -0.04954427108168602, -0.04589981958270073, 0.010785192251205444, -0.006229226477444172, -0.06621185690164566, 0.0001068005440174602, 0.02693207375705242, 0.005469007883220911, -0.022292492911219597, -0.043345581740140915, -0.008163628168404102, -0.04028293490409851, -0.014103669673204422, -0.047911204397678375, 0.021063685417175293, -0.010443970561027527, -0.021018702536821365, 0.024742048233747482, -0.08018076419830322, 0.15006490051746368, 0.021045951172709465, 0.0005988921620883048, 0.01978807896375656, 0.029152385890483856, 0.04335532709956169, 0.01720241643488407, 0.004066084511578083, -0.008276304230093956, -0.014224139042198658, 0.005175183992832899, 0.00034234527265653014, 0.003998780623078346, 0.013229983858764172, 0.010662815533578396, 0.05647062882781029, -0.03305120766162872, -0.018672659993171692, 0.01059851236641407, -0.06378602981567383, -0.03541033715009689, 0.021992625668644905, -0.003949583973735571, 0.028498206287622452, -0.001960413297638297, 0.0035195143427699804, 0.021441247314214706, -0.03292039409279823, 0.003529137233272195, -0.007122047245502472, 0.016915885731577873, -0.06407139450311661, 0.06107039749622345, -0.02787175215780735, -0.057627059519290924, 0.02557537518441677, 0.0031901609618216753, -0.03973962366580963, 0.004149806220084429, 0.04145972430706024, -0.00417721550911665, -0.0013859961181879044, 0.028224151581525803, -0.04330797865986824, 0.008136915974318981, 0.011515687219798565, -0.04255541414022446, 0.016568312421441078, 0.06045088544487953, -0.013282221741974354, 0.02545960061252117, -0.019538303837180138, 0.01996219903230667, 0.024102022871375084, -0.04604862257838249, -0.004381654784083366, 0.014016218483448029, -0.037174202501773834, -0.026823950931429863, -0.007412714418023825, 0.049263399094343185, 0.011850562877953053, -0.016237404197454453, -0.0014370876597240567, -0.012729398906230927, 0.022957030683755875, 0.05812084674835205, -0.0012192100984975696, -0.00325441500172019, -0.02153613604605198, -0.01475963369011879, -0.015494359657168388, 0.007127386052161455, 0.020313305780291557, 0.026761256158351898, 0.023250047117471695, -0.011025821790099144, 0.018816091120243073, 0.006059520412236452, -0.05277596786618233, 0.010394426062703133, -0.017658285796642303, 0.001035623368807137, -0.017046920955181122, 0.001496529788710177, 0.06054142117500305, -0.03396245464682579, -0.03917163237929344, -0.03724680095911026, 0.034338582307100296, 0.07111206650733948, -0.0008461665129289031, -0.010166614316403866, -0.026471322402358055, 0.00043807478505186737 ]
The transition from nursery to primary school is a big step and making sure that your child is ready for a school environment is very important to us here at Daisy Chain. Ahead of the transition we begin preparation to make sure our 'Elves' children have a good routine and the confidence to thrive in a learning environment. The Elves room layout is that of a pre-school and our trained staff encourage independence and self choice in daily activities. Read to your child, they are beginning to understand the meaning of stories and predict what will happen next. This is a great way of improving language as well as imagination. At this age your child's communication skills will be improving faster all the time and most children will be able to put together three- to five-word sentences. Talking about their favourite characters in books is a great way of introducing new words. The more you talk to your child, the more words they are exposed to. Children learn new words quickly at this age. Show your child that written words are a part of daily life, from grocery lists and email messages to billboards and signs in stores, writing is everywhere! Teach your child to print their first name (be patient, as this will take practice). This is very empowering for a pre-schooler! Label your child's belongings with his/her name. Let your child label some of their own things (such as a notebook or crayon box). Sort out the laundry together to encourage early maths, e.g. pairing socks. Cut apart comic strips and then help your child put them back in order whilst encouraging them to tell the story as you go along. Keep a travel log when going on visits or trips out. Encourage your child to write or draw what they see whilst they are out and about. Count aloud at every opportunity together such as counting steps on the stairs. As children grow older they naturally want to be more and more self sufficient. Under supervision,we promote this at nursery by encouraging the pre-school children to do things by themselves such as going to the toilet, washing their hands, applying their own sun cream, serving their own food, using a knife and fork, finding their own peg and hanging up their coats. To further promote independence at home you could encourage your child to brush their hair, choose what they want to wear or get dressed by themselves. Children love to help out at this age and enjoy showing you what they can contribute, whether feeding the family pet, watering the plants or helping to tidy up. Be specific about what you want them to do ("pick up your blocks" rather than "let's tidy up the room") and be specific with your praise ("you put your blocks away, good job!"). Starting with a handful of small tasks develops your child's responsibilities gradually, which will prepare them for handling multiple instructions in the classroom. Talk to them about what they are doing. Preferably use open questions: "Where are you going to put the box?" At this age give your child 10 seconds to respond. This helps them to process information and learn how to properly form a response, great preparation for school. It's good to praise even the smallest achievement, particularly things done for the first time for themselves, see a copy of '100 ways to praise your child'. If passing a school during drop off and collection times, stop and point out to your child what is happening. If your friends have school aged children, ask if you can go along with them at these crucial times. Ask the school if they have a booklet with photographs of their school that include the play ground, dining hall, classrooms and cloakrooms that you can share with your child to explain what happens in these places. Do practice runs beforehand to work out timings and talk about what they could expect on their first day; playing out in the playground, where their classroom is and where they will have lunch etc. Talk about about their new teacher, the more you talk about school positively, the better equipped they'll be and less likely to be upset. Read books about starting school together such as, My First Time: Starting School by Petty, Kopper & Pipe, At School by Jillian Powell, Guess What Happened at School Today? by Jez Alborough and Billy and the Big New School by Catherine and Laurence Anholt, to name a few. Attend transition meetings and talk to your key worker about your child's transition to school. Accept that you, as well as your child, will probably be nervous. In fact, you may be more anxious than they are! Remember that your child will be watching you closely for clues about how to cope. If you're happy, relaxed and upbeat, your child is much more likely to be the same.
[ -0.005080909002572298, 0.007906378246843815, -0.019162220880389214, -0.019782457500696182, 0.004374765790998936, -0.0014958266401663423, 0.015351790003478527, 0.03300531953573227, -0.013239355757832527, 0.010624073445796967, 0.02773480862379074, 0.03146602213382721, 0.02033018134534359, -0.014492776244878769, -0.010561814531683922, 0.003334221662953496, -0.056854091584682465, -0.025537479668855667, -0.03085886314511299, -0.02920358069241047, -0.01927279494702816, 0.01849851943552494, -0.06867670267820358, -0.02797234058380127, -0.008215419016778469, 0.023579047992825508, 0.029314355924725533, -0.003093451727181673, 0.073628731071949, 0.07647720724344254, 0.0018859206466004252, -0.022543668746948242, 0.047088202089071274, -0.0013995690969750285, -0.024872997775673866, -0.022620268166065216, 0.009364130906760693, -0.014996521174907684, -0.008210730738937855, -0.05245131999254227, 0.03014257922768593, -0.005546729080379009, 0.06925560534000397, -0.06383993476629257, -0.04432298615574837, 0.010568568482995033, 0.012957681901752949, 0.0033053522929549217, 0.014443594962358475, -0.015125909820199013, 0.013535590842366219, -0.012761074118316174, -0.0019979693461209536, 0.0028435520362108946, 0.013729079626500607, 0.01765039563179016, -0.0013554166071116924, -0.013201287016272545, -0.028741462156176567, 0.04064735770225525, 0.015584410168230534, 0.031007155776023865, 0.01606212742626667, -0.054013729095458984, -0.007074043154716492, 0.02357405424118042, -0.014383465051651001, -0.028218327090144157, 0.0015237010084092617, -0.022698352113366127, -0.009254399687051773, 0.00785787682980299, 0.0007900329073891044, -0.013237993232905865, -0.005716389045119286, 0.00036604530760087073, -0.03572766110301018, 0.010317451320588589, -0.005176279693841934, 0.014047987759113312, 0.023718927055597305, 0.03871416300535202, 0.011075112037360668, 0.023492762818932533, -0.034978993237018585, -0.034680042415857315, -0.007341234013438225, 0.038676824420690536, -0.011502867564558983, -0.02185460738837719, 0.019100330770015717, 0.07191933691501617, -0.01624341309070587, 0.00029375922167673707, 0.06084265187382698, 0.03628602251410484, -0.03450843319296837, 0.03300303965806961, 0.006957335863262415, 0.00865441095083952, 0.04427781328558922, -0.00972994789481163, 0.021401163190603256, 0.03247363120317459, -0.042388685047626495, -0.014947785995900631, -0.00014342594658955932, -0.01674608141183853, -0.018249113112688065, -0.005907613318413496, -0.01952446810901165, -0.03444931283593178, 0.01866915263235569, 0.0008476528455503285, 0.007289665751159191, 0.05540258064866066, 0.018926292657852173, 0.034806955605745316, -0.05098376050591469, 0.030240047723054886, 0.030652375891804695, 0.020712532103061676, 0.022988151758909225, -0.03398602828383446, 0.01901666633784771, -0.018992431461811066, -0.03842213377356529, 0.036383435130119324, -0.03907801955938339, -0.02718871273100376, -0.018713684752583504, -0.03197561949491501, 0.011719634756445885, 0.015660548582673073, 0.022287797182798386, 0.024498945102095604, 0.02016560174524784, 0.03370150178670883, -0.009399899281561375, -0.07183539867401123, 0.04548383504152298, 0.022497113794088364, 0.03348258137702942, 0.08479844778776169, 0.028185676783323288, 0.011853915639221668, -0.03513820469379425, -0.01725490391254425, -0.05380905047059059, -0.008025511167943478, -0.024732321500778198, 0.048981864005327225, 0.008717232383787632, 0.027803199365735054, -0.016782723367214203, -0.005134765524417162, -0.02770480141043663, 0.012866637669503689, -0.0035535586066544056, -0.005860803183168173, -0.014851916581392288, 0.017542026937007904, -0.021166158840060234, 0.03162427246570587, -0.017704620957374573, 0.0011090622283518314, -0.04052475839853287, -0.014193843118846416, -0.0007218763348646462, -0.01786019839346409, 0.002638764213770628, -0.003261691192165017, -0.007854072377085686, 0.016540652140975, 0.003056375775486231, 0.04856273904442787, 0.05193645507097244, 0.01652446761727333, 0.03697572648525238, 0.03872060403227806, -0.018067937344312668, -0.03578529506921768, -0.0072547150775790215, 0.06908463686704636, -0.004388149362057447, -0.016867101192474365, 0.00442947493866086, 0.0012367037124931812, -0.040806565433740616, -0.053385816514492035, -0.019232941791415215, 0.04452910274267197, -0.03442206606268883, 0.01896807923913002, 0.014735105447471142, 0.014070904813706875, -0.02224382385611534, 0.003983321134001017, -0.018070189282298088, -0.0200491975992918, -0.05479329824447632, 0.03913694992661476, -0.027403870597481728, 0.042638156563043594, 0.022574860602617264, -0.03867732733488083, 0.028121229261159897, 0.06280513107776642, -0.05729863420128822, 0.0065310741774737835, 0.010538185015320778, 0.018933311104774475, -0.03810570389032364, 0.0025359352584928274, 0.013177698478102684, -0.013337426818907261, -0.010935172438621521, 0.06795378029346466, 0.00951389130204916, 0.0038212446961551905, 0.015283163636922836, -0.003963123075664043, 0.04910360649228096, 0.0334026925265789, -0.030056536197662354, 0.001660144655033946, 0.02019812911748886, 0.0394921638071537, 0.003116815583780408, 0.028684215620160103, -0.01631348766386509, 0.08321721106767654, 0.038163769990205765, 0.046984508633613586, 0.03847486898303032, 0.032304517924785614, 0.03230476379394531, 0.05013783648610115, -0.007670285180211067, -0.00737884221598506, 0.016029104590415955, -0.012565342709422112, 0.02683063969016075, 0.02354396879673004, -0.029783252626657486, 0.003943210933357477, -0.022759001702070236, 0.03572356700897217, 0.009164121001958847, 0.02754857949912548, -0.023428451269865036, 0.029345855116844177, 0.03816542774438858, 0.03433702513575554, -0.024266354739665985, 0.02128598280251026, 0.02549593709409237, 0.060655299574136734, -0.008286778815090656, -0.01628553308546543, 0.018189556896686554, 0.01734577678143978, 0.016508661210536957, 0.0022403562907129526, 0.03279131278395653, 0.03809385746717453, 0.005631937645375729, 0.05011487379670143, -0.017407556995749474, -0.0452486127614975, -0.007378262467682362, -0.04075491800904274, -0.03355782851576805, -0.021146439015865326, -0.061952441930770874, 0.0021937177516520023, 0.02563060261309147, -0.0611598901450634, 0.024291610345244408, -0.011660589836537838, -0.0012442610459402204, -0.01903240941464901, 0.005612028297036886, 0.0526018850505352, 0.02728133834898472, 0.018651681020855904, -0.027247751131653786, 0.018810397014021873, 0.0034690196625888348, 0.03241458162665367, -0.02760463021695614, 0.006259310524910688, 0.00022588613501284271, -0.03497990220785141, 0.0387481153011322, -0.028216885402798653, -0.015596825629472733, 0.006767497397959232, -0.051981743425130844, -0.033487219363451004, -0.014652024954557419, -0.014056387357413769, 0.009803292341530323, -0.007066505495458841, -0.03658004850149155, 0.04088330268859863, 0.02546187862753868, -0.022062843665480614, 0.05439988151192665, 0.020236488431692123, -0.032512642443180084, 0.04151690751314163, 0.02472645230591297, 0.0023356107994914055, -0.044661425054073334, 0.03095538541674614, 0.031011518090963364, 0.011698746122419834, -0.02625124901533127, -0.010038601234555244, -0.012677413411438465, 0.00025024093338288367, 0.0044005680829286575, -0.010072063654661179, -0.026772592216730118, 0.04720074683427811, -0.003283743280917406, -0.08229426294565201, 0.0196088794618845, -0.033433277159929276, -0.03802182152867317, -0.021755076944828033, -0.03952515125274658, 0.007938160561025143, 0.01786615327000618, 0.0417337492108345, 0.013218537904322147, -0.035259705036878586, 0.020635148510336876, 0.0061255693435668945, 0.038117486983537674, 0.0009909910149872303, 0.04273252561688423, 0.0378459207713604, -0.013149592094123363, 0.006598032545298338, 0.01411918830126524, -0.022276366129517555, -0.0029981164261698723, -0.004008685238659382, 0.024296611547470093, -0.009888211265206337, 0.051957424730062485, -0.012886974960565567, 0.01950126513838768, 0.019561761990189552, -0.03681355342268944, -0.01226256974041462, 0.020853757858276367, 0.023685559630393982, -0.036934029310941696, -0.024900125339627266, 0.020818235352635384, -0.02656932733952999, -0.04191318154335022, -0.06997203826904297, 0.055640578269958496, -0.007165455725044012, 0.053194548934698105, -0.08592087030410767, 0.03520181030035019, -0.011826732195913792, -0.005022707860916853, 0.04001592472195625, -0.045373719185590744, -0.027056358754634857, 0.026368960738182068, -0.017205411568284035, 0.057763244956731796, -0.047521840780973434, 0.013580646365880966, -0.031615711748600006, -0.026729177683591843, 0.04062390327453613, 0.008944629691541195, 0.02151491306722164, -0.015974074602127075, 0.00857537891715765, -0.012843094766139984, -0.04406494274735451, 0.0012582155177369714, -0.012908808887004852, 0.021766487509012222, -0.02679724246263504, -0.028620999306440353, -0.05152253806591034, 0.03371904045343399, 0.01882832497358322, 0.03114338219165802, -0.0482666939496994, 0.021922510117292404, 0.012216350063681602, 0.0044790408574044704, 0.04450630769133568, -0.024805808439850807, 0.030046159401535988, -0.034229397773742676, 0.05142052844166756, 0.026883671060204506, -0.021808871999382973, -0.002237645210698247, -0.027783004567027092, -0.03239001706242561, 0.004558168351650238, 0.021557297557592392, -0.018059080466628075, -0.036014582961797714, 0.000580157560762018, -0.011812490411102772, 0.028531931340694427, -0.045308101922273636, -0.02670799382030964, -0.0314028300344944, 0.04403012618422508, 0.029075227677822113, -0.046030912548303604, -0.011064904741942883, -0.02863817848265171, 0.05970713496208191, 0.032270465046167374, -0.019598351791501045, -0.04061514139175415, -0.05454718694090843, -0.03627849742770195, 0.016068147495388985, -0.0209799874573946, 0.06608421355485916, 0.0034312275238335133, -0.008971218951046467, -0.04070631042122841, 0.017448579892516136, 0.02702348120510578, -0.010301416739821434, 0.0051696933805942535, 0.012681015767157078, 0.02214941196143627, 0.0015109354862943292, 0.025634564459323883, 0.01109823677688837, -0.04146139323711395, 0.021259594708681107, -0.06993923336267471, 0.0030845804139971733, -0.026903051882982254, 0.013127743266522884, -0.026781493797898293, -0.0028305738233029842, 0.03332112729549408, 0.019010482355952263, -0.028800323605537415, 0.006210080347955227, 0.006933730095624924, 0.06045868620276451, -0.020446566864848137, -0.044251699000597, 0.03279060497879982, 0.009628228843212128, -0.05758266523480415, 0.038757193833589554, 0.030459493398666382, -0.03148658573627472, -0.02525710128247738, 0.007308479864150286, -0.04441428184509277, 0.0571691133081913, -0.025840815156698227, -0.011745253577828407, -0.005116526037454605, -0.04974948987364769, -0.0007122724782675505, -0.020083414390683174, 0.02278405800461769, -0.015198263339698315, -0.006593580357730389, -0.03855745494365692, -0.05373546853661537, -0.01610255241394043, -0.010700280778110027, -0.015313921496272087, 0.0013710141647607088, 0.02030004933476448, -0.003209443995729089, -0.025429118424654007, -0.002342140069231391, 0.025231841951608658, 0.003460424253717065, -0.027270525693893433, -0.008220233023166656, 0.020531050860881805, 0.018316088244318962, 0.01556420512497425, 0.01852257549762726, -0.02516755275428295, -0.00947029609233141, 0.012809738516807556, -0.004144324921071529, -0.036267898976802826, 0.018625373020768166, -0.030027955770492554, -0.027437357231974602, 0.00858463067561388, -0.005691603757441044, 0.0015860956627875566, -0.019340094178915024, 0.021405670791864395, 0.003060227958485484, 0.008168824017047882, 0.025774873793125153, -0.032996438443660736, 0.03727351874113083, 0.01976105011999607, -0.04066891223192215, -0.005444314330816269, 0.04124255105853081, -0.030760537832975388, 0.05297036096453667, 0.0012046067276969552, 0.012024265713989735, -0.042484693229198456, -0.04540296271443367, -0.005602430086582899, -0.034342169761657715, -0.010305176489055157, -0.04394951090216637, 0.002090387511998415, 0.0069983345456421375, 0.024142717942595482, 0.01696952059864998, -0.012458013370633125, 0.004395357333123684, -0.03659011796116829, 0.025673868134617805, -0.03715448081493378, -0.03337596729397774, -0.01825929433107376, -0.012162960134446621, -0.0028804591856896877, 0.045983728021383286, 0.002183853182941675, 0.018965156748890877, 0.016388241201639175, 0.01763668842613697, 0.007951432839035988, 0.006068682763725519, -0.06055651977658272, -0.0534142330288887, -0.01693393476307392, 0.00942210666835308, -0.015452085062861443, 0.023360034450888634, -0.0033189840614795685, 0.059869762510061264, -0.02497228793799877, -0.02488827332854271, -0.05120352655649185, -0.03877381607890129, -0.012637133710086346, 0.04000120609998703, 0.04869057983160019, -0.009764653630554676, 0.006755124311894178, -0.021331394091248512, 0.041004352271556854, 0.0534149669110775, 0.0017440966330468655, -0.05077424272894859, -0.02062150090932846, -0.044813964515924454, -0.056278910487890244, 0.00350951193831861, -0.023574987426400185, -0.007082678377628326, -0.04038592055439949, -0.0020975256338715553, 0.038590967655181885, 0.0034361956641077995, 0.0350751094520092, 0.05239927023649216, -0.02372382953763008, -0.013547837734222412, -0.03567808121442795, 0.026667794212698936, 0.0038526197895407677, -0.014885596930980682, -0.0075287846848368645, -0.0019469830440357327, -0.021029571071267128, 0.0014840244548395276, -0.04789764806628227, -0.05373608320951462, -0.06704522669315338, 0.004118303768336773, 0.057705752551555634, -0.023028511554002762, 0.046038977801799774, -0.016609227284789085, -0.022997615858912468, -0.01230059377849102, 0.0177249014377594, 0.002404901199042797, 0.013615620322525501, 0.038837410509586334, -0.006421951577067375, -0.01969800516963005, -0.0003360103291925043, -0.010654149577021599, -0.004197093658149242, -0.0436033196747303, 0.07544947415590286, 0.0028309496119618416, -0.05267735943198204, 0.00426582433283329, 0.04433087632060051, -0.03359312564134598, -0.04773513227701187, -0.009918195195496082, -0.0026507903821766376, 0.013329715467989445, -0.02815050259232521, 0.03055407665669918, 0.023482760414481163, 0.03703813999891281, 0.017862820997834206, 0.0399080328643322, -0.025869451463222504, 0.04879257082939148, 0.009784801863133907, 0.023042643442749977, -0.017892425879836082, 0.001302757067605853, 0.02255522459745407, -0.007606825791299343, -0.030823232606053352, -0.03414764627814293, -0.006759328301995993, -0.01255824975669384, -0.003834994276985526, 0.035259902477264404, 0.01344202645123005, 0.02088729850947857, 0.027055293321609497, -0.02157857082784176, 0.042430341243743896, -0.01804787665605545, 0.00005943733413005248, 0.04014601185917854, -0.0660838782787323, -0.047308433800935745, -0.03247286006808281, 0.027154846116900444, 0.016695406287908554, -0.0002334938762942329, -0.04577859863638878, -0.01646343432366848, 0.0282084122300148, 0.013524295762181282, -0.025590945035219193, -0.04111529886722565, -0.02489451691508293, -0.04830986633896828, -0.07368544489145279, -0.01689212955534458, -0.03063994273543358, 0.011831976473331451, 0.014162573963403702, 0.02632705308496952, -0.016641786321997643, 0.029909107834100723, 0.020668087527155876, -0.04419773817062378, -0.0026622586883604527, -0.04616425558924675, 0.05967555567622185, -0.046148668974637985, -0.051971808075904846, -0.04312945529818535, 0.023774733766913414, -0.020453669130802155, -0.011617308482527733, -0.045234233140945435, 0.02877161279320717, -0.0130423903465271, 0.03779029846191406, 0.00773266889154911, -0.005854592192918062, -0.0386788509786129, -0.05209246277809143, 0.014219911769032478, 0.055880192667245865, -0.006632198113948107, 0.01219957321882248, 0.013497316278517246, -0.0065619125962257385, 0.038350969552993774, -0.0026189798954874277, -0.026492856442928314, -0.037315260618925095, 0.010983090847730637, 0.007352081127464771, -0.0005918557872064412, -0.023593854159116745, 0.008203694596886635, 0.001214483636431396, -0.05040363967418671, 0.012586740776896477, -0.030514776706695557, 0.02509479969739914, 0.008321660570800304, 0.006440050434321165, -0.013635148294270039, 0.06878907233476639, 0.014306614175438881, 0.03850480541586876, 0.03867178037762642, 0.020458992570638657, 0.009279105812311172, 0.020181475207209587, 0.015984904021024704, 0.031821392476558685, 0.017579643055796623, -0.009016210213303566, 0.0016117322957143188, -0.011967507191002369, -0.03242512047290802, 0.014371215365827084, -0.030599676072597504, -0.026992136612534523, -0.024070817977190018, 0.01724541187286377, 0.029044952243566513, 0.04632371664047241, 0.02326096221804619, -0.0526580847799778, 0.03175343573093414, -0.04059995710849762, -0.012652941048145294, 0.03678955137729645, -0.0689287856221199, -0.03740105777978897, 0.021097717806696892, 0.020343638956546783, -0.017021264880895615, -0.01580146700143814, -0.040740884840488434, -0.022395536303520203, -0.04278765618801117, -0.012850546278059483, -0.00645818654447794, 0.040965933352708817, -0.02650267817080021, 0.024577684700489044, -0.01613134890794754, 0.00205180118791759, -0.002636493416503072, 0.021795280277729034, -0.0366378016769886, -0.06395134329795837, -0.0036634148564189672, 0.003729013027623296, -0.0030748385470360518, -0.011518822982907295, 0.011590619571506977, 0.03152971342206001, -0.0006262247916311026, 0.03565722703933716, 0.013238172978162766, 0.020663201808929443, -0.011114656925201416, 0.03609861433506012, 0.0023524477146565914, -0.00021205071243457496, -0.03508881852030754, 0.05861370638012886, 0.019648486748337746, -0.03943657502532005, -0.008223878219723701, 0.058950699865818024, 0.03277801349759102, 0.009714353829622269, 0.029958585277199745, -0.014735119417309761, 0.06682337075471878, -0.007649353239685297, 0.023347701877355576, -0.0005572987138293684, 0.020900335162878036, 0.018413877114653587, 0.03076125681400299, 0.013352455571293831, 0.025279678404331207, 0.0545065701007843, -0.027061013504862785, -0.011401576921343803, 0.03448940068483353, 0.011105206795036793, -0.023511264473199844, 0.0053528789430856705, -0.013808728195726871, -0.00764737743884325, 0.00031323457369580865, -0.010227811522781849, 0.004757480230182409, -0.03257203847169876, -0.004467132966965437, -0.013306601904332638, -0.013350100256502628, 0.055743418633937836, -0.0000990765547612682, 0.0030275320168584585, 0.0034898410085588694, -0.023267226293683052, 0.023090630769729614, 0.044682856649160385, -0.0014772980939596891, 0.005169175565242767, 0.06024886295199394, 0.024564847350120544, 0.007096197921782732, 0.05343123525381088, 0.0316983200609684, 0.016066286712884903, -0.03150143846869469, 0.027548277750611305, -0.032067298889160156, -0.03811749815940857, -0.04239417612552643, -0.010813084430992603, -0.04723884165287018, 0.04271775484085083, -0.04995981976389885, -0.04855739325284958, 0.03811618313193321, -0.06045626476407051, -0.024095533415675163, -0.04490208253264427, 0.026067104190587997, -0.026291707530617714, 0.023899735882878304, 0.044017646461725235, -0.021481627598404884, 0.0023995062801986933, 0.048346247524023056, 0.004274597391486168, 0.027877531945705414, 0.04831794276833534, 0.020160876214504242, -0.003657219000160694, 0.038244180381298065, 0.04887520521879196, -0.024234868586063385, -0.0026440878864377737, 0.015211883932352066, -0.013010717928409576, -0.02189912274479866, 0.005326948128640652, -0.03975244238972664, -0.016891391947865486, 0.004740079399198294, -0.010447002947330475, -0.022789694368839264, 0.030923666432499886, -0.027619140222668648, -0.044817037880420685, -0.019771307706832886, 0.02566497214138508, -0.04624607414007187, 0.0011698990128934383, 0.023265020921826363, 0.04376571252942085, 0.003988722339272499, -0.007725795265287161, -0.02039438486099243, -0.04271923378109932, -0.010889272205531597, -0.029933983460068703, 0.049829818308353424, -0.02389541268348694, 0.0038742825854569674, -0.0022390875965356827, -0.06275483220815659, -0.04884110018610954, 0.019200032576918602, -0.04029529541730881, -0.0436464361846447, 0.04949835687875748, 0.025726493448019028, 0.011853317730128765, 0.01216187234967947, -0.03942719101905823, 0.00951973907649517, 0.02927861362695694, 0.07346370071172714, -0.05559273064136505, 0.03725499287247658, 0.044922828674316406, -0.05555365979671478, 0.012956666760146618, -0.032062143087387085, 0.05014524981379509, -0.029001908376812935, -0.00973641499876976, -0.015625542029738426, 0.020609546452760696, -0.0031398250721395016, -0.045779794454574585, 0.027960002422332764, 0.02164987288415432, 0.01215147040784359, -0.03375103324651718, -0.07946260273456573, 0.01701054535806179, -0.07795925438404083, -0.0011804763926193118, -0.0426642969250679, 0.029467551037669182, 0.0320991575717926, -0.004154006950557232, -0.0011565324384719133, -0.05491117760539055, 0.16008993983268738, 0.06116052716970444, 0.0012834527296945453, -0.001781286089681089, 0.033331047743558884, 0.07131623476743698, 0.02079951949417591, 0.0003884393081534654, -0.0011910739121958613, -0.043179549276828766, 0.028211146593093872, -0.017797475680708885, 0.04677022621035576, -0.004079849924892187, 0.03574499487876892, 0.053985193371772766, -0.05122598260641098, 0.011204594746232033, 0.013212044723331928, -0.04923572018742561, -0.07242948561906815, 0.021570106968283653, 0.02296675555408001, 0.014307122677564621, -0.04107914865016937, -0.029938392341136932, 0.03345957025885582, -0.06641841679811478, -0.019726714119315147, -0.03107096627354622, 0.03408173844218254, -0.033538445830345154, 0.02279278077185154, -0.021119261160492897, -0.04337892308831215, 0.06951933354139328, -0.02299022115767002, 0.010070323012769222, 0.000585279252845794, 0.013479601591825485, -0.03338310867547989, -0.007716825697571039, 0.046747561544179916, -0.029706167057156563, 0.002603191649541259, 0.042425673454999924, -0.046347834169864655, 0.009990483522415161, -0.014293634332716465, -0.04906344413757324, 0.07439129799604416, -0.055383339524269104, 0.037951745092868805, -0.022784864529967308, -0.031747568398714066, 0.006018408108502626, -0.0011804710375145078, -0.0393955335021019, -0.03313296660780907, -0.011663779616355896, 0.004297742620110512, 0.016793902963399887, -0.023241693153977394, 0.027295105159282684, -0.07211675494909286, 0.01384779904037714, 0.012910461984574795, 0.032706692814826965, -0.001362734124995768, 0.006540163420140743, 0.005068325903266668, -0.02472495473921299, 0.0020201774314045906, -0.017354533076286316, 0.04476960375905037, 0.012937916442751884, -0.018668336793780327, 0.05753899738192558, 0.024039698764681816, -0.04916801303625107, 0.0014359174529090524, -0.04409686103463173, -0.01007931213825941, -0.01602584309875965, 0.036874692887067795, 0.06928378343582153, -0.046910278499126434, -0.036596596240997314, -0.00912514515221119, 0.07097802311182022, 0.0321667343378067, 0.020147589966654778, -0.01863817125558853, -0.0018872265936806798, -0.005103074014186859 ]
""" Test that the lldb driver's batch mode works correctly. """ from __future__ import print_function import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil from lldbsuite.test.lldbpexpect import PExpectTest class DriverBatchModeTest(PExpectTest): mydir = TestBase.compute_mydir(__file__) source = 'main.c' @skipIfRemote # test not remote-ready llvm.org/pr24813 @expectedFlakeyFreeBSD("llvm.org/pr25172 fails rarely on the buildbot") def test_batch_mode_run_crash(self): """Test that the lldb driver's batch mode works correctly.""" self.build() exe = self.getBuildArtifact("a.out") # Pass CRASH so the process will crash and stop in batch mode. extra_args = ['-b', '-o', 'break set -n main', '-o', 'run', '-o', 'continue', '-k', 'frame var touch_me_not', '--', 'CRASH', ] self.launch(executable=exe, extra_args=extra_args) child = self.child # We should see the "run": child.expect_exact("run") # We should have hit the breakpoint & continued: child.expect_exact("continue") # The App should have crashed: child.expect_exact("About to crash") # The -k option should have printed the frame variable once: child.expect_exact('(char *) touch_me_not') # Then we should have a live prompt: self.expect_prompt() self.expect("frame variable touch_me_not", substrs='(char *) touch_me_not') @skipIfRemote # test not remote-ready llvm.org/pr24813 @expectedFlakeyFreeBSD("llvm.org/pr25172 fails rarely on the buildbot") def test_batch_mode_run_exit(self): """Test that the lldb driver's batch mode works correctly.""" self.build() exe = self.getBuildArtifact("a.out") # Now do it again, and make sure if we don't crash, we quit: extra_args = ['-b', '-o', 'break set -n main', '-o', 'run', '-o', 'continue', '--', 'NOCRASH', ] self.launch(executable=exe, extra_args=extra_args) child = self.child # We should see the "run": child.expect_exact("run") # We should have hit the breakpoint & continued: child.expect_exact("continue") # The App should have not have crashed: child.expect_exact("Got there on time and it did not crash.") # Then lldb should exit. child.expect_exact("exited") import pexpect child.expect(pexpect.EOF) @expectedFlakeyFreeBSD("llvm.org/pr25172 fails rarely on the buildbot") def test_batch_mode_launch_stop_at_entry(self): """Test that the lldb driver's batch mode works correctly for process launch.""" self.build() exe = self.getBuildArtifact("a.out") # Launch with the option '--stop-at-entry' stops with a signal (usually SIGSTOP) # that should be suppressed since it doesn't imply a crash and # this is not a reason to exit batch mode. extra_args = ['-b', '-o', 'process launch --stop-at-entry', '-o', 'continue', ] self.launch(executable=exe, extra_args=extra_args) child = self.child # Check that the process has been launched: child.expect("Process ([0-9]+) launched:") # We should have continued: child.expect_exact("continue") # The App should have not have crashed: child.expect_exact("Got there on time and it did not crash.") # Then lldb should exit. child.expect_exact("exited") import pexpect child.expect(pexpect.EOF) def closeVictim(self): if self.victim is not None: self.victim.close() self.victim = None @skipIfRemote # test not remote-ready llvm.org/pr24813 @expectedFlakeyFreeBSD("llvm.org/pr25172 fails rarely on the buildbot") @expectedFailureNetBSD def test_batch_mode_attach_exit(self): """Test that the lldb driver's batch mode works correctly.""" self.build() self.setTearDownCleanup() exe = self.getBuildArtifact("a.out") # Start up the process by hand, attach to it, and wait for its completion. # Attach is funny, since it looks like it stops with a signal on most Unixen so # care must be taken not to treat that as a reason to exit batch mode. # Start up the process by hand and wait for it to get to the wait loop. import pexpect self.victim = pexpect.spawn('%s WAIT' % (exe)) if self.victim is None: self.fail("Could not spawn ", exe, ".") self.addTearDownHook(self.closeVictim) self.victim.expect("PID: ([0-9]+) END") victim_pid = int(self.victim.match.group(1)) self.victim.expect("Waiting") extra_args = [ '-b', '-o', 'process attach -p %d'%victim_pid, '-o', "breakpoint set --file '%s' -p 'Stop here to unset keep_waiting' -N keep_waiting"%self.source, '-o', 'continue', '-o', 'break delete keep_waiting', '-o', 'expr keep_waiting = 0', '-o', 'continue', ] self.launch(executable=exe, extra_args=extra_args) child = self.child child.expect_exact("attach") child.expect_exact(self.PROMPT + "continue") child.expect_exact(self.PROMPT + "continue") # Then we should see the process exit: child.expect_exact("Process %d exited with status" % (victim_pid)) self.victim.expect(pexpect.EOF) child.expect(pexpect.EOF)
[ 0.0021218142937868834, 0.016566021367907524, 0.0013685321900993586, 0.00443937536329031, -0.017363684251904488, 0.011859629303216934, 0.021224645897746086, 0.016679981723427773, 0.029731012880802155, 0.05105631425976753, -0.010179546661674976, 0.001393880695104599, 0.025312678888440132, -0.03165774047374725, -0.03011506050825119, 0.006403702311217785, -0.04065439850091934, -0.034800466150045395, -0.030499232932925224, 0.0030532923992723227, -0.0034312086645513773, 0.025782067328691483, -0.06478583812713623, -0.050062552094459534, -0.012567403726279736, 0.021704796701669693, 0.03330985829234123, 0.0007555035408586264, 0.05873272940516472, 0.0643635243177414, -0.015835324302315712, -0.020277420058846474, 0.020004641264677048, -0.05641687661409378, -0.0058065298944711685, -0.030942687764763832, 0.05019722133874893, -0.019392145797610283, -0.012457982636988163, -0.0438351109623909, 0.016590015962719917, -0.0005349689163267612, 0.029371021315455437, -0.03961683809757233, -0.056695546954870224, -0.029558412730693817, -0.014462744817137718, 0.004564167466014624, 0.001012305379845202, -0.010108650662004948, 0.008390864357352257, -0.003019553143531084, 0.005776026751846075, -0.023897411301732063, -0.015113058499991894, 0.010921094566583633, -0.0032993501517921686, -0.015858981758356094, -0.05391464754939079, 0.011900948360562325, 0.02650044672191143, -0.01311422511935234, 0.008891127072274685, -0.06152036041021347, -0.00026939489180222154, 0.02409324422478676, -0.006110303103923798, 0.007321129087358713, 0.0036166193895041943, -0.035348907113075256, -0.030126729980111122, 0.04065882787108421, -0.019573524594306946, -0.04482513666152954, -0.01919492706656456, 0.014865733683109283, 0.0040278807282447815, 0.007048958446830511, -0.03571038693189621, 0.042051348835229874, 0.009222742170095444, 0.04313661903142929, 0.038104064762592316, 0.020110441371798515, -0.05862054601311684, -0.04197373986244202, -0.01515117846429348, -0.005025951657444239, -0.025024401023983955, -0.01625235378742218, -0.015559345483779907, 0.05889168009161949, 0.004750375635921955, 0.009460804983973503, 0.022606881335377693, 0.048372529447078705, -0.01975584216415882, 0.03727186098694801, 0.021321605890989304, -0.016333751380443573, 0.041414085775613785, 0.05091037601232529, -0.007910988293588161, 0.0317733995616436, -0.044785067439079285, 0.000559943844564259, 0.023214468732476234, 0.010885033756494522, -0.03613414242863655, -0.038638435304164886, -0.005212295800447464, 0.004272113554179668, 0.0013636938529089093, 0.023577792569994926, -0.031152861192822456, 0.03968246281147003, 0.013453476130962372, 0.040875017642974854, -0.060278426855802536, -0.016193043440580368, 0.022777162492275238, 0.005814647302031517, 0.04539451003074646, -0.05241203308105469, -0.007024743594229221, -0.031890206038951874, -0.029929619282484055, 0.061655763536691666, -0.031270723789930344, -0.044400498270988464, 0.008117612451314926, 0.0087131941691041, 0.009402403607964516, 0.027652950957417488, -0.01264207810163498, 0.0141347236931324, -0.020345285534858704, 0.01825551688671112, 0.02777557075023651, -0.06727275997400284, 0.046193551272153854, 0.008105847984552383, -0.018817314878106117, 0.10523705929517746, -0.00024351484898943454, -0.0005378035129979253, 0.026694707572460175, -0.005126461386680603, -0.024617670103907585, 0.03697192668914795, -0.048937439918518066, -0.002822623122483492, 0.009847794659435749, 0.0012782280100509524, 0.00905528198927641, -0.0031673158518970013, -0.015405340120196342, 0.008387310430407524, 0.01757330447435379, 0.03521779179573059, -0.019155176356434822, 0.0013972367160022259, -0.020012928172945976, 0.022441023960709572, 0.0010924163507297635, 0.03212708979845047, -0.0337194949388504, -0.02761334553360939, -0.0072985864244401455, -0.024699309840798378, 0.01974266953766346, -0.0010772612877190113, -0.0007197810336947441, 0.02170608937740326, 0.05888091400265694, 0.03280182555317879, 0.04372163861989975, -0.022000353783369064, 0.013463038019835949, 0.04330161213874817, -0.04721798747777939, 0.026682350784540176, -0.009862146340310574, 0.03714877367019653, 0.028318015858530998, -0.0007997495704330504, 0.018768567591905594, -0.015935206785798073, -0.0461181178689003, -0.022774554789066315, 0.009273754432797432, 0.041225310415029526, -0.05799279361963272, 0.037423353642225266, 0.011929860338568687, 0.01826535537838936, -0.03758496418595314, -0.0026073020417243242, -0.02832963317632675, -0.08635566383600235, -0.034256692975759506, 0.04021573066711426, -0.04587296023964882, 0.011490100994706154, 0.023041412234306335, -0.026982100680470467, 0.030744114890694618, 0.04265058413147926, -0.035329580307006836, 0.018348731100559235, 0.0464383065700531, 0.008937869220972061, -0.032469525933265686, -0.015354263596236706, 0.007760417181998491, -0.019159268587827682, -0.038150086998939514, 0.03511548787355423, 0.003603567136451602, -0.011963344179093838, 0.042115144431591034, 0.009746694937348366, 0.0431722030043602, 0.03431433066725731, -0.00811955239623785, -0.04068061336874962, -0.011457310989499092, 0.03609432652592659, -0.004252726677805185, 0.026414182037115097, -0.0052106790244579315, 0.0593574158847332, -0.00171819853130728, 0.0687025636434555, 0.035093918442726135, -0.0014384349342435598, 0.06346333026885986, 0.03817015886306763, -0.025182094424962997, 0.03402424976229668, -0.015505928546190262, 0.03888571262359619, 0.010744736529886723, 0.029623480513691902, -0.0037642379757016897, -0.00046721805119886994, -0.015949148684740067, -0.017737144604325294, -0.04329045116901398, 0.03414307162165642, -0.006968386936932802, 0.05578245595097542, 0.040590159595012665, 0.01059388555586338, -0.009724419564008713, -0.00471886619925499, 0.026653889566659927, 0.05757948383688927, -0.040799692273139954, -0.00555220153182745, 0.016964487731456757, 0.020711466670036316, -0.009751868434250355, 0.0030693323351442814, 0.026121217757463455, 0.021311191841959953, 0.009045176208019257, 0.006472020410001278, 0.010774225927889347, -0.033199492841959, -0.02863641083240509, -0.048215217888355255, -0.05263226479291916, -0.018492914736270905, -0.05852730572223663, -0.007863528095185757, 0.029614223167300224, -0.03875710070133209, 0.02164502628147602, -0.021193193271756172, -0.00039885981823317707, -0.0005546663305722177, 0.002190993633121252, 0.045905306935310364, 0.028559096157550812, 0.019083920866250992, -0.03750744089484215, -0.008597034029662609, 0.013460531830787659, 0.03647761791944504, -0.02809869311749935, -0.015429170802235603, -0.0014011318562552333, -0.017724962905049324, 0.04174176603555679, -0.0035076970234513283, 0.023486090824007988, 0.00892495084553957, -0.02758634462952614, -0.03667479380965233, 0.0061161401681602, 0.027252744883298874, -0.010387692600488663, 0.009663820266723633, -0.030242878943681717, 0.06260685622692108, 0.0555640272796154, -0.029842214658856392, 0.03926359489560127, 0.04910854995250702, -0.06000072509050369, 0.01962764374911785, 0.0029489854350686073, -0.02334684692323208, -0.04937512055039406, 0.07953941076993942, 0.03979746997356415, -0.010215559042990208, -0.033941663801670074, -0.0270190741866827, -0.01676429994404316, -0.009385349228978157, 0.014960347674787045, -0.02883736602962017, -0.03167618811130524, 0.05101028084754944, -0.017991362139582634, -0.06978971511125565, 0.0212941225618124, -0.04226485267281532, -0.005696997046470642, -0.021405262872576714, -0.005472991615533829, 0.042743269354104996, 0.012989523820579052, 0.027207670733332634, -0.002320998115465045, -0.007516553625464439, -0.010686016641557217, 0.03807603567838669, 0.04088763892650604, -0.009998621419072151, 0.0005595178226940334, 0.03780793398618698, 0.009130440652370453, 0.033192701637744904, 0.01901661977171898, -0.057765893638134, -0.012958300299942493, 0.000026311025067116134, 0.0030377856455743313, 0.002925696549937129, 0.030504146590828896, 0.03089677356183529, 0.00411888537928462, 0.03612428158521652, -0.051213305443525314, 0.005344415549188852, 0.021399637684226036, 0.02833585813641548, 0.017166845500469208, 0.024149492383003235, 0.01958792470395565, 0.032469917088747025, -0.022235803306102753, -0.052658967673778534, 0.02041643299162388, 0.0359555259346962, 0.044370412826538086, -0.03164588660001755, 0.0575435534119606, -0.014613860286772251, -0.0019301706925034523, 0.01218233909457922, -0.044127147644758224, -0.014090469107031822, 0.03319789096713066, -0.0038140162359923124, 0.05560467019677162, -0.02491817995905876, -0.008380006067454815, -0.012868104502558708, -0.00810407567769289, 0.05646997690200806, 0.001979637425392866, 0.03863295540213585, 0.028179461136460304, -0.004131256602704525, -0.025061188265681267, -0.019484955817461014, 0.007704203482717276, -0.028416816145181656, 0.03175756335258484, -0.02176898717880249, -0.03744802623987198, -0.0748511478304863, 0.024047501385211945, 0.05929019674658775, 0.03927384689450264, -0.01704833097755909, 0.007227805908769369, -0.021819645538926125, 0.026897957548499107, 0.019483113661408424, -0.043718162924051285, 0.024736637249588966, -0.06742501258850098, 0.05193096771836281, -0.002297606086358428, -0.00988768506795168, -0.028226571157574654, 0.01086107175797224, -0.01570075750350952, 0.033556967973709106, 0.013983781449496746, -0.010012192651629448, -0.03591639921069145, 0.022637398913502693, -0.003430836135521531, 0.0031643672846257687, -0.05340738222002983, -0.04754720255732536, 0.012475521303713322, 0.0151011161506176, 0.029714781790971756, -0.049643028527498245, 0.002820969093590975, -0.021198514848947525, 0.02747051976621151, 0.022188663482666016, -0.019201330840587616, -0.06418310105800629, -0.04699927568435669, -0.027304327115416527, -0.04292416572570801, 0.02413063310086727, 0.07870125770568848, -0.010491829365491867, -0.006544501055032015, -0.03819131851196289, 0.02079753950238228, 0.02674650214612484, 0.00754033587872982, -0.018952494487166405, 0.004302275832742453, 0.03211072087287903, 0.01604478992521763, 0.015047438442707062, 0.000488930381834507, -0.03937290608882904, 0.032120414078235626, -0.09134921431541443, 0.020404430106282234, -0.023517441004514694, -0.00032046943670138717, -0.022081522271037102, 0.000018449673007125966, 0.009322299621999264, 0.05811085179448128, -0.01569029688835144, -0.009375444613397121, -0.005247824359685183, 0.049730245023965836, -0.044419173151254654, -0.03797745332121849, 0.06286650151014328, 0.0062461853958666325, -0.013872576877474785, 0.02878783456981182, 0.02613958530128002, -0.025331422686576843, 0.034254804253578186, 0.026931697502732277, -0.04036731645464897, 0.028124801814556122, -0.013497116044163704, 0.02296171337366104, -0.0015652199508622289, -0.012297676876187325, -0.01517921406775713, -0.04231945797801018, 0.04864459112286568, 0.028048498556017876, -0.0008959632832556963, -0.0365433394908905, -0.07350923120975494, -0.012847434729337692, -0.011835241690278053, -0.01245634350925684, 0.017723441123962402, 0.015343019738793373, 0.021970270201563835, -0.022920604795217514, -0.013587183319032192, -0.019177990034222603, -0.009776164777576923, 0.011214198544621468, -0.025514228269457817, 0.003929803613573313, 0.010209872387349606, -0.009299983270466328, -0.008244453929364681, -0.04440448805689812, 0.00690105464309454, -0.01900249719619751, -0.010404542088508606, -0.047187209129333496, 0.0008234758861362934, -0.016029609367251396, -0.018624112010002136, -0.05057091265916824, 0.012335910461843014, -0.009219205938279629, 0.007318162824958563, 0.015999389812350273, -0.014819411560893059, -0.004998789634555578, 0.000977402669377625, -0.03462599590420723, 0.03911066800355911, 0.0242557842284441, -0.05337619036436081, -0.04587933048605919, 0.030178023502230644, -0.027278030291199684, 0.0326467901468277, 0.004386480897665024, -0.02694218046963215, -0.036868367344141006, -0.06391603499650955, 0.02243896760046482, -0.04945613443851471, 0.020628057420253754, -0.048595987260341644, -0.05178011208772659, -0.006472011562436819, 0.028738347813487053, 0.02178380638360977, -0.04087136313319206, -0.0023288954980671406, -0.038909975439310074, 0.01963980123400688, -0.0322255939245224, -0.010297071188688278, -0.01598052866756916, -0.008619875647127628, -0.03249555081129074, 0.05042354390025139, -0.001946158241480589, 0.025147348642349243, -0.014844578690826893, 0.019258245825767517, 0.0058890883810818195, 0.0029677730053663254, -0.05459394305944443, -0.03981674462556839, 0.009594744071364403, 0.006753695197403431, 0.0047273896634578705, 0.03287123888731003, -0.02007908932864666, 0.026605278253555298, -0.029050182551145554, 0.02446662448346615, -0.03305346891283989, -0.02348140813410282, -0.03670090064406395, -0.004595387727022171, 0.046928275376558304, -0.03226674348115921, 0.006999134086072445, -0.0076927198097109795, 0.06089622899889946, 0.04479648545384407, 0.016336096450686455, -0.024349289014935493, -0.01804378442466259, -0.04261460155248642, -0.08004959672689438, 0.04608193784952164, -0.03937752917408943, -0.022521520033478737, -0.022029578685760498, -0.01596856862306595, 0.05799899250268936, -0.00861174613237381, 0.047553420066833496, 0.07054537534713745, 0.0026847454719245434, -0.017871832475066185, -0.012810439802706242, 0.033601317554712296, 0.03392691910266876, -0.03203095495700836, 0.011448955163359642, -0.021802496165037155, -0.03245806321501732, -0.0057636708952486515, -0.05119933933019638, -0.03794015571475029, -0.04159083589911461, -0.002779271686449647, 0.06872805953025818, 0.017772864550352097, 0.03942979499697685, -0.006480196490883827, -0.061821337789297104, -0.04294748976826668, 0.026082033291459084, 0.02110280469059944, 0.030597006902098656, 0.05577930063009262, 0.02931179851293564, -0.003156365128234029, 0.02362791821360588, -0.023618262261152267, -0.004872053861618042, -0.016624117270112038, 0.04077669978141785, -0.011496360413730145, -0.043091148138046265, 0.03362669795751572, 0.04873032122850418, -0.07137219607830048, -0.07773519307374954, -0.01083630695939064, -0.0045450665056705475, -0.015934275463223457, -0.056327980011701584, -0.03015032224357128, -0.031450871378183365, -0.026500923559069633, -0.0033423551358282566, 0.028626341372728348, -0.01943298801779747, 0.016185376793146133, -0.0033268751576542854, 0.011538750492036343, -0.05465294420719147, 0.005911246873438358, 0.04847639426589012, -0.006636956240981817, -0.020359305664896965, -0.05897083505988121, -0.02679888717830181, -0.00935754831880331, -0.011941777542233467, 0.05500097945332527, -0.018341194838285446, 0.021567370742559433, 0.03215726092457771, -0.010893383994698524, 0.08487305790185928, -0.013493767939507961, 0.010481467470526695, 0.004112251568585634, -0.045184653252363205, -0.0644722729921341, -0.04469262436032295, 0.015842564404010773, 0.03223273158073425, 0.018159247934818268, -0.05477666109800339, 0.0014344819355756044, 0.017915524542331696, 0.014467253349721432, 0.007580677978694439, -0.07635480165481567, -0.04454449191689491, -0.044563546776771545, -0.03992784768342972, -0.01276449952274561, -0.004699787590652704, -0.006093180272728205, 0.011605448089540005, 0.006348149850964546, -0.040321871638298035, -0.0216111708432436, 0.0026830926071852446, -0.028377177193760872, -0.0052184006199240685, -0.045359037816524506, 0.04579082503914833, -0.045154716819524765, -0.011131401173770428, -0.04371001198887825, 0.023580277338624, -0.007174084894359112, 0.0016928286058828235, -0.01985941268503666, -0.018124833703041077, -0.007729860953986645, 0.04280935227870941, -0.011073828674852848, -0.004665370099246502, -0.003205602988600731, -0.04357597604393959, 0.014287615194916725, -0.004674925934523344, -0.02766798622906208, 0.024977009743452072, 0.04234922677278519, -0.009333807043731213, 0.04290428385138512, -0.013966193422675133, -0.013228491879999638, -0.03619513288140297, 0.003939761780202389, 0.02795467898249626, 0.008500846102833748, -0.014697817154228687, -0.0010091773001477122, 0.008970608934760094, -0.04588771238923073, 0.017929954454302788, -0.02838762290775776, 0.0022769938223063946, 0.011095346882939339, 0.006710018031299114, 0.009868232533335686, 0.03611067682504654, 0.007365729194134474, 0.04187371954321861, -0.002592800883576274, 0.01406256202608347, 0.028364863246679306, 0.028606915846467018, -0.004020333755761385, 0.016229821369051933, -0.0020103692077100277, 0.017635883763432503, 0.02871343493461609, -0.0037349797785282135, -0.00759455980733037, 0.030991800129413605, -0.030799251049757004, -0.004767655860632658, -0.023842353373765945, 0.015458782203495502, 0.003592132590711117, 0.03156992048025131, 0.041188061237335205, -0.010596852749586105, 0.015531441196799278, -0.026912590488791466, -0.04638810455799103, 0.015016638673841953, -0.05225646123290062, -0.03296360373497009, 0.022461682558059692, -0.052719198167324066, -0.015772581100463867, -0.005916217807680368, -0.026677206158638, -0.00047670109779573977, 0.010781178250908852, -0.022860940545797348, -0.02253604121506214, 0.010777411051094532, 0.020901791751384735, 0.021494243294000626, -0.015953687950968742, -0.0015081388410180807, 0.014535021968185902, 0.04314343258738518, -0.02032759226858616, -0.06125469505786896, 0.0003554568684194237, 0.02588215470314026, 0.02647050842642784, 0.028082020580768585, -0.027300484478473663, 0.0013541100779548287, -0.03351626545190811, -0.0031272293999791145, 0.014584914781153202, 0.015153367072343826, -0.02307768166065216, 0.029325969517230988, -0.021920915693044662, 0.01670510694384575, -0.04655919596552849, 0.037981655448675156, 0.011344936676323414, -0.02008749358355999, -0.02763778530061245, 0.04825330525636673, 0.025409141555428505, -0.021833719685673714, 0.03660209849476814, 0.050777655094861984, 0.039008405059576035, -0.015105728060007095, 0.05402704328298569, -0.03985166177153587, 0.04905213415622711, 0.05128032714128494, 0.03131336718797684, 0.0028562285006046295, 0.03098575584590435, 0.03078625723719597, -0.020329082384705544, -0.02720567025244236, 0.03084438294172287, 0.0297982320189476, -0.015781410038471222, 0.004929162096232176, -0.0356234572827816, 0.014040830545127392, 0.01668812520802021, 0.0009162729838863015, -0.010234398767352104, -0.03381767496466637, 0.00548647902905941, -0.03633060306310654, -0.03724335506558418, 0.041151318699121475, -0.006082481238991022, -0.018687354400753975, -0.0033158049918711185, 0.0005788711132481694, 0.050093162804841995, 0.03741544112563133, -0.0010637508239597082, -0.01244007982313633, 0.03802577406167984, 0.04799237102270126, -0.0022586786653846502, 0.05499788746237755, 0.01570127159357071, 0.018717093393206596, -0.041730545461177826, 0.007379802875220776, 0.004564282018691301, 0.024578090757131577, -0.01604742370545864, -0.0003036866837646812, -0.04643626511096954, 0.019901184365153313, -0.006226330529898405, 0.0034671917092055082, 0.0254135150462389, -0.0492909774184227, 0.018734954297542572, -0.04901226982474327, 0.0462225005030632, -0.031139887869358063, 0.006694492883980274, 0.03911684453487396, -0.01674904301762581, -0.028957655653357506, 0.05378616228699684, 0.012373610399663448, 0.02327975630760193, 0.007897615432739258, 0.06400273740291595, 0.019064325839281082, 0.05982949957251549, 0.027147890999913216, -0.011125044897198677, -0.013596217148005962, 0.04450123757123947, -0.03963623568415642, -0.048893895000219345, -0.022545039653778076, -0.015077564865350723, 0.03985801711678505, -0.0232844278216362, -0.025092707946896553, 0.01380198821425438, 0.0246881153434515, -0.02682717889547348, -0.029832014814019203, 0.004069231450557709, 0.03934885188937187, -0.06085429713129997, 0.049843061715364456, 0.02960761822760105, 0.04454537853598595, 0.019544851034879684, -0.008258088491857052, -0.03502006083726883, -0.02550230734050274, 0.008646688424050808, -0.03887427970767021, 0.04403645545244217, -0.02851925604045391, -0.02035396546125412, -0.030581757426261902, -0.04361265152692795, -0.006368929520249367, -0.0037429030053317547, -0.023600289598107338, -0.027175307273864746, 0.028543075546622276, 0.05884424224495888, 0.01839771308004856, 0.01770184189081192, -0.03273333981633186, 0.012594177387654781, 0.026503823697566986, 0.05910869315266609, 0.014890501275658607, 0.04495568573474884, 0.029680289328098297, -0.043322525918483734, 0.02327113226056099, -0.02804523892700672, 0.041600752621889114, -0.00959746167063713, -0.012148956768214703, 0.005260214675217867, 0.031231632456183434, -0.029824841767549515, -0.0526583231985569, -0.015043326653540134, 0.03287195786833763, 0.003756945254281163, -0.013680814765393734, -0.0670243427157402, -0.025263052433729172, -0.05559597536921501, -0.023843912407755852, -0.048143111169338226, 0.030281174927949905, -0.009255894459784031, -0.021606022492051125, -0.00865345261991024, -0.06225980818271637, 0.15064597129821777, 0.06459570676088333, 0.03323434665799141, -0.019561560824513435, 0.03355579078197479, 0.04485273361206055, 0.01650676131248474, 0.003455521073192358, 0.000659569283016026, -0.04821326956152916, 0.013654852285981178, 0.01133236475288868, 0.020733628422021866, 0.04990852624177933, 0.015320364385843277, 0.051259662955999374, -0.05833227559924126, 0.003912761807441711, 0.017741696909070015, -0.03595275431871414, -0.0592181496322155, 0.020398249849677086, 0.020198604092001915, 0.021434122696518898, -0.021047282963991165, 0.01865578442811966, 0.03184710815548897, -0.05417638644576073, 0.016588538885116577, -0.03140166774392128, 0.0467139296233654, -0.014649845659732819, 0.025071721524000168, 0.011078407056629658, -0.009529911912977695, 0.05220439285039902, -0.0005897750961594284, -0.005822083912789822, -0.003371267579495907, 0.008037744089961052, -0.014034115709364414, -0.030423017218708992, 0.015589763410389423, -0.02575600892305374, -0.021890250965952873, 0.032473430037498474, -0.028025664389133453, 0.0533265620470047, 0.0413471944630146, -0.04075261577963829, 0.04846073314547539, -0.031219668686389923, 0.004038894083350897, -0.016874833032488823, -0.06511756777763367, 0.007367232348769903, -0.009180521592497826, -0.031806234270334244, -0.029889889061450958, 0.025880811735987663, 0.01706901751458645, -0.00962510984390974, 0.007091323845088482, 0.00853723380714655, -0.02161017246544361, 0.0024156055878847837, 0.023276550695300102, 0.019830571487545967, -0.02980620227754116, -0.030463796108961105, -0.0032890692818909883, -0.001596734975464642, -0.03633667901158333, -0.031717296689748764, 0.01851065456867218, 0.047700341790914536, -0.025213230401277542, 0.037777651101350784, 0.0029342607595026493, -0.029225921258330345, 0.007932895794510841, -0.03490053117275238, 0.013579283840954304, -0.008967015892267227, 0.0038611507043242455, 0.049559250473976135, -0.03847925737500191, -0.027238307520747185, -0.026177864521741867, 0.009454455226659775, 0.055100277066230774, 0.018249746412038803, 0.006621241103857756, 0.0033373639453202486, 0.01681571640074253 ]
Businesses see Trump, not López Obrador, as greater threat to NAFTA By Niv Elis - 07/03/18 06:06 PM EDT Mexico's election of leftist candidate Andrés Manuel López Obrador as president may have portended more trade trouble between the two countries, but businesses see President Trump Donald TrumpFacebook temporarily bans ads for weapons accessories following Capitol riots Sasse, in fiery op-ed, says QAnon is destroying GOP Section 230 worked after the insurrection, but not before: How to regulate social media MORE as the greater threat on North American Free Trade Agreement (NAFTA). López Obrador, known as AMLO, opposed NAFTA at the time it was signed. But like many on the Canadian left, he has since come around as Mexico's economy opened and the conventional wisdom in the country saw the deal as central to its economic prospects. "In both countries, the center-left parties that originally opposed NAFTA in 1994 came out to defend it. Perhaps not with great enthusiasm, but they defend it," said Joydeep Mukherji, who leads the Americas Sovereign Ratings section at S&P Global. "The bad news is that the overall fate of the NAFTA negotiations remains up in the air." Trump, for his part, has threatened to withdraw the United States from the agreement, which he routinely describes as one of the worst deals the U.S. has ever entered into. It's part of a nationalist trade agenda that has also included the imposition of tariffs on steel and aluminum imports. Trump used the Section 232 law to impose tariffs on those imports, claiming they threatened national security. He's considering a similar argument to slap steep import taxes on automobiles. While businesses worried about some of López Obrador's economic plans, his election has prompted muted concern over NAFTA. "AMLO didn't run on a NAFTA-friendly platform, but NAFTA was never part of the campaign, and he's on several occasions expressed support for NAFTA and its renegotiation," said Monica DeBolle, senior fellow at the Peterson Institute for International Economics. López Obrador he has raised concerns about how a new agreement could affect Mexican agriculture, but that particular issue has thus far not played a central part in negotiations. Beyond that, López Obrador's cabinet picks, who will be responsible for much of the negotiation, signal an interest in a successful renegotiating of NAFTA. "On the NAFTA, negotiations, they would not be the ones to walk away from the table," said Richard Miles, director of the U.S.-Mexico Futures Initiative at the Center for Strategic International Studies Instead, all eyes remain on Trump. "We're in the midst of this tit-for-tat tariff war, and that could go either way," Miles said. Trump has sought to use his threats on trade as a cudgel in the NAFTA talks. He hoped that the tariffs on steel and aluminum imports from Canada and Mexico could be used as leverage in the talks and is thinking of potential auto tariffs in much the same way. So far, both countries have moved to retaliate against the United States. Trade groups and conservative pressure groups have vocally attacked Trump over the tariffs. U.S. Chamber of Commerce President Tom Donohue said it was "not the right approach," while Koch-backed groups embarked on a multimillion-dollar campaign on what they called "misguided policy" that would have "unintended consequences." The NAFTA talks have been stalled, making it all but impossible for them to conclude before the midterm elections in November — when Trump faces the real danger that Republicans could lose the House majority. Several major sticking points have slowed talks, including disagreements about whether to include a sunset clause, rules of origin on products such as automobiles and the use of an international dispute settlement mechanism when problems arise. Trump's threat to impose new auto tariffs has the potential to destabilize new talks. Adding a new 25 percent import tax on Mexican-built cars could explode the discussions on rules of origin, which lay out how much of a car can be built in Mexico or Canada to qualify for sale in the U.S. under NAFTA. Trump directed the Commerce Department to look into the issue and could act as soon as it issues a report, potentially as early as September. Another potentially important factor is López Obrador and Trump's personal chemistry. "An awful lot of it depends on the personal relationship that develops between López Obrador and Trump," Miles said. DeBolle said López Obrador's outsize personality could be an asset or a liability in dealing with Trump. "It could cut both ways. He's a lot more outspoken than Peña Nieto, so tensions on those sticking points could escalate. If the U.S. says something about Mexico, You'll get a much more in your face response than you ever would have gotten under Peña Nieto," she said, referring to Mexico's current president, Enrique Peña Nieto. On the other hand, the two could find each other's style relatable. "Their personalities kind of match that way, and it may be that Trump finds it easier to work with a person like AMLO than he did with Peña Nieto, because they're very similar characters." On that front, initial signs are positive. Trump spent a half-hour on the phone with López Obrador on Monday and told reporters afterward that the conversation went well. "I think the relationship will be a very good one," he said. S&P Global predicted that, despite hiccups, a new deal would eventually get signed. Even if negotiations to renew NAFTA fall apart, however, scrapping the trade arrangement altogether remains a distant prospect. That would require Trump to formally withdraw from the treaty, plus congressional action to undo NAFTA-related legislation. Tags Mexico Donald Trump Nafta Trade
[ -0.008383790962398052, 0.0007202387787401676, -0.024423347786068916, 0.006454541813582182, -0.0032785332296043634, -0.009133276529610157, 0.003643631935119629, 0.023230042308568954, 0.02158578671514988, 0.04466350004076958, 0.025520896539092064, -0.006649606395512819, -0.010521077550947666, -0.02818094938993454, -0.025119902566075325, 0.024731827899813652, 0.01658487692475319, -0.0015106857754290104, 0.04494938254356384, 0.010965381748974323, 0.011800902895629406, -0.023347873240709305, -0.05194679647684097, -0.028430262580513954, -0.03154342621564865, 0.016494546085596085, -0.0025880015455186367, -0.04625384137034416, 0.041844841092824936, 0.06697322428226471, -0.03444807976484299, -0.020114345476031303, 0.033169958740472794, -0.05204114690423012, -0.033960990607738495, -0.002977888099849224, 0.05233381316065788, -0.018141230568289757, -0.0251457542181015, -0.043802183121442795, 0.007149403914809227, -0.025440342724323273, 0.026760850101709366, -0.036140039563179016, -0.015148341655731201, -0.016992250457406044, -0.043141912668943405, -0.018052274361252785, 0.015225275419652462, -0.03597792983055115, -0.002922729356214404, 0.014514676295220852, 0.027640467509627342, -0.012010876089334488, 0.00017474497144576162, -0.01911633089184761, -0.005063867196440697, -0.013362478464841843, -0.0021144323982298374, 0.05177989602088928, 0.05720071867108345, 0.00276354281231761, 0.03890952840447426, -0.0617014579474926, 0.013618948869407177, -0.02303682267665863, -0.005118041764944792, -0.008819609880447388, 0.052898213267326355, 0.008819080889225006, -0.008255341090261936, 0.01833181269466877, -0.012027865275740623, -0.0039646802470088005, 0.02807343192398548, -0.0074293892830610275, -0.0015263998648151755, -0.02158992551267147, 0.008586127310991287, -0.02962782233953476, 0.008676842786371708, 0.03705855831503868, 0.000975975242909044, -0.0055349646136164665, -0.07269341498613358, 0.008344820700585842, -0.00910154264420271, 0.030830778181552887, -0.011070183478295803, 0.024490462616086006, -0.0180364977568388, 0.03515402972698212, -0.021687474101781845, -0.010640530847012997, 0.051296837627887726, 0.040640272200107574, -0.011433301493525505, 0.016037750989198685, -0.0012957429280504584, -0.026389114558696747, 0.03828174248337746, 0.012377958744764328, 0.011733099818229675, 0.032026778906583786, -0.06306229531764984, -0.01848960481584072, 0.01195373572409153, 0.0028206866700202227, 0.02210039086639881, -0.040319327265024185, -0.008611835539340973, -0.015594834461808205, 0.009866210632026196, -0.01070106215775013, -0.027809150516986847, 0.06283487379550934, -0.00639490969479084, 0.014929622411727905, -0.04141192510724068, -0.010706271044909954, -0.021355394273996353, -0.013388806954026222, 0.027919774875044823, -0.016298284754157066, 0.02135123312473297, -0.018663626164197922, -0.012284033000469208, 0.05985238775610924, -0.06269089877605438, 0.003367275232449174, 0.02174653485417366, 0.002953908871859312, 0.01816893182694912, 0.006190996617078781, -0.018402257934212685, 0.04313698410987854, 0.0017089357133954763, 0.050208114087581635, 0.027172062546014786, -0.04520431160926819, 0.05420057103037834, 0.056968722492456436, 0.028435012325644493, 0.0727335661649704, -0.01814897730946541, 0.047680605202913284, 0.038148436695337296, -0.03020934760570526, -0.020218301564455032, 0.03365517780184746, -0.03596477583050728, 0.049328938126564026, -0.006774158217012882, 0.010234715417027473, -0.023239117115736008, 0.022103935480117798, 0.007500030566006899, 0.011951340362429619, 0.02130437269806862, 0.02698337472975254, -0.018730666488409042, 0.008525424636900425, 0.019474077969789505, 0.01801646687090397, -0.010805428959429264, 0.03147099167108536, -0.007409658282995224, -0.007441885303705931, -0.022627882659435272, -0.02326088212430477, 0.012317249551415443, -0.006388814654201269, -0.029589137062430382, -0.011890975758433342, 0.033340100198984146, 0.034197159111499786, 0.028068697080016136, 0.034251172095537186, 0.038469333201646805, 0.06846115738153458, -0.028054283931851387, -0.01464029960334301, -0.023070774972438812, 0.057076338678598404, 0.007011214271187782, -0.017407657578587532, 0.022212661802768707, -0.029842134565114975, -0.027818670496344566, -0.017452333122491837, -0.018574325367808342, 0.013170018792152405, -0.020022733137011528, 0.057746194303035736, 0.0349699929356575, 0.004969414323568344, -0.04886724799871445, 0.0098170330747962, 0.012153832241892815, -0.032037246972322464, -0.020075110718607903, 0.05267820879817009, -0.04904475063085556, 0.045136239379644394, -0.007913586683571339, -0.00882643274962902, 0.02980509027838707, 0.07779192924499512, -0.04844951629638672, 0.01731383427977562, 0.05572528764605522, 0.011473125778138638, -0.013203626498579979, -0.032630547881126404, 0.025989223271608353, -0.004939694423228502, -0.022904058918356895, 0.06343305110931396, 0.013804050162434578, -0.023176709190011024, 0.019480904564261436, 0.02693856507539749, 0.03227589279413223, 0.05089959129691124, 0.009513657540082932, -0.013072315603494644, 0.04217766970396042, 0.07255502790212631, -0.014654340222477913, -0.016060201451182365, 0.02981642447412014, 0.024711376056075096, 0.01047436147928238, 0.046701960265636444, 0.044915005564689636, -0.004286366980522871, 0.0476284883916378, 0.00010693348303902894, 0.00008894295751815662, 0.019397301599383354, -0.01996585540473461, 0.028304871171712875, 0.032426584511995316, 0.04262319579720497, 0.010923055931925774, 0.052355457097291946, -0.0195817518979311, 0.01742376945912838, 0.010602199472486973, 0.06274169683456421, -0.009336747229099274, 0.05418846383690834, 0.03260156512260437, 0.055717770010232925, -0.021045085042715073, 0.03324988856911659, 0.0394381619989872, 0.04410969093441963, -0.0272014532238245, -0.050989359617233276, -0.01701946370303631, 0.025770574808120728, -0.031776636838912964, -0.014267165213823318, 0.04123594984412193, 0.05203547701239586, 0.009313075803220272, 0.04290228337049484, -0.006819033995270729, -0.02782794088125229, -0.03292250260710716, -0.05447946488857269, -0.009341150522232056, -0.030608000233769417, -0.06177583709359169, 0.00857625063508749, 0.05300415679812431, -0.05425696447491646, 0.02670847624540329, -0.05998225882649422, -0.029099948704242706, -0.006384294480085373, 0.026331331580877304, 0.03397425636649132, -0.0032208606135100126, 0.040796540677547455, -0.01548021286725998, 0.04511098563671112, 0.01971774362027645, -0.006897072307765484, -0.011617804877460003, -0.014861044473946095, -0.018326343968510628, -0.03418489173054695, 0.03283363953232765, 0.005703612230718136, -0.027283551171422005, -0.0079098641872406, -0.045848313719034195, -0.01841496303677559, -0.034908127039670944, 0.0030624624341726303, -0.01234820019453764, -0.013289331458508968, -0.025485103949904442, 0.03783943131566048, 0.029764603823423386, -0.04403230920433998, 0.03973683342337608, 0.04304640367627144, -0.03659743815660477, 0.01816926896572113, 0.028534678742289543, 0.008454550988972187, -0.07161290943622589, 0.054297324270009995, 0.0697360634803772, 0.005671650171279907, -0.04377058893442154, -0.006472952198237181, -0.022107765078544617, -0.001952926511876285, 0.022011039778590202, -0.03377841040492058, -0.024606231600046158, 0.01677902787923813, 0.003193157259374857, -0.05448330193758011, 0.022619444876909256, -0.06777506321668625, -0.0014887175057083368, -0.038900699466466904, -0.05032028630375862, 0.001776410499587655, 0.01217099279165268, 0.0005187511560507119, -0.008903825655579567, -0.02249358594417572, -0.015528825111687183, -0.015625225380063057, 0.034291695803403854, -0.06805045157670975, 0.011490844190120697, 0.04108923301100731, -0.01753755286335945, 0.032074663788080215, 0.036685120314359665, 0.005305276717990637, 0.024174807593226433, 0.0007663270807825029, 0.007378323469310999, -0.0023802812211215496, -0.011764656752347946, 0.008700862526893616, 0.02397114597260952, 0.05328558012843132, -0.03119332529604435, 0.024392995983362198, -0.006231491919606924, 0.00165774195920676, 0.01622086949646473, -0.012452528811991215, -0.014964604750275612, -0.017746884375810623, -0.027419274672865868, -0.036823708564043045, 0.0002823567483574152, 0.019506480544805527, 0.05687728151679039, -0.0311643835157156, 0.03203018754720688, -0.013086006045341492, -0.013435989618301392, 0.04928905889391899, -0.07213646173477173, -0.03431020304560661, 0.029681680724024773, -0.003591009881347418, 0.030008558183908463, -0.05591265857219696, 0.017811905592679977, -0.021719777956604958, 0.047279395163059235, 0.005918201990425587, 0.008756211958825588, 0.03112306445837021, -0.03750129044055939, -0.013471952639520168, -0.020975489169359207, 0.014145564287900925, -0.001431523123756051, -0.05985448136925697, -0.014893132261931896, -0.0017712929984554648, -0.03618192300200462, -0.03416405990719795, 0.021282130852341652, 0.013726687990128994, 0.017869485542178154, -0.0075426227413117886, 0.04040885716676712, 0.004226239398121834, 0.00442997831851244, 0.014413813129067421, -0.004073364660143852, -0.019059309735894203, -0.03691185265779495, 0.01911807619035244, 0.026986753568053246, -0.060770951211452484, -0.013414009474217892, -0.03622003644704819, -0.04218549653887749, 0.03002188168466091, -0.0073859672993421555, -0.04229988157749176, 0.02047385647892952, 0.020670490339398384, -0.011287200264632702, 0.06474398821592331, -0.04838377237319946, -0.02634511888027191, -0.03931189700961113, 0.05647631362080574, 0.06045064702630043, -0.05542566999793053, -0.005611578933894634, -0.04018714651465416, 0.04256509244441986, 0.06992577016353607, -0.01273183524608612, -0.05845608189702034, -0.02491660602390766, -0.06205133721232414, -0.028322430327534676, -0.00016580666124355048, 0.05299538001418114, -0.023356866091489792, 0.01571464166045189, -0.03799837455153465, 0.00507036317139864, 0.031213901937007904, -0.0036668037064373493, -0.04191513732075691, 0.01750621758401394, 0.0015454984968528152, -0.022632338106632233, 0.04206397011876106, -0.0010854228166863322, -0.02089851163327694, 0.04598325490951538, -0.07640663534402847, 0.025498466566205025, -0.020925290882587433, -0.02932383120059967, -0.008574366569519043, 0.024180758744478226, -0.0069020576775074005, 0.041794098913669586, -0.03837579861283302, 0.007103165611624718, -0.00008459547825623304, 0.047931354492902756, -0.03221122920513153, -0.016151057556271553, 0.06328919529914856, 0.02925211191177368, -0.01082300953567028, 0.02552277408540249, 0.04986504465341568, 0.005759443622082472, 0.03775222599506378, 0.06794566661119461, -0.04847577214241028, 0.032655950635671616, -0.02817903645336628, 0.01492267195135355, 0.004675022326409817, -0.039822012186050415, 0.00715174013748765, -0.032822951674461365, 0.013474639505147934, -0.01853843592107296, -0.03903296962380409, -0.019704576581716537, -0.06455476582050323, -0.01654062606394291, 0.02060781978070736, -0.035070717334747314, -0.008726230822503567, 0.015065724961459637, 0.0100052859634161, -0.00194016401655972, -0.03036079928278923, -0.028481312096118927, 0.01725940592586994, 0.011540606617927551, 0.03276799991726875, 0.030057420954108238, 0.011761141009628773, 0.004222155082970858, -0.028214184567332268, -0.024797003716230392, -0.007885099388659, 0.0010436931625008583, -0.029238218441605568, -0.07505792379379272, -0.027775319293141365, -0.01341592613607645, -0.01578468456864357, -0.043348051607608795, -0.023942522704601288, 0.002176330192014575, 0.06483862549066544, 0.03196260333061218, -0.016275690868496895, -0.010103175416588783, 0.006645275745540857, -0.01702176034450531, 0.037104297429323196, 0.018440231680870056, -0.05159953981637955, -0.04735945165157318, 0.05039730668067932, 0.0032959699165076017, 0.035253167152404785, -0.015181316994130611, 0.0045644971542060375, -0.014414165169000626, -0.0438392236828804, -0.0415768176317215, -0.02198566123843193, -0.003049027407541871, -0.03361576050519943, -0.015031510964035988, 0.01075708493590355, 0.05881189554929733, 0.03212088719010353, 0.0070302244275808334, -0.0017622426385059953, -0.03159536421298981, -0.017358671873807907, -0.026672378182411194, -0.04838479682803154, -0.0028656190261244774, -0.05516590178012848, -0.024717947468161583, 0.04887402057647705, 0.037265874445438385, 0.011319994926452637, -0.007900387048721313, 0.02322644181549549, 0.021500078961253166, -0.037303514778614044, -0.046597253531217575, -0.039483245462179184, -0.0010243713622912765, 0.021380651742219925, -0.001829956192523241, -0.02700323425233364, -0.057100486010313034, 0.08121751248836517, -0.043515659868717194, 0.01700758934020996, -0.006604579742997885, -0.04771265760064125, -0.014309829100966454, 0.00018748371803667396, 0.06505268067121506, -0.012885158881545067, 0.004674573428928852, -0.017137106508016586, 0.043250467628240585, 0.04911327734589577, 0.009674390777945518, 0.0008259893511421978, -0.028421420603990555, -0.041978154331445694, -0.054351046681404114, 0.0439520888030529, -0.052495185285806656, -0.025722920894622803, -0.03978784754872322, -0.023467184975743294, 0.02596704103052616, 0.006214998196810484, -0.008609522134065628, 0.07341941446065903, 0.0002717668248806149, -0.011958879418671131, -0.0055658514611423016, 0.013976513408124447, 0.02238037809729576, -0.014459841884672642, -0.016040924936532974, -0.020464586094021797, -0.021869346499443054, 0.006744184996932745, -0.036295365542173386, -0.029154853895306587, -0.04455483332276344, 0.0050542657263576984, 0.04783324524760246, -0.029264450073242188, 0.028921697288751602, 0.004173811059445143, -0.0462130643427372, -0.058469559997320175, 0.053667861968278885, 0.030174963176250458, 0.013591225259006023, 0.04552531614899635, -0.01020668726414442, -0.02755112573504448, 0.02401360310614109, 0.025309519842267036, 0.034877799451351166, -0.06770792603492737, 0.09214207530021667, -0.026154762133955956, -0.05123493820428848, 0.02867159992456436, 0.06724782288074493, -0.03493015840649605, -0.03808675333857536, 0.008965589106082916, 0.013700955547392368, 0.0018822380807250738, -0.011072096414864063, 0.010502101853489876, 0.003295688424259424, -0.02289609983563423, -0.03177574649453163, 0.030539585277438164, -0.01848413422703743, 0.02598455362021923, 0.010915116406977177, 0.04936961457133293, -0.0121780876070261, -0.00819933321326971, 0.005849150009453297, -0.024598972871899605, 0.008569554425776005, -0.02532520890235901, -0.016924506053328514, -0.0028961070347577333, -0.023474998772144318, 0.046586260199546814, -0.009352975524961948, 0.022938387468457222, 0.03789922595024109, -0.022082718089222908, 0.06303286552429199, 0.013829294592142105, -0.010129849426448345, 0.020490409806370735, -0.00466734217479825, -0.0207205917686224, -0.05466233566403389, 0.006978156045079231, 0.0005877870135009289, 0.042334649711847305, -0.05205525457859039, -0.005726717412471771, 0.03390452638268471, 0.01105643529444933, -0.0016704997979104519, -0.03743578866124153, -0.04189915582537651, -0.035911668092012405, -0.041798342019319534, -0.012868259102106094, -0.028000425547361374, -0.010210022330284119, 0.05172472447156906, 0.010420192964375019, -0.021191900596022606, -0.013473078608512878, 0.02377397194504738, -0.005282694008201361, 0.009898378513753414, -0.021665696054697037, 0.013442577794194221, -0.0326852984726429, -0.04196393862366676, -0.04218485951423645, 0.012917587533593178, -0.021661845967173576, -0.021245025098323822, 0.010035648941993713, 0.01853048801422119, 0.020136753097176552, 0.037795379757881165, 0.003941869828850031, -0.008752082474529743, -0.011203521862626076, -0.06351633369922638, -0.030672859400510788, 0.034517768770456314, -0.009764009155333042, 0.010221768170595169, 0.057844437658786774, -0.032693516463041306, 0.0469183623790741, 0.004787134472280741, -0.005514481570571661, -0.022389527410268784, -0.01644667237997055, -0.007896969094872475, 0.020680628716945648, -0.01438135001808405, -0.09306378662586212, -0.022147387266159058, -0.040254756808280945, 0.025909198448061943, -0.013503692112863064, 0.013103995472192764, -0.014232325367629528, -0.018048696219921112, -0.0017344263615086675, 0.012861642986536026, 0.010324964299798012, 0.01569734700024128, 0.0025615065824240446, 0.05489174649119377, 0.01889602653682232, -0.006926912348717451, 0.04639115929603577, -0.013176142238080502, 0.04141400754451752, -0.02549399808049202, -0.01677556335926056, 0.05137810856103897, -0.0354398712515831, 0.04476682469248772, -0.003655253443866968, -0.02549060620367527, -0.06150428578257561, -0.03913113847374916, 0.026302466168999672, 0.04066292941570282, 0.017281491309404373, 0.004964928608387709, 0.027023637667298317, -0.023488756269216537, -0.048357535153627396, -0.009312222711741924, -0.04759596660733223, -0.009746826253831387, 0.0328412801027298, -0.025878487154841423, 0.011893528513610363, 0.0030681712087243795, -0.016055617481470108, -0.00554657494649291, -0.024472374469041824, -0.01193954236805439, -0.015586147084832191, -0.0126062436029315, -0.012677127495408058, 0.023179423063993454, -0.017875980585813522, 0.004996401723474264, 0.02111821621656418, 0.054287388920784, -0.06321824342012405, -0.03364488109946251, 0.0018409346230328083, 0.02999710477888584, -0.007582544814795256, -0.009355415590107441, 0.0017589750932529569, 0.012502939440310001, 0.02361934632062912, 0.011316075921058655, 0.010823991149663925, 0.03747418150305748, -0.005465604830533266, 0.04668772593140602, -0.01747709885239601, -0.005430936813354492, -0.03651664778590202, 0.027053259313106537, -0.036986347287893295, -0.019687624648213387, -0.04104715958237648, 0.018366606906056404, 0.05199330300092697, -0.02199029177427292, 0.031202174723148346, 0.020051704719662666, 0.031468044966459274, -0.018745476379990578, 0.030484501272439957, -0.0164321456104517, 0.030955763533711433, 0.02808951772749424, 0.03873421251773834, 0.002983677666634321, 0.02718418650329113, 0.05907651409506798, -0.039869990199804306, -0.01558044645935297, 0.05230535939335823, 0.020047174766659737, -0.019690411165356636, -0.012476715259253979, -0.03256204351782799, 0.02628716640174389, 0.0035491338931024075, -0.002598469378426671, -0.031969569623470306, -0.006262096110731363, 0.0044136266224086285, 0.012998858466744423, -0.01098635233938694, 0.04373205080628395, -0.023008212447166443, -0.013395060785114765, -0.01001130323857069, -0.022851750254631042, 0.017429515719413757, 0.03918550908565521, -0.01669635809957981, 0.005592650733888149, 0.04097343981266022, 0.027451688423752785, -0.005677104461938143, 0.04548070207238197, 0.027653081342577934, 0.04054311662912369, -0.03522951155900955, -0.005352283362299204, 0.027910033240914345, -0.0001391457044519484, -0.016836538910865784, 0.02232547290623188, -0.0240850318223238, 0.03218129277229309, -0.046452540904283524, 0.020536907017230988, 0.01913546770811081, -0.04407945275306702, -0.00020097181550227106, -0.04751373454928398, 0.029941558837890625, -0.05575777217745781, -0.022739481180906296, 0.022104883566498756, -0.043089237064123154, -0.024339020252227783, 0.032896488904953, -0.022448290139436722, 0.025015925988554955, 0.028338614851236343, 0.03622327744960785, -0.006516306661069393, 0.02756878361105919, 0.016505803912878036, -0.048230040818452835, 0.006412733346223831, 0.019367124885320663, -0.024162299931049347, -0.0062709106132388115, -0.03270919248461723, -0.04892571270465851, -0.016212021932005882, 0.0018004992743954062, -0.014201520942151546, 0.006030149292200804, 0.012821714393794537, -0.022967271506786346, -0.014985761605203152, 0.0019867008086293936, 0.05289936438202858, -0.032254915684461594, -0.03715052455663681, 0.018701357766985893, 0.02015138790011406, 0.00014403370732907206, -0.03962228447198868, -0.03239475563168526, -0.04837624356150627, 0.009543733671307564, -0.03365323692560196, 0.044122643768787384, 0.009868280030786991, -0.03362050652503967, -0.009496309794485569, -0.044345200061798096, -0.006910959258675575, -0.005044728517532349, -0.0660834088921547, -0.04781179130077362, 0.024926792830228806, 0.03346964344382286, 0.018908469006419182, -0.008955296128988266, -0.01798885129392147, 0.03782138600945473, 0.022651365026831627, 0.06702572852373123, -0.007141770329326391, 0.05100250989198685, 0.04444176331162453, 0.000962447898928076, 0.01985475793480873, -0.02156592719256878, 0.03444970026612282, -0.022809941321611404, -0.02132798358798027, -0.042163871228694916, 0.029140181839466095, -0.022040141746401787, -0.0717286542057991, 0.013414869084954262, 0.01588347554206848, 0.04991944134235382, -0.03678474575281143, -0.060030464082956314, -0.01926974393427372, -0.041779473423957825, 0.0038839709013700485, -0.013798720203340054, 0.010532896965742111, 0.0029967771843075752, -0.004568326286971569, 0.007593423128128052, -0.060214702039957047, 0.13173575699329376, 0.04780632629990578, 0.018752625212073326, 0.0006478911964222789, 0.04644494876265526, 0.018076814711093903, 0.03866330161690712, -0.02155214361846447, -0.006440866272896528, -0.030491918325424194, 0.03322603926062584, -0.03817645087838173, 0.03328469768166542, -0.007800557650625706, -0.0008578955894336104, 0.03486454114317894, -0.04067918658256531, -0.018331404775381088, 0.02927788905799389, -0.039006222039461136, -0.04968998581171036, 0.025936219841241837, 0.038531333208084106, -0.005896187853068113, 0.010905944742262363, 0.014601902104914188, 0.0036439872346818447, -0.030687609687447548, 0.009871196001768112, -0.025264784693717957, 0.03740933537483215, -0.04569518193602562, 0.025684421882033348, -0.01006385963410139, -0.049442071467638016, 0.04859314113855362, -0.01564653031527996, -0.033373646438121796, 0.007646864280104637, 0.006805842276662588, -0.022596998140215874, 0.0307198166847229, 0.03730512037873268, -0.046864528208971024, 0.016341928392648697, 0.023253247141838074, -0.044304799288511276, -0.003217517165467143, 0.009421414695680141, -0.01981821469962597, 0.04559960588812828, -0.04330914467573166, 0.054229822009801865, -0.012380181811749935, 0.013595936819911003, 0.030118610709905624, 0.008197257295250893, -0.03462044522166252, 0.0016635979991406202, 0.016384869813919067, 0.01057937927544117, -0.006906644441187382, 0.011266358196735382, -0.023665009066462517, -0.042524151504039764, 0.015360306948423386, 0.03343476727604866, 0.0011777525069192052, 0.013897577300667763, -0.0038727351929992437, -0.026768922805786133, -0.0198940671980381, -0.017040135338902473, -0.011790608987212181, 0.009201906621456146, 0.01480505708605051, 0.00004793292100657709, 0.03187376260757446, 0.006523256655782461, 0.0028035216964781284, -0.03967158496379852, -0.05274880304932594, -0.014393438585102558, -0.012035819701850414, 0.03636009991168976, 0.02607439085841179, -0.01026089396327734, -0.0370403416454792, 0.002237852429971099, 0.04295223578810692, 0.0366685688495636, -0.002410298213362694, -0.017301438376307487, -0.04288709536194801, -0.027277441695332527 ]
Sometimes I wish I were a wedding photographer in Southern California. As I scroll through wedding blogs, I see fabulous, out-of-the-box weddings at places like Marmivon, Huron SubStation and the Ace Hotel, and long for venues like that here in Calgary. I love the idea of a former factory repurposed and transformed into a chic, industrial wedding venue. This is why I'm so happy to hear about wonderful spaces like The Commons in Ramsay. I met up with Erynn from The Commons to see it for myself and hear about how it came to be. An industrial wedding venue…the history of the space? Strikingly simple but astonishingly rare, the concept of The Commons is to create a work space where imagination and the entrepreneurial spirit collide creatively to meet the unique needs of freelancers, small business owners, and local innovators. Not surprisingly, the requests to host events in the space began to roll in. Since then they've acquired additional rooms and expanded The Commons to include almost 5000 square feet of event space. They have now have a venue coordinator and offer several distinctive spaces for weddings. During the day The Gallery is an open workspace, but shift out the desks and office furnishings and it becomes a grand ceremony space. Its high ceilings, long configuration and grand fireplace make it the ideal spot to tie the knot. The Parlour Room boasts a modern-vintage industrial style reminiscent of gentleman's smoking rooms of times past. Velvet couches, leather benches and crystal chandeliers decorate the space while moveable furnishings and two large projector walls make this room an adaptable place to host either a social soiree or business function. The Parlour Room has a 100-person occupancy and is best suited for low-key, intimate functions (from The Commons website). Sleek concrete floors and three grand west-facing windows framed by 22 feet of original exposed brick, The Hemingway Room is simple yet bold, and undeniably charming. Rich in character as the stories once written by Ernest himself, we invite you to compose your event in our most dexterous of venues. (from The Commons website). Since my visit, they've added another space at The Commons, The Commodore Room. With a timeless aesthetic, it features three west-facing windows and an abundance of natural light. Enclosed with crisp white brick borders and anchored by a grande crystal chandelier, its surmounting charm extends far beyond its frame as the most intimate of our event venues (from The Commons Website). It holds up to 25 people and would be the perfect location for a small gathering (hello bridal shower). Pop over to their website for images of The Commodore Room. What is included in your event rental? Venue rentals at The Commons include the services of their event coordinator. They can walk you through the details of planning your event…contracts, expectations and procedures. An event attendant is also onsite for the length of your event. At The Commons, they also offer event planning, event styling and graphic design. Be sure to ask them about the particulars. Industrial, elegant, vintage, chic…all words to describe The Commons. This new and innovative space is filled with nooks and crannies that cry out for fun wedding details (basically a photographer's dream). Each room is distinctly different and there are endless possibilities for customizing the space for your specific needs. Erynn and the team are excited to work with couples that love the space as much as they do and are hoping to create a personalized event experience with the team at The Commons. Recently I featured Charbar, located in the historic Simmons building, as another industrial wedding venue in Calgary. Take a look. Today I'm happy to share the images from my first wedding of 2016. Hillary and Grant were married on a freezing cold (though very pretty) Saturday in January. These two came prepared for their winter wedding photos with boots, furs and winning attitudes. Well done Hillary and Grant! The results are so pretty and not a goosebump in sight. Hillary's spectacular lace gown was by designer Madison James. If you follow along on my blog, you'll know that I have a bit of a thing for shoes. I have to admit, my shoe-loving heart skipped a beat when I saw Hillary's Manolos. Hillary and Grant decided on a "first look" to kick off their wedding day (a couple after my own heart). I love what unfolded as the bride strolled up and tapped her groom on the shoulder…ear-to-ear grins and lots of laughs. Heritage Hall at the SAIT campus was the perfect, classic backdrop for their winter wedding photos that day. After their photo session, we headed to Hillhurst United Church Calgary for their romantic, candlelight ceremony. With the knot officially tied, Hillary and Grant cerebrated with their friends and family over traditional Italian fare and good wine at Villa Firenze in Bridgeland. Many congratulations to Hillary and Grant. What a special way to kick off 2016! This wasn't my first time working with the Burwash family. I photographed Grant's brother's summer engagement session a few years ago, if you'd like to see. It was fun to see Blake and Julianna again and meet their baby girl. Are you all set for Valentine's Day on Sunday? Whether you're a planning a Valentine's wedding or a fun evening with the ladies, this shoot is sure to find your sweet spot. If over-the-top glitz is not your game, read on for 10 pretty ideas and a subtle dose of "hearts and flowers". As an early Valentine, this shoot was featured on Swooned yesterday. Take a peek. 1. You can't go wrong with candlelight. I used brass lanterns, flickering lights and clusters of loose blooms to set the tone. 2. For a twist on a traditional Valentine, the invitation suite included a heart motif, a mix of patterns and a wax seal. 3. Our bride Taylor wore a boho-style mini dress from A Vintage Affair with delicate pleats and a keyhole back. 4. Tara Watts fashioned Taylor's hair into romantic, sideswept waves, held in place with a sparkling hairband by Pink Pewter. 5. Consider loose, unstructured blooms for the bride. Sarah Mayerson Design used eucalyptus, garden roses and red winter tulips as an alternative to the classic Valentine's rose. 6. Don't neglect your toes. Pretty floral pumps from Nine West Canada add a pop of pretty. 7. Macarons pops from Yann Haute Patisserie decked out in ribbons and bows take the place of a box of chocolates. 8. A keepsake ring box holds the bling (ring from Adorn Boutique). 9. Toast true love with a pretty (and delish) cocktail. For years, Buffalo Mountain Lodge (BML) has been a special spot for me. In our family we've made a tradition of celebrating New Years in Banff and staying in one of their cozy suites. BML is a Canadian Rocky Mountain Resort located on Tunnel Mountain in Banff. It's warm, inviting and provides a true log cabin experience with spectacular views. It's more than that though…it's also an idyllic locale for an alpine wedding. Recently I spent an afternoon with their Conference Manager Kerrie, as she toured Mark and Ashley, a couple planning their own wedding, around the various facilities at Buffalo Mountain Lodge. My camera and I tagged along and learned the ins and outs of planning a Buffalo Mountain Lodge wedding. Tell us about Banff and what makes it such a magical place to visit? Banff is a community surrounded by nature but it's close enough to Calgary for quick day trips. I think people enjoy Banff because it's a true mountain escape from the city. Buffalo Mountain Lodge has Tunnel Mountain Reservoir right in its own backyard. With views like this, it's a breathtaking location for wedding ceremonies. I photographed a wedding ceremony there this past summer, if you'd like to see. Why choose Buffalo Mountain Lodge for your wedding? BML is perfect for intimate, family celebrations. The facilities offer the opportunity to connect with your guests in a charming, mountain setting. Buffalo Mountain Lodge has three options for wedding couples. First we toured the Strathcona Room, ideal for parties of up to 48 people. Located on the second floor, the Strathcona Room features a large balcony with views of Cascade Mountain. Option #2 for wedding couples is the Wainwright Room which can accommodate groups up to 70 and includes an adjoining patio. A turn on the dance floor for the soon-to-be newlyweds. The Wapiti Longhouse is the largest wedding venue at Buffalo Mountain Lodge. Between the ceremony and reception, many couples use The Wine Cellar, located on the main floor, for cocktail receptions. The Wapiti Longhouse with it's high-beamed ceilings and show-stopping fieldstone fireplace, is a grand spot for celebrations of up to 99 guests. The view from the balcony of the Wapiti. Cascade Mountain was hiding behind the clouds during our visit. Who are your ideal wedding couple? BML is perfect for couples that have fallen in love with Banff and its mountain culture. The lodge has a rustic chic feel that our couples embrace and appreciate. What is the most unique wedding you've seen at BML? We recently hosted a Korean/Canadian wedding where the bride wore a traditional "Hanbok". We love weddings where couples embrace their culture. After our tour, Mark and Ashley stopped at the Sleeping Buffalo Lounge for drinks and a charcuterie board. At Buffalo Mountain Lodge, that means delicacies like Elk Salami, Mustard Melons, Smoked Duck Breast and Air Dried Buffalo. Tell us about menu options that are available to couples? BML is known for their Rocky Mountain Cuisine…bison, caribou, elk and venison, but the beef tenderloin is a wedding favourite. Couples planning a Buffalo Mountain Lodge wedding have the option of buffet-style meals, plated dinners or a Chef-attended BBQ. Expect to see summer specialties like grilling steak, Atlantic salmon, pork ribs, baked beans and corn on the cob on the BBQ menu. For dessert, Kerrie recommends the warm molten chocolate cake, served with orange mint ice cream. Yes please! Back in December, I photographed in and around Buffalo Mountain Lodge for a Christmas feature on the Lifestyle Blog Canadian Mountain Chic. Here's a few images of the spectacular fireplace in the Wapiti Longhouse with credit to Sharon from Naturally Chic Weddings, Adorn Boutique and Mountain Beauties. A peak inside one of the guest rooms at Buffalo Mountain Lodge (with a few extra flourishes by Naturally Chic weddings. See more on Canadian Mountain Chic). Do you have any availability for 2016 couples? We are currently booking into 2017. For The Wapiti Longhouse, wedding Saturdays are booked through October 2016, but check with Kerrie about weekday celebrations. The smaller rooms (Strathcona & Wainwright) do have some Saturday openings at present. A big thank you to Kerrie Carter from Buffalo Mountain Lodge for the tour and the hospitality. Contact Kerrie at [email protected] for all of the details on planning a Buffalo Mountain Lodge wedding. Recently I featured BML's sister property, The Lake House, on the blog. Take a look.
[ -0.002588358474895358, -0.014787303283810616, -0.02099938690662384, 0.01536942645907402, -0.012698150239884853, -0.00938729103654623, 0.005837149918079376, 0.00882801879197359, 0.04076404869556427, 0.003969857003539801, 0.023143436759710312, -0.0004919191123917699, 0.025497261434793472, -0.037434253841638565, 0.008771521039307117, 0.002555222250521183, -0.008093403652310371, -0.020303502678871155, -0.03584343567490578, 0.009731192141771317, -0.010997447185218334, -0.010474592447280884, -0.08518224954605103, -0.04074399918317795, 0.023314673453569412, 0.046396903693675995, 0.01981467194855213, -0.02619059942662716, 0.05381244421005249, 0.05372227355837822, -0.023887116461992264, -0.024824324995279312, 0.006814091466367245, -0.03783373907208443, -0.02794329822063446, -0.013804248534142971, 0.02806631661951542, -0.025234347209334373, -0.024289309978485107, -0.05126209184527397, -0.0003444977628532797, -0.046744707971811295, 0.0354413166642189, -0.060653526335954666, -0.02681712619960308, 0.02139468304812908, 0.02022557705640793, -0.04164482653141022, 0.06231866404414177, -0.03298955038189888, 0.013770737685263157, -0.029565349221229553, 0.0122330691665411, 0.01807434856891632, 0.018222633749246597, 0.03291616216301918, -0.025317758321762085, -0.012508793734014034, -0.006872524507343769, 0.02081022597849369, 0.018118277192115784, -0.01933264173567295, 0.0015129713574424386, -0.052672065794467926, 0.04599259793758392, 0.018518323078751564, 0.018634958192706108, -0.030494552105665207, 0.01169608160853386, -0.03219062089920044, -0.0013961312361061573, -0.016418272629380226, -0.018236294388771057, -0.004690752364695072, 0.00659694941714406, -0.02200530655682087, -0.007137454580515623, -0.016092581674456596, -0.003555157221853733, -0.007582891266793013, 0.029165567830204964, 0.04373311251401901, 0.001636135159060359, 0.019003508612513542, -0.08906690776348114, -0.025350060313940048, 0.01221613958477974, 0.04198372736573219, 0.03402099013328552, 0.01039084978401661, 0.006066021043807268, 0.04995289072394371, 0.014995289966464043, 0.01157017145305872, 0.043094176799058914, 0.03443584963679314, -0.047418784350156784, 0.04114354029297829, 0.011027124710381031, 0.015074700117111206, 0.00995582528412342, 0.02729865536093712, 0.0027332426980137825, 0.029271135106682777, -0.05050982907414436, 0.017043443396687508, 0.008267662487924099, 0.009076818823814392, 0.01894448883831501, -0.04036374017596245, 0.016626812517642975, -0.057134922593832016, 0.016694944351911545, 0.015897253528237343, 0.008680508472025394, 0.05186538025736809, 0.021894631907343864, 0.039839085191488266, -0.04102202132344246, 0.01643197610974312, 0.01996648497879505, 0.018756577745079994, 0.03694433346390724, -0.022313548251986504, 0.004613817669451237, -0.0532381609082222, -0.016169453039765358, 0.07076764851808548, -0.0210436899214983, -0.007577716838568449, 0.017018688842654228, -0.03920887038111687, -0.01161365956068039, 0.013949324376881123, 0.004760908894240856, -0.003928441554307938, 0.015577997080981731, 0.03418384864926338, -0.013688025996088982, -0.056462328881025314, 0.0346117801964283, 0.02925686165690422, 0.020649811252951622, 0.08409329503774643, 0.029427502304315567, 0.027744349092245102, -0.009544089436531067, -0.004263204988092184, -0.04180421680212021, 0.005485602654516697, -0.008147378452122211, 0.04251150041818619, -0.00416601775214076, 0.028417302295565605, 0.007788931950926781, 0.010847522877156734, -0.004893481731414795, 0.018510449677705765, 0.023436523973941803, 0.05667410418391228, -0.0315164290368557, -0.00006179742194944993, 0.009089672937989235, 0.01793593540787697, -0.01931304857134819, 0.02893799915909767, -0.020500851795077324, -0.025303594768047333, -0.05188344046473503, -0.01897938922047615, -0.01589338481426239, 0.020692138001322746, -0.01686486415565014, 0.005512503441423178, 0.027465378865599632, 0.016536550596356392, 0.03720592334866524, 0.010065965354442596, -0.0023922768887132406, 0.06223496422171593, -0.037373658269643784, -0.011405985802412033, -0.01979064755141735, 0.043588511645793915, 0.01809309795498848, 0.0029154536314308643, -0.0026771952398121357, -0.020728077739477158, -0.059005942195653915, -0.041263479739427567, -0.007511263247579336, 0.046180471777915955, -0.04575442150235176, 0.020911769941449165, 0.01712607964873314, 0.014884679578244686, -0.033898595720529556, -0.017888043075799942, -0.016351085156202316, -0.016148457303643227, -0.025087036192417145, 0.05554669350385666, -0.02496209368109703, 0.015508931130170822, 0.009240839630365372, -0.028443893417716026, 0.0387275405228138, 0.06722287833690643, -0.035704050213098526, -0.0026850479189306498, 0.03408069908618927, 0.010759865865111351, -0.06572029739618301, -0.0413564071059227, 0.036672256886959076, -0.02819061279296875, -0.04165493696928024, 0.011603783816099167, 0.0148409279063344, -0.015442587435245514, 0.001216478762216866, 0.005040881223976612, 0.02231631800532341, 0.017501220107078552, -0.011193647049367428, 0.0183387603610754, 0.025548115372657776, 0.039722513407468796, -0.014641319401562214, -0.03376593440771103, -0.05063769221305847, 0.04280810430645943, 0.03484335169196129, 0.05178862437605858, 0.04356471076607704, 0.002819574438035488, 0.044742655009031296, 0.027134284377098083, -0.018162859603762627, 0.03464781865477562, -0.0009534437558613718, 0.020964112132787704, 0.029010767117142677, 0.04152514785528183, -0.021697426214814186, 0.013715020380914211, 0.007788507733494043, 0.010382818058133125, 0.006266126874834299, 0.0558587983250618, -0.010425737127661705, 0.026918379589915276, -0.003126064082607627, 0.052549898624420166, -0.01764865405857563, 0.03625381737947464, 0.002122846432030201, 0.06878611445426941, -0.013605057261884212, -0.0049708071164786816, 0.004050957504659891, 0.014933807775378227, -0.04623040184378624, -0.0006015216931700706, 0.02612854540348053, 0.033388663083314896, -0.018285313621163368, -0.005505191162228584, -0.0221683531999588, -0.023251080885529518, -0.038067638874053955, -0.03673626109957695, -0.035611141473054886, -0.0111086405813694, -0.045497383922338486, -0.006269602105021477, 0.037596818059682846, -0.015901802107691765, 0.05777265504002571, 0.002124140039086342, -0.024429142475128174, -0.015709547325968742, -0.0030947604682296515, 0.028179313987493515, 0.026697367429733276, 0.03423214331269264, -0.04586676135659218, 0.037209391593933105, -0.008073779754340649, 0.04749494045972824, -0.03191801533102989, -0.0017472902545705438, -0.015076990239322186, -0.02566792257130146, 0.034776121377944946, -0.04144275188446045, -0.010788965970277786, 0.00042909756302833557, -0.05519227311015129, -0.04669124633073807, -0.02128118835389614, 0.020115721970796585, -0.027596767991781235, -0.023960096761584282, -0.049164652824401855, 0.03999510407447815, -0.004919623024761677, -0.010012284852564335, 0.02155674435198307, 0.030864711850881577, -0.04456853121519089, 0.03439200296998024, 0.016326026991009712, 0.010267802514135838, -0.050338052213191986, 0.029885748401284218, 0.04438925161957741, 0.02977512590587139, -0.006980076897889376, -0.017035942524671555, -0.0067862109281122684, -0.019082145765423775, -0.0045259627513587475, -0.02224041521549225, -0.05197799950838089, 0.06259435415267944, 0.04772726446390152, -0.06753236055374146, 0.00728725316002965, -0.04123079404234886, -0.03605254739522934, -0.035842638462781906, -0.0309123657643795, 0.0221224557608366, 0.010610345751047134, 0.013073363341391087, -0.006434106267988682, -0.010916708037257195, 0.008418392390012741, 0.02535393089056015, 0.07683074474334717, -0.04451993107795715, 0.006540268659591675, 0.02459636703133583, -0.014218718744814396, 0.00867606420069933, 0.012152696959674358, -0.0617886483669281, -0.016267085447907448, -0.013097807765007019, 0.013672921806573868, 0.004240811802446842, 0.006064469926059246, 0.006426647771149874, 0.030591588467359543, 0.04139615222811699, -0.03324500843882561, -0.01685992255806923, 0.002040780382230878, 0.014099759049713612, 0.03967452794313431, 0.0028849283698946238, 0.0176774263381958, -0.03570978343486786, -0.044360898435115814, -0.06216937676072121, -0.02380439266562462, -0.006375202443450689, 0.05904996022582054, -0.04990299791097641, 0.04261542856693268, 0.005672733299434185, -0.033816300332546234, 0.03679092600941658, -0.039635416120290756, -0.007916872389614582, 0.04957865551114082, 0.004100041463971138, 0.021880047395825386, -0.022214360535144806, 0.026267122477293015, -0.04999512434005737, -0.0037174730096012354, 0.03995555266737938, 0.0066992491483688354, 0.021259209141135216, -0.022042540833353996, -0.00817075464874506, -0.015675917267799377, -0.004332039039582014, -0.021960528567433357, -0.006125825457274914, -0.014763536863029003, 0.001813956769183278, -0.057127323001623154, -0.010778595693409443, 0.050384413450956345, 0.028025584295392036, 0.005178754683583975, -0.004125378560274839, 0.061859674751758575, 0.025381874293088913, -0.012231037020683289, 0.0393943265080452, -0.012863906100392342, 0.020601429045200348, -0.07444985955953598, 0.05101754143834114, 0.01875549554824829, -0.0224074088037014, -0.037864044308662415, -0.020772883668541908, -0.02456321008503437, 0.026318319141864777, 0.021177541464567184, -0.014845488592982292, -0.04822251945734024, 0.022529061883687973, 0.017945656552910805, 0.057025711983442307, -0.06262295693159103, -0.03215809166431427, -0.006152473855763674, 0.028497129678726196, 0.011960421688854694, -0.04507790133357048, 0.014714505523443222, -0.06203226372599602, 0.04813019186258316, 0.033447206020355225, -0.04495023936033249, -0.037709057331085205, -0.020809445530176163, 0.010948334820568562, -0.023928672075271606, 0.03542962670326233, 0.049303892999887466, 0.017395488917827606, 0.006762342527508736, -0.022021252661943436, 0.03252555429935455, 0.03846125677227974, -0.021644437685608864, -0.029398953542113304, 0.03239491209387779, 0.048380643129348755, -0.0033601343166083097, 0.058677345514297485, -0.0029113637283444405, -0.0180206261575222, -0.002836133586242795, -0.03400137275457382, -0.003322708187624812, 0.007649989333003759, -0.0007474655867554247, 0.002250311430543661, 0.029740793630480766, 0.037147507071495056, 0.03538994491100311, -0.008632459677755833, 0.030356939882040024, 0.00712426844984293, 0.0499025359749794, -0.02604745887219906, -0.039291203022003174, 0.04187868535518646, 0.0012638660846278071, -0.01670796051621437, 0.016845209524035454, 0.06384595483541489, -0.011730425991117954, 0.015241235494613647, 0.034636106342077255, -0.04438432306051254, 0.033872976899147034, -0.03921345993876457, 0.021730495616793633, -0.016699109226465225, -0.043565139174461365, -0.00039568738429807127, -0.015358202159404755, 0.050546836107969284, 0.006520533002912998, 0.012879651039838791, -0.06608093529939651, -0.057035814970731735, -0.0339459665119648, 0.016605837270617485, -0.012787309475243092, 0.00898963026702404, 0.01727958768606186, 0.02035130374133587, -0.02421221323311329, -0.03146810084581375, 0.0062444331124424934, -0.01290913112461567, -0.006376962177455425, 0.025665834546089172, -0.002614865079522133, 0.02635064534842968, -0.00198965216986835, 0.0032635752577334642, -0.02242342010140419, -0.014181080274283886, 0.021048223599791527, -0.013514176942408085, -0.07087690383195877, -0.007553814444690943, -0.025044092908501625, 0.0018788240849971771, -0.03828139975667, -0.016318045556545258, 0.0231800377368927, 0.010668031871318817, 0.018064705654978752, -0.005006751045584679, 0.009661701507866383, 0.002969826338812709, -0.005626630038022995, 0.03018900193274021, 0.022320257499814034, -0.05175592750310898, -0.0038773748092353344, 0.04603908956050873, -0.023034188896417618, 0.03141928091645241, -0.0028725641313940287, -0.011507720686495304, -0.020422346889972687, -0.051652032881975174, -0.024073472246527672, -0.031570013612508774, -0.02757219597697258, -0.047097910195589066, -0.033524125814437866, -0.009926026687026024, 0.021210892125964165, 0.012370630167424679, -0.003644688054919243, 0.016457214951515198, -0.04046262055635452, 0.014297801069915295, -0.01169881783425808, -0.033449091017246246, -0.053323037922382355, 0.02115768939256668, -0.02964724600315094, 0.037907082587480545, -0.00291398330591619, 0.05398073419928551, -0.01578783430159092, 0.022356633096933365, 0.008510622195899487, -0.023702790960669518, -0.04313256964087486, -0.04211876168847084, -0.028986692428588867, 0.0024635051377117634, 0.012209126725792885, 0.014027832075953484, -0.02440044656395912, 0.04881111904978752, -0.035210639238357544, -0.009749084711074829, -0.008364679291844368, -0.01896815188229084, -0.03418433293700218, -0.03571280464529991, 0.0713401734828949, -0.008067414164543152, -0.014949008822441101, -0.042549874633550644, 0.06255358457565308, 0.03355785086750984, -0.014975640922784805, -0.02254655212163925, -0.050836410373449326, -0.04418438673019409, -0.05538616329431534, 0.04841706156730652, -0.01900174282491207, -0.022694237530231476, -0.02159857749938965, -0.007996133528649807, 0.035035524517297745, -0.02376428432762623, 0.0271603986620903, 0.053561341017484665, -0.014089282602071762, 0.0059133367612957954, -0.056611210107803345, 0.04439617693424225, 0.04534538462758064, -0.030965914949774742, -0.0333152636885643, -0.0250577200204134, -0.027100764214992523, 0.0008026319555938244, -0.04260602593421936, -0.021040601655840874, -0.04030413553118706, -0.03154470771551132, 0.08018788695335388, -0.026415275409817696, 0.026546739041805267, 0.006513373926281929, -0.047904565930366516, -0.02138551138341427, 0.04500226303935051, -0.01904567889869213, -0.013466237112879753, 0.04811025783419609, -0.017334239557385445, -0.014545908197760582, -0.016523147001862526, 0.009053247980773449, -0.01090153306722641, -0.04145362228155136, 0.09742288291454315, -0.011779437772929668, -0.03407156467437744, 0.04479352384805679, 0.04297301173210144, -0.05003292113542557, -0.038474079221487045, -0.0009736688807606697, 0.009942754171788692, 0.022693103179335594, -0.04332568496465683, 0.03136657178401947, -0.035898249596357346, 0.02075321227312088, 0.01950989104807377, 0.051877908408641815, 0.00852909404784441, 0.0521509163081646, 0.012726123444736004, 0.027097538113594055, -0.03626399114727974, 0.012979760766029358, 0.016932673752307892, -0.04182736575603485, -0.028378961607813835, -0.03472572937607765, -0.01745164580643177, 0.0024200440384447575, -0.009040184319019318, 0.014020564965903759, -0.036538902670145035, 0.002598816528916359, 0.04724108800292015, -0.030845437198877335, 0.03188537061214447, 0.008895455859601498, 0.012253311462700367, 0.021907834336161613, -0.0356396920979023, -0.04467028006911278, -0.030389908701181412, 0.024908332154154778, -0.0033682009670883417, 0.028024615719914436, -0.022230153903365135, 0.0133276442065835, 0.043103087693452835, -0.02697431668639183, -0.003056623972952366, -0.04593183472752571, -0.04721864312887192, -0.057537179440259933, -0.05105851590633392, -0.010187688283622265, -0.0029805887024849653, 0.021169770509004593, 0.028734182938933372, 0.017076896503567696, -0.012766589410603046, -0.027547325938940048, 0.0020098164677619934, -0.031221983954310417, 0.00458117388188839, -0.01401363592594862, 0.014970792457461357, -0.0254481453448534, -0.04087650403380394, -0.038519423454999924, -0.009151221252977848, -0.04192781448364258, -0.0036689818371087313, -0.008767901919782162, -0.0014427541755139828, -0.006309760734438896, 0.03165154159069061, 0.019366508349776268, 0.00819098949432373, -0.02155396342277527, -0.05947297438979149, -0.01963781751692295, 0.019260743632912636, 0.011789930053055286, 0.03022047132253647, 0.002927603432908654, -0.004259052220731974, 0.0407332219183445, 0.03760809823870659, -0.006053159944713116, -0.01027301698923111, -0.020116684958338737, -0.001300320727750659, -0.0007244002772495151, -0.02935684472322464, -0.021483777090907097, 0.0020670380908995867, -0.042954351752996445, 0.031799547374248505, -0.004881268832832575, 0.014917499385774136, 0.006893783807754517, -0.0064739021472632885, 0.003398579778149724, 0.04800703376531601, 0.0018106146017089486, 0.038675110787153244, 0.013794951140880585, 0.027170969173312187, 0.03902673348784447, -0.0008436732459813356, 0.013082528486847878, 0.026305289939045906, 0.026122871786355972, -0.03470081835985184, -0.01346432976424694, 0.0054448735900223255, -0.04703889042139053, 0.034576982259750366, -0.03687843680381775, -0.01824542135000229, -0.08159608393907547, 0.0056343767791986465, -0.00880186166614294, 0.04003934562206268, 0.0011657775612547994, -0.0123402439057827, 0.038477055728435516, -0.017405707389116287, -0.03744630888104439, -0.005762751214206219, -0.02751580998301506, -0.0574641227722168, 0.050302378833293915, -0.022656286135315895, 0.009631764143705368, -0.02324962429702282, -0.028985928744077682, 0.003366202348843217, -0.017565477639436722, -0.014517801813781261, -0.012449173256754875, 0.020670559257268906, -0.007979790680110455, 0.03860040754079819, -0.014225737191736698, -0.02496049925684929, 0.010236497037112713, 0.03905066102743149, -0.03367960825562477, -0.041498422622680664, 0.015642091631889343, 0.03762244060635567, 0.016011979430913925, 0.01161412987858057, 0.0029280497692525387, 0.04493099823594093, -0.00843785423785448, 0.0050905183888971806, 0.009751547127962112, 0.0017625453183427453, -0.013749160803854465, 0.01760885678231716, 0.02832040935754776, -0.013536050915718079, -0.047125011682510376, 0.06244036927819252, -0.01139716524630785, -0.04905807599425316, -0.02955714985728264, 0.03518903627991676, 0.05158114805817604, -0.020694954320788383, 0.052926767617464066, 0.0047116451896727085, 0.019634520635008812, -0.02233342081308365, 0.019163839519023895, -0.04732213914394379, -0.00047031446592882276, 0.03268985077738762, 0.02119220606982708, 0.01345868967473507, 0.03929930552840233, 0.05285370349884033, 0.009661160409450531, 0.0024507667403668165, 0.03161904215812683, 0.008695142343640327, -0.05386700481176376, -0.022830935195088387, -0.02804212085902691, 0.004197421949356794, -0.01577414758503437, -0.02272161841392517, 0.015884879976511, -0.03912060335278511, -0.0000201380953512853, -0.029554298147559166, -0.03453652560710907, 0.04742630198597908, -0.014715210534632206, 0.02452664077281952, -0.010133069008588791, -0.0021527681965380907, -0.014316375367343426, 0.07274934649467468, 0.014148491434752941, 0.03746795281767845, 0.009588433429598808, 0.025789106264710426, 0.004258251748979092, 0.03748142346739769, 0.016497228294610977, 0.018686728551983833, -0.0024832834023982286, 0.017997723072767258, 0.018033746629953384, -0.011851858347654343, -0.05431078374385834, 0.007969259284436703, -0.026169881224632263, 0.012091822922229767, -0.020688163116574287, -0.02855040691792965, -0.005958124063909054, -0.044884320348501205, 0.013750179670751095, -0.04342913255095482, 0.029373887926340103, -0.059367768466472626, 0.009111822582781315, 0.04515206068754196, -0.006306696217507124, -0.03166576102375984, 0.07240397483110428, -0.0008894891943782568, 0.039725445210933685, 0.03301499783992767, 0.053162265568971634, -0.025366364046931267, 0.03910763934254646, 0.06734726577997208, -0.014626432210206985, -0.010534362867474556, 0.014338681474328041, 0.016215922310948372, -0.016957636922597885, -0.036028385162353516, -0.03003929741680622, -0.02784750796854496, -0.011153358034789562, -0.004095106385648251, 0.021315863355994225, 0.036175474524497986, -0.01061050221323967, -0.028703873977065086, -0.011232626624405384, 0.016900043934583664, -0.04642090946435928, 0.009701631963253021, 0.01780480332672596, 0.04606889188289642, -0.002066367771476507, -0.01738334447145462, -0.05136549100279808, -0.030610721558332443, -0.010952496901154518, -0.012238709256052971, 0.060010578483343124, 0.006198243238031864, -0.011951804161071777, -0.05921769514679909, -0.07211071252822876, -0.006183548830449581, 0.0098896948620677, -0.038719139993190765, -0.05093492940068245, 0.044549454003572464, 0.0278728399425745, 0.03444017097353935, -0.014244848862290382, -0.01187998615205288, -0.02614028938114643, 0.04163144528865814, 0.059697557240724564, -0.0036681198980659246, 0.03997869789600372, 0.08040294796228409, -0.007015483919531107, 0.011565810069441795, -0.004420717246830463, 0.05964354798197746, -0.029058758169412613, -0.003639906644821167, -0.02599543333053589, 0.0036757448688149452, 0.0024321984965354204, -0.046364616602659225, 0.011274682357907295, 0.01951596327126026, 0.04214603081345558, -0.04032270237803459, -0.0849202498793602, -0.0011605237377807498, -0.04623029753565788, -0.0336323082447052, -0.023005865514278412, 0.025195345282554626, 0.009127968922257423, 0.006541468668729067, -0.027757931500673294, -0.06372278928756714, 0.15567781031131744, 0.04495689272880554, 0.040667351335287094, 0.02810079976916313, -0.0022536260075867176, 0.03660713881254196, 0.033649131655693054, -0.002727068727836013, 0.02032659575343132, -0.02163262851536274, 0.010948159731924534, -0.03135642409324646, 0.03406711667776108, -0.0035721929743885994, 0.024969888851046562, 0.03940778598189354, -0.047226861119270325, -0.009323093108832836, 0.02119005098938942, -0.04828357324004173, -0.06214844807982445, 0.0242264736443758, 0.023737123236060143, 0.008579166606068611, -0.007596783339977264, 0.015110284090042114, 0.03207004442811012, -0.06508739292621613, -0.0035783706698566675, -0.03519551828503609, 0.01859099790453911, -0.025372084230184555, 0.05131267011165619, -0.03773565590381622, -0.04655999690294266, 0.041232071816921234, -0.01304557640105486, -0.024052267894148827, 0.026919206604361534, 0.02634602040052414, -0.008920219726860523, 0.005498248152434826, 0.011654911562800407, -0.03082541935145855, 0.018905160948634148, 0.030510174110531807, -0.03441525995731354, -0.010831194929778576, 0.03327136114239693, -0.028933433815836906, 0.06656216830015182, -0.02118534781038761, 0.02226985991001129, 0.026015160605311394, -0.031533218920230865, 0.016614047810435295, 0.006564123090356588, -0.024759508669376373, -0.030226275324821472, 0.018224621191620827, 0.0395163893699646, 0.008953391574323177, 0.003235154552385211, -0.023200536146759987, -0.013651464134454727, -0.022533778101205826, 0.026115749031305313, 0.007297863718122244, -0.024554414674639702, -0.02862950600683689, -0.006694365292787552, 0.009766791015863419, -0.0018015437526628375, -0.0361800342798233, 0.03592908754944801, 0.04031927138566971, -0.036124635487794876, 0.06447111070156097, 0.01744275726377964, -0.044732656329870224, -0.015390491113066673, -0.03153122588992119, -0.004113475326448679, 0.0031297875102609396, 0.027799231931567192, 0.054464228451251984, -0.027503570541739464, -0.03759925067424774, -0.048322081565856934, 0.04929501563310623, 0.02554446831345558, 0.03929085657000542, -0.0151369608938694, 0.01499769277870655, -0.02251802571117878 ]
That delicious "meat sauce" is made with tempeh-based "meat." Photography courtesy Lightlife. WHAT IT IS: A delicious line of popular products made with tempeh soy protein instead of animal meat. WHY IT'S DIFFERENT: The texture is so good, and the seasoning so deft, that you don't realize the "chicken," "bacon," "burgers" and so forth are not real meat. WHY WE LOVE IT: Another delicious way to cut back on cholesterol and eat sustainably. WHERE TO BUY IT: Find a store locator on the company website, Lightlife.com. Find reviews of more of our favorite healthy foods. Cooking Video Of The Week: Buttermilk and cornmeal-battered onion rings. The season is fleeting: carpe diem! Recipe Of The Week: Apple Crostata. A rustic apple pie without a top crust. Become a NIBBLE Facebook Fan. See our daily notes of interest on Blog.TheNibble.com. See the Table Of Contents of the May 2011 issue of THE NIBBLE, plus the back issues archive and our most popular articles. All of the Top Picks Of The Week are permanently archived on TheNibble.com, in chronological order and product category. Page 2: Lightlife's Tempeh-Based Products Recently we had the opportunity to taste a sampling of the Lightlife line at an industry event. When we RSVP'd, we were omnivores looking forward to getting to know the line. We left as evangelists, with delicious vegan choices to help us eat more sustainably.* To those with raised eyebrows, we aver that, two months later, we remember every bite. The feast included smoky "burgers," juicy "hot dogs," and "turkey" and avocado sandwiches on whole grain bread. We were in heaven. Don't let the quote marks bias you. We loved the "meats" so much that we bailed on an invitation to dinner at Todd English's new restaurant and stayed at the Lightlife party to eat seconds of everything. *The production of meat is a huge drain on the earth's resources, and is also the number one contributor to climate change. More about this below. These vegetarian meats are such a close match to real meat, that in many cases the substitute is as enjoyable as the "real thing." In certain cases, we preferred the vegetarian option. Pepperoni is an example: all of the spice and chewiness, without the greasiness of the real thing. Start the day with bacon-style strips, "sausage" patties or links. Hot Dogs, Sausages & Ground "Meat" Under sauerkraut or with mustard, we couldn't tell that these juicy dogs weren't "real meat." Three flavors of sausage—chorizo, Italian-style and smoked—go from morning (eggs) to lunch (quiche) to dinner recipes. The burgers were also hit: Smoky and delicious, they tasted as if they had just come off the grill. Ground "beef" and "sausage" make it easy to create "meat sauce," stuffed mushrooms, and more. Chick'n You can have your chick'n any way you want it: cutlets, wings, tenders and strips. There are also "steak strips" for your fajitas! (See photo below.) Make a "bologna," "ham" or "turkey" sandwich. "Pepperoni" pizza tastes like the real thing. There are also meals ready to heat and eat. The website has coupons and lots of recipes. What is "sustainable" eating? Continue below. INDEX OF REVIEW This is Page 2 of a three-page review. Click on the black links to visit related pages: Page 1: Capsule Report Page 1: Vegetarian Cookbooks Page 2: Lightlife Products Page 2: Sustainable Eating Page 3: The Differences Between Tempeh, Tofu & Seitan MORE TO DISCOVER THE NIBBLE's Healthy Food Section Product reviews, recipes and more. GLOSSARY: Organic & Natural Food Terms MORE Top Pick Vegetarian Products RECIPE: Apple Crostata We prefer this rustic apple pie to conventional two-crust versions. VIDEO OF THE WEEK: Onion Rings The best onion rings are the ones you make at home. This recipe uses a buttermilk and cornmeal batter. Sustainable Eating We love meat. And we don't have cholesterol issues. But we've chosen to eat more vegan meals in order to do our part to "save the planet." Choosing to eat more vegetable-based foods is one small but significant step toward that goal. Plant-based foods take less from the land than meat-based foods. Beef is the food that has the largest negative impact on the environment.† The enormous volume of meat, pork and poultry farm waste can't be re-processed, and could potentially end up in our waterways. For every sixteen pounds of grain and soybeans fed to beef cattle, we get back only one pound of meat. On average, land requirements for meat-protein production are 10 times greater than for plant-protein production. Producing 1kg of animal protein requires approximately 100 times more water than producing 1kg of grain protein. Have a no-meata-fajita! Less than half the harvested acreage in the US is used to grow food for people. The rest is used to grow food for cattle and other meat animals. The increasing demand for meat by the Earth's growing population has felled vital rain forests, which are turned into fields for grazing and for growing food for meat animals. Nearly half of the world's rain forests have already vanished. While they cover only 7% of the Earth's land, these forests contain nearly two-thirds of all animal and plant species, which vanish when their habitat is destroyed. Trees also ingest carbon dioxide, a major greenhouse gas. The fewer trees on Earth, the more climate change. But you don't have to be on a social mission to enjoy Lightlife products. And you don't have to give up flavor and enjoyment. These products get by on taste alone. †Sources. Do you have friends who would enjoy THE NIBBLE? Click here to send them an invitation to sign up for their own copy. © Copyright 2004-2022 Lifestyle Direct, Inc. All rights reserved. All information contained herein is subject to change at any time without notice. All details must be directly confirmed with manufacturers, service establishments and other third parties. The material in this e-zine may not be reproduced, distributed, transmitted, cached, or otherwise used, except with the prior written permission of Lifestyle Direct, Inc.
[ -0.008194498717784882, -0.010156266391277313, -0.03643056005239487, 0.012441291473805904, -0.04161582142114639, 0.018919892609119415, -0.01887708716094494, 0.04674576595425606, 0.015224483795464039, 0.02067551761865616, -0.0018873263616114855, 0.0009578775498084724, 0.022359052672982216, -0.03501371294260025, 0.004421533551067114, -0.010552648454904556, 0.006213668268173933, -0.032146576792001724, -0.017969653010368347, 0.013017705641686916, 0.011238171719014645, 0.011960302479565144, -0.060573216527700424, -0.013238416984677315, -0.014503080397844315, 0.024042988196015358, 0.028576456010341644, -0.03371800109744072, 0.052730742841959, 0.04600629583001137, -0.003407447598874569, -0.010798050090670586, 0.05681430175900459, -0.06956765800714493, -0.02919634059071541, -0.037925682961940765, 0.03961435705423355, 0.022312171757221222, -0.030506689101457596, -0.053733546286821365, -0.0010151651222258806, -0.050936464220285416, 0.06560203433036804, -0.014880582690238953, -0.019071033224463463, 0.005527040921151638, 0.005075466353446245, -0.015660591423511505, 0.044529348611831665, -0.029764359816908836, 0.018856637179851532, 0.01914980076253414, 0.019479302689433098, 0.00874552596360445, -0.004425366409122944, 0.011925650760531425, -0.01592482440173626, -0.02024836093187332, -0.01776394620537758, 0.031991805881261826, 0.03768487647175789, 0.00965206976979971, 0.014273562468588352, -0.05174956098198891, 0.023979011923074722, 0.0007080051582306623, 0.008078553713858128, -0.014545698650181293, 0.02017999440431595, 0.024391774088144302, 0.027525991201400757, -0.0023647297639399767, -0.057354941964149475, -0.021360907703638077, -0.005483793560415506, -0.008877650834619999, 0.002877494553104043, -0.0001638486428419128, -0.011768444441258907, -0.029223281890153885, -0.017368849366903305, 0.08034827560186386, 0.04067736491560936, 0.022844024002552032, -0.06286168843507767, 0.013433114625513554, -0.013481509871780872, 0.017307136207818985, 0.017290668562054634, 0.00525861419737339, 0.014790662564337254, 0.05510057136416435, -0.02731841616332531, -0.05876453220844269, 0.052996084094047546, 0.04302908852696419, -0.046837661415338516, 0.036597609519958496, -0.005657676607370377, -0.004759868606925011, 0.023823892697691917, 0.0244657751172781, 0.0032369710970669985, 0.05890040099620819, -0.023783138021826744, 0.013864507898688316, -0.005559331271797419, -0.01569248177111149, -0.03891199827194214, -0.020700907334685326, -0.02207125723361969, -0.04051874577999115, 0.02883562073111534, -0.004724391270428896, 0.008783590979874134, 0.03589987754821777, -0.011184213683009148, 0.06269795447587967, -0.04081088677048683, -0.0022921490017324686, 0.013495621271431446, -0.02201254665851593, 0.0268002450466156, -0.02805936709046364, 0.02387390285730362, -0.0198788084089756, -0.01216292567551136, 0.0353732593357563, -0.04984968528151512, 0.043192096054553986, -0.009493800811469555, -0.062228020280599594, 0.026149142533540726, 0.04407322034239769, -0.03824439272284508, 0.012662537395954132, -0.04282287508249283, 0.03095514513552189, -0.010613026097416878, -0.042734839022159576, 0.03319814056158066, 0.03215956315398216, -0.025796199217438698, 0.08851975202560425, 0.020014381036162376, -0.0009080527233891189, 0.008435358293354511, -0.014710630290210247, -0.029865872114896774, 0.036036279052495956, -0.017384648323059082, 0.02538825012743473, -0.009702447801828384, 0.02436850219964981, -0.018393471837043762, -0.013269346207380295, 0.012200774624943733, 0.013278580270707607, 0.028217939659953117, 0.019419491291046143, -0.004416317213326693, 0.013576485216617584, -0.028283515945076942, 0.056110870093107224, -0.02735465206205845, 0.05700746178627014, -0.03368162363767624, -0.021333467215299606, -0.015807438641786575, -0.03463229537010193, -0.00016278692055493593, -0.006964055355638266, -0.03930427134037018, 0.017937926575541496, 0.03140284866094589, 0.06202135980129242, 0.04719291627407074, -0.03311596438288689, 0.057627443224191666, 0.04071067273616791, -0.06668829172849655, 0.01679018884897232, -0.03195942938327789, 0.0630689263343811, 0.010996670462191105, -0.02977360412478447, -0.01954447664320469, -0.04146471247076988, -0.020245319232344627, -0.03280412778258324, -0.023501848801970482, 0.0640585646033287, -0.02997974306344986, 0.018168779090046883, 0.01918373815715313, 0.026322059333324432, -0.020440898835659027, 0.025270536541938782, -0.03500187024474144, -0.05517302826046944, -0.036218639463186264, 0.04224145784974098, -0.00479872664436698, 0.025280654430389404, -0.006376262754201889, -0.034075189381837845, 0.01341318804770708, 0.05643093213438988, -0.05380798503756523, 0.01842670701444149, 0.022895121946930885, -0.011873933486640453, -0.03483564406633377, 0.008831091225147247, -0.031707461923360825, -0.019805608317255974, -0.04496015980839729, 0.010282889939844608, -0.019955530762672424, 0.010819070041179657, 0.02352876029908657, 0.013015076518058777, 0.03980761021375656, 0.03864961117506027, 0.002124387538060546, 0.013129816390573978, -0.0020108388271182775, 0.06048091873526573, -0.021746506914496422, -0.033085428178310394, -0.04561537504196167, 0.050701893866062164, 0.030501391738653183, 0.05978241190314293, 0.045397330075502396, 0.03177362680435181, 0.013962817378342152, 0.00899230781942606, 0.0018655749736353755, 0.0006320877582766116, 0.0006321703549474478, -0.011146700009703636, 0.02809576876461506, 0.04241357371211052, -0.027079015970230103, 0.04195934161543846, 0.03609051555395126, 0.006743179634213448, -0.011426995508372784, 0.03128686547279358, -0.019303632900118828, 0.014585630036890507, 0.04440661147236824, 0.032638002187013626, 0.003953263163566589, -0.003474196884781122, 0.0295788012444973, 0.06128760799765587, -0.005244528874754906, 0.00304752797819674, -0.0021239398047327995, 0.016148140653967857, -0.01617526449263096, 0.0194285549223423, 0.04089224711060524, 0.022433480247855186, -0.014427444897592068, 0.03800467029213905, 0.0020316806621849537, -0.04741736501455307, -0.040817536413669586, -0.03854796662926674, -0.0419744998216629, -0.026580024510622025, -0.043123822659254074, -0.0045487284660339355, 0.043301451951265335, -0.029271898791193962, 0.029724346473813057, 0.0006883094320073724, -0.018098413944244385, -0.020036296918988228, -0.01396133378148079, 0.027675440534949303, 0.04387616366147995, 0.06230122596025467, -0.020645510405302048, 0.015493572689592838, 0.002502693561837077, 0.019759289920330048, -0.026770805940032005, -0.00981544703245163, -0.005861746612936258, 0.008695930242538452, 0.01963822916150093, 0.007461292669177055, -0.03402581065893173, -0.03600139915943146, -0.019075240939855576, -0.0491534061729908, 0.01432068832218647, 0.01143547985702753, -0.02034515142440796, -0.0027292189188301563, -0.059456586837768555, 0.03443616256117821, 0.008262138813734055, -0.019997449591755867, 0.04894622787833214, 0.013028645887970924, -0.00043872848618775606, 0.020137730985879898, 0.00968128815293312, 0.02960975468158722, -0.02432260476052761, 0.02481558918952942, 0.06126019358634949, 0.01909748651087284, -0.02728668600320816, -0.018344609066843987, -0.022008799016475677, 0.01120805460959673, 0.04075052589178085, -0.012640619650483131, -0.03885751962661743, 0.025650862604379654, 0.01144061516970396, -0.07206064462661743, 0.03420500084757805, -0.012595142237842083, -0.048200443387031555, -0.024225518107414246, -0.018811315298080444, 0.0226222425699234, 0.026790039613842964, 0.019667839631438255, -0.00041688483906909823, -0.005666031967848539, -0.018753785640001297, 0.0021950877271592617, 0.047619499266147614, -0.01906217820942402, 0.010447417385876179, 0.05227897688746452, -0.02015112340450287, 0.04592221602797508, 0.04836142808198929, -0.024361828342080116, -0.0076454076915979385, -0.009573779068887234, -0.027024008333683014, 0.01847130060195923, 0.04863467812538147, 0.030453119426965714, 0.010530589148402214, 0.06378547847270966, -0.005262268241494894, -0.016300994902849197, 0.014255463145673275, 0.014607902616262436, 0.022687919437885284, 0.008004304021596909, 0.01071116141974926, -0.017019445076584816, -0.035738036036491394, -0.005572788417339325, 0.03966764360666275, -0.0028184496331959963, 0.02803986333310604, -0.047657560557127, 0.03680355101823807, -0.00500973267480731, -0.02974335476756096, 0.025075698271393776, -0.06873983144760132, -0.008895017206668854, 0.0438714474439621, 0.007304120808839798, 0.018276028335094452, -0.04178955405950546, -0.0020048734731972218, -0.028085147961974144, 0.023203033953905106, 0.02576811984181404, -0.02713107503950596, 0.02442566119134426, -0.02376745082437992, -0.04248087480664253, -0.00918247178196907, -0.0472768172621727, -0.025233494117856026, -0.011537755839526653, 0.015151328407227993, -0.008023697882890701, -0.05643630027770996, -0.03439881652593613, -0.0017422675155103207, 0.0059065306559205055, 0.04665312543511391, 0.019606968387961388, 0.036505259573459625, -0.010407577268779278, 0.032144613564014435, 0.01429385133087635, -0.006901440676301718, 0.015977028757333755, -0.05031939968466759, 0.01895526982843876, 0.025590242817997932, -0.019460776820778847, -0.006965938955545425, -0.025410575792193413, -0.020399807021021843, -0.003706051502376795, -0.012984720058739185, -0.010318485088646412, -0.029885847121477127, 0.023310646414756775, 0.010762378573417664, 0.027961594983935356, -0.025500372052192688, -0.017668748274445534, -0.0023295553401112556, 0.013611877337098122, 0.015482566319406033, -0.045218147337436676, 0.02180730365216732, -0.018157530575990677, 0.053370118141174316, 0.03801983594894409, 0.014428762719035149, -0.036596983671188354, -0.035526107996702194, -0.021524574607610703, -0.034065842628479004, 0.04240570217370987, 0.06016310676932335, -0.01506384089589119, 0.002955131931230426, -0.04396956413984299, 0.0026286551728844643, 0.011900863610208035, -0.0042767091654241085, -0.020599965006113052, -0.008637520484626293, 0.002796253189444542, 0.010537175461649895, 0.045721959322690964, -0.020282914862036705, -0.0002757385082077235, 0.01696949079632759, -0.0409647598862648, 0.019285859540104866, -0.019763953983783722, -0.0347166582942009, 0.025153493508696556, 0.03198423981666565, 0.014613735489547253, 0.0045508695766329765, -0.03513743355870247, 0.01257240679115057, -0.016375640407204628, 0.05264395847916603, -0.04244811832904816, -0.019319815561175346, 0.050068121403455734, -0.025885185226798058, -0.01492619700729847, 0.053498659282922745, 0.03933822736144066, -0.010461601428687572, 0.03214796259999275, 0.025806080549955368, -0.04137960821390152, 0.025515781715512276, -0.050509024411439896, 0.0202726311981678, -0.003321232972666621, -0.02297673374414444, -0.01748640462756157, -0.05735784396529198, -0.005028489977121353, 0.015019035898149014, -0.0008395970216952264, -0.02051149122416973, -0.03422796353697777, -0.03704997897148132, 0.012927284464240074, -0.0067610167898237705, -0.0038320033345371485, 0.005417597480118275, 0.007638813462108374, 0.012628814205527306, 0.0011454347986727953, -0.018789976835250854, -0.035482361912727356, -0.0236467644572258, -0.023540062829852104, -0.00022961724607739598, 0.017052872106432915, 0.025071710348129272, -0.03961462154984474, -0.044984571635723114, 0.006703058257699013, -0.025845790281891823, 0.00788931269198656, -0.0396280400454998, 0.009631473571062088, -0.022541604936122894, -0.017997510731220245, -0.01287565566599369, 0.011382758617401123, -0.009488417766988277, -0.0002359693608013913, 0.03579920530319214, 0.015659872442483902, 0.034053508192300797, 0.013303316198289394, -0.022732039913535118, 0.03185642510652542, 0.009897901676595211, -0.04445261135697365, -0.03430670499801636, 0.023519985377788544, -0.025641070678830147, 0.02770969085395336, 0.011066842824220657, -0.009256199933588505, -0.05386362224817276, -0.0672687515616417, 0.023122292011976242, -0.029797028750181198, -0.0421975776553154, -0.06560572236776352, -0.009020154364407063, -0.018398717045783997, 0.052156515419483185, -0.037318188697099686, -0.02122914418578148, 0.003655124455690384, -0.044636476784944534, -0.0009209257550537586, -0.007348840590566397, -0.029253410175442696, -0.023089254274964333, -0.0222787968814373, -0.013235167600214481, 0.058251600712537766, -0.024820372462272644, 0.04353692755103111, -0.016614174470305443, -0.0005956944078207016, 0.022481154650449753, -0.00722768809646368, -0.0355578251183033, -0.028241058811545372, -0.007121197879314423, -0.014847916550934315, 0.01119636744260788, 0.0035408511757850647, -0.03707297518849373, 0.056037481874227524, -0.04028744623064995, -0.0031627544667571783, -0.038523782044649124, 0.01577899418771267, -0.004724704660475254, -0.0088731050491333, 0.04542488604784012, -0.022829070687294006, -0.007252526003867388, -0.042724598199129105, 0.07551822066307068, 0.047939907759428024, -0.03341437131166458, -0.030291983857750893, -0.027770251035690308, -0.056801456958055496, -0.04602128267288208, 0.01928219199180603, -0.026697635650634766, -0.010738897137343884, -0.0414985716342926, 0.01652771234512329, 0.013036105781793594, -0.009752916172146797, 0.06933027505874634, 0.07030384987592697, 0.0003887562488671392, -0.02798909693956375, -0.03538356348872185, 0.02675269916653633, 0.06287398189306259, -0.045000381767749786, -0.003774524200707674, -0.034339454025030136, -0.024856235831975937, -0.007308802101761103, -0.03643518313765526, -0.033324163407087326, -0.042739372700452805, 0.0039004599675536156, 0.055153973400592804, -0.025327028706669807, 0.048015594482421875, 0.002662048675119877, -0.07983502745628357, -0.02457902580499649, 0.03849799558520317, 0.007533164694905281, 0.0055746352300047874, 0.05192655324935913, 0.007597216870635748, -0.04170660302042961, 0.016487987712025642, 0.008681694976985455, -0.006928029004484415, -0.03489086031913757, 0.06743186712265015, -0.008496642112731934, -0.037184298038482666, 0.04705257713794708, 0.0306688379496336, -0.0871942788362503, -0.028136100620031357, -0.0020097217056900263, 0.010734045878052711, 0.011453565210103989, 0.0029635673854500055, -0.007231432944536209, -0.002604078035801649, 0.0013911856804043055, 0.02832513302564621, 0.024213671684265137, -0.01718452200293541, 0.03059430420398712, 0.015514670871198177, 0.025845032185316086, -0.04101334139704704, -0.003388054668903351, 0.008902057074010372, -0.033699214458465576, -0.04119446873664856, 0.0016037821769714355, -0.011334920302033424, 0.007800397463142872, -0.014507605694234371, 0.056489452719688416, -0.02617765963077545, -0.012263990007340908, 0.03302404657006264, -0.007579258177429438, 0.016805272549390793, 0.003497494850307703, -0.023509899154305458, 0.015964264050126076, 0.0027986776549369097, -0.054818183183670044, -0.03154224529862404, 0.010162676684558392, -0.016257958486676216, 0.010789734311401844, -0.029362034052610397, 0.013393179513514042, 0.029725925996899605, -0.012076924555003643, -0.015610887669026852, -0.049625251442193985, -0.043866146355867386, -0.05793885886669159, -0.05061421915888786, -0.022577669471502304, 0.00007938624185044318, -0.01913302205502987, 0.018556904047727585, 0.009280524216592312, -0.028529517352581024, -0.026165487244725227, 0.015108047984540462, -0.014391913078725338, 0.018005894497036934, -0.052771326154470444, 0.01724368892610073, -0.036681342869997025, -0.050071973353624344, -0.03680136054754257, 0.013638325966894627, -0.031781721860170364, 0.0006976331933401525, -0.019486168399453163, -0.0004204385040793568, 0.003522910177707672, 0.05028735473752022, 0.00968667771667242, 0.02468319982290268, -0.007832493633031845, -0.02552833966910839, 0.005554439965635538, 0.052913911640644073, 0.006061531603336334, 0.06754883378744125, -0.0008138483972288668, -0.05767383798956871, 0.02556617744266987, -0.003849803702905774, -0.03855482488870621, -0.03003324382007122, 0.0009403412695974112, 0.020421648398041725, 0.023096757009625435, -0.029781222343444824, -0.049157705157995224, 0.011567436158657074, -0.032618407160043716, -0.023123426362872124, 0.00563524616882205, 0.013203754089772701, 0.0364072285592556, 0.0385337732732296, -0.04053111374378204, 0.06423556059598923, 0.028470462188124657, 0.019432106986641884, -0.010688775219023228, 0.005546356085687876, 0.013019225560128689, -0.015031143091619015, 0.04390709474682808, 0.003954644780606031, 0.01041211187839508, -0.025776401162147522, -0.0204856488853693, 0.046254053711891174, -0.004651871509850025, 0.045148272067308426, -0.010364143177866936, -0.03383097052574158, -0.04301236942410469, -0.014126923866569996, 0.015055837109684944, 0.025393128395080566, 0.0007571589667350054, -0.014066587202250957, 0.01961486227810383, -0.012236262671649456, -0.04912814497947693, 0.0007710132049396634, -0.038092389702796936, -0.004547694232314825, 0.032751649618148804, -0.003519781632348895, -0.010469432920217514, -0.0132179856300354, -0.02664710022509098, 0.003879839088767767, -0.016194399446249008, 0.015429876744747162, -0.04083089157938957, 0.003968346863985062, -0.022692644968628883, 0.036465249955654144, -0.030033841729164124, -0.03218773752450943, -0.006852421443909407, 0.04479458928108215, -0.05246223136782646, -0.024037640541791916, 0.02246074564754963, -0.0013805815251544118, 0.022341227158904076, -0.0006025783950462937, -0.00579135213047266, 0.003297799965366721, 0.022271404042840004, 0.048054132610559464, 0.02362479642033577, 0.014245977625250816, -0.0037392249796539545, 0.048667535185813904, -0.012201828882098198, -0.024411378428339958, -0.028520971536636353, 0.032184239476919174, -0.0018494033720344305, -0.009780725464224815, -0.018546676263213158, 0.05734436213970184, 0.0414077565073967, -0.0029953671619296074, 0.05149739608168602, 0.028970206156373024, 0.051059018820524216, -0.005350343883037567, 0.01817239634692669, -0.002504425821825862, 0.043635204434394836, 0.048142582178115845, 0.029845481738448143, -0.0266184713691473, 0.03234501928091049, 0.037500735372304916, 0.032201677560806274, 0.017986148595809937, 0.02269025892019272, -0.0018589042592793703, -0.028134623542428017, -0.0016059649642556906, -0.05239066481590271, 0.014615415595471859, 0.014067333191633224, -0.00626380555331707, 0.007195565849542618, -0.009676605463027954, 0.016318747773766518, -0.02117340639233589, -0.011599883437156677, 0.0344843752682209, -0.06343536078929901, 0.015973486006259918, -0.012534561567008495, 0.01039813831448555, -0.009568176232278347, 0.04422743618488312, -0.03986910730600357, 0.039380550384521484, 0.06927969306707382, 0.01222572848200798, -0.025413308292627335, 0.05567295476794243, 0.0036940600257366896, -0.007046678103506565, -0.03518568351864815, 0.001817945740185678, 0.027254803106188774, 0.013962771743535995, -0.028702648356556892, -0.01931978389620781, -0.015844184905290604, 0.02293228730559349, -0.04929862543940544, -0.018395306542515755, 0.04979855567216873, -0.004354890435934067, -0.03288429602980614, -0.049897484481334686, 0.0519874282181263, -0.04606698825955391, -0.0016379768494516611, 0.021334463730454445, -0.0009906281484290957, -0.021023375913500786, 0.01448497548699379, 0.02516062930226326, 0.04798702895641327, 0.027524685487151146, 0.06538240611553192, -0.05848251283168793, 0.03813039883971214, 0.03245583176612854, -0.03770805150270462, -0.022182997316122055, 0.002921449253335595, -0.0006939572631381452, -0.0675361156463623, -0.008584000170230865, -0.03693361580371857, -0.016771811991930008, -0.005157616455107927, -0.02068338729441166, 0.011773291975259781, 0.05249835178256035, 0.0029121905099600554, -0.04179415479302406, 0.015015450306236744, 0.041662439703941345, -0.0422629751265049, 0.0343409925699234, 0.02297164686024189, 0.03636486828327179, -0.023142078891396523, -0.009806727059185505, -0.06658735126256943, -0.02975337579846382, 0.0013490867568179965, -0.012618371285498142, 0.05502445250749588, -0.03850953280925751, -0.019095657393336296, -0.038707662373781204, -0.035733576864004135, -0.028726918622851372, 0.024150114506483078, -0.03193346783518791, -0.05951576307415962, 0.07111416012048721, 0.036125488579273224, -0.017922071740031242, -0.02718793973326683, -0.02263752743601799, 0.0026733363047242165, 0.030066603794693947, 0.07940951734781265, -0.011261544190347195, 0.04506837949156761, 0.021799001842737198, -0.008122412487864494, 0.022944342344999313, -0.037136293947696686, 0.04375990480184555, -0.01860402524471283, -0.01695380173623562, -0.047213759273290634, 0.027739886194467545, -0.023356731981039047, -0.03750833496451378, 0.04652514308691025, 0.021363630890846252, -0.001757139922119677, -0.03015672042965889, -0.06546328216791153, -0.006233919877558947, -0.032297972589731216, -0.022704163566231728, -0.03737419843673706, 0.02667197957634926, 0.016300048679113388, -0.0237716156989336, 0.004534517414867878, -0.043432872742414474, 0.15251751244068146, 0.06079431250691414, 0.052917979657649994, 0.012775705195963383, 0.015795255079865456, 0.007035165559500456, 0.012832644395530224, -0.02622998133301735, -0.029800329357385635, -0.008343168534338474, 0.0496101938188076, -0.0062182070687413216, 0.029354698956012726, 0.02176300249993801, 0.016492851078510284, 0.020763002336025238, -0.009193245321512222, 0.023808883503079414, 0.014125372283160686, -0.04779311642050743, -0.07158838212490082, -0.005957287270575762, 0.0346745140850544, -0.011762530542910099, -0.001788102788850665, 0.022929701954126358, 0.018174126744270325, -0.057860590517520905, -0.019469711929559708, -0.030309302732348442, 0.046655550599098206, -0.02925947681069374, 0.05981816351413727, -0.010036179795861244, -0.04821835085749626, 0.04579821228981018, 0.03197241574525833, -0.04314415901899338, 0.006712848320603371, 0.0034823501482605934, -0.023519836366176605, 0.043074626475572586, 0.053742267191410065, -0.0200613122433424, 0.011189221404492855, 0.02687959559261799, -0.03634866699576378, 0.010881162248551846, 0.03412637114524841, -0.04662677273154259, 0.04842625930905342, -0.019529787823557854, 0.04162561520934105, -0.023611072450876236, -0.026626721024513245, 0.009361831471323967, 0.03730598837137222, -0.007397948298603296, -0.013564751483500004, -0.00003353516149218194, 0.038485750555992126, -0.004546917509287596, 0.008959594182670116, 0.00352577306330204, -0.021541807800531387, 0.008824965916574001, 0.029827285557985306, 0.03221842646598816, 0.011235300451517105, -0.050590019673109055, -0.0255265012383461, -0.025474362075328827, 0.008766431361436844, -0.014599615707993507, 0.05381084233522415, 0.010917844250798225, -0.04080795869231224, 0.02821061573922634, 0.026665110141038895, -0.021626582369208336, -0.02943820133805275, -0.05906590446829796, -0.02462375909090042, 0.002219017595052719, 0.05756501108407974, 0.04469235613942146, -0.03472534194588661, -0.047867000102996826, -0.044063109904527664, 0.05600618198513985, 0.046920426189899445, 0.009162282571196556, -0.028649987652897835, 0.006669675465673208, -0.007537796627730131 ]
Applicants for judicial opening announced, public comment sought Sep 21, 2016 | News | Ten attorneys residing in Johnson County have applied for the current judicial opening in Johnson County District Court. The opening is due to the upcoming retirement of the Honorable Gerald T. Elliott. Applicants are: Jason Billam, Olathe; Bradley Burke, Shawnee; Michael Fleming, Leawood; Angela Gupta, Lake Quivira; Krishnan Jayaram, Overland Park; Steven Johnson, Olathe; Rhonda Mason, Olathe; Michael McCulloch, Olathe; Clayton Norkey, Overland Park, and Vanessa Riebli, Olathe. The 10th Judicial District Judicial Nominating Commission is made up of 14 members. Seven are attorneys elected by the Kansas licensed attorneys residing in the district, and 7 are non-lawyers appointed by the Johnson County Board of County Commissioners. The Nominating Commission welcomes and encourages public input into this important process. Comments can be submitted in writing to the commission secretary, Stephen M. Howe, at the Office of the District Attorney, 5th Floor, 100 N. Kansas, Olathe, KS 66061, faxed to (913) 715-3015 or emailed to [email protected] ll comments will be forwarded to all members of the commission. Find out more information about the commission by visiting its website at http://www.jocojnc.org. Future meetings are open to the public and invite public comment. Meetings are: Sept. 23, 2016 – Meeting to Review Applications: 1 p.m. at the Johnson County Administration Building, Room 201, 111 S. Cherry St., Olathe; Oct. 14, 2016 – Interviews Beginning at 8:00 a.m. at the Johnson County Administration Building, Room 201, 111 S. Cherry St., Olathe PreviousLady Blazers volleyball place second at Baldwin NextGardner Police Department gets new radios Gardner News School districts report enrollment increases following first week of school Festival on the Trails set for next weekend Local Chamber of Commerce may lose its tax-exempt status Jags track team set two new records Legal Notice Edgerton city powered by buzzfish hosting designed by buzzfish media
[ -0.03302108868956566, 0.0034111011773347855, -0.027043098583817482, 0.014780230820178986, -0.030275858938694, -0.0069636330008506775, -0.00964316539466381, 0.03301575779914856, 0.010049556382000446, 0.046108778566122055, 0.03460276126861572, -0.04004104435443878, -0.0012205267557874322, -0.015976186841726303, -0.01204156968742609, 0.00025011374964378774, -0.043132003396749496, -0.01133135985583067, 0.009492472745478153, -0.004096196033060551, -0.018150269985198975, 0.020838558673858643, -0.043003275990486145, -0.010252486914396286, 0.0010681702988222241, 0.042488306760787964, 0.00900211837142706, -0.00809252355247736, 0.050112053751945496, 0.028158053755760193, -0.043450728058815, -0.051955901086330414, 0.03223032131791115, -0.05243496596813202, -0.013097554445266724, -0.015784544870257378, 0.05264591425657272, -0.02456257864832878, -0.01619805209338665, -0.0653420090675354, 0.013245766051113605, -0.016105905175209045, 0.03191071003675461, -0.04762530326843262, -0.031855665147304535, -0.0076061757281422615, -0.015280996449291706, -0.020139174535870552, 0.0022535258904099464, -0.0368245467543602, -0.005954828578978777, 0.00305990781635046, 0.010991564951837063, 0.018699396401643753, -0.01602458581328392, 0.025331946089863777, 0.018540477380156517, -0.01985376514494419, -0.011057690717279911, 0.0027609162498265505, 0.020792091265320778, -0.004215155728161335, 0.002342172432690859, -0.05756761133670807, 0.026165619492530823, 0.023088345304131508, -0.010023131966590881, -0.026717688888311386, 0.03288508951663971, -0.04164677858352661, -0.01598815619945526, -0.003625505603849888, -0.057771772146224976, -0.018152885138988495, 0.012926776893436909, 0.0007495308527722955, -0.013051791116595268, -0.022168003022670746, -0.0009906338527798653, 0.027527516707777977, 0.007065118290483952, 0.04348515346646309, 0.029943618923425674, 0.005319971591234207, -0.07211095839738846, 0.0014248950174078345, 0.0032187849283218384, -0.011640101671218872, 0.03965690732002258, 0.00501852435991168, -0.022146064788103104, 0.060406386852264404, 0.006521697621792555, -0.016302186995744705, 0.04934633895754814, 0.030953364446759224, -0.05916186049580574, 0.03815620392560959, 0.030842892825603485, -0.018141968175768852, 0.01355730090290308, 0.016821471974253654, 0.02265833504498005, 0.056867752224206924, -0.04110470414161682, -0.009589135646820068, -0.017846833914518356, 0.007071947678923607, 0.023964568972587585, -0.029494035989046097, 0.013649978674948215, -0.04384652525186539, 0.04661250859498978, -0.0035706465132534504, -0.03191978111863136, 0.029356300830841064, -0.009721779264509678, 0.03729378804564476, -0.003119834465906024, 0.018094567582011223, 0.029714955016970634, 0.019172469154000282, 0.054050151258707047, -0.016684673726558685, 0.02637244388461113, -0.022291284054517746, -0.03227632865309715, 0.04094918072223663, -0.03763839229941368, -0.028494173660874367, 0.0084579112008214, -0.029368873685598373, -0.005571078043431044, 0.022616658359766006, 0.01510391104966402, 0.018359879031777382, 0.019934067502617836, 0.02104775793850422, 0.00424968171864748, -0.05450001358985901, 0.03604089468717575, 0.03087209351360798, 0.011335769668221474, 0.08655445277690887, -0.018859634175896645, 0.03318839892745018, -0.004246200900524855, -0.02203536033630371, -0.023779816925525665, 0.05435967072844505, -0.024725276976823807, 0.021585684269666672, 0.0151522196829319, 0.04777019843459129, -0.019565124064683914, 0.01138918288052082, -0.016628200188279152, -0.011226079426705837, 0.006255625747144222, 0.043120548129081726, -0.027970463037490845, 0.01985444501042366, -0.011799103580415249, -0.009099980816245079, -0.01970578543841839, 0.025705374777317047, -0.037872035056352615, 0.012146476656198502, -0.005288245156407356, -0.041872430592775345, 0.023773571476340294, 0.04522525146603584, -0.0292705949395895, 0.03582839295268059, 0.002524640643969178, 0.030836867168545723, 0.05257176235318184, 0.007074994035065174, 0.041899342089891434, 0.0508296936750412, -0.007511424366384745, -0.01662694476544857, 0.00047297810669988394, 0.08402279764413834, -0.020157748833298683, 0.006440885830670595, -0.00652800127863884, -0.020981285721063614, -0.04269701987504959, -0.008528501726686954, -0.011197855696082115, 0.016607409343123436, -0.02562892623245716, 0.0123555026948452, 0.01412264071404934, -0.010920047760009766, 0.0072185383178293705, -0.006108468398451805, -0.014099474996328354, -0.046014074236154556, -0.015370962209999561, 0.047203388065099716, 0.013985066674649715, 0.056085605174303055, -0.012762945145368576, -0.031903766095638275, 0.007394689600914717, 0.0385592021048069, -0.04706206172704697, 0.014966912567615509, 0.027106216177344322, 0.026511944830417633, 0.01402751449495554, -0.007335253991186619, 0.01028073113411665, -0.005804996471852064, -0.039390016347169876, 0.06508829444646835, -0.0028043200727552176, -0.003926079720258713, 0.020880017429590225, 0.01904141902923584, 0.024090563878417015, 0.04258229583501816, -0.0010959786595776677, 0.028016304597258568, 0.02684774436056614, 0.048888612538576126, -0.012667047791182995, -0.018815621733665466, 0.009362894110381603, 0.02818494848906994, 0.026043511927127838, 0.055156778544187546, 0.018670272082090378, -0.0009721298119984567, 0.06701049953699112, 0.04704752564430237, -0.012497371062636375, 0.023956967517733574, -0.014476820826530457, 0.029887337237596512, 0.06140758842229843, 0.0349639393389225, -0.025194764137268066, 0.009962293319404125, -0.02217838168144226, -0.02279757894575596, -0.027345631271600723, 0.028775693848729134, 0.016241243109107018, 0.044500429183244705, 0.010619527660310268, 0.055682022124528885, -0.014437488280236721, 0.012122806161642075, 0.057892635464668274, 0.04482093080878258, -0.01917191408574581, -0.012051412835717201, 0.03153533115983009, -0.0013174408813938498, -0.007801820989698172, 0.01163130346685648, 0.004243066068738699, 0.031075535342097282, -0.009139487519860268, 0.02790701575577259, -0.012469268403947353, -0.043022431433200836, -0.04884154722094536, -0.03371806442737579, -0.01334567740559578, -0.02359696477651596, -0.036369018256664276, -0.003518526442348957, 0.06586292386054993, -0.038783252239227295, 0.007598575204610825, -0.029604706913232803, -0.016242755576968193, -0.014411018230021, -0.007714895065873861, 0.031243806704878807, 0.009983538649976254, 0.0648549422621727, -0.046650197356939316, 0.06170511618256569, -0.021587707102298737, 0.025926457718014717, -0.06795912981033325, -0.012891532853245735, -0.041859567165374756, 0.018543990328907967, 0.06667947769165039, -0.011161758564412594, -0.025909706950187683, -0.003606947837397456, -0.04297861084342003, -0.050917647778987885, -0.008358550257980824, -0.016328327357769012, 0.010067571885883808, -0.021700963377952576, -0.044506948441267014, 0.021963153034448624, 0.01903800293803215, -0.03022613190114498, 0.03574710339307785, 0.0424431636929512, -0.006756748538464308, 0.06408259272575378, 0.048628002405166626, -0.009206213057041168, -0.05703895539045334, 0.060468245297670364, 0.048871055245399475, 0.02884536236524582, -0.02503454126417637, -0.025639299303293228, -0.03233197703957558, -0.001154572470113635, -0.015376594848930836, -0.023933859542012215, -0.015348571352660656, 0.043283045291900635, 0.011988306418061256, -0.042565859854221344, 0.04612366482615471, -0.04849383234977722, -0.04872817173600197, -0.04353225976228714, -0.023473389446735382, -0.0065620881505310535, 0.05049453303217888, 0.0292954258620739, 0.011440927162766457, -0.003454782534390688, -0.0039949556812644005, 0.004040469415485859, 0.08007686585187912, -0.06639255583286285, -0.007220417261123657, 0.05102144554257393, 0.005990035366266966, 0.007680592127144337, 0.008015237748622894, 0.008616306819021702, -0.04748032987117767, 0.007899610325694084, -0.02350946143269539, 0.02170036919414997, 0.03267645835876465, 0.018346495926380157, -0.025903914123773575, 0.031727440655231476, -0.038082633167505264, -0.013691200874745846, 0.022960959002375603, -0.005117109045386314, 0.0028827108908444643, -0.019575228914618492, 0.02685900218784809, -0.04451006278395653, -0.04284518212080002, -0.05813496932387352, 0.018737832084298134, 0.0037564050871878862, 0.028583377599716187, -0.09614010900259018, 0.06615111231803894, -0.011332329362630844, -0.009063538163900375, 0.022010773420333862, -0.04763525724411011, -0.04087447002530098, 0.04716910794377327, 0.014267221093177795, 0.07177403569221497, -0.021411901339888573, 0.02143869549036026, -0.0012443134328350425, -0.024122733622789383, 0.03846311569213867, 0.017809344455599785, 0.012140175327658653, -0.03095185197889805, 0.015887459740042686, 0.00586702348664403, -0.004374233074486256, -0.015592741779983044, -0.0276801660656929, -0.0049038720317184925, -0.027579326182603836, -0.06523992866277695, -0.011493080295622349, 0.011503808200359344, 0.029852841049432755, 0.04810188710689545, -0.018242765218019485, 0.02629171870648861, 0.002130450215190649, 0.0054778242483735085, 0.04798927530646324, -0.044600844383239746, 0.02175169810652733, -0.0684911385178566, 0.0177229605615139, 0.0319640226662159, -0.024705110117793083, 0.02349439449608326, -0.022432707250118256, -0.0181116946041584, 0.02092646434903145, 0.028033791109919548, -0.0279434472322464, -0.024133846163749695, 0.042692504823207855, -0.001754986704327166, 0.0347110852599144, -0.041435789316892624, -0.0264112688601017, 0.004516231827437878, 0.030711235478520393, 0.029755128547549248, -0.017588194459676743, 0.019918136298656464, -0.03568939119577408, 0.0657564029097557, 0.007642968092113733, -0.004125680774450302, -0.0478425957262516, -0.011080213822424412, -0.009611310437321663, -0.016018789261579514, 0.02994311973452568, 0.039333172142505646, -0.0005365156102925539, 0.009265759028494358, -0.024846041575074196, 0.018980879336595535, 0.030176496133208275, 0.012372755445539951, -0.020858071744441986, -0.02039237506687641, -0.00021480669965967536, 0.015441370196640491, 0.047792207449674606, -0.02670399285852909, 0.008250527083873749, 0.02629939839243889, -0.02998804673552513, 0.038425058126449585, 0.0023671379312872887, -0.03262844681739807, -0.011066567152738571, 0.034278664737939835, 0.00020244362531229854, 0.015876933932304382, -0.012925094924867153, 0.020201094448566437, -0.0040303063578903675, 0.026940708979964256, -0.04872797057032585, -0.022403797134757042, 0.055883992463350296, -0.01992982253432274, 0.004833695013076067, 0.025330595672130585, 0.03309636563062668, 0.009235983714461327, 0.027246607467532158, 0.015260499902069569, -0.024159280583262444, 0.037987325340509415, -0.021197840571403503, 0.028636040166020393, -0.026766998693346977, -0.01099433470517397, 0.013072558678686619, -0.014729573391377926, 0.015205858275294304, -0.011729315854609013, 0.0059837098233401775, -0.031277354806661606, -0.04810129478573799, -0.004485876299440861, 0.018453506752848625, -0.005978132598102093, 0.012793595902621746, -0.014074420556426048, -0.0009411173523403704, -0.007100422400981188, -0.06159502640366554, -0.009369793348014355, -0.002156342612579465, -0.02417696826159954, -0.0028819162398576736, 0.010535480454564095, 0.019996166229248047, -0.010373528115451336, 0.0051187570206820965, -0.038368355482816696, 0.02200683206319809, -0.019493456929922104, -0.02293471246957779, -0.07333771139383316, 0.024636831134557724, -0.05835680291056633, 0.017828064039349556, -0.04659240320324898, 0.03535912185907364, 0.014411065727472305, 0.01672823168337345, 0.019069861620664597, 0.02346198633313179, 0.04152451083064079, 0.05772959813475609, -0.03929828852415085, 0.027663685381412506, 0.05562024936079979, -0.0446600466966629, -0.0441705547273159, 0.05119705572724342, -0.012120111845433712, 0.054690562188625336, 0.007215108256787062, -0.01319339033216238, -0.0415707565844059, -0.047791577875614166, 0.02148335985839367, -0.030514946207404137, -0.017853450030088425, -0.056765809655189514, -0.007847362197935581, 0.01834516040980816, 0.03984295204281807, 0.009496776387095451, -0.012021221220493317, -0.014358951710164547, -0.019943051040172577, 0.012856630608439445, -0.03908052667975426, -0.011785064823925495, -0.04328145831823349, -0.02130826748907566, -0.03392408788204193, 0.03170032054185867, 0.043869007378816605, 0.01657702960073948, -0.008674418553709984, 0.03157168626785278, -0.0035456910263746977, -0.02062145061790943, -0.05693957954645157, -0.044000402092933655, -0.00840670894831419, -0.01699746772646904, 0.029934076592326164, 0.010528603568673134, 0.00606714328750968, 0.041772447526454926, -0.030856043100357056, -0.005317410919815302, -0.023394180461764336, -0.011539041064679623, -0.006672607269138098, -0.036208923906087875, 0.03714723885059357, -0.00818657036870718, 0.04120267555117607, -0.022971900179982185, 0.04116443172097206, 0.01480063982307911, 0.01623394899070263, -0.021356886252760887, -0.05602077767252922, -0.021309325471520424, -0.047838080674409866, 0.01587091200053692, -0.02851708047091961, -0.03206389397382736, -0.0410955548286438, -0.025020426139235497, 0.03337359055876732, -0.03751062601804733, 0.040494728833436966, 0.05188864469528198, -0.0006685933331027627, 0.007436058949679136, -0.016812892630696297, 0.019345644861459732, 0.038655735552310944, -0.008289337158203125, -0.0009137162123806775, -0.02774738147854805, -0.017467454075813293, -0.01645650342106819, -0.045040637254714966, -0.06759174913167953, -0.05030956491827965, 0.010358711704611778, 0.061629768460989, -0.021853594109416008, 0.05990007519721985, -0.003624045755714178, -0.03307999670505524, -0.04277321323752403, 0.035741932690143585, -0.00014173628005664796, -0.0115941958501935, 0.04536418616771698, -0.014998144470155239, -0.005629826337099075, 0.033229369670152664, 0.007527545094490051, 0.0031916301231831312, -0.0344323106110096, 0.04445433244109154, -0.02668439783155918, -0.06712976843118668, 0.025935906916856766, 0.06315413862466812, -0.05142156779766083, -0.03334840014576912, 0.004814844112843275, -0.0110303470864892, -0.010682324878871441, -0.01862039417028427, -0.007345324847847223, 0.01892051100730896, -0.024627644568681717, 0.024623194709420204, 0.01459719892591238, 0.03155330568552017, 0.03341246023774147, -0.018571780994534492, 0.04492872953414917, -0.01944541558623314, 0.004848681390285492, 0.040853846818208694, -0.018243318423628807, -0.051981475204229355, -0.038087148219347, 0.0050700027495622635, 0.013868133537471294, 0.004772145766764879, 0.03903733566403389, -0.011408860795199871, 0.009000773541629314, 0.027855386957526207, -0.01995008997619152, 0.045768361538648605, -0.01919887214899063, -0.002908784430474043, 0.056561388075351715, -0.0030063509475439787, -0.05156097933650017, -0.05209433287382126, -0.025119323283433914, -0.000676192226819694, 0.03078429028391838, -0.07886692881584167, 0.013733070343732834, 0.040073905140161514, 0.011275619268417358, -0.0065149287693202496, -0.03093305416405201, -0.02017291449010372, -0.01898353546857834, -0.011135290376842022, -0.022952957078814507, -0.011479362845420837, -0.00008203477773349732, 0.0009794352808967233, -0.004816689062863588, -0.03800260275602341, 0.014639105647802353, 0.015101127326488495, -0.03021392412483692, 0.04244999960064888, -0.026249125599861145, 0.0042990511283278465, -0.042555369436740875, -0.05300769954919815, -0.03747978061437607, 0.0009301741374656558, -0.004057133104652166, 0.005143664311617613, -0.013646543957293034, 0.027256907895207405, 0.0031675719656050205, 0.03463228791952133, 0.018773933872580528, -0.01155238039791584, -0.029416518285870552, -0.034932516515254974, -0.009533753618597984, 0.01415412500500679, -0.01076476089656353, 0.0403742790222168, 0.02185625396668911, -0.004414226859807968, 0.03831513971090317, -0.006998961325734854, -0.027291465550661087, 0.030009081587195396, 0.0015603263163939118, -0.012464867904782295, 0.018040509894490242, -0.06700437515974045, -0.03885345160961151, -0.03202057257294655, -0.016776995733380318, 0.03578876703977585, -0.030044853687286377, -0.003290280932560563, -0.001533982576802373, -0.001687375595793128, -0.005920763127505779, 0.04464429244399071, -0.012542659416794777, 0.002849516924470663, 0.006528683006763458, 0.03964582830667496, 0.045261818915605545, 0.0026797803584486246, 0.02562529779970646, -0.004482655320316553, 0.010186467319726944, -0.033704791218042374, 0.013469590805470943, 0.012446200475096703, -0.038521911948919296, 0.041339240968227386, -0.03240286558866501, -0.01969471387565136, -0.052457138895988464, -0.015681026503443718, 0.01894650049507618, 0.058516547083854675, -0.005087535362690687, 0.014972052536904812, 0.04371688887476921, -0.026409855112433434, -0.007512757554650307, 0.027606647461652756, -0.0751798003911972, -0.07190219312906265, 0.050486207008361816, 0.01257551833987236, -0.004699173383414745, -0.030501920729875565, -0.04215739294886589, -0.017310388386249542, -0.003172188764438033, -0.012495644390583038, -0.018808573484420776, 0.013634923845529556, 0.013571538962423801, 0.03805440664291382, -0.014474187977612019, -0.013116859830915928, 0.004753137938678265, 0.04266106337308884, -0.06357557326555252, -0.052301183342933655, 0.009289687499403954, 0.021927818655967712, 0.041241470724344254, 0.009649310261011124, -0.003264931496232748, 0.013711406849324703, -0.008554086089134216, 0.0347110740840435, -0.0072983987629413605, -0.009798197075724602, -0.036664437502622604, 0.0026910745073109865, -0.02673749253153801, -0.0037064687348902225, -0.04287785664200783, 0.0464266799390316, -0.03741743788123131, -0.0169668048620224, -0.03484244644641876, 0.013507779687643051, 0.03699709475040436, -0.039166368544101715, 0.048162467777729034, 0.015101151540875435, -0.0050838845781981945, -0.015055711381137371, -0.0000516674954269547, -0.0050379130989313126, 0.04250350967049599, 0.06674913316965103, 0.042879682034254074, -0.01148668397217989, 0.03847187012434006, 0.057138290256261826, 0.020459724590182304, -0.02062329463660717, 0.0643153116106987, 0.022363418713212013, -0.012388589791953564, -0.014026978053152561, -0.010812765918672085, 0.03726288676261902, 0.001833009417168796, -0.00704350508749485, 0.016481872648000717, -0.04519522190093994, -0.014743190258741379, -0.020882684737443924, -0.044063422828912735, 0.05262240767478943, -0.030308451503515244, -0.026417279615998268, -0.04904427006840706, -0.003289282787591219, -0.01650100201368332, 0.05239247530698776, 0.0032332625705748796, 0.005336435977369547, 0.04396701231598854, 0.027481382712721825, 0.005141048226505518, 0.048309195786714554, 0.030601749196648598, -0.004700412508100271, -0.05813472718000412, -0.008667431771755219, 0.024711724370718002, 0.007856367155909538, -0.04971781373023987, -0.0013542133383452892, -0.01870604231953621, 0.043027613312006, -0.01720540225505829, -0.0006870885263197124, 0.02161276713013649, -0.03529047220945358, -0.052003879100084305, -0.06031313166022301, 0.022050805389881134, -0.035540275275707245, -0.020275602117180824, 0.03487464040517807, -0.011028819717466831, -0.0328795462846756, 0.05291670933365822, -0.0050314078107476234, 0.033836834132671356, 0.01748463697731495, 0.03979688510298729, 0.02400747314095497, 0.028548000380396843, 0.03555582836270332, -0.0503980778157711, 0.0008936199592426419, 0.026122702285647392, -0.004236409906297922, -0.05718664824962616, -0.04763297736644745, -0.04254147410392761, -0.04573729261755943, -0.013803926296532154, -0.00892018061131239, -0.009071890264749527, 0.01987907662987709, -0.002262021182104945, -0.06471163779497147, 0.013113494962453842, 0.017631100490689278, -0.03133225440979004, 0.006439260672777891, -0.004405902698636055, 0.05948830768465996, -0.015554046258330345, -0.04810333624482155, -0.012122057378292084, -0.017942262813448906, 0.009038370102643967, -0.04199469834566116, 0.011702867224812508, -0.026018798351287842, -0.03856571763753891, -0.03195673227310181, -0.04779331758618355, -0.010803264565765858, 0.039563897997140884, -0.04097495973110199, -0.03565488010644913, 0.01876872591674328, 0.04383796080946922, -0.0011423496762290597, 0.002453260123729706, -0.06044020876288414, 0.004133289679884911, 0.04506474733352661, 0.08781587332487106, 0.014255103655159473, 0.031286533921957016, 0.007418137509375811, 0.015163330361247063, 0.036967065185308456, -0.006349818781018257, 0.011395065113902092, -0.024892928078770638, -0.012151461094617844, -0.038685377687215805, 0.012653189711272717, -0.030899744480848312, -0.06253370642662048, -0.0018873080844059587, 0.019516950473189354, -0.011676053516566753, -0.028518415987491608, -0.06494918465614319, 0.005651622079312801, -0.039081547409296036, -0.017097145318984985, -0.018538931384682655, 0.02644430659711361, -0.011723869480192661, 0.025270232930779457, -0.007265171501785517, -0.06608659774065018, 0.136271134018898, 0.02603134699165821, 0.03765752166509628, 0.026228301227092743, -0.004951957613229752, 0.06548106670379639, 0.04482710361480713, -0.028425805270671844, -0.014869402162730694, -0.0501670278608799, 0.024369245395064354, -0.004483900498598814, 0.023374248296022415, -0.008090789429843426, -0.009254612028598785, 0.03362149000167847, -0.04108302667737007, -0.01696140505373478, 0.020221663638949394, -0.06302060931921005, -0.04804506525397301, 0.025314968079328537, 0.0073392814956605434, 0.02655004896223545, -0.02186010219156742, 0.05848291143774986, -0.0108885383233428, -0.041385240852832794, -0.008352567441761494, -0.013217185623943806, 0.027062511071562767, -0.03463423624634743, 0.025926031172275543, -0.010643640533089638, -0.027239039540290833, 0.024822229519486427, -0.01829651929438114, -0.0173526369035244, 0.022426357492804527, 0.025487737730145454, -0.010852747596800327, 0.013397547416388988, 0.039621539413928986, -0.03639792650938034, 0.026186835020780563, 0.035295311361551285, -0.038080859929323196, 0.03780655935406685, 0.05323047190904617, -0.018756164237856865, 0.03565950691699982, -0.01742083951830864, 0.022463224828243256, 0.023711534217000008, -0.01999938115477562, -0.012376418337225914, 0.025273870676755905, -0.0344381183385849, -0.031137239187955856, -0.02062349207699299, 0.04641216993331909, 0.012525004334747791, -0.03961225971579552, 0.03026510402560234, -0.045282259583473206, 0.016797855496406555, 0.05678405612707138, -0.01570657640695572, -0.02006777934730053, -0.010705151595175266, -0.032789602875709534, 0.008583171293139458, 0.00043217919301241636, -0.015753455460071564, 0.036427438259124756, 0.032553818076848984, -0.020612433552742004, 0.03752880543470383, 0.029146311804652214, -0.036229848861694336, 0.0018346046563237906, -0.019663145765662193, -0.016331031918525696, 0.014695262536406517, 0.0193116944283247, 0.017858102917671204, -0.022769227623939514, -0.026039624586701393, -0.03226561099290848, 0.06227454915642738, 0.04683781415224075, 0.01532693300396204, -0.03597341477870941, -0.022138269618153572, -0.019248150289058685 ]
Actually you may color match just about any paint. Quality paints are costly because of the many benefits they come with. Chrome paint can improve the appearance of your used car, in a manner that no other paint can. Who Else Wants to Learn About Shiplap Paint Color? Painting is among the absolute most important things that should be carried out to be able to keep the car shiny and clean. Prior to starting painting, be sure it has dried so the paint sticks effectively. Car painting isn't a cakewalk. Thus, two tone car painting actually is a good idea to revamp the expression of your car. At times, paint may be spilled accidentally over your vehicle. For the paint to stay new for a longer time, you may use a window sun blocker for this issue. Custom made car paints and themes generally produce the car seem unique, and enable you to have the design and pattern you want. For any of the aforementioned reasons, if you're thinking about how to eliminate paint from a vehicle, then some methods are given below. Simply speaking, the paint is ready to generate a number of colors when viewed from various angles. There are various types of chrome spray paints offered on the market, each providing a characteristic effect to your vehicle. Paint Color, Joanna Gaines Paint Colors Matched To Behr was posted September 13, 2016 at 9:24 pm by muzzikum.info . More over Joanna Gaines Paint Colors Matched To Behr has viewed by 4735 visitor. Paint Color, Coastal Living Paint Colors was posted December 27, 2016 at 9:41 pm by muzzikum.info . More over Coastal Living Paint Colors has viewed by 3457 visitor. Paint Color, Hgtv Fixer Upper Paint Colors was posted January 31, 2017 at 10:58 pm by muzzikum.info . More over Hgtv Fixer Upper Paint Colors has viewed by 4470 visitor. Paint Color, Joanna Gaines Favorite Paint Colors was posted April 27, 2017 at 4:41 am by muzzikum.info . More over Joanna Gaines Favorite Paint Colors has viewed by 4327 visitor. Paint Color, Shiplap Paint Color was posted October 26, 2016 at 10:59 am by muzzikum.info . More over Shiplap Paint Color has viewed by 915 visitor.
[ -0.008892214857041836, 0.007215308491140604, 0.013703348115086555, 0.012631322257220745, -0.03554998338222504, -0.014148704707622528, 0.012141109444200993, 0.02279088832437992, 0.023519374430179596, 0.0189628005027771, 0.050341423600912094, 0.006457860115915537, 0.03181251138448715, -0.04342671111226082, 0.01139893103390932, -0.004371236078441143, 0.010621760971844196, -0.00806872732937336, -0.023014498874545097, -0.005817961413413286, -0.01772191748023033, 0.003572715213522315, -0.08085741102695465, -0.015545008704066277, -0.026390183717012405, 0.026283448562026024, 0.04806304723024368, -0.011221885681152344, 0.021391848102211952, 0.025894194841384888, -0.05795644223690033, -0.03256746381521225, 0.01882881671190262, -0.047616057097911835, -0.030592387542128563, -0.03743503615260124, 0.023249994963407516, -0.037063293159008026, -0.02648298628628254, -0.04347687587141991, 0.01763349212706089, -0.04793097823858261, 0.023010428994894028, -0.049573346972465515, -0.024589497596025467, -0.0006241454393602908, -0.02413307875394821, -0.042551957070827484, 0.015118143521249294, -0.025609945878386497, 0.002071981318295002, 0.003846399486064911, 0.008560093119740486, 0.0023145689629018307, 0.024284571409225464, 0.030471118167042732, 0.005358170717954636, -0.017588960006833076, -0.026788651943206787, 0.005131321027874947, 0.011628993786871433, -0.0057010650634765625, 0.020086418837308884, -0.06927457451820374, 0.009464952163398266, 0.051459480077028275, 0.02751833386719227, 0.0022438159212470055, 0.01673397608101368, -0.010999971069395542, -0.010033691301941872, 0.007116524502635002, -0.008950057439506054, -0.03779817372560501, -0.004674585536122322, -0.018820982426404953, -0.00037446871283464134, 0.027672985568642616, -0.026782695204019547, 0.01261044479906559, 0.015035471878945827, 0.04796576127409935, 0.024282047525048256, 0.0272087249904871, -0.020442282781004906, 0.00671141454949975, -0.024137653410434723, 0.03625236451625824, 0.0010263582225888968, -0.027159642428159714, -0.04290129244327545, 0.06006506830453873, 0.00019251572666689754, -0.003056145738810301, 0.023667296394705772, 0.04039473459124565, -0.05294568091630936, 0.06333927810192108, 0.0709301307797432, 0.0006480286247096956, 0.028721414506435394, 0.022718409076333046, -0.011607718653976917, 0.053665634244680405, -0.03951633349061012, -0.01020526047796011, -0.012824136763811111, 0.0026079125236719847, -0.011410757899284363, -0.024087758734822273, -0.005579544696956873, -0.028996072709560394, 0.03766068071126938, 0.014455541968345642, -0.012183048762381077, 0.05031885206699371, -0.024638395756483078, 0.05196522921323776, -0.043135661631822586, 0.014324326999485493, 0.036447010934352875, 0.005091774743050337, 0.013778336346149445, -0.03402458503842354, 0.02109476365149021, -0.025411488488316536, -0.046394865959882736, 0.03659723326563835, -0.0558176152408123, -0.00931583158671856, 0.007845737971365452, -0.04892309010028839, 0.048765845596790314, 0.04281836375594139, -0.006655698176473379, 0.019343486055731773, -0.01862816885113716, -0.0033638174645602703, -0.007210961077362299, -0.037533555179834366, 0.05776360258460045, 0.05070238187909126, -0.022868704050779343, 0.07628209888935089, 0.0043724095448851585, 0.04483260586857796, 0.04982856661081314, 0.00347131141461432, -0.035306740552186966, 0.0059984405525028706, -0.05181428790092468, 0.03105582483112812, -0.003836803836748004, 0.021718712523579597, -0.002471534302458167, -0.008997336961328983, 0.02538696862757206, 0.0020303744822740555, 0.01919936202466488, 0.046985168009996414, -0.013358903117477894, 0.009617380797863007, 0.03268758952617645, 0.02572428062558174, -0.02985040284693241, 0.03527422621846199, -0.06357476115226746, 0.0013708616606891155, 0.001993675483390689, -0.03438045084476471, 0.033324453979730606, 0.003094303421676159, -0.0022682021372020245, 0.018687035888433456, 0.04855775833129883, 0.03574920445680618, 0.0517798475921154, -0.00369515479542315, 0.005085454322397709, 0.054280225187540054, -0.019949980080127716, -0.028751665726304054, 0.024872643873095512, 0.06994233280420303, -0.013096515089273453, -0.009033897891640663, 0.00772881368175149, -0.009543051943182945, -0.03872956335544586, -0.030907241627573967, -0.014874798245728016, 0.039426662027835846, 0.0009129580575972795, 0.04713984578847885, -0.0037246979773044586, 0.023973697796463966, 0.0010578266810625792, -0.009068288840353489, -0.029259013012051582, -0.0601939894258976, -0.0317271426320076, 0.030527610331773758, -0.03191855922341347, 0.02844666689634323, 0.019356831908226013, -0.01676134578883648, -0.005804488901048899, 0.036392517387866974, -0.047222767025232315, 0.02027812972664833, 0.03756772726774216, 0.012296956032514572, -0.004730846267193556, -0.03566470742225647, 0.017833318561315536, 0.02177317626774311, -0.010410252027213573, 0.047450270503759384, -0.03689578175544739, -0.010726885870099068, 0.05297064408659935, 0.0026651774533092976, 0.034319180995225906, 0.052353259176015854, 0.017100293189287186, -0.01285609696060419, -0.02494473196566105, 0.02994520217180252, 0.03430492430925369, -0.007153957616537809, -0.024152792990207672, 0.06233518198132515, 0.0244428887963295, 0.058643680065870285, -0.0011090609477832913, 0.02840527892112732, 0.02845553308725357, 0.021305957809090614, 0.00697370246052742, 0.01724216900765896, 0.03423212096095085, 0.014505031518638134, 0.025509271770715714, 0.005384704563766718, -0.004054805729538202, 0.016147486865520477, -0.016522100195288658, 0.009197062812745571, -0.009924925863742828, 0.0349290557205677, -0.0076640392653644085, 0.06653137505054474, 0.04447732865810394, 0.05610395222902298, -0.006072114687412977, 0.0035891302395612, 0.05143476650118828, 0.02605440467596054, 0.005744460970163345, 0.009973055683076382, -0.003580640535801649, -0.005913960747420788, 0.010445479303598404, -0.016199130564928055, 0.022972991690039635, 0.03386310487985611, -0.004487853497266769, 0.039623040705919266, -0.029871145263314247, -0.03516070172190666, -0.049970176070928574, -0.04655925929546356, -0.05211217328906059, -0.02684330940246582, -0.03998122736811638, 0.02293575555086136, 0.03291519358754158, -0.042657576501369476, 0.00024174376449082047, 0.01506818924099207, -0.016878178343176842, -0.0005232133553363383, 0.007852195762097836, 0.013416396453976631, 0.05906687676906586, 0.02832869440317154, -0.02646297588944435, 0.0068941256031394005, 0.0027919202111661434, 0.025815168395638466, -0.05122034624218941, -0.02401549182832241, 0.011068393476307392, -0.005639970768243074, -0.0015348219312727451, -0.016559742391109467, 0.009790681302547455, -0.005224599037319422, -0.05622563138604164, -0.03860143944621086, -0.014995664358139038, 0.019191479310393333, -0.0061364322900772095, -0.015261446125805378, -0.02144622430205345, 0.012529490515589714, 0.024768266826868057, -0.0354437381029129, 0.014872523956000805, 0.04069904983043671, -0.04933273047208786, 0.04770888015627861, 0.04691473767161369, 0.029017170891165733, -0.030376629903912544, 0.020827049389481544, 0.04266468062996864, 0.017863677814602852, -0.0421278141438961, -0.001075591892004013, -0.03686492145061493, 0.020747117698192596, 0.013704847544431686, 0.012675443664193153, -0.03796551376581192, 0.05110299959778786, 0.004927744623273611, -0.0569029301404953, 0.010009471327066422, -0.08685938268899918, -0.03890964388847351, -0.04395735263824463, -0.0042885723523795605, 0.038285136222839355, 0.03677189722657204, 0.007911172695457935, 0.01951219141483307, 0.014824342913925648, 0.025089455768465996, 0.0408099927008152, 0.05616814270615578, -0.04083595052361488, 0.032359663397073746, 0.045654136687517166, 0.02338261716067791, -0.0011334867449477315, 0.02738381177186966, -0.04913601651787758, -0.0026218483690172434, -0.017870046198368073, 0.011735173873603344, 0.013586113229393959, -0.006303367670625448, 0.007387207355350256, 0.013856381177902222, 0.05984443053603172, -0.024637268856167793, -0.009525089524686337, 0.0249287448823452, 0.013595566153526306, 0.015291590243577957, 0.04657716676592827, 0.002372611779719591, 0.0019272096687927842, -0.036320917308330536, -0.06790583580732346, 0.0016012178966775537, 0.016557035967707634, 0.02860894426703453, -0.02239956520497799, 0.05331971496343613, 0.000055234799219761044, -0.044119201600551605, 0.044845614582300186, -0.051340118050575256, -0.04899989813566208, 0.040635846555233, 0.021543309092521667, 0.046584829688072205, -0.044231779873371124, 0.015666576102375984, -0.016792675480246544, -0.0020591483917087317, 0.005056067835539579, -0.006720715202391148, 0.03033885732293129, 0.00892029982060194, -0.01512234564870596, -0.030477162450551987, -0.03137759864330292, -0.00890524685382843, -0.01265682466328144, 0.021622462198138237, -0.0419333316385746, -0.08273028582334518, -0.035775020718574524, 0.005024959333240986, -0.0034621201921254396, 0.03291481360793114, 0.01684705726802349, 0.010507087223231792, -0.020698823034763336, -0.014214483089745045, -0.02825840376317501, -0.04850894212722778, 0.017403922975063324, -0.01638730987906456, 0.045286454260349274, 0.0035927288699895144, -0.0543622262775898, -0.02538491040468216, -0.032992202788591385, -0.03975388780236244, 0.06025449186563492, 0.01307634823024273, -0.022780127823352814, -0.03632911667227745, 0.03711166977882385, -0.02617686800658703, 0.0037663127295672894, -0.03369881212711334, -0.009111981838941574, -0.01927763596177101, 0.03489818051457405, 0.034435030072927475, -0.05504899099469185, 0.01659526489675045, -0.016882145777344704, 0.01583006978034973, 0.04184841737151146, 0.0022985879331827164, -0.022979499772191048, 0.015676643699407578, -0.03062296472489834, -0.0410391166806221, 0.003265250474214554, 0.04570600017905235, -0.04607924446463585, 0.02631695568561554, -0.0362587608397007, 0.012720256112515926, 0.039774443954229355, 0.018559837713837624, 0.024014752358198166, 0.007107451092451811, 0.03723159059882164, -0.005352926906198263, 0.02900189906358719, -0.008975167758762836, 0.004990798886865377, 0.008472231216728687, -0.07210086286067963, 0.016067029908299446, -0.008316641673445702, 0.01482044905424118, 0.04232390597462654, 0.0419260673224926, 0.020033637061715126, 0.04261287301778793, 0.0011202293680980802, 0.000027079453502665274, -0.023541133850812912, 0.04192280396819115, -0.03049950860440731, -0.02735421061515808, 0.03097403235733509, -0.006525224074721336, -0.027312448248267174, 0.02944553643465042, 0.042910102754831314, -0.019724184647202492, 0.046493519097566605, 0.02769329771399498, -0.051795147359371185, 0.023942740634083748, -0.041382286697626114, 0.006663949228823185, -0.022471493110060692, -0.016958288848400116, 0.024102941155433655, -0.05776924639940262, 0.03668908402323723, -0.0030763265676796436, -0.03601984307169914, -0.04934055730700493, -0.057094790041446686, -0.034087762236595154, -0.007845431566238403, -0.04348186030983925, -0.005385960917919874, 0.006232813466340303, -0.029478920623660088, -0.012751713395118713, -0.03691518306732178, 0.03410766273736954, -0.007863068953156471, -0.022133881226181984, 0.015034088864922523, -0.005681007169187069, -0.01148971077054739, -0.0028735187370330095, 0.033865246921777725, -0.032324109226465225, -0.01371980831027031, -0.029203226789832115, -0.01667845994234085, -0.030302373692393303, 0.02124154008924961, -0.04495326802134514, -0.015897266566753387, -0.009510443545877934, 0.030832039192318916, -0.02738284133374691, 0.02313614822924137, 0.0652967244386673, -0.008341696113348007, -0.0028523935470730066, -0.007506121881306171, -0.03937125578522682, 0.04721734672784805, -0.02368437498807907, -0.035659901797771454, -0.013733115047216415, 0.01295536570250988, 0.010071683675050735, 0.06611577421426773, 0.026734478771686554, -0.021165192127227783, -0.049580786377191544, -0.037598054856061935, -0.007199753075838089, -0.025169016793370247, -0.019956331700086594, -0.036524686962366104, -0.009643361903727055, 0.0036724822130054235, 0.06614536792039871, 0.0075631169602274895, -0.02182307094335556, 0.014034938998520374, -0.03646654635667801, 0.003828517161309719, -0.04111389443278313, -0.03875631093978882, -0.022476626560091972, -0.027301223948597908, -0.008564285933971405, 0.05593084543943405, 0.024060193449258804, 0.02163701318204403, -0.026997026056051254, 0.014182084240019321, -0.004497619345784187, -0.05341150611639023, -0.01943831890821457, -0.0654703751206398, -0.012798281386494637, 0.01313453447073698, 0.005435027647763491, 0.006465505342930555, -0.049675799906253815, 0.04921899363398552, -0.04936378449201584, 0.03263692557811737, -0.01981881819665432, 0.02312089502811432, -0.021140357479453087, -0.018007837235927582, 0.056574102491140366, -0.027297480031847954, -0.026656996458768845, -0.026891300454735756, 0.027786877006292343, 0.025345560163259506, -0.005607184488326311, -0.014654943719506264, -0.052761226892471313, -0.03572167456150055, -0.06618105620145798, 0.040991928428411484, -0.03616569563746452, 0.00009433156083105132, -0.06199532747268677, -0.006956395693123341, 0.037613555788993835, -0.006079607177525759, 0.01160117145627737, 0.05862250179052353, 0.0020643959287554026, -0.023914866149425507, -0.03347982466220856, 0.004921591840684414, 0.062183380126953125, -0.044777534902095795, -0.02270401082932949, -0.0013371461536735296, -0.018107334151864052, -0.0033808581065386534, -0.06060447916388512, -0.06259100139141083, -0.011826070956885815, -0.02994803711771965, 0.06380599737167358, -0.0012306161224842072, 0.024498963728547096, -0.006083667743951082, -0.048160575330257416, -0.03570215031504631, 0.0404876247048378, 0.03909855708479881, 0.007199849933385849, 0.027254914864897728, 0.0012224821839481592, -0.018453164026141167, 0.02515212632715702, 0.004383194260299206, -0.04323599115014076, -0.04019838944077492, 0.08230909705162048, 0.00200535636395216, -0.048957157880067825, 0.03789542615413666, 0.046698737889528275, -0.05692310258746147, -0.05276035517454147, -0.004233004990965128, 0.015038046054542065, 0.010792036540806293, 0.002005301881581545, -0.011406008154153824, -0.013773148879408836, 0.00231044995598495, -0.01587635837495327, 0.03072419948875904, -0.027234526351094246, 0.012713982723653316, 0.006159530021250248, 0.050668906420469284, -0.03873777389526367, -0.008741174824535847, 0.033767472952604294, 0.020704852417111397, -0.021535219624638557, -0.026771318167448044, -0.01241704449057579, 0.003319868352264166, 0.011942067183554173, 0.05221174284815788, -0.017811525613069534, -0.02938609942793846, -0.01278168149292469, -0.004636798519641161, 0.03149857372045517, 0.005176964215934277, -0.020088721066713333, 0.011367459781467915, -0.04787834361195564, -0.06612031906843185, -0.0577533058822155, 0.022266697138547897, 0.016869649291038513, 0.0201975479722023, -0.03951409459114075, -0.001870041131041944, 0.014115226455032825, -0.005745350383222103, -0.0007049451232887805, -0.06771859526634216, -0.049781568348407745, -0.05078419670462608, -0.0668717697262764, -0.014000368304550648, -0.0324508398771286, 0.008113319985568523, 0.011308940127491951, 0.027125269174575806, -0.04062175005674362, 0.012945677153766155, 0.04708482697606087, -0.021807463839650154, -0.0030416722875088453, -0.029621852561831474, 0.04560338333249092, -0.04283026605844498, -0.027219075709581375, -0.03927338495850563, 0.00020620605209842324, -0.014503508806228638, 0.011845375411212444, -0.03691289573907852, 0.005569933447986841, 0.0012512169778347015, -0.0042314534075558186, -0.02423369698226452, 0.028527572751045227, -0.010493414476513863, -0.04501871392130852, -0.009156693704426289, 0.02120652236044407, -0.02435537986457348, 0.03033577837049961, 0.018463432788848877, -0.07494467496871948, 0.04052026942372322, 0.010644486173987389, -0.005438218358904123, -0.01864033006131649, -0.015099435113370419, 0.0033179973252117634, 0.02528611198067665, -0.034705426543951035, -0.04456834867596626, -0.019594978541135788, -0.046141285449266434, 0.029047824442386627, -0.003193233860656619, -0.007343186531215906, 0.002179381437599659, -0.030572514981031418, -0.00041894707828760147, 0.03501634672284126, 0.0011590680805966258, 0.0458897240459919, -0.005370516330003738, 0.00806603953242302, 0.02481769025325775, 0.008467471227049828, 0.00908659677952528, 0.027486193925142288, 0.035545479506254196, 0.0033377772197127342, 0.024432843551039696, 0.03128843754529953, -0.011712957173585892, 0.017438560724258423, -0.0340447723865509, -0.021606523543596268, -0.06081193685531616, -0.02219710685312748, -0.019799264147877693, 0.029737675562500954, 0.042885877192020416, -0.009410981088876724, 0.030369330197572708, -0.027301104739308357, -0.029288630932569504, 0.013817338272929192, -0.04208410158753395, -0.026451220735907555, 0.028541505336761475, -0.010389195755124092, -0.012466751970350742, 0.006645749788731337, -0.030849076807498932, -0.0022350861690938473, 0.011026271618902683, -0.002489941893145442, -0.008518088608980179, 0.04149862751364708, -0.02494301088154316, 0.015587247908115387, 0.0024947132915258408, 0.0043515427969396114, 0.025793278589844704, -0.005724530667066574, -0.04410211741924286, -0.05360496789216995, 0.03417477011680603, 0.030329205095767975, -0.020901719108223915, -0.03399086743593216, -0.012906884774565697, 0.015848170965909958, -0.027319245040416718, 0.013975976034998894, -0.019406994804739952, 0.03715964034199715, -0.003378137480467558, 0.032766856253147125, -0.008232071995735168, 0.002831819700077176, -0.024898195639252663, 0.03824178874492645, 0.01895827241241932, -0.05246049165725708, 0.006347488611936569, 0.018547704443335533, 0.057217538356781006, -0.00772398104891181, 0.04773571714758873, 0.032817188650369644, 0.03856435418128967, -0.023747112601995468, 0.02113625779747963, -0.0033115209080278873, 0.008020441047847271, 0.02623654529452324, 0.0493566133081913, 0.012588986195623875, 0.011351914145052433, 0.07336852699518204, -0.00042185629718005657, 0.042442310601472855, -0.0023747431114315987, -0.002227299613878131, -0.01918262429535389, -0.008135433308780193, -0.000460926559753716, 0.014011050574481487, 0.017976291477680206, 0.0012908362550660968, -0.003571185516193509, -0.025620855391025543, -0.02500142902135849, 0.011193057522177696, -0.029061339795589447, 0.02342561073601246, -0.01012679748237133, -0.015824567526578903, 0.009365353733301163, -0.00826188176870346, -0.011069937609136105, 0.04159914329648018, 0.006046401336789131, -0.009540215134620667, 0.03510646894574165, 0.023137865588068962, -0.02278239279985428, 0.040279682725667953, 0.01657995767891407, 0.02002924680709839, -0.03698935732245445, 0.020749295130372047, 0.03268851339817047, -0.026932500302791595, -0.019525161013007164, 0.0192898940294981, -0.04264772683382034, 0.05719117075204849, -0.012659598141908646, -0.019650204107165337, 0.035123180598020554, -0.032885707914829254, -0.017188291996717453, -0.04889703541994095, 0.041673801839351654, -0.052973609417676926, 0.0040970356203615665, 0.0399772934615612, 0.01734740473330021, -0.03882937878370285, 0.011699730530381203, -0.004609725903719664, 0.03659794107079506, 0.03225557878613472, 0.055954813957214355, -0.03767329454421997, 0.05702373757958412, 0.04246297478675842, -0.051944393664598465, 0.002118342323228717, 0.011077058501541615, -0.013109062798321247, -0.023335861042141914, 0.02342836558818817, -0.0504034049808979, -0.002448922023177147, -0.01415290217846632, -0.010152779519557953, -0.006613379810005426, 0.04283342882990837, -0.02809080295264721, -0.05014285445213318, -0.016044173389673233, 0.0423600971698761, -0.0492006316781044, 0.034629955887794495, 0.024974623695015907, 0.02851085364818573, 0.03276921063661575, -0.015468216501176357, -0.07021467387676239, 0.02351200580596924, 0.03176504001021385, -0.039264678955078125, 0.04388466104865074, -0.015502898953855038, -0.03524938225746155, -0.011370343156158924, -0.025301018729805946, -0.01840573363006115, 0.01391612272709608, -0.029475288465619087, -0.05524018034338951, 0.023733872920274734, 0.021953796967864037, 0.016276666894555092, 0.025128299370408058, 0.003237104509025812, -0.003261290956288576, 0.046716123819351196, 0.040483079850673676, -0.013669945299625397, 0.04261346906423569, 0.038664355874061584, -0.02971739135682583, 0.0202779620885849, 0.004155877511948347, -0.001379657885991037, -0.009185743518173695, -0.021698756143450737, 0.00885832216590643, 0.03679414093494415, -0.03324311599135399, -0.0478300116956234, 0.028104979544878006, 0.02104969695210457, 0.004084424115717411, -0.02581195905804634, -0.08397689461708069, 0.023408982902765274, -0.028811445459723473, -0.019464755430817604, -0.04036048799753189, 0.017987295985221863, 0.008828960359096527, -0.028058772906661034, -0.013593567535281181, -0.06140798702836037, 0.16081450879573822, 0.02822616510093212, 0.016113629564642906, 0.005891832523047924, 0.0007728578057140112, 0.036691099405288696, 0.019606053829193115, -0.03134571760892868, 0.0025686179287731647, -0.0010650829644873738, 0.020730305463075638, -0.02991032600402832, 0.02993970923125744, 0.0016748833004385233, 0.035513535141944885, 0.04048225283622742, -0.05661429092288017, 0.02074454538524151, 0.038717105984687805, -0.04081002622842789, 0.00001688272095634602, 0.03592460975050926, 0.05909372493624687, 0.025748789310455322, -0.00877567008137703, -0.008302144706249237, 0.019480044022202492, -0.06170005723834038, -0.010195528157055378, -0.031181957572698593, 0.04827887564897537, -0.02307688631117344, 0.05066951736807823, -0.026737861335277557, -0.03994802013039589, 0.06448249518871307, -0.004074959550052881, -0.040920764207839966, -0.008818574249744415, 0.002501538023352623, 0.0018311645835638046, 0.007091186475008726, 0.031408656388521194, -0.030804388225078583, 0.0036089906934648752, 0.014496325515210629, -0.06163748726248741, 0.011062663979828358, 0.00019397160212974995, -0.02966526709496975, 0.07023687660694122, -0.055955711752176285, 0.04229000583291054, 0.006491482257843018, -0.005644282326102257, 0.0008416022756136954, -0.016660546883940697, -0.04094715788960457, 0.011078943498432636, -0.00539003312587738, 0.027142435312271118, 0.008633619174361229, -0.01775607466697693, 0.016050169244408607, -0.022604988887906075, -0.03055611439049244, 0.005534146912395954, 0.006275409832596779, 0.005657735746353865, -0.027945823967456818, -0.00949383806437254, -0.002759251743555069, 0.03834572434425354, -0.006405556108802557, 0.03680951148271561, 0.01662568934261799, -0.017577290534973145, 0.048600126057863235, 0.012925655581057072, 0.002901368075981736, -0.029846858233213425, -0.04144307225942612, -0.02518737129867077, -0.016964759677648544, 0.022367723286151886, 0.02142937108874321, -0.05436139181256294, -0.046468671411275864, -0.02278454229235649, 0.07653972506523132, 0.03792952746152878, 0.022763974964618683, 0.0030779805965721607, 0.0068328604102134705, -0.03763850778341293 ]
Scott McKain recently spoke at our Duro-last Sales Seminar in Tucson, Arizona on the subject of "The Collapse of Distinction." I would be failing my readers to mention his keypoints in my blog as his presentation was outstanding. Most heartwarming was his story of his parent's grocery store in rural southern Indiana, not far from where I grew up in Indianapolis. When a major grocer moved in Scott's parents felt threatened but didn't budge. Good customer service and a connection tot he local community helped them stay in business. People liked them. They were different. What makes our business different? The more our customer knows us the more they take us for granted. We must romance our potential clients like we romanced our spouse. Commit to make a difference. There are four cornerstones to distinction. Clarity of message. People must recognize in a brutally brief session what makes us different from our competition. Creativity. Thinking outside the box and developing our difference. Third is communication. How we tell our story is as important as what our story is. Lastly s experience. What is the transaction like for our customer? Create the ultimate customer experience. Everyone hurts – don't miss the good stuff. If you get a chance visit Scott McKain online and find out where he will be next. This guy is an awesome speakers, and I'm not just saying that because he's my fellow Hoosier!
[ -0.008081601932644844, 0.007939636707305908, -0.028550568968057632, 0.01978619582951069, 0.002480237977579236, -0.009373308159410954, 0.006928499788045883, 0.023742232471704483, 0.010226366110146046, 0.017638694494962692, 0.02838503010571003, 0.007333233952522278, 0.028756607323884964, -0.030099662020802498, -0.019952844828367233, -0.024491049349308014, -0.022734863683581352, -0.005949414800852537, -0.012197263538837433, -0.0010836671572178602, 0.009309928864240646, 0.002628519432619214, -0.05609354004263878, -0.014028581790626049, -0.012719281017780304, 0.02035539038479328, 0.003868737956508994, -0.0052131530828773975, 0.07119675725698471, 0.05111462622880936, -0.041062451899051666, -0.043697867542505264, 0.01850869134068489, -0.06048684939742088, -0.021657025441527367, -0.02641562558710575, 0.02905888669192791, -0.0563778281211853, -0.02497878298163414, -0.030934134498238564, -0.009359150193631649, -0.026319729164242744, 0.056005388498306274, -0.042561545968055725, -0.060894519090652466, -0.004251733887940645, 0.008304585702717304, -0.05967836454510689, 0.019999420270323753, -0.026863668113946915, 0.036285463720560074, -0.020014571025967598, -0.00023523575509898365, 0.010923399589955807, 0.028989581391215324, 0.003557990537956357, 0.005181469023227692, 0.0077197253704071045, 0.017106207087635994, 0.024991843849420547, 0.004674419295042753, 0.012497163377702236, 0.028444254770874977, -0.07334762066602707, 0.041287101805210114, 0.006685344967991114, -0.016746761277318, -0.027514848858118057, 0.019321052357554436, -0.015596338547766209, -0.018552642315626144, -0.0028139683417975903, -0.017146512866020203, -0.02076747454702854, -0.006989736575633287, -0.0064276703633368015, -0.00471905805170536, -0.010229729115962982, -0.019521439447999, -0.018260879442095757, 0.04494989290833473, 0.037957824766635895, 0.015705613419413567, 0.02526433952152729, -0.06520247459411621, 0.005329100880771875, -0.00815882533788681, 0.03983855992555618, 0.02700119838118553, 0.011392731219530106, 0.019624026492238045, 0.0455893874168396, 0.0081730205565691, -0.013831608928740025, 0.05913829058408737, 0.03488840535283089, -0.034004636108875275, 0.038689594715833664, 0.005434265825897455, -0.005353176966309547, 0.028080161660909653, 0.039957959204912186, -0.0058466121554374695, 0.02906360663473606, -0.06833355873823166, 0.005848421715199947, 0.013616939075291157, -0.011190121993422508, 0.029686618596315384, -0.03568657115101814, 0.01474943570792675, -0.03486335650086403, 0.02571055479347706, -0.01745731383562088, -0.015298409387469292, 0.06272446364164352, -0.00773968081921339, 0.062159497290849686, -0.030001018196344376, 0.041448868811130524, 0.033681273460388184, 0.006456135306507349, 0.027193836867809296, -0.02406310848891735, 0.038519106805324554, -0.04487519711256027, -0.008957101963460445, 0.036989953368902206, -0.02637137472629547, -0.005525457672774792, 0.02387472614645958, -0.027921894565224648, -0.021039027720689774, 0.032450031489133835, 0.01012744102627039, -0.0025191637687385082, 0.0029050500597804785, 0.02153756469488144, -0.018412509933114052, -0.05560808256268501, 0.0421094074845314, 0.04419798031449318, 0.013711784966289997, 0.10214518755674362, 0.010110529139637947, 0.012074782513082027, -0.01795945316553116, 0.00006458917050622404, -0.026657480746507645, 0.025647666305303574, -0.0336112417280674, 0.052758656442165375, -0.004143541678786278, -0.0038835364393889904, -0.023170528933405876, -0.02673416957259178, 0.007337519433349371, -0.0024634578730911016, -0.011133714579045773, 0.0206913985311985, -0.025935014709830284, 0.02725338377058506, 0.009446375072002411, 0.041490066796541214, -0.011890052817761898, 0.03759792819619179, -0.027822863310575485, -0.03352716937661171, -0.02104153484106064, -0.02690432034432888, 0.024695970118045807, 0.010868677869439125, -0.021775010973215103, 0.014445043168962002, 0.007680689450353384, 0.05575227737426758, 0.03670283406972885, -0.002691418631002307, 0.0464404821395874, 0.04372923821210861, -0.05155262351036072, -0.029657041653990746, 0.02610722929239273, 0.049721360206604004, 0.010003555566072464, 0.002520799869671464, -0.002739965682849288, -0.03812326490879059, -0.05185364559292793, -0.01687898300588131, -0.004258882720023394, 0.03698264807462692, -0.027336617931723595, 0.025783969089388847, 0.006835209671407938, 0.02185920998454094, -0.018019899725914, 0.003641912480816245, 0.0037776255048811436, -0.04871164634823799, -0.009986933320760727, 0.06816789507865906, -0.026663143187761307, 0.04884903132915497, -0.011285672895610332, -0.041055191308259964, 0.029186604544520378, 0.07056518644094467, -0.034487295895814896, -0.005244790576398373, 0.007836351171135902, -0.008316397666931152, -0.0160477627068758, -0.03280067816376686, 0.014771568588912487, -0.023148953914642334, -0.015226067043840885, 0.054636891931295395, 0.00044854337465949357, -0.014160184189677238, 0.008634454570710659, 0.017247263342142105, 0.026724083349108696, 0.010529894381761551, 0.0017080880934372544, -0.02662961371243, 0.0333840511739254, 0.045396458357572556, -0.05721502751111984, -0.039413854479789734, 0.01853041909635067, 0.0535920187830925, 0.015071605332195759, 0.04682517796754837, 0.034933414310216904, 0.03688180819153786, 0.046073637902736664, 0.050226714462041855, -0.011819509789347649, 0.013700251467525959, 0.03029520995914936, -0.029163293540477753, 0.03572126850485802, 0.006645294837653637, -0.051823414862155914, 0.011831145733594894, 0.00370677444152534, 0.010155212134122849, -0.012232348322868347, 0.05410236492753029, -0.01569422334432602, 0.023206977173686028, 0.039701610803604126, 0.04272868484258652, -0.062345895916223526, 0.036908093839883804, 0.02421669475734234, 0.0681312158703804, -0.03170804679393768, 0.0012513227993622422, 0.0198074784129858, 0.028858575969934464, -0.02742459625005722, 0.0009005218744277954, 0.03160941228270531, -0.009678234346210957, 0.008458667434751987, 0.0342392735183239, -0.017858603969216347, -0.040703948587179184, -0.038032811135053635, -0.06586907058954239, -0.05139477178454399, -0.012008440680801868, -0.0479465015232563, 0.020434945821762085, 0.03151934593915939, -0.03069126233458519, 0.031787075102329254, -0.0055723171681165695, -0.0010524383978918195, -0.02103244885802269, -0.02073664776980877, 0.04429232329130173, 0.02345622144639492, 0.03238021954894066, -0.009696932509541512, 0.05137240141630173, -0.016198579221963882, 0.04045403003692627, -0.024872103706002235, -0.009771978482604027, -0.02139028161764145, -0.028334062546491623, 0.037716127932071686, 0.0009266429697163403, -0.008775833994150162, -0.017287995666265488, -0.05887165293097496, -0.0566483810544014, 0.02042330801486969, -0.002677977317944169, -0.022264134138822556, 0.0046204389072954655, -0.037405237555503845, 0.04192277416586876, 0.018770091235637665, -0.04759375751018524, 0.051190610975027084, 0.056932199746370316, -0.0316447839140892, 0.051771875470876694, 0.01624153181910515, 0.010802486911416054, -0.06601022183895111, 0.06474699825048447, 0.04324241727590561, 0.02475801110267639, -0.0005815787008032203, -0.019211702048778534, -0.013455091044306755, 0.02429783158004284, 0.037323836237192154, 0.004906347021460533, -0.022035807371139526, 0.05005256459116936, 0.026751577854156494, -0.08359270542860031, 0.030086303129792213, -0.055866990238428116, -0.007346370257437229, -0.029393965378403664, -0.05584748461842537, -0.015227632597088814, 0.04540904611349106, 0.0017947341548278928, 0.0021231628488749266, -0.04421572387218475, 0.022867819294333458, 0.027934834361076355, 0.027290211990475655, -0.059148941189050674, 0.0012878928100690246, 0.06391286104917526, 0.023323623463511467, 0.022968418896198273, -0.013545636087656021, -0.025053707882761955, 0.02136310376226902, 0.003938709851354361, 0.009538265876471996, 0.018581749871373177, 0.029215745627880096, -0.01277317013591528, 0.05058138817548752, 0.03048495016992092, -0.026584817096590996, -0.013539474457502365, 0.012699860148131847, 0.023954350501298904, 0.003960376605391502, 0.013123778626322746, 0.0035687850322574377, -0.03424130380153656, -0.04324888065457344, -0.033615052700042725, -0.003457815619185567, -0.008045567199587822, 0.03194127976894379, -0.06612683832645416, 0.05078701674938202, 0.028665756806731224, -0.028345735743641853, 0.07272046059370041, -0.06607631593942642, 0.0044556837528944016, 0.04282518848776817, -0.015604513697326183, 0.025427524000406265, -0.024096380919218063, 0.018591251224279404, -0.0033369839657098055, 0.01925092749297619, 0.043657027184963226, -0.013038339093327522, 0.017535068094730377, -0.03383578732609749, -0.0048445905558764935, 0.012867783196270466, -0.017489060759544373, -0.00876174122095108, -0.03039119392633438, -0.019974777474999428, 0.007329923566430807, -0.0523616299033165, -0.031198332086205482, 0.05084256827831268, 0.007160417269915342, 0.03158869221806526, -0.03047349862754345, 0.018615426495671272, 0.02070469781756401, -0.007997537031769753, 0.031946562230587006, -0.0190979465842247, 0.03190650790929794, -0.055351369082927704, 0.018195586279034615, 0.01792767643928528, -0.01921803317964077, -0.03226809203624725, -0.02964130975306034, -0.024775920435786247, 0.025041382759809494, 0.016716063022613525, -0.012545517645776272, -0.004599598236382008, 0.003153563244268298, 0.013356230221688747, 0.03182145953178406, -0.047402989119291306, -0.008074939250946045, 0.013411850668489933, -0.001248353160917759, 0.024035010486841202, -0.06452547758817673, 0.0000371760361304041, -0.008836607448756695, 0.058480702340602875, 0.035750214010477066, -0.009908453561365604, -0.05603202432394028, -0.008464789018034935, -0.024406103417277336, -0.032156266272068024, 0.04669887572526932, 0.042817942798137665, 0.0100276879966259, 0.030022356659173965, -0.03296004235744476, 0.019687118008732796, 0.04323415830731392, -0.02845258265733719, -0.026077013462781906, -0.017213966697454453, 0.03503982722759247, -0.01736338436603546, 0.0439264252781868, -0.020573724061250687, -0.0314318984746933, 0.001287351711653173, -0.06689003854990005, 0.007125099655240774, -0.01911904290318489, -0.020678002387285233, 0.005283739417791367, 0.011196750216186047, 0.020132822915911674, 0.04407607391476631, -0.021395152434706688, 0.03937477245926857, -0.02729484997689724, 0.01434886734932661, -0.04862188175320625, -0.036725085228681564, 0.03430880978703499, -0.016546843573451042, -0.051997110247612, 0.008450493216514587, 0.04394921660423279, -0.0007036345195956528, 0.007532484829425812, 0.010286202654242516, -0.03879006206989288, 0.039524052292108536, -0.05682413652539253, 0.0011519064428284764, -0.016706211492419243, -0.026025546714663506, 0.009700790978968143, -0.03223304823040962, 0.023142589256167412, 0.0233447328209877, -0.04453016817569733, -0.06639763712882996, -0.07058729976415634, -0.04321014881134033, -0.0078864311799407, -0.0057228971272706985, 0.0009720676462166011, 0.013253482058644295, 0.005200016777962446, -0.04158996418118477, -0.03674349933862686, 0.014828164130449295, -0.007334474008530378, 0.01358345802873373, 0.023482030257582664, 0.021946098655462265, 0.012659844011068344, 0.01853140816092491, -0.018077390268445015, -0.017732195556163788, -0.005146819166839123, -0.0009621461504139006, -0.030497213825583458, -0.02944866195321083, -0.007425514981150627, -0.013150687329471111, 0.006693913601338863, -0.0060342648066580296, 0.0024584385100752115, 0.004014088772237301, 0.04973779618740082, 0.004168602637946606, 0.011562482453882694, -0.014171973802149296, 0.04432157427072525, -0.052001409232616425, 0.04644165188074112, 0.01858689822256565, -0.03732426092028618, -0.03569731116294861, 0.04640961438417435, -0.003791158553212881, 0.0474172905087471, -0.014669504016637802, 0.0072590624913573265, -0.01795024797320366, -0.0701293796300888, 0.008639843203127384, -0.023076990619301796, -0.022483428940176964, -0.03457644581794739, -0.009266659617424011, 0.018527299165725708, 0.03839969262480736, 0.014524031430482864, 0.003998244181275368, -0.0034682468976825476, -0.03918205201625824, -0.001787941437214613, -0.03336165100336075, -0.029980488121509552, -0.019722169265151024, 0.013969766907393932, -0.008898950181901455, 0.061264846473932266, -0.014906340278685093, -0.011813687160611153, 0.0022521771024912596, 0.014772837981581688, 0.04434288293123245, -0.014307302422821522, -0.046145908534526825, -0.05076492205262184, -0.03916625306010246, 0.0034709484316408634, 0.011989344842731953, 0.0015317978104576468, -0.020606236532330513, 0.04624300077557564, -0.043515533208847046, 0.005515049211680889, -0.02479388378560543, -0.012813274748623371, -0.003952899482101202, -0.024234814569354057, 0.0553925596177578, -0.02061929553747177, -0.03219769150018692, -0.047446753829717636, 0.02564399503171444, 0.05286531150341034, -0.013044820167124271, -0.05777302756905556, -0.031167561188340187, -0.060141026973724365, -0.023970771580934525, 0.03730316087603569, -0.026780303567647934, -0.04100625589489937, -0.036092497408390045, -0.009973019361495972, 0.03333865851163864, -0.018879711627960205, 0.04164769873023033, 0.040626462548971176, 0.00970492698252201, -0.002919910941272974, -0.013866244815289974, 0.01972106844186783, 0.037388063967227936, -0.0033795649651437998, -0.015231662429869175, -0.0174216628074646, -0.03945383056998253, -0.03341410309076309, -0.027641789987683296, -0.030944297090172768, -0.004946836736053228, -0.013370410539209843, 0.06430873274803162, -0.011654690839350224, 0.06661830842494965, -0.007951677776873112, -0.05860837548971176, -0.02468525618314743, 0.045769330114126205, -0.004893600475043058, 0.0031091049313545227, 0.05990321934223175, -0.01377858780324459, -0.02450908161699772, 0.0013347159838303924, -0.02512114681303501, 0.0028945498634129763, 0.00029681171872653067, 0.050290293991565704, 0.013480774126946926, -0.035017699003219604, 0.01796361617743969, 0.055900152772665024, -0.05879785865545273, -0.05871747434139252, 0.002208896679803729, 0.018688520416617393, -0.000414600275689736, -0.04842422902584076, 0.016446314752101898, 0.008566983044147491, -0.016122736036777496, 0.00022163834364619106, 0.027515187859535217, -0.022867800667881966, 0.04958031326532364, -0.0018513365648686886, 0.025670047849416733, -0.051078181713819504, 0.017040202394127846, 0.024233460426330566, -0.03307465463876724, -0.018722238019108772, -0.0257850531488657, -0.019627442583441734, 0.0019127021078020334, -0.018376076593995094, 0.06106135621666908, -0.022092927247285843, -0.011639423668384552, 0.0049199811182916164, 0.01289153378456831, 0.02916552498936653, 0.00620693527162075, -0.009635942988097668, 0.02977689541876316, -0.048378974199295044, -0.02969258464872837, -0.027675269171595573, 0.018242985010147095, -0.02870640531182289, 0.0368574820458889, -0.023553313687443733, -0.008800978772342205, 0.052232373505830765, 0.004725556820631027, 0.015047786757349968, -0.03957226127386093, -0.03442201018333435, -0.03087417036294937, -0.04282285273075104, -0.041744664311409, -0.034229982644319534, 0.0013562102103605866, 0.015529219061136246, 0.021897263824939728, -0.023916196078062057, -0.006375978700816631, -0.02122255228459835, -0.005349726416170597, -0.015470570884644985, -0.05879490450024605, 0.05551477521657944, -0.03195482864975929, -0.058477405458688736, -0.025714585557579994, -0.014416738413274288, -0.0433133989572525, 0.020927945151925087, -0.04954506456851959, 0.020109135657548904, 0.0022709688637405634, 0.028504814952611923, -0.012646338902413845, 0.015481047332286835, -0.047999560832977295, -0.06524453312158585, 0.018478596583008766, 0.04457632079720497, -0.0077870916575193405, 0.04728226363658905, 0.00858308095484972, 0.0007785495836287737, 0.056039512157440186, -0.006798442453145981, -0.021074406802654266, -0.022467119619250298, -0.018215183168649673, -0.00944534968584776, 0.010496897622942924, -0.0445496141910553, -0.0023487263824790716, -0.009680351242423058, -0.023729201406240463, 0.021701380610466003, 0.027656592428684235, -0.0024991449899971485, 0.012716224417090416, 0.007193764206022024, -0.006664343643933535, 0.04466458782553673, -0.019847549498081207, 0.048838935792446136, -0.011111300438642502, 0.03658353164792061, 0.025247858837246895, 0.008424174971878529, 0.004493287298828363, 0.042098693549633026, 0.017233850434422493, -0.023297922685742378, 0.02981492131948471, 0.029602451249957085, -0.02886180579662323, 0.028557362034916878, -0.002025854540988803, -0.015873441472649574, -0.04818621277809143, 0.012212653644382954, -0.008971513248980045, 0.05217119678854942, 0.009344049729406834, 0.008942482993006706, 0.036691583693027496, -0.016201984137296677, -0.020413048565387726, 0.001685045543126762, -0.06789254397153854, -0.02667474001646042, 0.03618619590997696, -0.005660349037498236, -0.023983126506209373, -0.019507812336087227, -0.04316992685198784, -0.004790101200342178, -0.019247351214289665, -0.0031146924011409283, -0.0009715619962662458, 0.017546935006976128, -0.008852045051753521, 0.05706744268536568, -0.0007206487352959812, 0.01244912575930357, 0.00028291947091929615, 0.03002256155014038, -0.03221432864665985, -0.0101388581097126, 0.0014244031626731157, 0.025779549032449722, -0.014460607431828976, -0.016192153096199036, -0.02787706069648266, 0.021339574828743935, 0.014227675274014473, 0.000004048235496156849, 0.030186522752046585, 0.03663158044219017, -0.012796659953892231, 0.011323860846459866, 0.0011747600510716438, 0.016338784247636795, -0.032014280557632446, 0.05072079226374626, 0.007679414935410023, -0.035428110510110855, -0.03379775583744049, 0.08192380517721176, 0.05269237607717514, -0.012312089093029499, 0.05119986832141876, 0.02447880059480667, 0.050096046179533005, -0.02326708473265171, 0.016454076394438744, -0.0015894519165158272, 0.051565833389759064, 0.03631351888179779, 0.03518367186188698, -0.01807488314807415, 0.022197062149643898, 0.04089784249663353, 0.005516871344298124, 0.024184871464967728, 0.01582326553761959, 0.028900373727083206, -0.03797684609889984, -0.01623724400997162, -0.02633069083094597, -0.00036862463457509875, 0.004481830168515444, 0.01549983024597168, 0.004817837383598089, -0.04456721618771553, -0.01659892313182354, -0.01895499974489212, -0.01181715540587902, 0.02744656801223755, 0.013367250561714172, -0.02792271412909031, 0.021699003875255585, -0.015597251243889332, -0.026225099340081215, 0.045987315475940704, -0.013639029115438461, -0.00556976068764925, 0.024002065882086754, 0.018972283229231834, -0.01343869511038065, 0.05299711972475052, 0.008137524127960205, 0.002686179243028164, -0.04116983339190483, -0.01246823463588953, 0.01938544772565365, 0.015567620284855366, -0.022054703906178474, -0.005576424300670624, -0.020884208381175995, 0.04722745716571808, -0.033449869602918625, -0.007779685314744711, 0.029878156259655952, -0.035420384258031845, -0.014117841608822346, -0.0342651903629303, 0.039027705788612366, -0.03167963773012161, -0.029541363939642906, 0.026720711961388588, -0.00925376359373331, -0.037856388837099075, 0.024499978870153427, -0.003683040151372552, 0.0249012541025877, 0.004963741637766361, 0.03187914565205574, -0.02422480098903179, 0.02201726660132408, 0.06309027224779129, -0.031155895441770554, -0.0063047949224710464, 0.025812041014432907, -0.003644241951406002, -0.038122110068798065, -0.02135605551302433, -0.050040796399116516, -0.023411104455590248, 0.003913098946213722, -0.01469183899462223, 0.019920820370316505, 0.0618424117565155, -0.006854642182588577, -0.004486395511776209, -0.00979552697390318, 0.03179393708705902, -0.0559479296207428, 0.02804773859679699, -0.00749590527266264, 0.03075435757637024, 0.0075949858874082565, -0.005665117874741554, -0.04102129489183426, -0.038321346044540405, 0.019979355856776237, -0.042071159929037094, 0.03679889440536499, 0.013119958341121674, -0.03480006009340286, -0.027589719742536545, -0.049417849630117416, -0.03969962149858475, -0.00961484108120203, -0.055398669093847275, -0.05635383725166321, 0.016380121931433678, 0.0361296720802784, -0.013861862942576408, 0.0019127202685922384, 0.0013217900414019823, -0.051224470138549805, 0.020403001457452774, 0.05002754554152489, -0.007365814875811338, 0.02744254656136036, 0.054263483732938766, -0.020876822993159294, 0.018654365092515945, -0.0466478168964386, 0.03689104691147804, -0.0017132939537987113, -0.014036941342055798, -0.0258906539529562, 0.04047514870762825, -0.013788089156150818, -0.055281538516283035, 0.028605684638023376, 0.02323831431567669, 0.0067024240270257, -0.01816357858479023, -0.06980611383914948, 0.00792099442332983, -0.009630896151065826, -0.04083336889743805, -0.023966798558831215, 0.019320258870720863, 0.010251163505017757, -0.008520773611962795, -0.008484365418553352, -0.07256381213665009, 0.14755283296108246, 0.019222835078835487, 0.023001346737146378, -0.010480651631951332, 0.056585006415843964, 0.07284514605998993, 0.009755611419677734, -0.0112760029733181, 0.00435271579772234, -0.04204801470041275, 0.02100032940506935, -0.027399156242609024, 0.010910741984844208, 0.02172047458589077, 0.022904204204678535, 0.03234351798892021, -0.0506291538476944, 0.002370595233514905, 0.029151521623134613, -0.03908878564834595, -0.03893706202507019, 0.025873152539134026, -0.008819552138447762, 0.013587023131549358, -0.0037078920286148787, 0.018358450382947922, 0.03488926589488983, -0.051642075181007385, -0.024938685819506645, -0.036340273916721344, 0.006213739514350891, -0.013478630222380161, 0.02880599908530712, -0.05917581915855408, -0.04069707915186882, 0.05850009247660637, 0.018543580546975136, -0.010571984574198723, 0.0215276088565588, 0.02379542961716652, -0.0026497722137719393, 0.015425164252519608, 0.03700559586286545, -0.04418275132775307, 0.010664694011211395, 0.026655713096261024, -0.03608446195721626, 0.016602538526058197, 0.02944580279290676, -0.06539643555879593, 0.08561062812805176, -0.05397126451134682, 0.04037611559033394, -0.0030920517165213823, -0.01951313205063343, 0.03802992403507233, 0.00034153732121922076, -0.03167516365647316, -0.031847305595874786, 0.002945880638435483, 0.03744478151202202, 0.011443293653428555, -0.023195605725049973, -0.018932141363620758, -0.032645855098962784, 0.006410444620996714, 0.04554017633199692, 0.004130618646740913, -0.012098124250769615, -0.027932442724704742, -0.016712665557861328, -0.0014139278791844845, -0.0074436478316783905, -0.034800317138433456, 0.046366360038518906, 0.05356844514608383, -0.03204651176929474, 0.04360366240143776, 0.013674754649400711, -0.031770143657922745, -0.00907888263463974, -0.04563887417316437, -0.025167567655444145, -0.011767931282520294, 0.031201060861349106, 0.049438245594501495, -0.021802153438329697, -0.008650992065668106, -0.014967089518904686, 0.04308009892702103, 0.04152056574821472, 0.02108500339090824, 0.004143316298723221, -0.016566814854741096, -0.010716562159359455 ]
Q: Can I delete an SSH key? I have accidentally generated a pair of SSH key and saved in in my local file. I will not use them for any function. Can I just delete the private key and public key file? Will that cause any problem to my computer? I have done a few research but no one telling me will it cause any problem to my computer.
[ -0.008450997993350029, 0.01260405033826828, 0.014195982366800308, 0.00850135087966919, -0.02635170891880989, -0.01642572693526745, -0.015002021566033363, 0.026943523436784744, 0.015753382816910744, 0.051527801901102066, 0.019336160272359848, 0.014338252134621143, -0.0013940999051555991, -0.03809010237455368, -0.027696585282683372, -0.003130932105705142, -0.00259677367284894, -0.037549663335084915, -0.015819840133190155, -0.02299974299967289, 0.01133955828845501, -0.004654227755963802, -0.05821603164076805, -0.03195857256650925, 0.0005615738336928189, 0.03875425085425377, 0.0022223591804504395, 0.012847328558564186, 0.041993893682956696, 0.0629284605383873, -0.028034238144755363, 0.004093658644706011, 0.006552692037075758, -0.021860314533114433, -0.0017578706610947847, -0.030934618785977364, 0.047542862594127655, 0.0020844493992626667, -0.014914953149855137, -0.04221731424331665, 0.015209022909402847, -0.01844952255487442, 0.04826963320374489, -0.04743466153740883, -0.040175292640924454, 0.009332685731351376, -0.013462834991514683, -0.0045993747189641, -0.039009805768728256, -0.030781889334321022, 0.003477375488728285, 0.013891724869608879, 0.023456165567040443, 0.006762440782040358, -0.008870002813637257, 0.021859515458345413, -0.00830089207738638, -0.02935919724404812, -0.04547109454870224, 0.0191017035394907, 0.012689613737165928, 0.01921415887773037, 0.0053041609935462475, -0.04835217073559761, 0.005474509671330452, 0.023914849385619164, -0.023193074390292168, -0.006309764925390482, -0.0018255822360515594, -0.022431550547480583, -0.000446430902229622, -0.0008595834369771183, -0.001749775605276227, -0.0073911529034376144, 0.014957636594772339, 0.009958812035620213, 0.013116556219756603, 0.044650014489889145, -0.0016524536767974496, 0.01878923736512661, -0.00851916428655386, 0.06693185865879059, 0.00031617211061529815, 0.006787146907299757, -0.0528596006333828, -0.03930088132619858, 0.024035198614001274, -0.016823668032884598, 0.009264751337468624, -0.020826146006584167, -0.01702123135328293, 0.04247679561376572, -0.00729711540043354, 0.0068067023530602455, 0.01581282541155815, 0.06363721936941147, -0.032775625586509705, 0.01594495214521885, 0.0012183265062049031, -0.009213486686348915, 0.044166598469018936, -0.00032025467953644693, -0.02301100268959999, 0.059019170701503754, -0.012348012067377567, -0.03364473208785057, 0.04421693831682205, 0.0015875723911449313, -0.03003004938364029, -0.029264139011502266, 0.009994330815970898, 0.0031162078958004713, -0.024880385026335716, -0.0016244702273979783, -0.001452278927899897, 0.0007927226251922548, -0.0023124832659959793, 0.02270190231502056, -0.030923113226890564, -0.005055003333836794, 0.02066756598651409, 0.010251392610371113, 0.055345695465803146, -0.02941947989165783, 0.025424525141716003, -0.016615187749266624, -0.031692203134298325, 0.029492493718862534, -0.006501796655356884, -0.024162089452147484, 0.016401022672653198, -0.02213997207581997, -0.020815376192331314, 0.010988129302859306, -0.028646472841501236, 0.01638041064143181, -0.019739117473363876, 0.02455679513514042, 0.04220340773463249, -0.06894158571958542, 0.034179188311100006, 0.01222279667854309, 0.02319638803601265, 0.08357305824756622, -0.02996586263179779, 0.02479327656328678, 0.014355682767927647, 0.008347148075699806, -0.005941316485404968, 0.03385620564222336, -0.02587873488664627, 0.006390759721398354, -0.025817466899752617, 0.012533782981336117, -0.008558555506169796, 0.014384878799319267, -0.02805904857814312, 0.020361727103590965, 0.03542490676045418, 0.03517966717481613, -0.04301954433321953, -0.003598806681111455, 0.023356879130005836, 0.023226749151945114, 0.025322245433926582, 0.05583866685628891, -0.04316021874547005, 0.016136417165398598, 0.011350859887897968, -0.029969241470098495, 0.04460328072309494, -0.013212290592491627, -0.02290579490363598, 0.004145331215113401, 0.013278288766741753, -0.0011270155664533377, 0.002897712867707014, 0.017742468044161797, 0.0448341928422451, 0.05163639411330223, -0.030934613198041916, 0.039579056203365326, 0.017633160576224327, 0.07851991802453995, 0.03144422918558121, -0.0066720652393996716, -0.0057255844585597515, 0.003773135831579566, -0.03442058339715004, -0.011412514373660088, -0.005268661770969629, 0.03396514058113098, -0.045399777591228485, 0.013331771828234196, 0.0030504169408231974, 0.019194168969988823, -0.07785986363887787, -0.0021896667312830687, 0.00031422002939507365, -0.05971909314393997, -0.032827816903591156, 0.029604855924844742, -0.021235406398773193, 0.038468290120363235, 0.03468403220176697, -0.004265089053660631, 0.01511168759316206, 0.056422244757413864, -0.03036626987159252, 0.015296523459255695, 0.07177188247442245, 0.016367796808481216, -0.029340004548430443, -0.026572631672024727, -0.005782262422144413, -0.011420239694416523, -0.019398096948862076, 0.03279035538434982, -0.024056073278188705, -0.016266951337456703, 0.02912330999970436, 0.02539951540529728, 0.00012021383736282587, 0.02581661194562912, -0.031089473515748978, -0.003250716021284461, 0.007689476478844881, 0.03249537944793701, 0.021503062918782234, 0.003101191483438015, -0.012552212923765182, 0.04910622909665108, 0.0009010000503621995, 0.034542955458164215, -0.0022471474949270487, -0.009763667359948158, 0.05501590296626091, 0.05503600835800171, -0.038066644221544266, 0.03816632181406021, -0.032851528376340866, 0.017192883417010307, 0.01852927729487419, 0.02559489943087101, 0.020983586087822914, -0.004364519380033016, -0.01136460155248642, -0.00009538618905935436, -0.013314604759216309, 0.023630265146493912, -0.03211231157183647, 0.0216367244720459, 0.027124157175421715, 0.048333775252103806, -0.0423426553606987, 0.006853811908513308, 0.0473749041557312, 0.0564228817820549, -0.05288532376289368, -0.012505235150456429, -0.013208335265517235, 0.02414528653025627, -0.029058730229735374, 0.007222857791930437, -0.005373957566916943, 0.031078742817044258, 0.033421847969293594, 0.026042789220809937, -0.005531159229576588, -0.009933583438396454, -0.035111576318740845, -0.024702657014131546, -0.02073124796152115, -0.04947792738676071, -0.04149948060512543, -0.007343074772506952, 0.03746446222066879, -0.0363742895424366, 0.0252770334482193, -0.041122809052467346, 0.01653182879090309, -0.013698670081794262, 0.029649872332811356, 0.042064785957336426, 0.020900068804621696, 0.047662656754255295, -0.040926940739154816, 0.03212315961718559, 0.010976842604577541, 0.04156254976987839, -0.04968089982867241, -0.009858911857008934, -0.01399562880396843, -0.04301726445555687, 0.04641999676823616, -0.01562877558171749, -0.011899851262569427, 0.009429200552403927, -0.04004916176199913, -0.04931113123893738, -0.020047038793563843, 0.012022238224744797, 0.019743293523788452, 0.006768570281565189, -0.03903047367930412, 0.04234863817691803, 0.04587358981370926, -0.025225283578038216, 0.05379047617316246, 0.04178453981876373, -0.02688927762210369, 0.013592439703643322, 0.012582620605826378, 0.03911330923438072, -0.06147349625825882, 0.06403987854719162, 0.05752916634082794, 0.01561930775642395, -0.03583403676748276, -0.022830866277217865, -0.0412411205470562, 0.0010263595031574368, 0.008993126451969147, -0.0010738808196038008, -0.03314484283328056, 0.02657618187367916, 0.00412254873663187, -0.07911831885576248, 0.05218292400240898, -0.024953965097665787, -0.002912313211709261, -0.012721042148768902, -0.033858757466077805, 0.03938613831996918, 0.002027864335104823, 0.021945510059595108, 0.00969722680747509, -0.04463893175125122, -0.03585802763700485, 0.02553790807723999, 0.0375867635011673, -0.02062831073999405, 0.021818168461322784, 0.030596908181905746, -0.004739740863442421, 0.008981069549918175, 0.04267179220914841, -0.017781628295779228, -0.02287926897406578, 0.01257187221199274, 0.025413891300559044, -0.0008493253844790161, 0.012423613108694553, 0.031463511288166046, 0.046663522720336914, 0.052749767899513245, -0.0411088801920414, 0.013449091464281082, 0.028090843930840492, 0.034377168864011765, -0.01039833389222622, 0.016144953668117523, 0.012344680726528168, 0.0011870877351611853, -0.0055108205415308475, -0.07177156209945679, 0.004749403800815344, 0.0031659328378736973, 0.06877702474594116, -0.03383322060108185, 0.05712781473994255, -0.00006234957254491746, -0.04519664868712425, 0.06438961625099182, -0.0683666467666626, 0.013068586587905884, 0.04121565818786621, -0.025414394214749336, 0.03088817372918129, -0.053528159856796265, 0.011742325499653816, -0.012295219115912914, 0.019352002069354057, 0.041107404977083206, -0.007686694618314505, 0.04622753709554672, -0.05348007380962372, -0.0026352964341640472, -0.02454577013850212, -0.00410147849470377, -0.00395332183688879, -0.03588613495230675, 0.023990435525774956, -0.035649802535772324, -0.034036751836538315, -0.0727706328034401, 0.011675638146698475, 0.029319612309336662, 0.049164287745952606, -0.01270232256501913, 0.026320386677980423, 0.0032138291280716658, 0.019944075495004654, 0.03415214642882347, -0.020965460687875748, 0.013224865309894085, -0.021273396909236908, 0.04709779471158981, 0.02181471884250641, -0.018572751432657242, 0.002848836360499263, -0.020325176417827606, 0.0057280948385596275, 0.04606742784380913, 0.030606847256422043, -0.006955272518098354, -0.04601484537124634, 0.020854299888014793, -0.009093166328966618, -0.00690147140994668, -0.03832809627056122, -0.05612143129110336, -0.042251862585544586, 0.03411135450005531, 0.044272374361753464, -0.020734310150146484, -0.025148937478661537, -0.035811737179756165, 0.013032520189881325, 0.028733208775520325, 0.012937965802848339, -0.056077755987644196, -0.01530849002301693, -0.03899789974093437, -0.02316506952047348, 0.02718244306743145, 0.0472639799118042, 0.006560187786817551, -0.009217845275998116, -0.03362541273236275, 0.013112572953104973, 0.012871873565018177, 0.02804020419716835, 0.004288599826395512, -0.0336935855448246, 0.036359623074531555, 0.017387406900525093, 0.020673107355833054, 0.0015663581434637308, -0.021567342802882195, 0.0013845781795680523, -0.035764411091804504, 0.007224598433822393, 0.004296082071959972, -0.01040991023182869, 0.013033976778388023, 0.022469412535429, -0.029123853892087936, 0.045435067266225815, -0.02632412686944008, -0.003322070697322488, 0.004034091252833605, 0.01212246622890234, -0.06861553341150284, -0.01823967695236206, 0.04086018726229668, -0.022555820643901825, -0.042097438126802444, 0.015199240297079086, 0.041538726538419724, -0.014631448313593864, 0.024648861959576607, 0.033438265323638916, -0.026507817208766937, 0.029082151129841805, -0.04459872841835022, 0.054643385112285614, -0.018893646076321602, -0.026568591594696045, -0.00847435463219881, -0.06367778778076172, 0.052834440022706985, 0.020951490849256516, -0.01581631414592266, -0.00940773170441389, -0.06084546446800232, -0.009066818282008171, 0.0009474677499383688, 0.0030569816008210182, 0.024048952385783195, -0.008291136473417282, 0.011679968796670437, -0.007984084077179432, 0.005840667523443699, 0.017432009801268578, 0.05050132796168327, -0.03349600359797478, -0.03838133066892624, 0.014063016511499882, 0.017888829112052917, 0.02929445169866085, -0.01563011296093464, -0.06901638954877853, 0.019012821838259697, -0.003933293744921684, -0.03898033872246742, -0.0564180351793766, -0.0013499369379132986, 0.008080726489424706, -0.023393575102090836, -0.06847380101680756, 0.01345034409314394, -0.014241751283407211, 0.00982819963246584, 0.025230977684259415, 0.008695987984538078, 0.029264677315950394, -0.02512570098042488, -0.03736149147152901, 0.04230909422039986, 0.0557410791516304, -0.06532970070838928, -0.01095148641616106, 0.007901015691459179, -0.01633058674633503, 0.05661812424659729, -0.017294524237513542, -0.05506977066397667, -0.028235914185643196, -0.04115820676088333, 0.033709727227687836, -0.03646418824791908, -0.005345543846487999, -0.03541627153754234, -0.03931800648570061, -0.04558971896767616, 0.04538317024707794, 0.01588846743106842, -0.03166152909398079, 0.005801661871373653, -0.03281508758664131, 0.019862232729792595, -0.025004593655467033, 0.008093232288956642, -0.038285255432128906, -0.021657783538103104, -0.016912924125790596, 0.08065462112426758, -0.026612907648086548, 0.009245417080819607, 0.0035376648884266615, 0.02394932322204113, 0.01734761707484722, 0.030174322426319122, -0.0790310949087143, -0.032440293580293655, 0.012462633661925793, -0.0037724003195762634, -0.03555814176797867, 0.019289454445242882, -0.07272645831108093, 0.053373273462057114, -0.031033910810947418, -0.004732188768684864, -0.03328467905521393, 0.004415337927639484, -0.01820826344192028, 0.02426205761730671, 0.05039506405591965, -0.02427595481276512, 0.05255279317498207, -0.03008071891963482, 0.030503537505865097, 0.039538588374853134, 0.004307074937969446, -0.00813644751906395, -0.024704597890377045, -0.028110839426517487, -0.08564180135726929, 0.01350420992821455, -0.016124093905091286, -0.01587681472301483, -0.02670172229409218, 0.014955169521272182, 0.01563522033393383, -0.019874725490808487, 0.05082229897379875, 0.06627107411623001, 0.003157281782478094, -0.011976190842688084, -0.00341711170040071, 0.06056106835603714, 0.041260603815317154, -0.06286509335041046, -0.003962624818086624, 0.025107024237513542, -0.03670051693916321, -0.007997903041541576, -0.03851575404405594, -0.018231011927127838, -0.04567558318376541, -0.025577101856470108, 0.05041208490729332, 0.004958744626492262, 0.049808721989393234, -0.004977541044354439, -0.026487980037927628, -0.03276777267456055, 0.03700033202767372, -0.014983365312218666, 0.026105880737304688, 0.04146651551127434, -0.004423723090440035, -0.044445060193538666, 0.020345093682408333, -0.03364747390151024, 0.004155679605901241, -0.026754751801490784, 0.061571378260850906, 0.0026709968224167824, -0.01734907552599907, 0.017548294737935066, 0.05500100180506706, -0.06381392478942871, -0.08209025859832764, -0.012270456179976463, -0.006706703454256058, -0.0064394911751151085, -0.03654784709215164, 0.00759878708049655, -0.026685601100325584, 0.0005007287836633623, 0.01072643045336008, 0.018724145367741585, -0.0052366359159350395, 0.05334498733282089, 0.005075771827250719, 0.054952267557382584, -0.02825051173567772, -0.02274519018828869, 0.06262657046318054, -0.003779686987400055, -0.03724317625164986, -0.08275021612644196, 0.0030423311982303858, 0.014373771846294403, 0.029821425676345825, 0.020366666838526726, -0.0035198519472032785, 0.0074271089397370815, 0.019508717581629753, -0.014738169498741627, 0.04050616919994354, -0.0017310818657279015, 0.04022626578807831, 0.003779073478654027, -0.0493176206946373, -0.0408119335770607, -0.008463047444820404, 0.015798697248101234, -0.04169299453496933, 0.026247477158904076, -0.014580211602151394, 0.015080838464200497, -0.002910725539550185, 0.030842745676636696, -0.04084215685725212, -0.04512083902955055, -0.032967887818813324, -0.04551404342055321, -0.031237337738275528, -0.01947372406721115, -0.027264028787612915, -0.010966981761157513, 0.00975917186588049, 0.003904450684785843, -0.00007679822738282382, -0.029456214979290962, 0.01910119690001011, -0.04367339611053467, 0.0014530258486047387, -0.05887404829263687, 0.015965493395924568, -0.06470990926027298, -0.037805307656526566, -0.03978317603468895, 0.00042345651309005916, -0.047300029546022415, -0.019206104800105095, 0.020758016034960747, 0.014038137160241604, -0.020012399181723595, -0.000608504400588572, 0.009431316517293453, 0.012514042668044567, -0.004539831541478634, -0.017417941242456436, -0.00010567594290478155, 0.0013942103832960129, -0.016651170328259468, 0.02812638320028782, 0.03734870254993439, 0.006036647129803896, 0.06604702770709991, 0.005247172433882952, 0.003675326006487012, -0.029625002294778824, 0.011596038937568665, -0.0012377094244584441, -0.007317997980862856, -0.02620062232017517, -0.0022492024581879377, -0.011030117981135845, -0.034532591700553894, 0.03185189887881279, -0.03971007838845253, 0.00955046433955431, 0.004886207636445761, -0.019089287146925926, -0.00460847420617938, 0.038232941180467606, -0.01709439791738987, 0.020801793783903122, 0.005106196738779545, 0.02566366456449032, 0.030123097822070122, -0.020570799708366394, 0.03044380247592926, 0.017447341233491898, 0.008532089181244373, 0.0022369204089045525, -0.023700594902038574, 0.02182058058679104, -0.0014448489528149366, 0.013673459179699421, -0.03683067113161087, -0.001963153248652816, -0.01592593640089035, 0.01861380785703659, -0.014491129666566849, 0.03106752596795559, 0.009846801869571209, 0.007882860489189625, -0.0030278367921710014, -0.007622448727488518, -0.049724940210580826, 0.025577368214726448, -0.06355723738670349, -0.02584049291908741, 0.020151618868112564, -0.04409310966730118, -0.03297162055969238, -0.019699519500136375, -0.03944610059261322, 0.0011385323014110327, -0.04073261469602585, -0.031428415328264236, -0.014035049825906754, -0.01325892936438322, 0.016554567962884903, 0.04348421469330788, -0.014857794158160686, -0.02071109414100647, -0.02060018666088581, 0.03579999879002571, -0.03417419642210007, -0.044571395963430405, 0.005404916126281023, 0.053666166961193085, -0.005145644769072533, -0.005085161421447992, -0.025141417980194092, -0.0012326129944995046, 0.01497740764170885, -0.004083696287125349, 0.02471011132001877, -0.005998415406793356, -0.020858436822891235, 0.04018647223711014, 0.008391308598220348, -0.01352761685848236, -0.06635300815105438, 0.025216910988092422, 0.004807576071470976, -0.00463876873254776, -0.010643568821251392, 0.036969639360904694, 0.047594308853149414, -0.008941634558141232, 0.038307346403598785, 0.04952167719602585, 0.04607222601771355, -0.030588477849960327, 0.05243607237935066, -0.019267309457063675, 0.03689155727624893, 0.04215453565120697, 0.027538057416677475, 0.018322113901376724, 0.03583833575248718, 0.012636398896574974, 0.004020240157842636, -0.025521308183670044, 0.007783049717545509, 0.004875488113611937, -0.03298487886786461, 0.028920192271471024, -0.015498880296945572, -0.020043466240167618, 0.006866788491606712, -0.008495218120515347, -0.005190250463783741, -0.02137988619506359, 0.0020578268449753523, -0.02153315767645836, -0.029245883226394653, 0.046812016516923904, -0.015141853131353855, -0.006470235530287027, -0.001393239013850689, -0.01256976556032896, 0.014240083284676075, 0.03442704305052757, -0.006323541048914194, -0.00737152760848403, 0.043229661881923676, 0.0363081619143486, 0.0048110634088516235, 0.051047030836343765, 0.03027334064245224, -0.0025210289750248194, -0.0483534149825573, 0.014057040214538574, -0.007966424338519573, 0.004416054580360651, -0.023416103795170784, 0.013754772953689098, -0.02699950523674488, 0.049081556499004364, -0.01794814132153988, 0.019910041242837906, 0.0215204656124115, -0.03459221124649048, 0.008901474066078663, -0.04560663178563118, 0.0315016508102417, -0.008490344509482384, -0.020639747381210327, 0.04791812226176262, -0.008114446885883808, -0.04588988050818443, 0.04990851506590843, -0.00324847549200058, 0.04490094631910324, 0.007005792111158371, 0.0899738073348999, 0.022272760048508644, 0.05854101851582527, 0.06974684447050095, -0.035518892109394073, -0.007508448325097561, 0.01836046576499939, -0.02578647993505001, -0.04073047637939453, 0.010047877207398415, -0.04206173121929169, -0.014849448576569557, -0.02135070040822029, 0.0003916388959623873, -0.0278470441699028, 0.0302606038749218, 0.005412979982793331, -0.020233873277902603, 0.02451910264790058, 0.0005510499468073249, -0.03059186227619648, 0.01845412701368332, 0.025067921727895737, 0.01776323840022087, 0.012237542308866978, -0.01768745295703411, -0.015222075395286083, -0.04630223289132118, -0.01527995616197586, -0.043531496077775955, 0.019174138084053993, 0.008279145695269108, -0.0386526994407177, -0.07593221217393875, -0.03145662322640419, -0.02860778197646141, -0.0025429658126085997, -0.03838846832513809, -0.03257505223155022, 0.017090588808059692, 0.04924310743808746, 0.04666726663708687, 0.025828545913100243, -0.01616584323346615, 0.041871652007102966, 0.026458855718374252, 0.03877081349492073, 0.0063229831866919994, 0.04972454532980919, 0.01935569941997528, -0.014577866531908512, 0.026773402467370033, -0.026991019025444984, 0.04257843270897865, -0.01688811369240284, 0.011043158359825611, -0.019765077158808708, -0.006142488215118647, -0.04593389853835106, -0.033861663192510605, 0.0028350891079753637, 0.07838471233844757, -0.003480234183371067, -0.025351066142320633, -0.07850602269172668, -0.022697750478982925, -0.06816865503787994, 0.007263211067765951, -0.06291737407445908, 0.013196363113820553, -0.02367631532251835, -0.02388206124305725, -0.020981011912226677, -0.0734902024269104, 0.15616151690483093, 0.06643717736005783, 0.045675937086343765, 0.011115497909486294, 0.03556882590055466, 0.057006414979696274, 0.007058337796479464, 0.0067361765541136265, 0.00566056976094842, -0.07234498113393784, 0.04089849442243576, 0.0022204690612852573, 0.028940636664628983, 0.028389660641551018, 0.0018599774921312928, 0.06283371150493622, -0.04012647271156311, 0.0016076738247647882, 0.007311529479920864, -0.05306583642959595, -0.0439034141600132, -0.001642045914195478, 0.016127746552228928, 0.040787968784570694, -0.01748124696314335, 0.0016374136321246624, 0.034112248569726944, -0.03761753812432289, -0.02125476486980915, -0.010252565145492554, 0.024046611040830612, -0.025559809058904648, 0.03730015829205513, -0.02726086974143982, -0.04436543956398964, 0.035451218485832214, 0.011579109355807304, -0.013607760891318321, -0.011341817677021027, 0.01852027326822281, -0.03337521478533745, 0.0212685689330101, 0.0178767591714859, -0.05231645703315735, -0.00037106414674781263, 0.029212644323706627, -0.015406385064125061, 0.02705685980618, 0.04685506597161293, -0.03153204917907715, 0.038551922887563705, -0.016347581520676613, 0.006999020464718342, -0.019716065376996994, -0.059427812695503235, 0.00010081966320285574, -0.0061713289469480515, -0.025645827874541283, 0.018840771168470383, -0.004459017887711525, 0.0021660064812749624, 0.01806381717324257, -0.01651572436094284, 0.015341309830546379, -0.05331363156437874, -0.0026808816473931074, 0.012570836581289768, 0.038201600313186646, -0.011747810058295727, -0.01864590309560299, -0.042907677590847015, -0.012856722809374332, -0.02281070500612259, -0.06873738020658493, 0.014205520041286945, 0.02277311682701111, 0.005754855461418629, 0.047158319503068924, 0.012121856212615967, -0.00510947871953249, -0.011955009773373604, -0.027469491586089134, -0.03375895693898201, -0.025959216058254242, 0.02868597023189068, 0.018832776695489883, -0.030589228495955467, -0.03035680577158928, -0.013061956502497196, 0.04118086397647858, 0.042389750480651855, 0.0136259775608778, -0.004521021153777838, -0.005416931118816137, -0.007795063778758049 ]
As a byproduct of the 2008 financial crisis and new reserve requirements, many lenders are deleveraging portfolios through the discounted sales of loans secured by real estate. Many borrowers, who underwrote transactions at the height of the last business cycle, are currently unable to service their debt; further, real estate value may be less than loan value. Banks that lent with overly aggressive assumptions and/or with inadequate capital reserves may be under pressure- by executive directive, corporate governance or regulatory enforcement- to dispose of performing and non-performing loans. Within the area of note purchase opportunities, Bridge Partners is primarily targeting acquisitions of loans secured by newly constructed assets with cash-flow or maturity setbacks. Bridge Partners pursues these opportunities direct from banks or via our extensive network of broker relationships. The investment opportunity is to acquire performing and non-performing notes at a sufficient discount to par to compensate for the risks associated with being a lender and pursuing the real estate through a foreclosure or a deed-in-lieu. With the demonstrated ability to evaluate opportunities quickly, Bridge Partners can close a loan purchase within 14 days.
[ 0.001905677025206387, 0.03009599819779396, -0.019352605566382408, 0.01345390360802412, -0.015484453178942204, 0.011313281022012234, 0.0034246232826262712, 0.02703228034079075, 0.013398013077676296, 0.0345960333943367, 0.0012685026740655303, -0.0037676505744457245, -0.0008826107950881124, -0.03942135348916054, 0.010295557789504528, 0.013908670283854008, -0.03255654126405716, -0.022653011605143547, -0.002506441669538617, 0.00017484836280345917, -0.037759169936180115, 0.018254030495882034, -0.05113712325692177, -0.02539699338376522, -0.012818517163395882, 0.055193983018398285, 0.013091241009533405, -0.026088496670126915, 0.08661592751741409, 0.06704559177160263, -0.026312459260225296, -0.07593206316232681, -0.009591377340257168, -0.028507743030786514, -0.04253903776407242, -0.03223641961812973, 0.013381863944232464, -0.012535094283521175, -0.016384560614824295, -0.04362162947654724, 0.017606202512979507, -0.012860472314059734, 0.03500128909945488, -0.01049540750682354, -0.028224945068359375, -0.029594916850328445, -0.008864183910191059, -0.05677887424826622, 0.002615693025290966, -0.03175821155309677, 0.007101202383637428, -0.017640074715018272, 0.011051734909415245, -0.01981278322637081, 0.014806775376200676, 0.01187750231474638, 0.006184388883411884, -0.021580716595053673, -0.024371610954403877, 0.024113114923238754, 0.03329063206911087, -0.026760896667838097, 0.030333278700709343, -0.032617028802633286, -0.0036902569700032473, 0.027713146060705185, -0.02621840313076973, -0.016286535188555717, 0.01505307387560606, -0.0261661596596241, 0.01118784211575985, 0.002163328230381012, 0.00534095847979188, -0.014788391068577766, 0.018733631819486618, -0.0023891262244433165, 0.008537471294403076, -0.004782283212989569, -0.005579954478889704, -0.029587136581540108, 0.04710047319531441, 0.04409904405474663, 0.0342959426343441, 0.02275080420076847, -0.05115183815360069, 0.000013803603906126227, 0.008313321508467197, 0.02646419033408165, 0.010660320520401001, 0.014011195860803127, -0.02717079594731331, 0.04099166393280029, 0.030308881774544716, -0.009094879031181335, -0.0026147342287003994, 0.02418501116335392, -0.048279520124197006, 0.021300923079252243, 0.013496444560587406, 0.00970560684800148, 0.035016562789678574, 0.016570892184972763, -0.006968598812818527, 0.03541968762874603, -0.05036386847496033, 0.007520574145019054, -0.002187304198741913, -0.02166561968624592, -0.02213468961417675, -0.04348617047071457, -0.005207038018852472, -0.018542921170592308, 0.013409238308668137, -0.012420529499650002, -0.02071872539818287, 0.051169924437999725, -0.030533162876963615, 0.01671728305518627, -0.030427811667323112, 0.022077858448028564, 0.016844943165779114, 0.01644989103078842, 0.03800204023718834, -0.039128754287958145, 0.033323030918836594, -0.027095718309283257, -0.03218474239110947, 0.034178417176008224, -0.04039841890335083, -0.010800732299685478, 0.0006559931789524853, -0.03620852902531624, -0.029856843873858452, 0.06003902480006218, -0.00013110256986692548, 0.006229593884199858, -0.007089872844517231, 0.04115647077560425, -0.001965633826330304, -0.05076625943183899, 0.027014190331101418, 0.013802783563733101, -0.003086450044065714, 0.07034958899021149, -0.0005710779223591089, 0.034120652824640274, 0.02160612866282463, -0.033685363829135895, -0.03632614016532898, 0.05734282359480858, -0.046825554221868515, 0.045006223022937775, -0.002984772203490138, 0.025237156078219414, -0.012190080247819424, -0.006934905890375376, -0.00791578646749258, 0.010458935052156448, 0.030107270926237106, 0.01727963611483574, -0.02146749198436737, -0.003604866098612547, 0.005666352342814207, 0.029859721660614014, -0.00770058436319232, 0.021922580897808075, -0.029962198808789253, 0.02095036581158638, 0.01884964294731617, -0.031322166323661804, 0.01385509129613638, 0.0089840367436409, -0.019723474979400635, -0.0043491823598742485, 0.011759270913898945, 0.028531920164823532, 0.06300701946020126, 0.005262535531073809, 0.05878050625324249, 0.038787227123975754, -0.040613044053316116, 0.031089091673493385, 0.02167741023004055, 0.08078914135694504, 0.04380306974053383, -0.0009180947090499103, -0.012541907839477062, -0.005183076485991478, -0.02667752467095852, -0.03485958278179169, -0.005211162846535444, 0.03531254455447197, -0.023490579798817635, 0.050609782338142395, 0.0015608867397531867, 0.011549699120223522, -0.04885181412100792, -0.004031420219689608, -0.005949206650257111, -0.030646895989775658, -0.04884065315127373, 0.017380042001605034, -0.028246458619832993, 0.043104950338602066, -0.04895970597863197, -0.02102678082883358, 0.018158551305532455, 0.04239582270383835, -0.05068042129278183, 0.03286094218492508, 0.04650435596704483, 0.042291734367609024, -0.044211726635694504, -0.024185601621866226, -0.0030312335584312677, -0.02264224924147129, -0.007614141795784235, 0.056893859058618546, 0.024775201454758644, -0.014408915303647518, 0.028238823637366295, -0.007623564917594194, 0.018942460417747498, 0.04088250547647476, -0.01093027088791132, -0.015474752523005009, 0.03120841272175312, 0.03550916910171509, -0.008173821493983269, -0.0038488039281219244, -0.013442357070744038, 0.062137965112924576, 0.015566354617476463, 0.05548432841897011, 0.040828023105859756, 0.028543313965201378, 0.053901202976703644, 0.050942812114953995, -0.010715780779719353, 0.03137058764696121, 0.004410992842167616, 0.012545866891741753, 0.030154813081026077, 0.010923128575086594, -0.03416268154978752, -0.0004397703451104462, -0.007678874768316746, -0.030238527804613113, 0.0026417956687510014, 0.026748420670628548, -0.04243948683142662, 0.03460545465350151, -0.014758700504899025, 0.047899242490530014, -0.014960212633013725, 0.02546929195523262, 0.03514397516846657, 0.03866023197770119, -0.03391283378005028, -0.005876165349036455, 0.026524700224399567, 0.049907222390174866, -0.02022523060441017, -0.03701650723814964, 0.037662144750356674, 0.02075420506298542, 0.0033773649483919144, 0.04105101898312569, -0.021854618564248085, -0.024347130209207535, -0.018577048555016518, -0.06525114178657532, -0.041948072612285614, -0.010752977803349495, -0.055746566504240036, -0.009422753937542439, 0.04217541217803955, -0.03531516715884209, -0.014533959329128265, -0.0254424549639225, -0.007188394200056791, -0.048464223742485046, -0.011191769503057003, 0.05344495549798012, 0.03158906102180481, 0.04405594989657402, -0.04787181690335274, 0.0591757670044899, -0.00837714970111847, 0.00724760489538312, -0.028915680944919586, 0.008522674441337585, 0.011299864389002323, -0.017476890236139297, 0.036541298031806946, -0.044598452746868134, -0.027385607361793518, 0.007464434951543808, -0.04506581649184227, -0.0553671233355999, -0.0032779392786324024, -0.011555276811122894, -0.0018092052778229117, 0.01631791889667511, -0.046512242406606674, 0.036450739949941635, 0.011116147972643375, -0.011103099212050438, 0.025424232706427574, 0.03735905513167381, -0.03965633362531662, 0.03193369880318642, 0.017945067957043648, 0.016745569184422493, -0.03549276664853096, 0.06564527750015259, 0.041977379471063614, -0.025255130603909492, -0.01982787810266018, -0.015618154779076576, 0.02618388645350933, -0.0014009340666234493, 0.00010712246148614213, -0.003454703837633133, -0.008344925008714199, 0.030578594654798508, 0.03595537319779396, -0.07126335054636002, 0.024192029610276222, -0.05290576070547104, -0.021593069657683372, -0.022286932915449142, -0.04238544777035713, 0.01850028708577156, 0.027409080415964127, 0.0197525043040514, 0.014240589924156666, -0.04472052678465843, -0.026042310521006584, 0.030641471967101097, 0.0749548152089119, -0.0472107008099556, 0.02720022387802601, 0.017753787338733673, 0.01314258761703968, -0.0019332707161083817, 0.016834430396556854, -0.028630342334508896, -0.02149268053472042, 0.034343063831329346, -0.024429507553577423, 0.0025873552076518536, -0.0034526411909610033, 0.022960947826504707, 0.020379474386572838, 0.03937455266714096, -0.03236370533704758, 0.015973828732967377, 0.015172501094639301, 0.030018584802746773, 0.02048330195248127, 0.007586427964270115, -0.00037599471397697926, 0.006155523471534252, -0.03602078929543495, -0.02800033427774906, 0.004715821240097284, 0.035638462752103806, 0.04772802069783211, -0.05793975293636322, 0.07474483549594879, 0.01031661406159401, -0.03832181543111801, 0.047984980046749115, -0.058531202375888824, 0.013155623339116573, 0.039934709668159485, -0.02628067135810852, 0.021415937691926956, -0.04083973914384842, 0.015901867300271988, -0.016475539654493332, 0.04585297033190727, 0.038284044712781906, -0.0035133736673742533, 0.045471660792827606, -0.029582379385828972, -0.007957054302096367, -0.03291758894920349, -0.02685709483921528, -0.013441591523587704, -0.013768679462373257, -0.010603338479995728, 0.011680403724312782, -0.03704084828495979, -0.0717579573392868, 0.012611234560608864, 0.030660368502140045, 0.006275863852351904, -0.026690073311328888, 0.052114322781562805, 0.0009990083053708076, 0.018229667097330093, 0.03696036711335182, 0.00006426718755392358, 0.001972466241568327, -0.04651930555701256, 0.01919998601078987, 0.01785038784146309, -0.021071968600153923, -0.016565008088946342, -0.0305621437728405, -0.015842702239751816, 0.03762947395443916, -0.015769321471452713, -0.026250284165143967, -0.004774628672748804, 0.002897895174100995, -0.01933962292969227, 0.017141083255410194, -0.01993521861732006, -0.029747389256954193, -0.026279471814632416, 0.014411462470889091, 0.029613036662340164, -0.05142012611031532, 0.02534451335668564, -0.05086903274059296, 0.026103433221578598, 0.04060027003288269, -0.03396259620785713, -0.03224243223667145, 0.003139589913189411, -0.030697429552674294, -0.002966988366097212, 0.05251427739858627, 0.028461184352636337, -0.01870882697403431, -0.010016228072345257, -0.030923474580049515, 0.04183428734540939, 0.03538646176457405, 0.013050747103989124, -0.027595292776823044, 0.021424930542707443, 0.021577894687652588, 0.003084482392296195, 0.021146785467863083, -0.01683754101395607, -0.00396101176738739, 0.0026260812301188707, -0.050758861005306244, 0.04648495838046074, -0.005717909894883633, -0.02111649140715599, 0.0061261472292244434, 0.03380539268255234, -0.005357956048101187, 0.01569802314043045, -0.018391750752925873, 0.0398295558989048, -0.0179294403642416, 0.03254923224449158, -0.035252515226602554, -0.03897496685385704, 0.04076490178704262, 0.006008625496178865, -0.055653661489486694, 0.028059400618076324, 0.05002528056502342, -0.012204284779727459, -0.004895425867289305, 0.03357086330652237, -0.03511049970984459, 0.02039407007396221, -0.024045832455158234, 0.02312806248664856, -0.02432803437113762, -0.0414094515144825, 0.046246759593486786, -0.03545660525560379, 0.03388248756527901, -0.00040314707439392805, -0.0036586769856512547, -0.0635751336812973, -0.056046128273010254, -0.023139530792832375, -0.0053836386650800705, -0.030511198565363884, 0.015522091649472713, 0.0015506312483921647, 0.0013115982292219996, 0.012478284537792206, 0.020099462941288948, -0.020787574350833893, 0.013930060900747776, -0.010168529115617275, -0.004569490905851126, 0.006392772775143385, 0.012663496658205986, 0.021216347813606262, -0.016372820362448692, -0.06736478209495544, 0.02361566200852394, -0.026833241805434227, -0.03426547348499298, -0.04638884216547012, -0.003917225170880556, -0.03520050644874573, 0.007693666964769363, -0.05362764373421669, 0.0000624596796114929, 0.008439603261649609, 0.036721400916576385, 0.033223893493413925, 0.03243245184421539, -0.00010534108150750399, 0.023672401905059814, -0.02628958597779274, 0.03619115799665451, 0.020796459168195724, -0.035201575607061386, -0.037401989102363586, 0.040766552090644836, -0.043300747871398926, 0.05753793939948082, -0.022652311250567436, 0.012146382592618465, -0.0447867326438427, -0.042658258229494095, 0.012302414514124393, -0.035100918263196945, -0.012799072079360485, -0.04221665859222412, -0.030810147523880005, 0.008109116926789284, 0.030563456937670708, 0.02714511565864086, 0.0019931262359023094, 0.011544265784323215, -0.0669083297252655, -0.00978856161236763, -0.03011581487953663, -0.002063446445390582, -0.01890428178012371, -0.008469479158520699, -0.013966269791126251, 0.03042687475681305, 0.021487722173333168, 0.013353725895285606, -0.018475906923413277, -0.004541744943708181, 0.050742119550704956, 0.012959644198417664, -0.045144934207201004, -0.02199501171708107, 0.0020590282510966063, -0.003586919279769063, 0.013474459759891033, -0.01353390421718359, -0.06158363074064255, 0.057081397622823715, -0.040840331465005875, 0.01313248835504055, -0.003908324521034956, -0.019190149381756783, 0.00867738388478756, -0.018853651359677315, 0.03654704615473747, -0.027378708124160767, 0.014186598360538483, -0.013047900050878525, 0.0513252429664135, 0.03933633863925934, 0.018367977812886238, -0.04922032356262207, -0.04248009994626045, -0.05586878955364227, -0.041884973645210266, 0.03545428067445755, -0.0390998013317585, -0.010970599949359894, -0.049301356077194214, -0.030408836901187897, 0.00567956967279315, 0.000009510086783848237, 0.07461231201887131, 0.05099482834339142, -0.05297117307782173, -0.02262239344418049, -0.01055946759879589, 0.03585998713970184, 0.029568137601017952, -0.02339266799390316, 0.005361489951610565, -0.00907273218035698, -0.01942470110952854, -0.0008089587208814919, -0.061454664915800095, 0.015128826722502708, -0.045561712235212326, -0.019052768126130104, 0.05373552814126015, -0.009768291376531124, 0.06462560594081879, -0.041093092411756516, -0.050332095474004745, -0.04941386356949806, 0.06067773699760437, 0.0176116693764925, 0.029695924371480942, 0.051286857575178146, -0.031268730759620667, -0.008198607712984085, 0.028626829385757446, -0.053995680063962936, 0.00019131712906528264, -0.016377398744225502, 0.075254425406456, -0.01351366750895977, -0.04739397019147873, 0.03280557692050934, 0.06596195697784424, -0.05669989436864853, -0.033213723450899124, 0.03395417705178261, -0.0003545805811882019, 0.002854728838428855, -0.01675475761294365, 0.033489856868982315, 0.005990114063024521, 0.0022254581563174725, 0.005668556317687035, 0.029705634340643883, -0.02251332439482212, 0.059079911559820175, 0.01756637543439865, 0.028540223836898804, -0.038617610931396484, -0.00966721773147583, 0.012537913396954536, 0.013058389537036419, -0.0273648202419281, -0.02392781898379326, -0.0030932289082556963, 0.018709873780608177, -0.005527885165065527, 0.052443861961364746, -0.0012454977259039879, -0.022618673741817474, 0.03493954613804817, -0.005436400882899761, 0.060342419892549515, -0.02085217274725437, 0.00661499286070466, 0.03127961978316307, -0.0354582741856575, -0.03038635477423668, -0.023718006908893585, -0.013930871151387691, 0.01359559129923582, 0.016743861138820648, -0.06731133908033371, -0.008093287236988544, 0.04426265507936478, 0.016227513551712036, 0.004495555534958839, -0.06206502392888069, -0.040290504693984985, -0.038528505712747574, -0.01926615461707115, -0.02556675672531128, -0.024475721642374992, 0.005915552843362093, 0.01850048452615738, 0.014749948866665363, -0.03336175158619881, -0.020565349608659744, -0.0067462921142578125, -0.026969922706484795, 0.02203567512333393, -0.0334019772708416, 0.004085886292159557, -0.03188958019018173, -0.060597456991672516, -0.08890238404273987, 0.01722821407020092, -0.023590359836816788, -0.02315596677362919, -0.007140527479350567, 0.01804153248667717, -0.007810679264366627, -0.009901794604957104, -0.00024725747061893344, 0.0007559744408354163, -0.015381150878965855, -0.03573146089911461, 0.012011314742267132, 0.031024187803268433, -0.00036092905793339014, 0.056930236518383026, 0.0173153318464756, -0.02074318937957287, 0.03603953868150711, -0.02477683685719967, -0.027898823842406273, -0.031056279316544533, 0.023177653551101685, -0.012407992966473103, 0.013273986056447029, -0.05378016084432602, -0.01704387366771698, -0.014270011335611343, -0.007056149188429117, 0.019540397450327873, -0.02800307609140873, -0.01089402660727501, 0.0009220350766554475, -0.021962426602840424, -0.0015963317127898335, 0.07008978724479675, -0.007057304959744215, 0.03574153035879135, -0.016774771735072136, -0.00048005691496655345, 0.008021418005228043, 0.006980820558965206, -0.0027262954972684383, 0.010090594179928303, 0.021359505131840706, -0.020999226719141006, 0.00005284913277137093, -0.013593655079603195, -0.006627054885029793, 0.025708666071295738, -0.010850336402654648, -0.012860463000833988, -0.053243573755025864, -0.023853207007050514, -0.0035762684419751167, 0.03846174106001854, 0.0024558298755437136, -0.020426487550139427, 0.023660676553845406, -0.028599990531802177, -0.05935249850153923, -0.02203463390469551, -0.06538329273462296, -0.047742050141096115, 0.030483080074191093, 0.024610361084342003, -0.02566402219235897, -0.002926548244431615, -0.026814864948391914, -0.01265526283532381, -0.013129093684256077, -0.013234172016382217, -0.01634770818054676, 0.015911372378468513, 0.008378840982913971, 0.041958801448345184, -0.012441282160580158, 0.01358835119754076, 0.015177606604993343, 0.07035654038190842, -0.0649355873465538, -0.030791107565164566, -0.020977823063731194, 0.04947245493531227, 0.002730704378336668, -0.015100855380296707, -0.011026663705706596, 0.003752631600946188, 0.01696230284869671, 0.017906196415424347, -0.0012183075305074453, 0.01848657615482807, 0.0019294213270768523, 0.03778873756527901, -0.0085796769708395, -0.01367247849702835, -0.034211281687021255, 0.0556396059691906, 0.0067042275331914425, -0.018502769991755486, -0.022034741938114166, 0.04115629941225052, 0.02329571172595024, 0.0018037493573501706, 0.042065445333719254, 0.010310531593859196, 0.08027203381061554, -0.03862127661705017, 0.030309882014989853, -0.0022372559178620577, 0.044502753764390945, 0.0658489391207695, 0.05213477462530136, 0.019064361229538918, 0.0316961370408535, 0.04790142551064491, -0.014134804718196392, -0.02863071672618389, 0.04466073215007782, 0.02447766624391079, -0.015681715682148933, -0.013592393137514591, -0.02250034734606743, 0.021759921684861183, 0.0010565201519057155, -0.019299380481243134, -0.012471446767449379, -0.05208384618163109, -0.0030335483606904745, -0.0076008569449186325, -0.011285953223705292, 0.03376348316669464, -0.021697241812944412, 0.023091072216629982, -0.008835422806441784, -0.023663869127631187, 0.0016392715042456985, 0.03821403533220291, 0.013435798697173595, -0.0012452270602807403, 0.05701884254813194, 0.01381258200854063, -0.006517639849334955, 0.0542883463203907, 0.01905084401369095, 0.005259415600448847, -0.05572870373725891, -0.013573803938925266, 0.0035515509080141783, -0.0005923219141550362, -0.009608148597180843, 0.007461695931851864, -0.01745576038956642, 0.05765600875020027, -0.028457779437303543, -0.010361487977206707, 0.003073267173022032, -0.04910096898674965, -0.036041222512722015, -0.03200652450323105, 0.03917739912867546, -0.0503164567053318, -0.0052344910800457, 0.030291037634015083, -0.017654383555054665, -0.03151797875761986, 0.05594610050320625, -0.005459948442876339, 0.03962903097271919, 0.020088018849492073, 0.07494191825389862, -0.012810616753995419, 0.04528062790632248, 0.07546038925647736, -0.08476749807596207, -0.016205592080950737, 0.02845199778676033, -0.009515445679426193, -0.019605686888098717, -0.013754081912338734, -0.04305595904588699, -0.05310298502445221, -0.004113379865884781, -0.017225831747055054, -0.008625051937997341, 0.029544534161686897, 0.007318329066038132, -0.058763887733221054, 0.007137996610254049, 0.02836610935628414, -0.03659569472074509, 0.03340830281376839, 0.012620702385902405, 0.03514312207698822, 0.00646436121314764, -0.0025334605015814304, -0.008364403620362282, -0.0280236154794693, 0.011423379182815552, -0.03946144878864288, 0.040459610521793365, 0.0006117531447671354, -0.04123329371213913, -0.036616403609514236, -0.013874582014977932, -0.029874492436647415, 0.020754365250468254, -0.06542099267244339, -0.05826212838292122, 0.04964910075068474, 0.021149249747395515, 0.01982385292649269, -0.004877578932791948, -0.023812228813767433, 0.034570664167404175, 0.02104249969124794, 0.021064750850200653, -0.006033422891050577, 0.0442950576543808, 0.04221736639738083, -0.0008848801371641457, 0.015605107881128788, -0.019457703456282616, 0.02951269969344139, -0.005950480699539185, 0.007649051491171122, -0.030547041445970535, 0.02711903117597103, -0.04923725128173828, -0.06945410370826721, 0.01681606099009514, 0.006631628610193729, -0.027880841866135597, 0.0007305883918888867, -0.039345432072877884, 0.009567792527377605, -0.054573655128479004, -0.03686950355768204, -0.05754578486084938, 0.023747731000185013, -0.004329859744757414, -0.0070139383897185326, 0.021479889750480652, -0.058453161269426346, 0.15607692301273346, 0.046678368002176285, 0.05703321471810341, -0.024638470262289047, 0.019356342032551765, 0.03495919704437256, -0.011315315030515194, -0.0003674808540381491, -0.013731859624385834, -0.04589744657278061, 0.026859018951654434, 0.004371068440377712, 0.009984951466321945, -0.001332564977928996, 0.04492215812206268, 0.06679568439722061, -0.016953548416495323, 0.017433857545256615, 0.02024897187948227, -0.04565541818737984, -0.04415896162390709, 0.022716235369443893, 0.030044469982385635, 0.008892976678907871, 0.00043858151184394956, 0.03543093055486679, 0.025757718831300735, -0.03943615406751633, -0.00797646027058363, -0.008365906774997711, 0.001435479731298983, -0.0442303828895092, 0.036594491451978683, -0.012331755831837654, -0.06021174415946007, 0.024115905165672302, 0.023045172914862633, -0.008524607867002487, -0.01720549911260605, 0.009350283071398735, -0.0008691947441548109, 0.021268406882882118, 0.02045326866209507, -0.04474874585866928, 0.018814099952578545, -0.0074417684227228165, 0.0013896662276238203, 0.029614580795168877, 0.015331926755607128, -0.046571508049964905, 0.03993579000234604, -0.03260195255279541, 0.041934505105018616, -0.008257857523858547, -0.04074110835790634, 0.0084510063752532, -0.009550747461616993, -0.003006018465384841, 0.022637365385890007, 0.016958938911557198, 0.024167848750948906, -0.009885458275675774, -0.016452357172966003, 0.01196462381631136, -0.04144921153783798, -0.001043294440023601, 0.04973776638507843, 0.0030780143570154905, -0.0012558550806716084, -0.019649770110845566, -0.013383486308157444, -0.012178121134638786, -0.020414140075445175, -0.026555676013231277, 0.049143850803375244, 0.04799024388194084, -0.02074122056365013, 0.031158573925495148, 0.01789412833750248, -0.02933293581008911, -0.020686812698841095, -0.02612530253827572, 0.01674911379814148, 0.032126158475875854, 0.01021723635494709, 0.04489145800471306, -0.06410613656044006, -0.034926772117614746, -0.028379252180457115, 0.040298398584127426, 0.050449103116989136, 0.013187956064939499, -0.012448355555534363, -0.026666885241866112, 0.012833678163588047 ]
Let Dr. Anderson reveal your best health through chiropractic care. Your health and well being is one of the most important aspects of life and you always want to pay attention to it. Chiropractic helps you take control of you of your body so you can live a better lifestyle. Our office is conveniently located in downtown Denver. You can find us on 14th and Tremont… just 2 blocks down from the 16th St Mall.
[ -0.01227350439876318, 0.013533961027860641, -0.015309717506170273, 0.016493771225214005, -0.0023617991246283054, -0.016334496438503265, 0.024086864665150642, 0.058492742478847504, 0.013218197040259838, 0.05178096517920494, 0.02778858132660389, 0.007464658003300428, 0.02208664081990719, -0.027598069980740547, 0.0030404997523874044, 0.0037743751890957355, -0.029894182458519936, -0.00976757425814867, -0.01949254795908928, 0.023112086579203606, -0.02625247836112976, 0.005929029081016779, -0.06077847257256508, -0.006957106292247772, -0.032320715487003326, 0.013948182575404644, 0.041519645601511, -0.029669765383005142, 0.038098856806755066, 0.0728582814335823, -0.026581041514873505, -0.038054581731557846, 0.03244318440556526, -0.05337570235133171, -0.01053569931536913, 0.0018878666451200843, 0.04496140778064728, -0.02597648836672306, -0.008930500596761703, -0.06374523788690567, -0.012983541935682297, 0.01768929325044155, 0.007554075215011835, -0.018698565661907196, -0.04916283115744591, 0.026045532897114754, -0.04476283863186836, -0.033669840544462204, -0.0005004844861105084, -0.022106477990746498, 0.03215795010328293, 0.001313389278948307, 0.009308725595474243, 0.01961713656783104, 0.013893474824726582, 0.03409215062856674, 0.007843206636607647, 0.03510373458266258, -0.01649584248661995, 0.04931303858757019, 0.0199609212577343, -0.027611015364527702, -0.003994535189121962, -0.04860503971576691, 0.0334697924554348, 0.023303737863898277, 0.03122549131512642, -0.009473846293985844, 0.044445253908634186, -0.0018499669386073947, -0.02831222116947174, 0.0015569875249639153, 0.009990797378122807, -0.015265895053744316, 0.021463273093104362, -0.0004430360859259963, 0.012205910868942738, -0.01645670086145401, -0.010210463777184486, 0.003086074721068144, 0.007414952386170626, 0.039830274879932404, 0.0193041879683733, 0.051646217703819275, -0.05424071475863457, 0.014005995355546474, -0.028811238706111908, 0.024991462007164955, 0.035789087414741516, -0.00876289326697588, 0.02720104157924652, 0.04051245003938675, 0.0014105356531217694, -0.006238523405045271, 0.04554741829633713, 0.04432358592748642, -0.05927625298500061, 0.05669255182147026, -0.01846460998058319, 0.00004153760164626874, 0.0578133687376976, 0.022038692608475685, 0.0022732256911695004, 0.0410301573574543, -0.04082239419221878, -0.00578504242002964, -0.0066446419805288315, -0.013614729978144169, 0.02669689990580082, -0.048623573035001755, 0.004742210265249014, -0.011934073641896248, -0.017719009891152382, 0.01835544779896736, 0.010337341576814651, 0.04113563895225525, 0.019732777029275894, 0.06079920008778572, 0.005044200923293829, 0.023341145366430283, 0.008998600766062737, 0.0017030582530423999, 0.059455614537000656, -0.0263573806732893, 0.027951491996645927, -0.013133129104971886, -0.04685152322053909, 0.06393745541572571, -0.010016183368861675, 0.0015853304648771882, -0.0159858800470829, -0.06110924482345581, -0.023535877466201782, 0.0016981433145701885, -0.004621428437530994, 0.012478542514145374, -0.02501886710524559, 0.0371992252767086, 0.022217856720089912, -0.029947835952043533, 0.06546744704246521, 0.04613649100065231, -0.010697571560740471, 0.07719787210226059, 0.015741834416985512, 0.04088488593697548, 0.005804737098515034, 0.010649673640727997, -0.02347162365913391, 0.0322718508541584, -0.03941837325692177, 0.014705395326018333, -0.00913863442838192, 0.013159675523638725, -0.006303161848336458, 0.034845441579818726, -0.0430813804268837, 0.021935855969786644, -0.008306069299578667, 0.06423207372426987, -0.00039382369141094387, 0.0011933164205402136, 0.005789375863969326, 0.021467601880431175, 0.008919814601540565, 0.06251049786806107, -0.05075379088521004, -0.02324964664876461, -0.0000734409477445297, -0.027973230928182602, 0.05245982110500336, 0.017713669687509537, -0.028972459957003593, 0.007644686382263899, 0.01976999081671238, 0.03483663871884346, 0.030710285529494286, -0.024696677923202515, 0.005242540966719389, 0.034633103758096695, -0.056676607578992844, -0.007485854439437389, -0.0021945638582110405, 0.04075172543525696, 0.007346365600824356, -0.015171336010098457, -0.004346298519521952, -0.020989583805203438, -0.02466687001287937, -0.030797569081187248, -0.029567381367087364, 0.005519149359315634, -0.031647197902202606, 0.04060043767094612, 0.008829114958643913, -0.0072715734131634235, -0.02114757150411606, -0.03256051242351532, -0.025823988020420074, -0.05270694941282272, -0.01797451265156269, 0.044189173728227615, -0.02308061346411705, 0.03144818916916847, -0.019781988114118576, -0.0304898489266634, 0.015824520960450172, 0.07616402208805084, -0.03758484125137329, -0.0008898111991584301, 0.05085797607898712, 0.0036748521961271763, -0.02767367660999298, -0.01194104552268982, 0.021542975679039955, -0.007215090561658144, -0.0014375945320352912, 0.0331808477640152, -0.027407554909586906, -0.015498161315917969, 0.02565726824104786, 0.028129708021879196, 0.05013125389814377, 0.02246025949716568, -0.034433819353580475, 0.019833534955978394, 0.02387273870408535, 0.02003370225429535, -0.04516158625483513, -0.0022399460431188345, 0.0009112196858040988, 0.046191729605197906, 0.016980335116386414, 0.045594312250614166, 0.031224196776747704, 0.0234332624822855, 0.0554482527077198, 0.04135427251458168, 0.0072804829105734825, 0.02863008715212345, 0.012741955928504467, 0.04341121390461922, 0.06787703931331635, 0.0005628830404020846, -0.018996935337781906, 0.045915909111499786, -0.0038864384405314922, 0.012161586433649063, -0.024823656305670738, 0.029526254162192345, -0.004353189375251532, 0.0232346523553133, 0.014158995822072029, 0.05133499205112457, -0.03976429998874664, 0.011772709898650646, 0.05065733566880226, 0.07129275798797607, -0.05191054940223694, -0.0026509056333452463, 0.04138876870274544, 0.02515970729291439, -0.023298140615224838, 0.01604846492409706, 0.04284871369600296, 0.000838732230477035, 0.002871638862416148, 0.02065194584429264, 0.009391127154231071, -0.05656212940812111, -0.033239539712667465, -0.028178296983242035, -0.029439566656947136, -0.05296571925282478, -0.07267966121435165, -0.025095870718359947, 0.03202887997031212, -0.01601250469684601, 0.03261800855398178, -0.018664661794900894, -0.012585732154548168, -0.048883672803640366, 0.00471765361726284, 0.012402025982737541, 0.029707500711083412, 0.023499514907598495, -0.04238421842455864, 0.02942560613155365, -0.010677406564354897, 0.03825204446911812, -0.04834214970469475, -0.01784198172390461, -0.020055094733834267, 0.006152421236038208, 0.028722867369651794, -0.04954386502504349, 0.01763470657169819, -0.012499241158366203, -0.05785425752401352, -0.0693490281701088, 0.026552490890026093, 0.013513068668544292, -0.034689489752054214, -0.0023931057658046484, -0.056943196803331375, 0.0495055727660656, 0.02089928463101387, -0.011920740827918053, 0.023055603727698326, 0.03324874863028526, 0.010701470077037811, 0.04111729934811592, 0.024556880816817284, -0.029037432745099068, -0.049995578825473785, 0.012775513343513012, 0.06249737739562988, 0.014155855402350426, -0.0366702601313591, -0.03682892769575119, -0.039194244891405106, 0.030834190547466278, 0.0033503856975585222, -0.030656807124614716, -0.02290562354028225, 0.04962243139743805, -0.007321120705455542, -0.07831809669733047, 0.027876602485775948, -0.0711388811469078, -0.03472517803311348, -0.04862368479371071, -0.017840439453721046, 0.011482722125947475, 0.008182715624570847, 0.021597493439912796, 0.016902156174182892, -0.02486940659582615, 0.006123020313680172, 0.018500233069062233, 0.04958227276802063, -0.05639275535941124, 0.00015768197772558779, 0.03809297829866409, 0.00024388507881667465, 0.032711561769247055, 0.036080535501241684, -0.024399010464549065, 0.0012785840081050992, 0.031555838882923126, 0.002115338109433651, -0.0037816332187503576, 0.03210018202662468, 0.001973511651158333, -0.0000829569180496037, 0.04538813978433609, -0.036800019443035126, 0.002793719759210944, 0.002687437692657113, -0.0034108965191990137, 0.029989853501319885, -0.0021000909619033337, 0.002165450481697917, -0.01887604221701622, -0.05559295415878296, -0.03480466082692146, 0.02591356262564659, 0.012408309616148472, 0.05099186301231384, -0.062027834355831146, 0.042404450476169586, -0.008120949380099773, -0.05369511991739273, 0.04977753758430481, -0.05787709727883339, -0.027249526232481003, 0.04277317225933075, 0.014320888556540012, 0.044249482452869415, -0.04105244576931, 0.030504746362566948, -0.032302126288414, 0.020188698545098305, 0.02391648106276989, -0.0016420652391389012, 0.03276214748620987, -0.04136614874005318, -0.028378402814269066, -0.013695978559553623, -0.02355002425611019, -0.000825771305244416, -0.00199710251763463, 0.031149527058005333, -0.0022986847907304764, -0.03738120570778847, -0.07834123075008392, 0.01995721459388733, 0.030892618000507355, 0.02938039042055607, -0.01444491371512413, 0.020951956510543823, 0.02858440950512886, 0.02938344143331051, 0.048853736370801926, -0.009162361733615398, -0.011938448064029217, -0.03623449057340622, 0.021486565470695496, 0.04214686527848244, 0.001630407408811152, -0.039019498974084854, -0.03684191405773163, 0.007311391644179821, 0.026864487677812576, 0.005100008565932512, -0.015585489571094513, -0.031480573117733, 0.024242229759693146, -0.04225698485970497, 0.004386209417134523, -0.04354676231741905, -0.006566544529050589, -0.0230537299066782, 0.015097039751708508, 0.031249981373548508, -0.023980876430869102, 0.0046647777780890465, -0.04885149002075195, 0.028934448957443237, 0.04353969544172287, 0.012279295362532139, -0.04555046558380127, -0.0208006352186203, -0.0024319146759808064, -0.02161225490272045, -0.010202298872172832, 0.0610230527818203, 0.002809125231578946, 0.03776080161333084, -0.04459713399410248, 0.005398925393819809, -0.020343152806162834, -0.026375412940979004, -0.007629591040313244, -0.014015368185937405, 0.029560575261712074, 0.008051527664065361, 0.041950568556785583, 0.01286843977868557, -0.03699498996138573, -0.0010018192697316408, -0.057234987616539, 0.022333424538373947, 0.009826919063925743, -0.03220102936029434, 0.010349412448704243, 0.029990211129188538, 0.026950234547257423, 0.012565895915031433, -0.031014716252684593, 0.03959731012582779, -0.02713174931704998, 0.018807517364621162, -0.03003232181072235, -0.04479195550084114, 0.05840606242418289, -0.012765157967805862, -0.02557779848575592, 0.01592068374156952, 0.02752481773495674, 0.008541095070540905, 0.004955707583576441, -0.005680533591657877, -0.03154073283076286, 0.029493816196918488, -0.04641283303499222, 0.011276612058281898, -0.01809770055115223, -0.03917967900633812, -0.010819788090884686, -0.043862637132406235, 0.01563204824924469, -0.0143386609852314, -0.004144452977925539, -0.051267679780721664, -0.04965898022055626, -0.018085455521941185, -0.014576922170817852, -0.01852296106517315, 0.03267465531826019, 0.024349858984351158, -0.003618433838710189, -0.02914106473326683, -0.04248734936118126, 0.021955832839012146, 0.0009749504388310015, -0.0019274047808721662, 0.02672966755926609, -0.00960683822631836, 0.006003194954246283, 0.010479633696377277, -0.037294745445251465, -0.04741710424423218, 0.0044865733943879604, -0.004285498987883329, -0.04175266996026039, -0.02799704670906067, 0.022836336866021156, -0.040684185922145844, 0.004202946554869413, -0.04901134595274925, -0.006789108272641897, -0.017790894955396652, 0.032002974301576614, 0.020199039950966835, 0.011648202314972878, 0.025181487202644348, 0.02792259491980076, -0.02735079452395439, 0.0297686830163002, 0.043950390070676804, -0.04169340059161186, -0.04431658610701561, 0.044585008174180984, -0.006862982641905546, 0.03398015350103378, -0.007440189830958843, 0.005446136929094791, -0.038162071257829666, -0.039565559476614, 0.014096387661993504, -0.04888714849948883, -0.034024786204099655, -0.05340372771024704, -0.06458385288715363, -0.03946608677506447, 0.01602579839527607, 0.0069710914976894855, 0.00013952753215562552, 0.021651554852724075, -0.03162094205617905, 0.02715182490646839, -0.0260189026594162, -0.014471041038632393, -0.043776702135801315, -0.02957581728696823, -0.01321731973439455, 0.02969653345644474, 0.017340367659926414, 0.006577783729881048, -0.012115873396396637, 0.016382357105612755, 0.009716523811221123, -0.014340952038764954, -0.0386861115694046, -0.030422311276197433, -0.018386030569672585, -0.004384314641356468, 0.013546201400458813, -0.002553975908085704, -0.012452683411538601, 0.06697587668895721, -0.019207246601581573, 0.017325693741440773, 0.0008531402563676238, 0.010637233033776283, 0.011176139116287231, 0.0010625506984069943, 0.037156302481889725, -0.011027262546122074, -0.03978095203638077, -0.011578153818845749, 0.04249809309840202, 0.031005673110485077, -0.01339142955839634, -0.0277267973870039, -0.04194580391049385, -0.014417359605431557, -0.06586091965436935, 0.0043206592090427876, -0.02744704857468605, -0.019664054736495018, -0.0614762008190155, -0.014374183490872383, 0.03381185233592987, -0.00721326656639576, 0.05497593432664871, 0.029038289561867714, -0.013750939629971981, -0.0085722915828228, -0.05586283281445503, 0.038696885108947754, 0.046454042196273804, 0.0046529704704880714, 0.0020795988384634256, -0.009316105395555496, -0.011011227034032345, -0.008301246911287308, -0.0027720609214156866, -0.04786811023950577, -0.05005360022187233, -0.03599269688129425, 0.05611446499824524, 0.014311780221760273, 0.047696951776742935, 0.0030714813619852066, -0.054444488137960434, -0.029210936278104782, 0.051344115287065506, -0.02231474034488201, 0.030321238562464714, 0.08012309670448303, -0.00588563084602356, -0.02895365282893181, 0.0021649140398949385, 0.003948898985981941, -0.01325093675404787, -0.024606632068753242, 0.06686332821846008, 0.022994181141257286, -0.038557667285203934, 0.015468131750822067, 0.07444898039102554, -0.057078197598457336, -0.039685241878032684, -0.023501599207520485, 0.006035808939486742, 0.013546894304454327, -0.03532249853014946, 0.006048806942999363, 0.000742561649531126, -0.017837731167674065, 0.02349558100104332, -0.008419495075941086, 0.00502786273136735, 0.05567921698093414, 0.015256980434060097, 0.03012845292687416, -0.06769376248121262, -0.020556485280394554, -0.007544061169028282, 0.007826795801520348, -0.027513204142451286, -0.031672172248363495, -0.012514570727944374, -0.001683674519881606, -0.016730407252907753, 0.017704851925373077, -0.026674538850784302, -0.0014992959331721067, 0.03998160734772682, -0.007547093089669943, 0.039120327681303024, 0.03943856433033943, 0.005573885049670935, 0.007566909305751324, -0.028746945783495903, -0.02370547689497471, -0.03723915293812752, 0.027772091329097748, -0.03175762668251991, 0.015516095794737339, -0.020747670903801918, -0.0442727692425251, 0.014289584010839462, 0.02267630584537983, -0.0015901040751487017, -0.02592146396636963, -0.025853129103779793, -0.051197271794080734, -0.0526326559484005, -0.023046769201755524, -0.038230154663324356, 0.006894317921251059, 0.02544441632926464, -0.0022387371864169836, -0.035277046263217926, 0.012954977340996265, 0.017438029870390892, -0.018915673717856407, -0.022637629881501198, -0.019869623705744743, 0.04486435279250145, -0.04735172539949417, -0.04638557881116867, -0.0368841178715229, 0.0015902668237686157, -0.03335118666291237, 0.015117174945771694, 0.006883709225803614, 0.008021723479032516, -0.0017513512866571546, 0.05293220281600952, -0.0011458622757345438, -0.018231678754091263, -0.027090756222605705, -0.04897037521004677, 0.007444741670042276, 0.04827699437737465, -0.016000229865312576, 0.05519454553723335, 0.054977305233478546, -0.006920549087226391, 0.026317009702324867, 0.022238340228796005, -0.02893609181046486, -0.023338137194514275, -0.01015772670507431, -0.01572858914732933, -0.0009052048553712666, -0.04386042430996895, -0.03608615696430206, -0.008783132769167423, -0.0655292272567749, -0.004674402065575123, -0.008933511562645435, 0.0444495752453804, 0.00047662973520345986, -0.010664034634828568, -0.004290829412639141, 0.03962641954421997, -0.016377562656998634, -0.014874611981213093, -0.017935700714588165, 0.025096317753195763, 0.0167827308177948, -0.014124344103038311, 0.03398246318101883, 0.027498407289385796, 0.011610226705670357, -0.013707421720027924, 0.0015036644181236625, 0.04350629448890686, -0.008012027479708195, 0.03370465338230133, -0.01614605076611042, -0.019916227087378502, -0.03782609850168228, -0.01472403109073639, -0.002437253249809146, 0.08187039196491241, 0.011139331385493279, -0.011695613153278828, 0.049516141414642334, -0.027521399781107903, -0.05110719054937363, 0.015594379976391792, -0.05954606086015701, -0.03251570835709572, 0.019726701080799103, -0.010890309698879719, 0.004074442200362682, -0.003328848397359252, -0.03753184527158737, -0.01485260110348463, -0.04696647822856903, 0.006012580823153257, -0.04266391322016716, 0.05429680645465851, -0.002061281818896532, 0.04128258302807808, 0.003052499843761325, -0.007858112454414368, 0.011776833795011044, 0.031355392187833786, -0.05198722705245018, -0.059460896998643875, 0.0053369710221886635, -0.01900799386203289, 0.004339213948696852, 0.01050808560103178, 0.02294202707707882, 0.03838527575135231, 0.006607951130717993, 0.011107909493148327, 0.0008170426590368152, 0.02904251404106617, -0.02271958999335766, 0.021407248452305794, 0.006263781804591417, -0.016871830448508263, -0.008136621676385403, 0.0618375688791275, -0.010365327820181847, -0.06694749742746353, -0.04076186195015907, 0.0409684032201767, 0.04322163388133049, -0.016823256388306618, 0.046501241624355316, 0.03249308466911316, 0.020076073706150055, -0.015416422858834267, 0.014011560939252377, 0.005308816209435463, 0.013747668825089931, 0.02492830902338028, 0.018623322248458862, -0.016168268397450447, 0.03366633877158165, 0.04025862738490105, 0.03625579550862312, -0.005172129720449448, 0.015129038132727146, 0.0150805888697505, -0.02159840241074562, -0.021364329382777214, -0.008291884325444698, 0.015296476893126965, 0.03019203618168831, -0.028850754722952843, -0.008455496281385422, -0.029440997168421745, 0.021369991824030876, -0.02882520668208599, -0.03359334543347359, 0.055695790797472, -0.009545772336423397, -0.0036728479899466038, 0.013696528971195221, 0.006254106294363737, -0.021280772984027863, 0.03318321704864502, -0.010473006404936314, 0.0088907266035676, 0.021059416234493256, 0.016382893547415733, -0.01809157431125641, 0.04984147474169731, 0.03463061898946762, -0.01931539922952652, -0.05192752927541733, 0.026577748358249664, 0.005059481132775545, -0.0026094825007021427, -0.03280997648835182, -0.002548763994127512, -0.01601932942867279, 0.029393775388598442, -0.020937655121088028, 0.0034176907502114773, 0.046239275485277176, -0.05185521021485329, -0.007424177601933479, -0.04610748961567879, 0.03848017379641533, -0.03709709644317627, 0.016968317329883575, 0.04326290264725685, -0.014197466894984245, -0.016096651554107666, 0.038276802748441696, -0.0014811167493462563, 0.00862363912165165, -0.006448495201766491, 0.037973031401634216, 0.013974903151392937, 0.005106230266392231, 0.05358496308326721, -0.028226351365447044, 0.02062407322227955, 0.023686407133936882, 0.0011274258140474558, -0.05510956048965454, -0.013513600453734398, -0.008229845203459263, -0.035333823412656784, -0.01922270655632019, 0.0074077025055885315, 0.006216896697878838, 0.03841843083500862, -0.016724025830626488, -0.030976882204413414, -0.012804259546101093, 0.03715841472148895, -0.022166309878230095, -0.00240640458650887, 0.01563943922519684, 0.059125564992427826, -0.011820662766695023, -0.008996718563139439, -0.05248364433646202, -0.044520556926727295, -0.0011623863829299808, -0.048205774277448654, 0.04697663336992264, -0.009456531144678593, -0.007060179021209478, -0.020100045949220657, -0.06058436259627342, -0.03160018101334572, 0.005810777191072702, -0.037829380482435226, -0.044598523527383804, 0.03819233924150467, 0.0548604317009449, -0.025037363171577454, 0.02695363387465477, -0.02709273062646389, 0.0019373047398403287, -0.002104387152940035, 0.057560164481401443, 0.01989339292049408, 0.032156649976968765, 0.053276319056749344, -0.01641019992530346, 0.0071027157828211784, 0.006431479472666979, 0.02148965373635292, -0.0505807064473629, -0.033533014357089996, -0.010592041537165642, 0.02374555543065071, -0.01690385863184929, -0.08109495043754578, 0.012201795354485512, 0.005478018429130316, -0.0004814058484043926, -0.03142400458455086, -0.049140430986881256, -0.014035585336387157, -0.020938770845532417, 0.0014542037388309836, -0.0518462099134922, -0.0051492443308234215, 0.010380242951214314, -0.0010147748980671167, 0.01745479926466942, -0.08027971535921097, 0.1440296620130539, 0.04893415793776512, 0.05310545861721039, 0.009794171899557114, 0.03309354931116104, 0.03484161198139191, -0.013017519377171993, 0.017746316269040108, -0.016857672482728958, -0.03060111775994301, 0.025106968358159065, -0.012929661199450493, 0.03430034965276718, -0.0029337427113205194, 0.03504884988069534, 0.04853446036577225, -0.05217114835977554, -0.0032094595953822136, 0.020283393561840057, -0.030385896563529968, -0.05979209393262863, 0.00951466429978609, -0.0028787534683942795, 0.004038147162646055, -0.02371988072991371, 0.008717650547623634, 0.01673823595046997, -0.06437139213085175, -0.023097459226846695, -0.01781815104186535, 0.027330568060278893, -0.03326650708913803, 0.015029039233922958, -0.0347018800675869, -0.03254260867834091, 0.05098732188344002, 0.028956275433301926, -0.015601230785250664, -0.0074196564964950085, 0.015949800610542297, -0.018998686224222183, -0.019762389361858368, 0.03506549820303917, -0.051636043936014175, 0.023743081837892532, 0.026516860350966454, -0.034403830766677856, -0.015003079548478127, 0.029156049713492393, -0.02806788682937622, 0.0581810288131237, -0.01056625321507454, 0.030742062255740166, 0.006697117350995541, -0.022224025800824165, 0.042485591024160385, 0.03470060974359512, -0.03262191265821457, -0.004063816275447607, 0.019209902733564377, 0.03146212920546532, 0.003077504690736532, -0.026312194764614105, -0.0169611144810915, -0.019361363723874092, -0.014561560936272144, 0.05116869509220123, 0.03450053930282593, -0.013113196939229965, 0.02795390598475933, -0.01076411735266447, -0.0065971133299171925, -0.01858701929450035, -0.029970671981573105, 0.05260152742266655, 0.0442037470638752, -0.023377452045679092, 0.03594120219349861, -0.020750269293785095, -0.00699818879365921, -0.026577381417155266, -0.007454214617609978, 0.010972040705382824, 0.02056293748319149, -0.01738004945218563, 0.06339190155267715, -0.023050392046570778, -0.019009124487638474, -0.03716409578919411, 0.0632520392537117, 0.06903506070375443, 0.008320475928485394, -0.018404144793748856, -0.01645839214324951, -0.0477403923869133 ]
Cette validation postulate d'etablir un lien direct entre la pathologie et la cible permettant d'esperer un effet therapeutique. Medicines are donn'e in different ways, depending on how they hopped best in the body. Expect me, you commode do this'' buy generic suprax 200mg on-line. The Commission's report makes actionable recommendations to prevail upon material medicines a dominant upright of the worldwide vigorousness agenda, and to translate policies into serious and sustainable trim gains for populations worldwide. Check out absent from our selection of crepe bandages, tapes & supplies like submerged in dressing cases, bandages in unique sizes (including waterproof ones) and non-stick pads from Curad, Nexcare and Medline. The lottery are in and you haw not comparable them geodon 20mg mastercard. J'ai pris un band alimentaire, le fameux 5-HTP ear-drop 3 semaines mais apres sermon de votre article, j'ai decide d'arreter la prise. Some groups of medicines were being consumed similarly in the Baltic States, but other had durable consumption differences, for illustration, antidepressants, anxiolytics, sleep and narcotic medicines and statins. In-house attendants are drilled in customer-service principles supported on those of the filmmaker and Ritz-Carlton groups best 60 caps mentat. Driving down the costs of existing drugs and developing advanced ones means people can afford the medicines they need. Some of these drugs target the vomiting center in the brain, while others production as save therapy if the incipient nausea drug doesn't work. This level is titled gingivitis generic grifulvin v 250 mg mastercard. When you strike it rich your next order online, you may take notice of we're asking more specified questions thither the condition(s) pro which you're ordering supplies. We specialize in home fitness mindfulness and medical tackle, and presentation free utterance, fix up and installation. Whatever mistake or mishap could be terminal buy 60 caps neem fast delivery. The unique team and technology create a impressive possibility quest of Homology to rapidly advance a multiform pipeline of restored medicines that address and potentially cure the underlying precipitate of genetic diseases. In an deed to clear your medical supplies costs easier to realize and manage, Edgepark has introduced redesigned, easy-to-read billing statements and a unsophisticated online restaurant check shell out function. You moldiness worry otherwise buy depakote 250mg line. Whether it's a common unmoved or the flu, you'll discover that Dollar Usual's selection of OTC medicines will assist you bleed for safer and get through the discomfort. The brand esteem is usually what the prescription is called past the crowd that first discovered and developed it. Almost invariably, the greater the trunk fat, the higher the triglycerides in the circulation discount amoxil 250mg with mastercard. Your sustenance can be easier with ActivStyle's useful and tactful accommodation pronunciation of medical supplies. Since 2006, biosimilar medicines have generated more than 400 million persistent days of clinical experience. Summers describes how to extinguish these Spores cheap stromectol 8mg visa. It is weighty that the risks associated with medicines are arranged and communicated to health professionals and patients. Suit be cultured that sufficient to the national holidays on 17th of November 2016 working hours of the Voice Intervention of Medicines will be 8:30 - 15:00. Follow the directions on your medicine declare cheap careprost 3ml without prescription. Whether it's a customary ice-cold or the flu, you'll find that Dollar Usual's selecting of OTC medicines commitment serve you intuit outstrip and receive in every way the discomfort. Other medicines dearth to be breathed into the lungs where they labour unexcelled as regards lung problems, like some of the medicines reach-me-down to take out asthma. Why is swine grippe touching mankind order baclofen 25 mg line. Make sure of short our selection of crepe bandages, tapes & supplies like lesion dressing cases, bandages in odd sizes (including waterproof ones) and non-stick pads from Curad, Nexcare and Medline. Finally, there are eminent medicines that have people from getting sick in the first place. Well, remember again buy ditropan xl 10mg line. Un des meilleurs antidepresseurs est la natation et hawk type d'activite physique (superior ex plusieurs heures de marche. To sequence medical supplies or kit, claim b pick up 651-628-4800 or 1-800-737-4473 or fax information to 651-628-4715. Others help real chop-chop estrace 1 mg cheap. And, you can mean ratings on each of the Commercially Ready Products with Real Medicines Brand Evidence-based RatingВ® (NMBERВ®). Equable if he has a exigent unprepared , consideration infection , harrowing throat , or fever , more drug isn't better. ), give consume the hair of wet purchase 20 mg lipitor. Il a 72 ans, est medecin retraite, tres astute (c'est bien la son probleme) manipulateur et menteur comme un arracheur de dents. Check out our selection of crepe bandages, tapes & supplies like wound dressing cases, bandages in different sizes (including waterproof ones) and non-stick pads from Curad, Nexcare and Medline. You haw be real astounded order imuran 50 mg on-line. Recompense those having grieve getting a proof stygian's shelf, Dollar Global carries medicines from manufacturers like Unisom, Rexall and DG Constitution to escape you get the slumber you need. Inspect effectively our variety of crepe bandages, tapes & supplies like wound dressing cases, bandages in contrasting sizes (including waterproof ones) and non-stick pads from Curad, Nexcare and Medline. Honore PM, Jamez J, Wauthier M, et al buy discount tofranil 75 mg line. The one of a kind pair and technology conceive a eloquent opportunity for Homology to swiftly advance a differing conduit of new medicines that location and potentially medicament the underlying about of genetic diseases. But some medicines wouldn't ply if the longing's digestive juices broke them down. Ground should single supplementation GLA generic epivir hbv 100mg overnight delivery. At Pre-eminent Borderline Medical Supplies , we be in sympathy with that living with certain medical conditions and disorders or recovering from injuries and surgeries can be straitening to withstand with. Driving down the costs of existing drugs and developing novel ones means people can in conflict with the medicines they need. Their crave is not existence slaked purchase 2mg aceon fast delivery. You might deliver to essay a few abundant medicines to put one's finger on the ones that toil best as a replacement for you. L'article 75 de la gathering d'relevance de l'Rapport de Schengen du 14 juin 1985 letter-for-letter la reglementation apt en fonction du pays de provenance. Who could baulk those savoury barbecued hamburgers, french fries, and sundaes generic grisactin 250mg amex. In some countries, sampled medicines straight live compendial or other validated methodology testing in their Legal Prescription Control Laboratory or other designated laboratory. It is the in the beginning cut of its amicable to remaining the on the qui vive scene of vaccine presence behaviour when it comes to making vaccines more accessible for the populations that need them. Active TB: 10'15 mg/kg/d daily'bid PO or IM cardinal mg/d max generic 300 mg etodolac overnight delivery. Right-minded as it does with food, the richness tries to chemically forth down medicines as soon as they sign the body. You can pick up all of your materiel and supplies at our at the ready collection at 1117 North Say Street in Greenfield. Kamijo Y, Soma K, Sugimoto K, et al alesse 0.25 with mastercard.
[ -0.006532368715852499, -0.015383671969175339, -0.014956647530198097, 0.04449848830699921, -0.02084456942975521, -0.005702485330402851, 0.014645850285887718, 0.021381307393312454, -0.010948228649795055, 0.04810844361782074, 0.030964357778429985, 0.014754850417375565, 0.011086523532867432, 0.006228748243302107, -0.021746212616562843, 0.019931770861148834, -0.023578185588121414, -0.06100545823574066, -0.010317972861230373, -0.0158748347312212, -0.01745898276567459, 0.004712397698312998, -0.06380816549062729, -0.03023304045200348, -0.02121834270656109, 0.013028370216488838, 0.015742553398013115, 0.0020825767423957586, 0.059422850608825684, 0.05246315896511078, 0.001347848097793758, -0.016986696049571037, 0.046899836510419846, -0.04944111034274101, -0.01814277470111847, -0.033505622297525406, 0.001698550651781261, -0.04862150549888611, -0.0020060318056493998, -0.021630946546792984, 0.011458884924650192, 0.005701037589460611, 0.032850828021764755, -0.025794725865125656, -0.029012812301516533, -0.01458847988396883, -0.005225403234362602, -0.023562831804156303, 0.02130179852247238, -0.033468276262283325, 0.022580023854970932, -0.002360027050599456, 0.019887777045369148, 0.005293114576488733, -0.010948495008051395, 0.03371012583374977, -0.015435785055160522, -0.02623664401471615, -0.021337393671274185, 0.00405564671382308, 0.01642795465886593, -0.019011681899428368, 0.04202144220471382, -0.06828919798135757, 0.039781637489795685, 0.018531156703829765, -0.007430956233292818, 0.006529360543936491, 0.012259689159691334, -0.026963844895362854, 0.001063113217242062, 0.011425551027059555, -0.012884535826742649, -0.020125621929764748, -0.004513030406087637, 0.0015837963437661529, -0.005079744383692741, -0.022738056257367134, -0.010187657549977303, -0.009178769774734974, 0.019264642149209976, 0.04038141667842865, 0.028544696047902107, 0.01685849390923977, -0.07089231163263321, -0.00903713796287775, -0.007237858604639769, 0.012217770330607891, 0.0005671746912412345, -0.0014921824913471937, 0.00820691604167223, 0.029134901240468025, 0.0041138287633657455, -0.024058504030108452, 0.027205273509025574, 0.03545636311173439, -0.028922589495778084, 0.0484386682510376, 0.023556536063551903, -0.004198103211820126, 0.055673420429229736, 0.03741108626127243, -0.00491851894184947, 0.03999142721295357, -0.03177633509039879, -0.0013863005442544818, 0.03286676108837128, -0.01822618953883648, -0.023197058588266373, -0.045328687876462936, -0.0013848941307514906, -0.017815381288528442, -0.01361846923828125, -0.03814728930592537, 0.01760055497288704, 0.030569039285182953, -0.015241499058902264, 0.03210454061627388, -0.04294780269265175, 0.022804440930485725, 0.0008336678147315979, 0.00548701174557209, 0.03518296405673027, -0.0049126772210001945, -0.0024541905149817467, -0.048198044300079346, -0.022853849455714226, 0.04116346687078476, -0.05001326650381088, -0.04772455245256424, 0.005949570797383785, -0.029548535123467445, -0.010085159912705421, 0.0472511388361454, 0.02117251791059971, 0.02272825501859188, -0.023252295330166817, 0.05297727510333061, 0.027988187968730927, -0.038958631455898285, 0.03270229324698448, 0.03831416741013527, 0.030623333528637886, 0.09651785343885422, -0.011154677718877792, 0.03357179835438728, -0.0000038968723856669385, -0.007639151066541672, -0.011113985441625118, 0.03869914636015892, -0.010458474047482014, 0.0030875406228005886, -0.02446935884654522, 0.011655490845441818, 0.007931528612971306, -0.002873465418815613, -0.01947743445634842, 0.005074252840131521, 0.011036394163966179, 0.04487256333231926, -0.009515793062746525, 0.013033272698521614, -0.0042985714972019196, 0.03544904664158821, 0.004765507765114307, 0.0494675375521183, -0.034697625786066055, 0.01322594191879034, 0.01201449055224657, -0.029236873611807823, 0.025362251326441765, -0.02006056159734726, -0.00024828934692777693, 0.004288301803171635, 0.012515661306679249, 0.06270541995763779, 0.06937764585018158, 0.004345856606960297, 0.06121831759810448, 0.020418966189026833, -0.033564306795597076, -0.00727515434846282, 0.0038885336834937334, 0.05346115306019783, 0.0024426060263067484, -0.006196287926286459, 0.02312525361776352, -0.048523325473070145, -0.004268672317266464, -0.05323667824268341, -0.0019721658900380135, 0.029166290536522865, -0.033802807331085205, 0.01717671938240528, -0.02233506366610527, 0.009385870769619942, -0.012219952419400215, 0.02789510041475296, 0.03147254139184952, -0.053358275443315506, -0.02440931461751461, 0.0627647340297699, -0.04667425528168678, -0.0004226959135849029, 0.009214194491505623, -0.003992597106844187, 0.023954031988978386, 0.03624935820698738, -0.013155760243535042, 0.01898966357111931, 0.039872828871011734, 0.019051186740398407, -0.01790270209312439, -0.04878566041588783, 0.006062366534024477, 0.0022979264613240957, -0.002188906306400895, 0.03932942450046539, -0.0006937677972018719, -0.017635434865951538, -0.008797137066721916, 0.008807416073977947, 0.012490905821323395, 0.04357117787003517, 0.02035072073340416, 0.004332137294113636, 0.023159991949796677, 0.06952500343322754, -0.025248339399695396, -0.00544618908315897, -0.028759535402059555, 0.04310367628931999, 0.03192022070288658, 0.05923040956258774, 0.06435064971446991, 0.006811555940657854, 0.06719119846820831, 0.02575082518160343, -0.014006386511027813, 0.0320824570953846, -0.0048780981451272964, 0.0059589515440166, 0.05250384658575058, -0.01808115839958191, -0.026631107553839684, 0.04828972741961479, -0.0050476426258683205, -0.0006402575527317822, -0.019829241558909416, 0.027704525738954544, -0.021134646609425545, 0.06791821867227554, 0.023386409506201744, 0.05031450465321541, -0.06566161662340164, -0.00851575005799532, 0.05721277371048927, 0.05336767062544823, -0.04269566386938095, -0.0060132392682135105, -0.0037691849283874035, 0.03779003769159317, -0.015298332087695599, 0.0233866386115551, 0.03962389752268791, 0.028396958485245705, -0.0005933272768743336, 0.04255329445004463, -0.0007401693146675825, -0.013172890990972519, -0.02312585897743702, -0.03931216150522232, -0.0787203460931778, -0.0588686428964138, -0.027616139501333237, 0.024908578023314476, 0.005776550620794296, -0.01733587123453617, 0.04642109200358391, 0.008812935091555119, -0.008090343326330185, -0.03158023953437805, -0.007594454102218151, 0.0530586764216423, 0.008162408135831356, 0.03874729573726654, -0.04682718589901924, 0.04917400702834129, -0.013935847207903862, 0.04547244310379028, -0.010877594351768494, -0.009074607864022255, -0.027186319231987, -0.024275438860058784, 0.02790258638560772, 0.01887596771121025, 0.009396648034453392, -0.011626768857240677, -0.01711104065179825, -0.04973243921995163, -0.011193961836397648, 0.011040814220905304, 0.011545272544026375, 0.018908623605966568, -0.041887275874614716, 0.03281570225954056, 0.01550622470676899, -0.005385016091167927, 0.031972963362932205, 0.016872456297278404, -0.024571798741817474, 0.024242114275693893, 0.029030708596110344, 0.014789294451475143, -0.0821443647146225, 0.024187248200178146, 0.047538552433252335, 0.008066034875810146, -0.010740324854850769, 0.000277162209386006, -0.024926232174038887, 0.012091441079974174, 0.02557014860212803, -0.020612498745322227, -0.0500522218644619, 0.00766570633277297, 0.04074158892035484, -0.09176194667816162, 0.03230314701795578, -0.04554882273077965, -0.03932992368936539, -0.04550478607416153, -0.008642568252980709, -0.000521580339409411, 0.03662625700235367, 0.019161781296133995, -0.014458229765295982, -0.021253740414977074, -0.009346426464617252, -0.009779789485037327, 0.026562245562672615, -0.027452517300844193, 0.00750223221257329, 0.026303095743060112, 0.024609802290797234, 0.061934445053339005, 0.007034432142972946, -0.011139909736812115, 0.005894501693546772, 0.004819291178137064, 0.012156846933066845, 0.035714276134967804, 0.05215587094426155, 0.022702490910887718, 0.014383948408067226, 0.035671036690473557, -0.004486824385821819, -0.012242082506418228, 0.018842225894331932, 0.010084530338644981, 0.03008531779050827, 0.01219492219388485, 0.04337553679943085, 0.00021334765187930316, -0.026785513386130333, -0.04892999678850174, -0.002193898195400834, 0.023449676111340523, 0.045568011701107025, -0.03633122891187668, 0.03791477903723717, 0.012122079730033875, -0.02984430268406868, 0.01494416780769825, -0.051084719598293304, -0.02355542592704296, 0.04511786252260208, -0.010202580131590366, 0.03388937562704086, -0.05634065344929695, 0.012377984821796417, -0.031138597056269646, 0.015172598883509636, 0.011456302367150784, 0.00004243139483151026, 0.048941921442747116, -0.03659879416227341, -0.00044098557555116713, 0.0016883849166333675, -0.01767243817448616, -0.017965219914913177, -0.034562647342681885, 0.021191509440541267, 0.01234295591711998, -0.05572212487459183, -0.05113190412521362, 0.019626982510089874, 0.028002901002764702, 0.03694460168480873, -0.01355401985347271, 0.04592137783765793, 0.020456330850720406, 0.025338981300592422, 0.03037664107978344, 0.0005294618895277381, 0.020132021978497505, -0.02145545929670334, 0.054361492395401, 0.0005952354986220598, -0.00405468326061964, -0.04563257098197937, -0.015164068900048733, -0.031574610620737076, 0.007657854817807674, 0.004675554111599922, -0.015900153666734695, -0.007444776128977537, 0.022907884791493416, -0.009300093166530132, -0.017583860084414482, -0.03147187456488609, -0.0016821359749883413, -0.015554439276456833, 0.043799158185720444, 0.017630789428949356, -0.054692767560482025, -0.003535558469593525, -0.021392052993178368, 0.044707175344228745, 0.05642501637339592, -0.019795894622802734, -0.039428211748600006, -0.042473483830690384, -0.00005736104503739625, -0.04699549078941345, 0.009388631209731102, 0.025135604664683342, -0.024505970999598503, 0.015355204232037067, -0.06793081760406494, 0.023444922640919685, 0.00041185496957041323, -0.014616455882787704, 0.01746542751789093, 0.03051683120429516, 0.0491739958524704, 0.014460711739957333, 0.04620726406574249, -0.01002116221934557, -0.04036758840084076, 0.023915039375424385, -0.06195303425192833, 0.0007600791286677122, -0.01185694895684719, -0.012031718157231808, 0.02303440123796463, 0.011698389425873756, 0.010654031299054623, 0.01913144811987877, -0.018784208223223686, -0.008829726837575436, -0.021698802709579468, 0.018686367198824883, -0.03771420940756798, -0.009739668108522892, 0.06544215977191925, -0.023251419886946678, -0.03690839931368828, 0.025041351094841957, -0.004663622006773949, -0.002964939223602414, 0.004289034754037857, 0.03932802751660347, -0.0419696681201458, 0.02474750205874443, 0.003981778863817453, -0.013513919897377491, -0.017335694283246994, -0.05877474322915077, 0.011050053872168064, -0.030446099117398262, 0.03853648155927658, 0.002666659653186798, -0.029642043635249138, -0.031321268528699875, -0.05798715725541115, -0.031233057379722595, -0.012895933352410793, -0.040948286652565, 0.014321357943117619, 0.009046929888427258, -0.03584251552820206, -0.019995981827378273, -0.01933552883565426, -0.03683396801352501, -0.021899806335568428, -0.02973375841975212, 0.03555691987276077, -0.0032227595802396536, 0.027813592925667763, 0.01759319193661213, -0.028457414358854294, -0.026444757357239723, -0.009545412845909595, 0.020964445546269417, -0.01743597723543644, -0.042332421988248825, 0.010100062005221844, -0.025866219773888588, -0.0007355267298407853, -0.022596757858991623, 0.0195144210010767, -0.0010079165222123265, 0.008780427277088165, 0.015187446027994156, -0.004047326277941465, -0.012036590836942196, -0.009251917712390423, -0.03784097358584404, 0.05429508164525032, -0.009017867036163807, -0.049497514963150024, -0.04641086608171463, 0.034827593713998795, -0.01040609274059534, 0.04656982421875, 0.013612878508865833, 0.005901187192648649, -0.04761664569377899, -0.07738684862852097, -0.003164783352985978, -0.021078942343592644, -0.005519173573702574, -0.06426117569208145, -0.039192866533994675, -0.028842642903327942, 0.04913260415196419, 0.006343730725347996, -0.0344533734023571, -0.006850736681371927, -0.05061976611614227, 0.012403992004692554, -0.026015887036919594, -0.030376506969332695, -0.022171922028064728, -0.031247496604919434, -0.028795680031180382, 0.06828480213880539, -0.004515683278441429, 0.02002497762441635, 0.004533407278358936, 0.028059322386980057, 0.036055244505405426, 0.004452237393707037, -0.01453311275690794, -0.05080009251832962, -0.005983180832117796, 0.016166359186172485, -0.01867379993200302, 0.003788917325437069, -0.03279734402894974, 0.06790439784526825, -0.04293596372008324, 0.03257543966174126, 0.004054955206811428, -0.01336985919624567, 0.01866244338452816, -0.007417216431349516, 0.05453341826796532, -0.020579759031534195, -0.021771088242530823, -0.024347878992557526, 0.0434291735291481, 0.07706594467163086, 0.0007451121928170323, -0.039797261357307434, -0.02010956220328808, -0.04235677048563957, -0.0780891701579094, 0.03950311243534088, -0.014371097087860107, -0.010039615444839, -0.02332349307835102, -0.019759705290198326, 0.06721660494804382, 0.0008496264345012605, 0.07039567083120346, 0.042358942329883575, -0.017812246456742287, -0.0212192814797163, -0.004417178686708212, 0.026611028239130974, 0.04239362105727196, -0.028640268370509148, -0.0020153375808149576, -0.019119832664728165, -0.012385101988911629, -0.016073955222964287, -0.029981905594468117, -0.04980447515845299, -0.04939130321145058, 0.006626110058277845, 0.05919989198446274, -0.012706862762570381, 0.02817232348024845, -0.02103879489004612, -0.042216893285512924, -0.04349324852228165, 0.07339975982904434, -0.009809755720198154, 0.02051638998091221, 0.05671773478388786, 0.009447821415960789, -0.04976373910903931, 0.0020424958784133196, 0.011375810950994492, -0.00651257298886776, -0.020600909367203712, 0.06823629140853882, 0.012808206491172314, -0.043199460953474045, 0.02623160183429718, 0.05904845520853996, -0.04545721784234047, -0.052674245089292526, -0.007955546490848064, -0.028039967641234398, -0.009117147885262966, -0.0656762644648552, 0.01458243653178215, 0.008483223617076874, -0.0075098504312336445, 0.024903099983930588, 0.022714145481586456, -0.02271222323179245, 0.06530407816171646, 0.005541406571865082, 0.009390730410814285, -0.05136620253324509, -0.02682417444884777, 0.013709601014852524, -0.022380057722330093, -0.007293804083019495, -0.020141402259469032, 0.006989810615777969, -0.008836381137371063, -0.029436711221933365, 0.040563762187957764, -0.010978025384247303, 0.034783583134412766, 0.03979168459773064, 0.014118480496108532, 0.038926150649785995, -0.010344422422349453, -0.017788764089345932, 0.010895754210650921, -0.022444022819399834, -0.039612311869859695, -0.058236297219991684, 0.0118651632219553, 0.0006766910664737225, 0.014088285155594349, -0.02502630650997162, 0.0033205619547516108, 0.02773856930434704, 0.007815978489816189, 0.006916346028447151, -0.060502685606479645, -0.03464391455054283, -0.0289745032787323, -0.057387951761484146, -0.021307503804564476, -0.006936805788427591, -0.0018270649015903473, 0.03413505107164383, -0.037363357841968536, -0.010582190938293934, -0.007904662750661373, -0.00469225225970149, 0.002485614502802491, -0.011837285943329334, -0.025142913684248924, 0.05368606373667717, -0.034244488924741745, -0.06790380924940109, -0.02636745758354664, 0.008373789489269257, -0.02082006260752678, 0.0024260396603494883, -0.04481907933950424, 0.024369264021515846, 0.011640959419310093, 0.016619952395558357, -0.012913483195006847, 0.02641727589070797, -0.012608570978045464, -0.058211587369441986, -0.010787464678287506, 0.03604753687977791, -0.00019272512872703373, 0.03865111991763115, 0.05182703211903572, -0.03192412480711937, 0.032348211854696274, -0.01421019621193409, -0.02767239511013031, -0.02073974348604679, 0.022313496097922325, 0.032477233558893204, -0.002163382712751627, -0.03466775640845299, -0.06127196177840233, -0.037534601986408234, -0.045625507831573486, 0.011300169862806797, -0.026382366195321083, 0.035095371305942535, 0.010789602994918823, -0.008732260204851627, -0.050136711448431015, 0.02431745082139969, -0.042738594114780426, 0.027482857927680016, 0.02650786191225052, 0.015736881643533707, 0.013255232013761997, 0.0056580547243356705, 0.013509834185242653, -0.012091399170458317, 0.044819533824920654, -0.04851042106747627, -0.016722476109862328, 0.02391539327800274, -0.030490659177303314, 0.015167009085416794, -0.015403160825371742, 0.0029290299862623215, -0.04347795993089676, 0.005067975725978613, -0.016876468434929848, 0.028483837842941284, 0.036546070128679276, 0.010680323466658592, -0.0017620614962652326, -0.011496780440211296, -0.03940650820732117, -0.020479485392570496, -0.05955899506807327, 0.0046721030957996845, 0.041536182165145874, -0.022578367963433266, -0.038615837693214417, 0.0016967486590147018, -0.049533236771821976, 0.0096560288220644, -0.014636554755270481, -0.027195408940315247, -0.002606816589832306, 0.03873634710907936, -0.0030603220220655203, 0.04595160856842995, -0.00956917367875576, -0.039811450988054276, 0.026303088292479515, 0.05003724619746208, -0.051008570939302444, -0.0383744090795517, 0.002260891254991293, -0.013897043652832508, 0.01218902226537466, 0.001155076315626502, -0.015482502058148384, 0.009650474414229393, -0.03815422207117081, -0.015251385048031807, -0.019671384245157242, 0.0013837841106578708, -0.01005432941019535, 0.018621960654854774, 0.0007408969686366618, -0.01700909249484539, -0.02641674503684044, 0.026373902335762978, 0.0019455672008916736, -0.05412883684039116, -0.07677409797906876, 0.048624176532030106, 0.02478339895606041, -0.01989876478910446, 0.043420661240816116, 0.018774624913930893, 0.051499415189027786, -0.03513249382376671, 0.012414666824042797, -0.006916239857673645, 0.027876626700162888, 0.027409929782152176, 0.018136952072381973, -0.037102825939655304, 0.014273161999881268, 0.05842062830924988, 0.009465907700359821, -0.020391587167978287, 0.029236335307359695, 0.012810238637030125, 0.0029041487723588943, -0.006232804153114557, -0.030418649315834045, 0.01915586180984974, 0.009395529516041279, -0.02908744104206562, 0.006424597930163145, -0.01655837520956993, -0.0029934050980955362, -0.010076086968183517, -0.02547948621213436, 0.02038257010281086, -0.056894440203905106, -0.0017656147247180343, 0.015796180814504623, 0.006783149670809507, -0.017651839181780815, 0.032100025564432144, 0.016240643337368965, -0.0026650624349713326, 0.03302326798439026, 0.019005468115210533, -0.011652003973722458, 0.0449112206697464, 0.017545921728014946, 0.011184288188815117, -0.024957815185189247, 0.03284193202853203, 0.019612418487668037, -0.015129725448787212, 0.00495154270902276, -0.013128894381225109, -0.0831766426563263, 0.016444159671664238, -0.028791597113013268, -0.030063414946198463, 0.037125322967767715, -0.03882499411702156, 0.018086958676576614, -0.039137102663517, 0.06019841134548187, -0.03899122774600983, 0.00020089332247152925, 0.005845861509442329, -0.0012870290083810687, -0.005346258170902729, 0.02441929280757904, 0.018888156861066818, 0.06636187434196472, 0.033335279673337936, 0.0632382407784462, -0.0054316092282533646, 0.03254082426428795, 0.06154028698801994, -0.0011546468595042825, 0.011525710113346577, 0.010369247756898403, -0.0018010077765211463, -0.02813047729432583, 0.004696965217590332, -0.024300089105963707, 0.004267554264515638, -0.003859815886244178, -0.02200382761657238, -0.009313687682151794, 0.06573367118835449, 0.005783519707620144, -0.047398705035448074, -0.026556873694062233, 0.02643057517707348, -0.02157149463891983, 0.011601501144468784, 0.014332182705402374, 0.061508916318416595, -0.004131382331252098, 0.009301895275712013, -0.024951769039034843, -0.03723737224936485, 0.017502179369330406, -0.05829037353396416, 0.032919589430093765, 0.00991777703166008, -0.01243437547236681, -0.043930262327194214, -0.043538834899663925, -0.010161763057112694, 0.0019049119437113404, -0.06896013021469116, -0.04553116858005524, 0.03897158429026604, 0.03256744146347046, 0.009671351872384548, 0.008802327327430248, -0.01201211754232645, 0.01949874311685562, 0.012001056224107742, 0.07701213657855988, -0.014803672209382057, 0.06370706856250763, 0.03521949052810669, -0.004839377012103796, 0.022196928039193153, -0.030166450887918472, 0.017755063250660896, -0.03428809344768524, -0.02207702398300171, -0.014047331176698208, 0.03407498076558113, -0.009339497424662113, -0.07122613489627838, -0.0074531822465360165, 0.04898073151707649, 0.01787317357957363, -0.022404734045267105, -0.06597656011581421, 0.005736824590712786, -0.04958208277821541, 0.024832136929035187, -0.03351156413555145, 0.020577553659677505, -0.005309689324349165, -0.010400781407952309, 0.004606148693710566, -0.06658746302127838, 0.15260125696659088, 0.044798657298088074, 0.021428463980555534, 0.016859939321875572, 0.039848655462265015, 0.0433470718562603, 0.004407090600579977, -0.02426784299314022, 0.024887273088097572, -0.020147670060396194, -0.0014980321284383535, 0.01999145746231079, 0.008447909727692604, 0.004133596550673246, 0.036836497485637665, 0.06101737543940544, -0.05511370673775673, 0.0038552789483219385, 0.02496345527470112, -0.027148403227329254, -0.057357534766197205, 0.021406304091215134, 0.002467487473040819, 0.011729033663868904, -0.03205493837594986, 0.009344423189759254, 0.037952542304992676, -0.0014370252611115575, -0.023421570658683777, -0.02739623747766018, 0.040497977286577225, -0.020886385813355446, 0.04504074528813362, -0.01533279288560152, -0.047778353095054626, 0.02594824694097042, 0.002300858963280916, -0.020976757630705833, -0.0032705224584788084, 0.009645124897360802, -0.002030336996540427, 0.025448612868785858, 0.04209527745842934, -0.041249245405197144, 0.001949140103533864, 0.00044946238631382585, -0.06850938498973846, 0.025115031749010086, -0.0015186415985226631, -0.0424494631588459, 0.07251470535993576, -0.04223562404513359, 0.04146546125411987, -0.04245143383741379, -0.06255947798490524, 0.017434796318411827, 0.0033698321785777807, -0.03666553273797035, 0.024633338674902916, 0.016702545806765556, 0.011914651840925217, -0.0073385462164878845, 0.007012729067355394, -0.01846894808113575, -0.016791824251413345, 0.004023964982479811, 0.0069387829862535, 0.03196476027369499, -0.021760225296020508, -0.01963052898645401, -0.01977798342704773, -0.02822859212756157, -0.024526430293917656, -0.030979987233877182, 0.03514478728175163, 0.052928924560546875, -0.027185842394828796, 0.04396815598011017, -0.007245646324008703, -0.03128797560930252, -0.001108249882236123, -0.014807849191129208, 0.011816462501883507, 0.0001280724973184988, 0.027314182370901108, 0.045743267983198166, -0.05359089747071266, -0.026724550873041153, -0.044722042977809906, 0.04285002499818802, 0.051528312265872955, 0.020981887355446815, -0.008420759811997414, 0.005312482360750437, -0.032245341688394547 ]
Hi everyone. My name is Amer. I'm 29 and I am from Bosnia. My stuttering started at the age of 7, first upon elementary school. I don't recall concrete event that triggered my stuttering, but I surely remember all the frustrations and hard times that I went through. On first days in high school we introduced ourselves to teachers and colleges. I stumbled hard on my name. Laughfter was all over the place! High school and college were definitely most difficult periods in my life regarding speaking challenges. One technique then came as a saver – avoidance. However, in long term it made more damage than good. Avoiding every presentation, phone call and not speaking when I feel fear had detrimental effect on my self confidence. I was in a locked circle. My stutter was always more situational. I never stuttered when alone, almost never when with family and friends, but a lot when talking in group setting or under pressure or when I have to say something exact and specific. I always thought stuttering will gradually disappear after graduating and finding job. But it didn't, so 3 years ago I decided it is time to do something. My activities since then include reading books to understand my stutter, enrolling in online groups to learn from other PWS, doing various self help techniques. Some things I did include NLP (neuro linguistic programming), meditation, joga, breathing exercises and many more. I also had therapies over Skype, both speech and psychological, along with joining stutter hangouts and starting Facebook group for PWS in my region. I am also member of Toastmasters club. All of this helped to decrease stutter, but not in the level I wanted. I heard about Lee and his approach. I immediately enrolled, got his book and found it really interesting and extremely helpful. We started Skyping in May. Since then, my program includes autosuggestions 2 times per day (after wake up time and before bed time) and reading aloud while practicing crutches for 30 minutes (or more) per day. After 3-4 weeks I saw major progress. It continued without relapses. Now, I speak with much more ease, flow and clarity – and no bad incidents (where I appear speech disabled) in the last 2 months. No more heart pounding when I order in caffe. Fear has almost completely disappeared. It still comes in some situations, but then I treat myself with autosuggestions and I know I can avoid threatened stutters. There are still small stumbles in form of pause or hesitation but I don't appear disabled. These stumbles usually do not come as a result of fear, but just happen. My speech is much better than anytime since I started stuttering. It would be unfair to say my previous therapies and things I done were miss. I think it is more accumulated effect. All those things came in place after working with Lee. His approach was lot more useful than anything else that I ever did. Most helpful thing for me were his autosuggestions. I feel lot more energetic and relaxed immediately after doing them. I love the crutches too. My favourite crutch is number 4 – putting sound, syllable or word in front of the feared word. However, I don't need to use crutches so often anymore in speaking, but sole fact that I know them is huge self confidence booster, since it gives you 12 stutter killers to kill any block! Skype sessions with Lee are golden because they motivate me to stay on track and helps to understand and practice crutches even better. Lee is a role model and his success in overcoming stuttering also gives a hope and faith that we can do it. Although I have not had any appearance of speech disability for over two months, and though I do feel that I can beat back any threatened stutter, there is still way to go for me to remove all negative speech thoughts. So, I still do autosuggestions, reading aloud and Skyping with Lee. After I got feedback in Toastmasters and hangouts that my speech improved, I still want to do more. Next goal is to eliminate occasional small stumbles/pauses and, especially, to speak more interesting, using vocal variety and voice modulation. I want say thank you to Lee and Speech Anxiety Anonymous for helping me become one of their "Success Stories" and for all they do at no charge for PWS all over the world. I urge PWS to get Lee's book and get into the program. There is no need to keep stuttering, as all of SAA's Success Stories have proved.
[ -0.01348462887108326, 0.005425978451967239, -0.03861331567168236, 0.03779305890202522, -0.030111586675047874, -0.034937452524900436, -0.0165645033121109, 0.030202092602849007, 0.0024848354514688253, -0.004040272906422615, 0.019743630662560463, -0.008872559294104576, 0.019877418875694275, -0.046332187950611115, -0.012165921740233898, -0.0014622517628595233, -0.04817811772227287, -0.04644586518406868, -0.036324769258499146, 0.016510991379618645, 0.004121216479688883, -0.0003543047059793025, -0.030147384852170944, -0.03216679021716118, -0.025692248716950417, 0.018663791939616203, 0.017546899616718292, -0.010796934366226196, 0.04872926324605942, 0.05491739138960838, 0.008664275519549847, -0.04199586808681488, 0.019535735249519348, -0.03900377079844475, -0.03566449508070946, -0.026658795773983, 0.026637107133865356, -0.02197188511490822, -0.03472527861595154, -0.03915509581565857, -0.018289411440491676, -0.016397591680288315, 0.04338369518518448, -0.016859732568264008, -0.08747625350952148, -0.0279693640768528, -0.005934013053774834, -0.03422367200255394, 0.003002270357683301, -0.004310676362365484, 0.017608314752578735, -0.007033899426460266, 0.03703301399946213, -0.019086362794041634, 0.024626344442367554, 0.016041908413171768, -0.009005114436149597, -0.0029039171058684587, -0.027106286957859993, 0.015624974854290485, 0.00040126984822563827, 0.04945746809244156, 0.00791117362678051, -0.05832692235708237, 0.039732426404953, 0.03296981751918793, -0.000050361039029667154, -0.00439341738820076, -0.0022875992581248283, -0.004830698948353529, -0.03669529780745506, -0.004936272744089365, -0.0048274933360517025, -0.02031678333878517, -0.015446142293512821, 0.005514518823474646, -0.012951585464179516, 0.013827064074575901, 0.0020555697847157717, -0.004481012467294931, 0.024961141869425774, 0.020896080881357193, 0.03267424926161766, 0.019840259104967117, -0.0601043626666069, -0.014858884736895561, 0.01569562777876854, 0.020891260355710983, -0.00511097302660346, 0.011406118050217628, 0.0031533921137452126, 0.028323041275143623, -0.004817849025130272, -0.007163678761571646, 0.029824085533618927, 0.04206455498933792, -0.033414725214242935, 0.009495962411165237, -0.007754663471132517, -0.004586906172335148, 0.034167103469371796, 0.011527960188686848, 0.004134080372750759, 0.02803472988307476, -0.048614293336868286, -0.03360060602426529, -0.00005450408934848383, -0.012728081084787846, 0.013393834233283997, -0.047237787395715714, -0.024287184700369835, -0.012138491496443748, 0.013106468133628368, 0.023022152483463287, 0.0012862368021160364, 0.03138487786054611, 0.0004988297587260604, 0.042757779359817505, -0.01485068816691637, 0.050034571439027786, 0.022810466587543488, 0.018671100959181786, 0.02295624278485775, -0.01836942508816719, 0.03967125341296196, -0.0024189648684114218, -0.018478186801075935, 0.021642524749040604, 0.002792807761579752, -0.0029654130339622498, -0.011967400088906288, -0.03678182139992714, -0.012064936570823193, 0.013547400943934917, -0.008513636887073517, 0.027852458879351616, -0.013686208985745907, 0.05227503553032875, 0.004325462970882654, -0.05504453927278519, 0.04291689395904541, 0.03879192844033241, 0.037833403795957565, 0.07528931647539139, 0.023859068751335144, 0.008218358270823956, -0.023871641606092453, -0.012230518274009228, 0.006455914117395878, 0.00644860090687871, -0.0327412374317646, 0.02286451682448387, 0.01851501315832138, 0.013223680667579174, 0.013176261447370052, -0.004031276796013117, -0.014557522721588612, 0.016144881024956703, -0.0017470737220719457, 0.005128706805408001, 0.006037496961653233, 0.004275409039109945, -0.03351759910583496, 0.04635234549641609, 0.006328051444143057, 0.036355920135974884, -0.01204591803252697, -0.020146416500210762, 0.02548186108469963, -0.02155524678528309, 0.023493943735957146, -0.021637381985783577, -0.017116604372859, 0.024518920108675957, 0.01318750437349081, 0.05743357539176941, 0.0455978624522686, 0.025265436619520187, 0.023565247654914856, 0.028358591720461845, -0.04813189059495926, -0.009066573344171047, -0.011231102049350739, 0.05861277133226395, 0.016513152047991753, -0.03482721373438835, 0.016832640394568443, -0.0524030365049839, -0.007809595204889774, -0.030233608558773994, -0.008115166798233986, 0.043530143797397614, -0.04660903289914131, 0.031079348176717758, 0.010021486319601536, 0.02969389781355858, -0.02350117824971676, 0.0074037425220012665, 0.00911762099713087, -0.04664246365427971, -0.04249252751469612, 0.053322985768318176, -0.027551814913749695, 0.04278489202260971, 0.01145209837704897, -0.012406650930643082, 0.043553296476602554, 0.07628406584262848, -0.020624244585633278, 0.0005233344272710383, 0.006662771571427584, 0.02104943059384823, -0.03067544847726822, -0.01850038580596447, 0.01877514272928238, -0.04806102067232132, -0.008164254948496819, 0.04541423171758652, 0.011479327455163002, -0.00010148720321012661, 0.016864756122231483, 0.006284760776907206, 0.03354319930076599, 0.04544530436396599, -0.008161935023963451, 0.021280409768223763, 0.027893653139472008, 0.04009345918893814, -0.029638394713401794, -0.012826145626604557, 0.006261182017624378, 0.03503866866230965, 0.022022303193807602, 0.06795009225606918, 0.022973692044615746, 0.04569341242313385, 0.03487052023410797, 0.03824254125356674, -0.004266203846782446, -0.002467069076374173, -0.013588991016149521, 0.00887460820376873, 0.053906552493572235, 0.06731141358613968, -0.003923247568309307, 0.02969381958246231, -0.00768859451636672, -0.014974613673985004, -0.023635951802134514, 0.010631774552166462, -0.0518459677696228, 0.05269395560026169, -0.002555274171754718, 0.02199878729879856, -0.03164122626185417, 0.016988322138786316, 0.023325813934206963, 0.05347786843776703, -0.04187173396348953, -0.03300991281867027, -0.0047612437047064304, -0.0023521804250776768, -0.00401249760761857, -0.02802884764969349, 0.04146742448210716, 0.02715374529361725, -0.0019470982952043414, 0.030209919437766075, -0.01931869238615036, -0.047079361975193024, -0.0025857845321297646, -0.07453843206167221, -0.04828913137316704, -0.03156614303588867, -0.05404042825102806, -0.019947687163949013, 0.0051278648898005486, -0.05070532113313675, 0.029204269871115685, -0.007854053750634193, -0.011071139015257359, -0.028749125078320503, -0.009317580610513687, 0.06113038584589958, 0.031740378588438034, 0.036817941814661026, -0.016916079446673393, 0.027341879904270172, 0.0036162345204502344, 0.017628520727157593, 0.0012348913587629795, -0.03416934981942177, -0.010127745568752289, -0.025006623938679695, 0.034022845327854156, -0.009178072214126587, -0.022475941106677055, 0.007559538818895817, -0.05709262192249298, -0.03894319385290146, 0.028955664485692978, 0.024073690176010132, -0.019575150683522224, 0.017961181700229645, -0.027022259309887886, 0.024493936449289322, 0.030298225581645966, -0.01981588825583458, 0.05964775010943413, 0.05426626279950142, -0.04367494955658913, 0.047770287841558456, 0.014289699494838715, 0.02323475480079651, -0.05624719336628914, 0.03549088537693024, 0.052218563854694366, -0.013214480131864548, -0.03713470697402954, -0.030232451856136322, -0.01951492764055729, -0.0006064945482648909, 0.0115198390558362, -0.024030866101384163, -0.02042785845696926, 0.04138040542602539, 0.021374063566327095, -0.04881710559129715, 0.044089075177907944, -0.055749982595443726, -0.06685370951890945, -0.04157376289367676, -0.03600544482469559, 0.014292312785983086, 0.01647546887397766, 0.014570428989827633, -0.01129049900919199, -0.012958075851202011, -0.02864312380552292, 0.008745796047151089, 0.02038474567234516, -0.021239997819066048, 0.01628335751593113, 0.057675767689943314, 0.01951690949499607, 0.015049134381115437, 0.011142047122120857, -0.03015957958996296, -0.021548429504036903, 0.014887064695358276, 0.00519459368661046, 0.0020546780433505774, 0.05767514184117317, 0.007731399964541197, 0.01736943982541561, 0.03287035971879959, -0.04132045805454254, 0.0007856703014113009, 0.030474675819277763, 0.025136388838291168, 0.022870302200317383, 0.009225131012499332, 0.03217877075076103, 0.019188182428479195, -0.03147343173623085, -0.03345248103141785, 0.02247970551252365, 0.046461716294288635, 0.06283701211214066, -0.06982211023569107, 0.06487613171339035, -0.02774941176176071, -0.04900195077061653, 0.019487546756863594, -0.0328107587993145, -0.000058612404245650396, 0.06481391936540604, -0.0025993427261710167, 0.05206805840134621, -0.04348009079694748, 0.030196674168109894, 0.015096878632903099, 0.027530433610081673, 0.04438183456659317, 0.0019950754940509796, 0.013891543261706829, -0.019780166447162628, -0.033143214881420135, -0.003194628283381462, 0.014781988225877285, -0.030233243480324745, 0.004492583684623241, 0.01136917993426323, -0.0015985567588359118, -0.0439985990524292, -0.05554880574345589, 0.03283107653260231, 0.026170918717980385, 0.03513046354055405, -0.01898309588432312, 0.0635017454624176, -0.010056876577436924, 0.034472450613975525, 0.05743035301566124, 0.002563310321420431, 0.002078732242807746, -0.04761314019560814, 0.05322347208857536, 0.02860603667795658, -0.016375117003917694, -0.026278862729668617, -0.006720502860844135, -0.045646633952856064, 0.005725761875510216, 0.008316374383866787, -0.03672744333744049, -0.03255380690097809, 0.01770646497607231, -0.0012254455359652638, 0.034653812646865845, -0.05829640105366707, -0.01905251294374466, -0.022676806896924973, 0.050703015178442, 0.024518584832549095, -0.06173934414982796, -0.007264718413352966, -0.032526127994060516, 0.048182349652051926, 0.05183134973049164, 0.0271818395704031, -0.03930295631289482, -0.02041194587945938, -0.0293459240347147, -0.03353618457913399, -0.007876705378293991, -0.0027965991757810116, 0.015746403485536575, 0.006530633196234703, -0.050986651331186295, 0.021399011835455894, 0.0017700751777738333, -0.010416243225336075, 0.002855910686776042, -0.0014544030418619514, 0.030222387984395027, -0.022103440016508102, 0.007250711787492037, 0.01598917692899704, -0.046427857130765915, 0.040469709783792496, -0.04931895062327385, 0.013948926702141762, -0.0011510002659633756, -0.015092365443706512, -0.020221898332238197, 0.00970975961536169, 0.022903183475136757, 0.028944291174411774, -0.004670675843954086, -0.00248272274620831, -0.02583826333284378, 0.05820520594716072, -0.026665307581424713, -0.031485289335250854, 0.032482534646987915, 0.004397709853947163, -0.05040265619754791, 0.018281949684023857, 0.018779298290610313, 0.001752049895003438, -0.01579071767628193, -0.0037427758798003197, -0.05076782777905464, 0.01222985703498125, -0.028068644925951958, 0.006959079764783382, -0.0072510140016674995, -0.05350923910737038, 0.013915345072746277, -0.030214400961995125, 0.018841486424207687, 0.003361203707754612, -0.03795558959245682, -0.046684544533491135, -0.06015037000179291, 0.005096198059618473, -0.02634003385901451, -0.02756221406161785, 0.026542702689766884, 0.003456957172602415, -0.01388132106512785, -0.0054703871719539165, -0.03785020112991333, -0.03163179010152817, -0.020296676084399223, -0.024084070697426796, 0.03016257844865322, 0.003426698036491871, 0.016101766377687454, 0.05878135934472084, -0.01877843774855137, -0.001814533257856965, 0.011675572954118252, 0.000747120298910886, -0.036910589784383774, -0.043761953711509705, -0.005458420608192682, -0.04199822247028351, -0.022271467372775078, -0.027508623898029327, 0.015760479494929314, -0.037265874445438385, 0.019539974629878998, 0.029920410364866257, -0.004790730308741331, 0.02101031318306923, 0.013144640251994133, -0.041767094284296036, 0.03526848182082176, -0.004336894489824772, -0.03688569739460945, 0.002177534392103553, 0.02648257277905941, 0.006606186740100384, 0.045117221772670746, -0.028275253251194954, -0.020198382437229156, -0.03658195957541466, -0.046411532908678055, 0.005930472631007433, -0.02217094413936138, -0.02867990918457508, -0.047913964837789536, -0.047974538058042526, 0.0033874250948429108, 0.014601266011595726, 0.03126981109380722, -0.04428693652153015, 0.008504307828843594, -0.06917589902877808, 0.022518478333950043, -0.029230210930109024, -0.03647813946008682, -0.010282432660460472, 0.014709090813994408, 0.023298082873225212, 0.06413645297288895, 0.02320779860019684, -0.0066095017828047276, -0.011733143590390682, 0.008640515618026257, 0.03099811263382435, -0.0056939516216516495, -0.0758485272526741, -0.05075278878211975, 0.03581486642360687, 0.026077084243297577, 0.006526809185743332, 0.022020908072590828, -0.028308819979429245, 0.05649654194712639, -0.03920377418398857, -0.000473214837256819, -0.04710271954536438, -0.00831717811524868, -0.0027482174336910248, -0.03435094282031059, 0.03564048558473587, -0.01636243425309658, 0.0066390857100486755, -0.03374965488910675, 0.059736307710409164, 0.05370228737592697, 0.009674514643847942, -0.04411119967699051, -0.017811909317970276, -0.05570612847805023, -0.08130694925785065, 0.0026604707818478346, -0.029537349939346313, 0.007433900609612465, -0.03797754645347595, -0.009896802715957165, 0.03203964978456497, 0.0009334372589364648, 0.06339303404092789, 0.04757969081401825, 0.006420431658625603, -0.009565014392137527, -0.039942704141139984, 0.025684086605906487, 0.039177387952804565, -0.026090743020176888, -0.02378810942173004, -0.00874395202845335, -0.02351520210504532, -0.009584770537912846, -0.04670410230755806, -0.05436766520142555, -0.04625655338168144, 0.0037575187161564827, 0.05848488211631775, -0.009153899736702442, 0.04649925231933594, 0.006003384944051504, -0.0187537744641304, -0.04888639226555824, 0.060096874833106995, -0.005926629528403282, 0.01809285581111908, 0.04528353735804558, -0.01755858212709427, -0.04012615978717804, 0.0018411962082609534, -0.006624845787882805, 0.00784453097730875, 0.008266163989901543, 0.07012682408094406, -0.011782780289649963, -0.037928398698568344, 0.013494433835148811, 0.06281810998916626, -0.056939415633678436, -0.06491363048553467, 0.00041583229904063046, 0.010600902140140533, -0.02083614654839039, -0.042813386768102646, 0.008796848356723785, -0.006602437701076269, -0.002142573008313775, 0.004928711801767349, 0.046229783445596695, -0.031600166112184525, 0.0168425552546978, 0.0015699031064286828, 0.037945203483104706, -0.06282955408096313, 0.019189292564988136, 0.05982818827033043, -0.015889892354607582, 0.001003106008283794, -0.041046444326639175, 0.005573648028075695, -0.005086258519440889, 0.013389077968895435, 0.013486679643392563, -0.033068038523197174, 0.02512330561876297, 0.022827351465821266, -0.007606636267155409, 0.0192596223205328, 0.007085544057190418, 0.0036296662874519825, 0.00887985248118639, -0.04606398195028305, -0.06340572237968445, -0.003451273078098893, 0.02185662090778351, -0.019038356840610504, 0.04251537472009659, -0.038580797612667084, -0.0058896709233522415, 0.015359746292233467, 0.01638815924525261, 0.013583733700215816, -0.034543219953775406, -0.020324505865573883, -0.050436075776815414, -0.04714372754096985, -0.025675827637314796, 0.0006801041308790445, -0.026028361171483994, 0.02906237728893757, 0.0033877405803650618, -0.049879513680934906, -0.015232321806252003, 0.011882360093295574, -0.023036031052470207, -0.00010213339555775747, -0.021950991824269295, 0.06207422912120819, -0.05869310349225998, -0.05841466039419174, -0.019467325881123543, -0.0036389008164405823, -0.011324179358780384, -0.009301726706326008, -0.005724826827645302, 0.042332425713539124, 0.017177347093820572, 0.027265839278697968, 0.005475587677210569, -0.005112429615110159, -0.017410598695278168, -0.05296812951564789, -0.004326022230088711, 0.05256613343954086, 0.0006031347438693047, 0.04804711043834686, 0.03044339083135128, -0.05063248425722122, 0.006805540062487125, -0.010952569544315338, -0.02782173827290535, -0.028760330751538277, 0.002097266260534525, 0.03673836588859558, 0.0252105500549078, -0.027449019253253937, -0.02674531564116478, -0.0012549497187137604, -0.03309934213757515, 0.016943316906690598, 0.011370929889380932, 0.014063754118978977, -0.008498932234942913, 0.02210131473839283, 0.012380051426589489, 0.038502227514982224, -0.014996454119682312, 0.01771816425025463, 0.004374489653855562, 0.0249189380556345, 0.0007544595282524824, -0.0004368260852061212, 0.025171486660838127, 0.00896416138857603, 0.005933335516601801, -0.022003263235092163, 0.03344736248254776, 0.04194651544094086, -0.016660571098327637, 0.01118922047317028, -0.04329368844628334, -0.006001219153404236, -0.06190406531095505, 0.013898954726755619, 0.038154151290655136, 0.055502068251371384, -0.028641827404499054, -0.026183582842350006, -0.003486660774797201, -0.024045446887612343, -0.057919666171073914, 0.0213785357773304, -0.08404581248760223, 0.0017571566859260201, 0.019522210583090782, -0.020870504900813103, -0.03206571936607361, -0.027355756610631943, -0.025704655796289444, 0.028707850724458694, -0.009281747043132782, 0.0032024772372096777, -0.05348862335085869, 0.009380667470395565, 0.014329494908452034, 0.04343050345778465, 0.006841994822025299, 0.006415835116058588, -0.002076869597658515, 0.030070966109633446, -0.03860381245613098, -0.03078269399702549, 0.015491156838834286, 0.05499549210071564, 0.012414835393428802, -0.01528350729495287, -0.0123063325881958, 0.00019547548436094075, -0.008610408753156662, -0.004291744902729988, -0.016665974631905556, 0.036564748734235764, -0.001564115402288735, 0.023874863982200623, 0.006934178993105888, 0.0019658543169498444, -0.0312059223651886, 0.030616894364356995, -0.0023211489897221327, -0.006340275518596172, -0.026672646403312683, 0.047679636627435684, 0.03565893694758415, -0.004911444615572691, 0.03428493067622185, 0.0061350297182798386, 0.060691069811582565, 0.0017775120213627815, 0.047592323273420334, -0.021714385598897934, 0.043557606637477875, 0.03503930941224098, 0.018826238811016083, 0.007158332969993353, 0.028548358008265495, 0.034383222460746765, -0.017215745523571968, 0.01094831433147192, 0.04048564285039902, 0.02822495996952057, -0.04710498824715614, -0.00392808485776186, -0.023021748289465904, -0.018112218007445335, 0.006268822122365236, -0.006468544248491526, 0.00905379094183445, -0.019103027880191803, 0.0017636140109971166, -0.024941492825746536, -0.03335513547062874, 0.02917378954589367, -0.017355065792798996, 0.024340951815247536, 0.017612716183066368, -0.015539583750069141, 0.017941413447260857, 0.025942262262105942, 0.02193206362426281, -0.04908287152647972, 0.03905627876520157, 0.024684440344572067, -0.0059725199826061726, 0.03265701234340668, 0.027298403903841972, 0.004947722889482975, -0.04144252464175224, 0.004581174347549677, 0.00927748717367649, -0.011752528138458729, -0.02920607477426529, 0.012654908932745457, -0.031001197174191475, 0.024683237075805664, -0.051837991923093796, -0.005123097915202379, 0.0661911815404892, -0.043899547308683395, -0.02540774829685688, -0.00257150293327868, 0.014071051962673664, -0.03151758015155792, -0.05338110774755478, 0.021039707586169243, -0.03562162071466446, -0.014237990602850914, 0.04700468108057976, -0.005065110512077808, 0.048931676894426346, 0.012073792517185211, 0.05740618333220482, -0.026318110525608063, 0.04263857379555702, 0.021334433928132057, -0.043026842176914215, 0.014358056709170341, 0.00789804756641388, -0.017324158921837807, -0.06299576163291931, -0.02507021650671959, -0.03875034675002098, -0.004592660814523697, -0.007970131002366543, -0.02657363936305046, 0.014361158944666386, 0.05063287168741226, -0.010008926503360271, -0.04053470492362976, -0.01890385150909424, 0.02447434514760971, -0.037797462195158005, 0.006742025259882212, 0.025790859013795853, 0.04796985164284706, -0.020519396290183067, -0.02880699932575226, -0.02026532217860222, -0.040626492351293564, 0.01877703331410885, -0.04377949610352516, 0.04231279343366623, -0.003937676083296537, -0.035130735486745834, -0.03375555947422981, -0.04742389917373657, -0.01636793091893196, 0.0013736558612436056, -0.03703900799155235, -0.059215325862169266, 0.06874769926071167, 0.05084226280450821, 0.010186498053371906, 0.0380483977496624, -0.03557746112346649, -0.012141432613134384, 0.04809177294373512, 0.05589907988905907, 0.0011354426387697458, 0.06981109827756882, 0.029870452359318733, -0.004609660245478153, 0.01477162353694439, -0.013091441243886948, 0.03265012428164482, -0.02554452046751976, -0.02798517607152462, -0.03804298862814903, 0.04851464927196503, -0.02009432017803192, -0.06639699637889862, 0.012192048132419586, 0.016864167526364326, 0.026414969936013222, -0.006785968784242868, -0.07779569923877716, -0.02251499332487583, -0.058164164423942566, -0.0027215001173317432, -0.04007895290851593, 0.02245130017399788, 0.013586173765361309, -0.0191815122961998, 0.00576085364446044, -0.03617825359106064, 0.16007696092128754, 0.06744591891765594, 0.02562222070991993, 0.009821110405027866, 0.03954662010073662, 0.03517141193151474, 0.028531000018119812, -0.008157366886734962, 0.0070260376669466496, -0.029033992439508438, 0.008259933441877365, -0.007815316319465637, 0.05925293266773224, -0.004343966022133827, 0.023243820294737816, 0.044511549174785614, -0.040062032639980316, 0.02935189940035343, 0.00019184823031537235, -0.061831310391426086, -0.06527826189994812, 0.03903257101774216, 0.018107211217284203, 0.0019059464102610946, 0.016505206003785133, 0.0013928271364420652, -0.0014075589133426547, -0.03955885022878647, -0.020305685698986053, -0.013780162669718266, 0.004747205413877964, -0.029368748888373375, 0.04495673254132271, -0.03788643330335617, -0.02353685535490513, 0.05506120249629021, -0.015481946058571339, -0.011276495642960072, 0.016812734305858612, 0.022214645519852638, -0.005161261186003685, 0.003713516751304269, 0.03126753866672516, -0.03448867425322533, -0.0021055396646261215, 0.02333618886768818, -0.04331602901220322, 0.02070680260658264, 0.014366148971021175, -0.05291777476668358, 0.05012340471148491, -0.04021962732076645, 0.03611357882618904, -0.006023632828146219, -0.0470607690513134, 0.007309187203645706, 0.00908491387963295, -0.012801744975149632, 0.0015125308418646455, 0.027931369841098785, 0.017844321206212044, 0.01595010980963707, 0.004607249051332474, 0.0036394570488482714, -0.014314130879938602, 0.023395070806145668, 0.012056201696395874, 0.025939134880900383, -0.020442355424165726, -0.004637538455426693, -0.007857665419578552, -0.015115288086235523, -0.012555107474327087, -0.00784853845834732, 0.04943852871656418, 0.055393438786268234, -0.004067587666213512, 0.036897167563438416, 0.0071124061942100525, 0.00010863850911846384, 0.0023188707418739796, -0.02915581502020359, 0.005477560218423605, -0.03639357164502144, 0.03635420277714729, 0.06359501928091049, -0.045614924281835556, -0.008282432332634926, -0.06778298318386078, 0.07428715378046036, 0.032715171575546265, 0.014420337975025177, -0.02568030171096325, -0.027618350461125374, -0.021509487181901932 ]
Celebrate Yuletide at Wheatland this holiday season at LancasterHistory.org! Tour President James Buchanan's Wheatland, and be part of sparkling holiday displays that take you from James Buchanan's early Victorian era to the dazzling days of the 1920s when the house was owned by the Willson family. Ticket includes a festive holiday and history-themed guided tour of Wheatland and admission to LancasterHistory.org's self-guided museum exhibitions. This year, our period rooms will take visitors from the year 1860, when President Buchanan celebrated a modest Presbyterian Christmas at Wheatland, into the late Victorian era, when Buchanan's niece Harriet Lane Johnston owned the house and would have celebrated a classic Dickens'-style Christmas with her family, to 1920, when Wheatland was occupied by George B. Willson and his family and served as a space to celebrate a festive 20s Christmas reflective of the early-20th-century consumer culture in America. Visitors to Yuletide at Wheatland will learn about the multi-layered history of the house and its occupants while also hearing about changing Christmas celebrations over the course of 60 years in America. Yuletide at Wheatland opens Monday, November 19, 2018 and runs through Saturday, December 29, 2018. Tours are on the hour, Monday – Saturday. We are closed Sundays and holidays such as Thanksgiving, Christmas Eve, and Christmas Day.
[ -0.020573750138282776, -0.01031567808240652, 0.001933288061991334, -0.020247196778655052, 0.004620138555765152, 0.01594397984445095, -0.008247745223343372, 0.04985252395272255, 0.021876268088817596, -0.005774748045951128, 0.00811739545315504, -0.014643496833741665, 0.009967430494725704, -0.036412760615348816, -0.009248475544154644, 0.012388091534376144, -0.04211506247520447, -0.002354359719902277, -0.008058357983827591, 0.03876137360930443, 0.012236476875841618, 0.03154175728559494, -0.08893326669931412, -0.05094597488641739, 0.006720116827636957, 0.04521409049630165, -0.008204687386751175, -0.006065543740987778, 0.02812235802412033, 0.05040799826383591, -0.027041709050536156, -0.05530479922890663, 0.004677606746554375, -0.04718630760908127, -0.02382987178862095, -0.007625194266438484, 0.04958150163292885, -0.036266449838876724, -0.0012556366855278611, -0.06142077222466469, 0.0020508046727627516, 0.0036977026611566544, 0.009349089115858078, -0.02012982778251171, -0.024821113795042038, -0.015355168841779232, -0.024015028029680252, -0.024082418531179428, 0.014675235375761986, -0.04262271523475647, 0.015851732343435287, -0.026425514370203018, 0.01935570500791073, -0.02536482736468315, 0.04441935569047928, 0.014763535000383854, -0.0012739805970340967, -0.015060133300721645, -0.022696716710925102, 0.025830846279859543, 0.0297121349722147, -0.0036184117197990417, 0.04826419800519943, -0.05733071267604828, 0.03534329682588577, 0.019803551957011223, 0.002534781116992235, -0.05973625183105469, -0.006597205065190792, -0.00423820223659277, 0.0192717295140028, 0.007710059639066458, -0.029137324541807175, -0.015709994360804558, 0.007284368854016066, -0.003277780022472143, -0.029868895187973976, -0.01574195921421051, 0.004259458277374506, -0.0072209336794912815, 0.01963057741522789, 0.020466582849621773, 0.023967092856764793, 0.011661684140563011, -0.06040314957499504, -0.02319234050810337, 0.018326863646507263, 0.022211141884326935, 0.029890721663832664, 0.02971263788640499, -0.019480321556329727, 0.04412540793418884, -0.006686564069241285, 0.010004071518778801, 0.01154806837439537, 0.017438238486647606, -0.0445764996111393, 0.020990820601582527, 0.007772392593324184, 0.0036500694695860147, 0.03822225704789162, -0.008151673711836338, -0.004151063971221447, 0.055856939405202866, -0.06562992185354233, 0.005032769404351711, 0.003607663558796048, -0.019616849720478058, -0.009564880281686783, -0.009525763802230358, 0.0018408051691949368, -0.052059438079595566, 0.02831145189702511, 0.0009565509972162545, 0.01514702383428812, 0.05997850373387337, 0.03094986453652382, 0.012734578922390938, -0.03442002832889557, 0.0008045216090977192, 0.045042235404253006, 0.00758908549323678, 0.047547634690999985, -0.01848912052810192, 0.019856886938214302, -0.026505984365940094, -0.03925985470414162, 0.05594788119196892, -0.02738775499165058, -0.026746375486254692, 0.02781536430120468, -0.04411724954843521, -0.0034955781884491444, 0.007163217291235924, 0.01533511746674776, 0.044359367340803146, -0.002473973436281085, 0.018396303057670593, 0.03463508188724518, -0.06994682550430298, 0.025914430618286133, 0.016843680292367935, -0.0036730002611875534, 0.10107526183128357, 0.047986287623643875, 0.007954081520438194, 0.011583413928747177, -0.003278933698311448, -0.022926682606339455, 0.00764984916895628, -0.022976761683821678, 0.03351524472236633, 0.015139009803533554, 0.029044562950730324, 0.008569246158003807, -0.004643051419407129, -0.0022410086821764708, -0.003092451486736536, -0.029779164120554924, 0.020441031083464622, -0.06204024702310562, 0.017381681129336357, -0.02071995474398136, 0.02356802113354206, 0.004296686965972185, 0.0160820335149765, -0.053082190454006195, -0.0065260822884738445, -0.04083685949444771, -0.04421108216047287, 0.012652834877371788, -0.009237570688128471, -0.022205278277397156, 0.015288403257727623, 0.049276500940322876, 0.03328824043273926, 0.04119645431637764, -0.021762056276202202, 0.024748552590608597, 0.050009552389383316, -0.08177885413169861, -0.02249416708946228, 0.013426641933619976, 0.05067155137658119, -0.008965115994215012, -0.042388856410980225, -0.008629931136965752, -0.012466984800994396, -0.039759304374456406, -0.03505406528711319, -0.020565519109368324, 0.01287663821130991, -0.009766560047864914, 0.024090111255645752, 0.02134217508137226, 0.006089968141168356, -0.027732262387871742, -0.038978975266218185, -0.02021624706685543, -0.015319586731493473, -0.01783011667430401, 0.042176052927970886, -0.031669776886701584, -0.000056613578635733575, -0.0044285887852311134, -0.03195653855800629, 0.03903469443321228, 0.08737925440073013, -0.02728123776614666, -0.011965333484113216, 0.0038124406710267067, 0.001874030800536275, -0.03963794559240341, 0.01180196087807417, 0.03371600806713104, -0.0135605838149786, -0.04018961265683174, 0.05386270582675934, 0.0013162137474864721, -0.0102029237896204, 0.0290693212300539, 0.015410336665809155, 0.054297931492328644, 0.07198338955640793, 0.02007737010717392, -0.004316824022680521, 0.03421686217188835, 0.041135285049676895, -0.01170707680284977, 0.019642669707536697, -0.01396783534437418, 0.05497358739376068, 0.025754829868674278, 0.06499723345041275, 0.04830412194132805, 0.008655644953250885, 0.017708906903862953, 0.020592007786035538, -0.021404320374131203, 0.006984533742070198, 0.03143744543194771, 0.0007850007386878133, 0.03898627683520317, 0.014379452913999557, -0.008133084513247013, 0.04673782363533974, -0.023940423503518105, -0.011047164909541607, -0.00948465708643198, 0.0032189544290304184, 0.020115651190280914, 0.02459590882062912, -0.00012762726692017168, 0.03765447810292244, -0.025740182027220726, 0.00006626413232879713, 0.026812175288796425, 0.03906681388616562, -0.014958958141505718, -0.03372015058994293, -0.012789134867489338, 0.04187175631523132, -0.012016724795103073, 0.02184179238975048, 0.0038357595913112164, 0.040481146425008774, -0.0042794328182935715, -0.016378244385123253, -0.004469320643693209, -0.04303988441824913, -0.033571112900972366, -0.048688068985939026, -0.010208598338067532, -0.03912524878978729, -0.06552086025476456, -0.0007982310489751399, 0.06474515795707703, -0.04694255813956261, 0.014992267824709415, -0.023052969947457314, -0.016091467812657356, -0.017664385959506035, 0.026078153401613235, 0.028642747551202774, 0.02913796156644821, 0.008234822191298008, -0.038400474935770035, 0.026838496327400208, -0.01818894036114216, 0.00945588294416666, -0.024314429610967636, -0.023541416972875595, -0.00624606478959322, 0.011719560250639915, 0.023400351405143738, -0.021597305312752724, -0.019225899130105972, -0.00032111682230606675, -0.03227785974740982, -0.06385653465986252, 0.006191462278366089, 0.027705537155270576, 0.0017246194183826447, -0.0075760637409985065, -0.04155943915247917, 0.04758160188794136, 0.025690607726573944, -0.06184307113289833, 0.04238204285502434, 0.022827858105301857, -0.03473138436675072, 0.05811770260334015, 0.03837155923247337, -0.015970153734087944, -0.045002926141023636, 0.042374707758426666, 0.044165823608636856, 0.02613065019249916, -0.018204446882009506, -0.003024537581950426, -0.046334076672792435, -0.008729700930416584, 0.014625916257500648, -0.0075491853058338165, -0.01742127723991871, 0.030302321538329124, -0.018280338495969772, -0.04620136320590973, 0.028828050941228867, -0.021349603310227394, -0.021204199641942978, -0.06292327493429184, -0.022060051560401917, 0.034666627645492554, 0.018661031499505043, 0.033621806651353836, 0.012242896482348442, -0.02175174653530121, 0.037189990282058716, 0.01934540830552578, 0.05799234285950661, -0.004055463243275881, 0.013573342934250832, 0.03356262296438217, -0.022281842306256294, -0.009787272661924362, 0.01685246452689171, -0.04338056966662407, 0.008732839487493038, 0.0014972160570323467, 0.007750248070806265, 0.0017489190213382244, 0.025218579918146133, -0.013592220842838287, 0.0020207883790135384, 0.06815103441476822, -0.06720520555973053, 0.018349498510360718, 0.014059515669941902, 0.03899484500288963, 0.011178238317370415, 0.0024485148023813963, 0.02892972156405449, -0.009347436018288136, -0.024357499554753304, -0.08264044672250748, 0.02361896261572838, 0.012201723642647266, 0.06713417172431946, -0.08485493808984756, 0.06546932458877563, 0.0035580035764724016, -0.02249392867088318, 0.02069392427802086, -0.05935679003596306, 0.019664732739329338, 0.028831226751208305, -0.033744633197784424, 0.039773695170879364, -0.018906692042946815, 0.022241439670324326, -0.018824176862835884, 0.0018062950111925602, 0.02668832242488861, 0.0030288216657936573, 0.007529573980718851, -0.01460783276706934, 0.00525443721562624, -0.02260982245206833, -0.015678124502301216, 0.0017797134350985289, -0.036513201892375946, 0.013295464217662811, 0.02025759220123291, -0.033882223069667816, -0.051897428929805756, 0.06904522329568863, -0.008016255684196949, -0.0071723065339028835, -0.012472519651055336, 0.05735347047448158, -0.002093647141009569, 0.035012245178222656, 0.033612657338380814, -0.00603237422183156, 0.033092111349105835, -0.04230281710624695, 0.06393829733133316, 0.02026226744055748, -0.028781244531273842, 0.011259548366069794, -0.0034157265909016132, -0.034336935728788376, 0.01376419048756361, 0.025404341518878937, -0.038516897708177567, -0.051289692521095276, 0.01596720702946186, 0.0018064257455989718, 0.023463470861315727, -0.03401261940598488, 0.0035688821226358414, 0.00007147641736082733, 0.04991070181131363, 0.02471442148089409, -0.05074087902903557, 0.001562547287903726, -0.0268964022397995, 0.040875595062971115, 0.05183692276477814, 0.004878805484622717, -0.05390230193734169, -0.02500293403863907, -0.033887166529893875, -0.02084728330373764, 0.01999419555068016, 0.026418281719088554, 0.0031249774619936943, 0.0026786322705447674, -0.05182977765798569, 0.01228400133550167, 0.05918293818831444, 0.024538535624742508, 0.015569044277071953, 0.012959585525095463, 0.019500674679875374, 0.007003880571573973, 0.03940550982952118, 0.004302884917706251, -0.0233124028891325, 0.003676940454170108, -0.05673778057098389, 0.028282703831791878, -0.03245030343532562, -0.0020141894929111004, 0.023212185129523277, 0.05669805407524109, 0.019088108092546463, 0.03568403422832489, -0.019838564097881317, 0.04763833433389664, 0.007788936607539654, 0.04082346707582474, -0.010614687576889992, -0.031071584671735764, 0.04138500615954399, 0.003832409158349037, -0.031717076897621155, 0.02689465880393982, 0.077660471200943, -0.006558554247021675, 0.014394636265933514, 0.04573339968919754, -0.05058877915143967, 0.04233665019273758, -0.040551427751779556, 0.020680099725723267, -0.04224967211484909, -0.03520914539694786, -0.008762077428400517, -0.009923429228365421, 0.0020439329091459513, -0.02152954787015915, 0.010708588175475597, -0.05611632764339447, -0.06789752840995789, -0.023716531693935394, 0.009252569638192654, -0.018813982605934143, 0.00009461696026846766, 0.0007772607496008277, 0.010284840129315853, -0.043357376009225845, -0.04243071377277374, -0.007568273693323135, 0.007057667709887028, -0.026943551376461983, 0.009946229867637157, 0.0006829748162999749, 0.0008726674132049084, 0.00808633677661419, -0.017390714958310127, -0.02687028981745243, 0.003702321322634816, 0.004677705932408571, -0.026582986116409302, -0.05088489502668381, -0.011987755075097084, -0.03416648879647255, -0.010209677740931511, -0.029019230976700783, -0.02845875732600689, 0.004081550054252148, 0.022912632673978806, 0.022779125720262527, -0.004270230419933796, 0.0066270786337554455, 0.0032711161766201258, -0.017382698133587837, 0.004218885209411383, 0.03701429069042206, -0.051831383258104324, -0.040416739881038666, 0.041817061603069305, -0.04858456552028656, 0.05786415934562683, 0.01857892796397209, -0.021476732566952705, -0.0475582517683506, -0.031238235533237457, -0.04325350373983383, -0.027123507112264633, -0.012989702634513378, -0.014786317944526672, -0.022939449176192284, -0.04973116144537926, 0.05397012457251549, 0.02224510908126831, -0.0012236256152391434, 0.0019582128152251244, -0.03907555341720581, -0.02233911119401455, -0.03141966834664345, -0.010175803676247597, -0.02632913365960121, -0.013891581445932388, 0.01316392794251442, 0.04756488651037216, 0.002850768156349659, -0.000777923094574362, 0.008654412813484669, -0.007913400419056416, 0.02708940953016281, -0.02841268479824066, -0.029824964702129364, -0.023068644106388092, -0.004187324084341526, 0.0013486780226230621, 0.0015193024883046746, 0.018100854009389877, -0.022414807230234146, 0.05803103372454643, -0.012042274698615074, -0.009430743753910065, -0.012792017310857773, -0.04678789898753166, -0.02549499273300171, 0.0020079712849110365, 0.05321468040347099, -0.043707866221666336, 0.011350694112479687, 0.0169322919100523, 0.05078218877315521, 0.04677988216280937, 0.009072070010006428, -0.01894405484199524, -0.024168692529201508, -0.03687388077378273, -0.018368834629654884, 0.029169540852308273, -0.026689765974879265, -0.03880543261766434, -0.03033883310854435, -0.06571252644062042, 0.0509650856256485, 0.037577394396066666, 0.0386342816054821, 0.05192314833402634, -0.04596757888793945, 0.012820979580283165, -0.014262335374951363, 0.021823149174451828, 0.02995532937347889, 0.01604386977851391, 0.006445907987654209, -0.033943645656108856, -0.054234664887189865, 0.02918780967593193, -0.041550181806087494, -0.050123073160648346, -0.058078914880752563, -0.019832532852888107, 0.07441281527280807, -0.01342888455837965, 0.02665017731487751, 0.0066637881100177765, -0.05085602402687073, -0.03203513100743294, 0.028857534751296043, 0.0012355456128716469, 0.01571115106344223, 0.03722239285707474, -0.0065125757828354836, -0.0003370594640728086, 0.0076467618346214294, -0.003492645686492324, -0.0004241751739755273, -0.027328165248036385, 0.06580676883459091, -0.03385036811232567, -0.055467065423727036, -0.00739692198112607, 0.03887097164988518, -0.059470728039741516, -0.03168429806828499, 0.031265854835510254, -0.006714186631143093, 0.02212626487016678, -0.0417894683778286, 0.021305318921804428, -0.012910223565995693, 0.0015321369282901287, -0.005839324556291103, 0.04089391231536865, 0.014418791979551315, 0.043941058218479156, 0.011018011718988419, 0.05315699055790901, -0.013015885837376118, 0.006447964813560247, 0.014553584158420563, -0.007350865285843611, 0.0038024503737688065, -0.01933983340859413, -0.019423218443989754, -0.005299607757478952, -0.0011716156732290983, 0.03791937977075577, 0.002264508744701743, 0.01839868165552616, 0.03132537379860878, -0.03494008257985115, 0.05747559294104576, 0.016005411744117737, -0.035188544541597366, 0.021280387416481972, -0.0016851009568199515, -0.055682551115751266, -0.012434234842658043, 0.02464968152344227, 0.03395755589008331, 0.002455944661051035, -0.047549497336149216, 0.00482896575704217, 0.026508724316954613, -0.008166873827576637, -0.0002941536367870867, -0.0491267591714859, -0.06270790845155716, -0.0445544607937336, -0.03320864588022232, -0.023719538003206253, -0.030926311388611794, -0.015916476026177406, 0.014512239024043083, -0.002068749163299799, -0.047856930643320084, -0.0052399723790585995, 0.024635782465338707, -0.03355089947581291, 0.016970738768577576, -0.030738361179828644, 0.026734400540590286, -0.02092902921140194, -0.07215066254138947, -0.038754940032958984, -0.01844647154211998, -0.016277698799967766, 0.007569982670247555, -0.015398449264466763, 0.035181205719709396, -0.012732623144984245, 0.03685372695326805, 0.03449031710624695, -0.007508709095418453, 0.0003362955176271498, -0.02689279243350029, -0.013562293723225594, 0.036450840532779694, 0.031244738027453423, 0.02825792320072651, 0.04369920864701271, -0.01814253255724907, 0.06571203470230103, 0.0030451558995991945, -0.010054782964289188, -0.012728484347462654, -0.005018949043005705, 0.030128804966807365, -0.01288402546197176, -0.06197703629732132, 0.0006148475804366171, 0.010961245745420456, -0.07381458580493927, 0.04161335527896881, 0.003418281674385071, 0.03688760846853256, 0.014378486201167107, -0.0025274239014834166, -0.0019360263831913471, 0.056663136929273605, 0.012359502725303173, 0.03871574252843857, -0.011921771802008152, 0.0322582945227623, 0.002373284427449107, -0.00039544524042867124, -0.00502792838960886, 0.029018620029091835, 0.0430372878909111, -0.014570070430636406, -0.004580444656312466, -0.026957640424370766, -0.008907916955649853, 0.048790205270051956, -0.02058415673673153, -0.014852738007903099, -0.026458637788891792, -0.01477975957095623, 0.004340621177107096, 0.07038877159357071, 0.05446295440196991, -0.012938997708261013, 0.04467931017279625, -0.015353284776210785, -0.042783282697200775, 0.013293977826833725, -0.03278784826397896, -0.047302886843681335, 0.0394887737929821, -0.003861130913719535, -0.015364394523203373, -0.017210111021995544, -0.011786258779466152, 0.012004470452666283, -0.006014853250235319, -0.031279392540454865, -0.0033510676585137844, 0.041041236370801926, -0.015038609504699707, 0.07201901823282242, 0.010472780093550682, -0.016276897862553596, 0.02580740489065647, 0.06705589592456818, -0.03807734325528145, -0.020367154851555824, 0.015785720199346542, 0.011579965241253376, 0.006781472358852625, 0.012851721607148647, -0.004806058946996927, 0.03924164921045303, 0.016711173579096794, 0.010595849715173244, 0.00013965650578029454, 0.040669072419404984, 0.01264070812612772, 0.01968994550406933, -0.008665739558637142, -0.01448526605963707, -0.04224050045013428, 0.04442531615495682, -0.028017684817314148, -0.02165469154715538, -0.030520431697368622, 0.06433165818452835, 0.041158996522426605, -0.018180398270487785, 0.0417901836335659, 0.012944935820996761, 0.043143872171640396, -0.02724195271730423, -0.004547559656202793, -0.04493473097681999, 0.02775328792631626, 0.0388844758272171, 0.006387859582901001, 0.017185065895318985, 0.050127044320106506, 0.039634428918361664, -0.0010328093776479363, -0.010993985459208488, 0.03429742529988289, 0.029141822829842567, -0.00802227295935154, 0.011019923724234104, 0.0002622164029162377, 0.036039065569639206, 0.0025555335450917482, -0.011057416908442974, -0.024062268435955048, -0.047489166259765625, -0.02112829126417637, -0.04700623080134392, -0.0240949634462595, 0.05264691635966301, -0.03365597501397133, 0.01204759068787098, 0.0017723717028275132, 0.010393827222287655, -0.019792193546891212, 0.05312209948897362, -0.0041327825747430325, 0.015976212918758392, 0.022634340450167656, 0.03757062181830406, 0.0042778244242072105, 0.05547208711504936, 0.006018325686454773, -0.0053130690939724445, -0.04808003827929497, -0.014180030673742294, -0.007630687672644854, 0.0006838763947598636, -0.03151220083236694, 0.0035131345503032207, -0.044301073998212814, 0.0274367555975914, -0.029795851558446884, -0.035400390625, 0.030622150748968124, -0.044502973556518555, -0.027108725160360336, -0.059674229472875595, 0.07232912629842758, -0.03295379877090454, -0.0036275091115385294, 0.02177506685256958, -0.01516824308782816, -0.021628882735967636, 0.02554086595773697, -0.005859567318111658, 0.03674071654677391, -0.002942005405202508, 0.01701548509299755, 0.012578598223626614, 0.007990106008946896, 0.06292262673377991, -0.02874729409813881, -0.04004587605595589, 0.01364715676754713, -0.012337638065218925, -0.036337804049253464, -0.002117645926773548, -0.04470266029238701, 0.006719999015331268, -0.025340521708130836, -0.0005030105821788311, 0.009636999107897282, 0.04316036030650139, -0.029417559504508972, -0.032368823885917664, -0.011243856512010098, 0.024690672755241394, -0.04137613996863365, 0.021868521347641945, 0.0018441438442096114, 0.024048717692494392, -0.017161287367343903, -0.02779047004878521, -0.02937569096684456, -0.051204536110162735, -0.0023624780587852, -0.027435503900051117, 0.03438771516084671, -0.009779589250683784, -0.017685389146208763, -0.04092354699969292, -0.03655877709388733, -0.0007578461081720889, -0.0018352201441302896, -0.05007514730095863, 0.005475711543112993, 0.022242635488510132, 0.03542942553758621, -0.006598633714020252, 0.033953189849853516, -0.015010476112365723, -0.0013433104613795877, 0.03636455908417702, 0.04674958065152168, -0.000013075059541733935, 0.025438228622078896, 0.010349234566092491, -0.014912993647158146, 0.021134493872523308, -0.0277174673974514, 0.04234069958329201, -0.023728400468826294, -0.02307060733437538, -0.0418534018099308, -0.0058347927406430244, -0.04260660335421562, -0.05743137747049332, 0.01874653436243534, 0.002879900624975562, 0.021865271031856537, -0.04447115585207939, -0.05093304440379143, 0.0038417670875787735, -0.034162603318691254, -0.012868913821876049, -0.037704553455114365, 0.038161180913448334, 0.009659137576818466, -0.0007200806285254657, -0.01433947216719389, -0.06580746173858643, 0.13664786517620087, 0.054193753749132156, 0.046194225549697876, 0.005926470272243023, 0.034858591854572296, 0.044499121606349945, 0.055981528013944626, -0.010397512465715408, -0.0052140215411782265, -0.01091599091887474, -0.016161859035491943, 0.012056245468556881, 0.03939663618803024, 0.004069804213941097, 0.034093406051397324, 0.037034772336483, -0.021965207532048225, 0.02014908380806446, 0.004749679937958717, -0.02749675139784813, -0.056465160101652145, 0.02036668173968792, -0.012308514676988125, 0.0292106494307518, -0.024490615352988243, 0.016944654285907745, -0.00559008214622736, -0.047640539705753326, -0.029546264559030533, -0.018299026414752007, 0.012637126259505749, -0.03639166057109833, 0.028050802648067474, -0.0015915458789095283, -0.057462550699710846, 0.05046254023909569, 0.007362040691077709, -0.03639734536409378, 0.02667209506034851, 0.019988734275102615, -0.04788763448596001, 0.02803732268512249, 0.02693834714591503, -0.03026031330227852, 0.02834778092801571, 0.03307007625699043, -0.03690560907125473, -0.007894184440374374, 0.01593979448080063, -0.038933515548706055, 0.05840076878666878, -0.03472669795155525, 0.004814412444829941, -0.023290686309337616, -0.018909577280282974, 0.0009042071178555489, 0.02661251462996006, -0.03194326162338257, -0.018753355368971825, -0.017924508079886436, 0.01881452649831772, 0.038629788905382156, -0.04917142912745476, -0.008694138377904892, -0.05533597245812416, 0.030768394470214844, 0.03026832640171051, -0.005186602473258972, -0.028765542432665825, -0.03163183107972145, -0.02600701153278351, 0.009139424189925194, -0.027968740090727806, -0.007006772793829441, 0.022381965070962906, 0.04298507422208786, -0.04339700564742088, 0.04054693505167961, 0.030704179778695107, -0.02037854678928852, -0.0019329118076711893, -0.06157849356532097, -0.03452122211456299, -0.011118091642856598, 0.03950013965368271, 0.04089304804801941, -0.03373881056904793, -0.037097081542015076, -0.021376432850956917, 0.06339455395936966, 0.041517097502946854, 0.01529565267264843, -0.03189123794436455, -0.015397473238408566, -0.032482124865055084 ]
Q: Encountering parse base error (SAS) I've been stuck on this the whole day and I hope to get some help from the community. I am still learning SAS so this might be a beginner's question. Please bear with me. Here I have a code that I am currently working on. I'm running this using eclipse dataserver plugins: libname myInput 'D:\_TD5910372542151565380'; proc datasets lib=myInput; run; quit; ods csv files="D:/_TD5910372542151565380/myTest.csv"; proc print data=myInput.inputContainer; title "Random"; run; ods csv close; I am trying to print the content in the inputContainer into a CSV file. Here is the console log that I am getting: [MPRINT] Parsing Base DataServer /* 0001 */ libname myInput 'D:\_TD5910372542151565380'; NOTE: Library myinput assigned successfully [MPRINT] Parsing Base DataServer /* 0002 */ proc datasets lib=myInput; /* 0003 */ run; -------------------- 10:34: PROC DATASETS -------------------- NOTE: Time taken: 000:00:00.000 [MPRINT] Parsing Base DataServer /* 0002 */ quit; [MPRINT] Parsing Base DataServer /* 0003 */ ods csv files="D:/_TD5910372542151565380/myTest.csv"; /* 0004 */ proc print data=myInput.inputContainer; /* 0005 */ title "Random"; /* 0006 */ run; ERROR: Parsing exception - aborting ERROR: DS-00274 : Could not parse base DataServer code: Encountered " <ALPHANUM> "ods "" at line 3, column 1. Was expecting one of: <EOF> ";" ... "*" ... "data" ... "proc" ... (and 9 more) I checked the lines a lot of time but I am still not sure if I am missing something. I also browsed a lot of websites to find what can fix this error. Hopefully a second pair of eye can point out what exactly has gone wrong. Thank you in advance. XD A: Haha... I found the solution myself.The way I solved this is as following: libname myInput 'D:\_TD5910372542151565380'; proc datasets lib=myInput; run; data something; set myInput.inputContainer; run; proc export data=something outfile="D:/Example.csv" dbms=csv replace; run; It seems that you have to set the data first to take the obs file. Then, there are no separated semi colons until replace; Which I did wrong in the above. Hope this help anyone out there.
[ 0.021502016112208366, 0.0029179099947214127, 0.010702114552259445, 0.0014615014661103487, -0.0003789646434597671, 0.003064877586439252, -0.0006777558010071516, 0.0016803087200969458, 0.014083074405789375, 0.04514053836464882, 0.02144751325249672, -0.0014947544550523162, 0.009046783670783043, -0.02278931252658367, -0.002175228437408805, -0.02030419372022152, -0.018631042912602425, -0.03523029014468193, -0.041897062212228775, -0.009222637861967087, 0.013935872353613377, -0.021144241094589233, -0.07464053481817245, 0.00409898953512311, -0.023136917501688004, 0.018880417570471764, 0.013125980272889137, -0.0066117397509515285, 0.06985204666852951, 0.059015627950429916, -0.007857004180550575, -0.03286950662732124, 0.03141297772526741, -0.06994570791721344, 0.018761495128273964, -0.011558669619262218, 0.02996785193681717, -0.006400727666914463, -0.004935665056109428, -0.028671370819211006, 0.0027866035234183073, -0.01805988699197769, 0.04928687587380409, -0.05522725358605385, -0.059775210916996, 0.0038925823755562305, -0.007319749798625708, 0.030437177047133446, -0.013868649490177631, 0.007991453632712364, 0.002325054258108139, 0.004993281792849302, 0.014477306045591831, -0.0009113033302128315, -0.017882464453577995, 0.023057401180267334, 0.030060870572924614, -0.016151389107108116, -0.05108582600951195, 0.013401016592979431, -0.011160044930875301, 0.0006323917186819017, 0.010012172162532806, -0.0660601481795311, 0.03160654753446579, 0.01981721632182598, -0.01721331849694252, 0.0001299271098105237, -0.0061570340767502785, -0.014213909395039082, -0.05347343906760216, 0.006447306368499994, -0.007960742339491844, -0.027345014736056328, -0.009130178019404411, -0.00024021473655011505, -0.008162148296833038, 0.012299091555178165, -0.016300346702337265, 0.01345483586192131, -0.01019221544265747, 0.058632951229810715, 0.03960012272000313, 0.010877247899770737, -0.04349048435688019, -0.03131526708602905, 0.005526048131287098, -0.009762521833181381, 0.01946135051548481, 0.02512248419225216, -0.029611898586153984, 0.052088525146245956, -0.030169831588864326, -0.00040945695945993066, 0.027474841102957726, 0.05228542909026146, -0.0534384585916996, 0.02987586334347725, 0.006136785726994276, 0.005316238850355148, 0.0709332600235939, 0.0356999970972538, -0.017470192164182663, 0.03535579517483711, -0.042500659823417664, 0.005987308919429779, 0.0038832572754472494, 0.01953943632543087, -0.029753446578979492, -0.005092580337077379, 0.0001808675442589447, -0.010093548335134983, 0.027341032400727272, 0.005746154114603996, 0.016821257770061493, 0.03451265022158623, 0.003913582302629948, 0.03651055693626404, -0.034459516406059265, -0.00009612387657398358, 0.03282862901687622, 0.04987402632832527, 0.05984259024262428, -0.04550158232450485, 0.01442007813602686, -0.024301553145051003, -0.03730364888906479, 0.06237981840968132, -0.026679152622818947, -0.016369689255952835, 0.02201571688055992, -0.018499979749321938, -0.013085481710731983, 0.02706056833267212, -0.03069934993982315, 0.03450930491089821, 0.02846142277121544, 0.023507259786128998, 0.03688102960586548, -0.04895206168293953, 0.01267818920314312, 0.015398472547531128, -0.0007309783832170069, 0.11438588052988052, 0.012464059516787529, 0.008459064178168774, 0.04296484962105751, -0.024342885240912437, -0.04140850529074669, 0.03847687691450119, -0.07541505247354507, 0.012868262827396393, 0.01526673324406147, 0.002739081857725978, -0.032770559191703796, -0.011597171425819397, 0.0331420935690403, -0.00220220978371799, 0.01895996183156967, 0.020455002784729004, -0.029472716152668, -0.004048371687531471, 0.017204158008098602, 0.002226785756647587, -0.002082051243633032, 0.04172957316040993, -0.013538538478314877, -0.006907975301146507, -0.014235753566026688, -0.05874275043606758, 0.0431961864233017, 0.01931726559996605, -0.028095996007323265, 0.01915639080107212, 0.03134560212492943, 0.02121107093989849, 0.04204069823026657, -0.024143710732460022, 0.007176432758569717, 0.05146050825715065, -0.034084174782037735, -0.0000021412195110315224, -0.0149847362190485, 0.042169708758592606, 0.028162000700831413, 0.0011304386425763369, 0.016027508303523064, -0.04245119169354439, -0.03957559913396835, -0.03794926032423973, 0.025513187050819397, 0.032328955829143524, -0.0029593799263238907, 0.024594128131866455, -0.018081223592162132, -0.008773300796747208, -0.02527547813951969, 0.013927042484283447, -0.008678556419909, -0.032935503870248795, -0.0304197259247303, 0.03456089645624161, -0.01020093634724617, 0.033648282289505005, -0.011012589558959007, -0.038182295858860016, 0.026948237791657448, 0.06106849014759064, -0.04047958925366402, -0.010318276472389698, 0.046223826706409454, -0.0023624496534466743, -0.03250027075409889, -0.001720517873764038, -0.016796812415122986, -0.028040682896971703, -0.046324703842401505, 0.052717749029397964, 0.01428894978016615, 0.00041795914876274765, -0.007948559708893299, 0.012702299281954765, 0.005662677343934774, 0.052855513989925385, -0.011675583198666573, -0.004119213670492172, 0.01668117381632328, 0.0166649017482996, -0.017961028963327408, 0.01948508992791176, -0.019665498286485672, 0.03443489223718643, 0.0066436841152608395, 0.05069459602236748, 0.014764723367989063, -0.004892708733677864, 0.07049792259931564, 0.040846601128578186, -0.0275077186524868, 0.033375877887010574, -0.010473179630935192, 0.019504470750689507, 0.013419220224022865, 0.03144337609410286, -0.02534182369709015, -0.0010417921002954245, -0.0021690649446099997, -0.02063114382326603, 0.0183477271348238, 0.03732488304376602, -0.00020766367379110307, 0.03018091432750225, 0.01894780434668064, 0.04228311404585838, -0.02258405275642872, -0.05465531721711159, 0.038943998515605927, 0.053986504673957825, -0.055289771407842636, -0.006790992803871632, -0.0025406244676560163, 0.012251356616616249, -0.002314831828698516, 0.003962637856602669, 0.021022209897637367, 0.032898228615522385, 0.017458230257034302, 0.0021157818846404552, -0.004438302014023066, -0.053286075592041016, -0.01771831139922142, -0.034473542124032974, -0.02770196832716465, -0.021470792591571808, -0.08628234267234802, -0.006869088858366013, 0.027054574340581894, -0.06401772797107697, 0.006640288513153791, -0.007069699466228485, 0.015654295682907104, 0.00017700110038276762, -0.01644434779882431, 0.05202255770564079, 0.02690436877310276, 0.028877809643745422, -0.02049662359058857, 0.05063343420624733, 0.009767627343535423, 0.049561116844415665, -0.028586914762854576, -0.02046251855790615, -0.00307133374735713, -0.021272797137498856, 0.023738287389278412, -0.02784884162247181, 0.005925111938267946, -0.011332144029438496, -0.012516151182353497, -0.06943045556545258, -0.012639174237847328, -0.0011688218219205737, -0.012749307788908482, -0.021027617156505585, -0.056581638753414154, 0.03705458715558052, 0.048422522842884064, -0.03308917582035065, 0.033681273460388184, 0.043249160051345825, -0.027762001380324364, 0.025185782462358475, -0.012259201146662235, -0.008691687136888504, -0.060694243758916855, 0.03564821183681488, 0.030833018943667412, 0.01501639187335968, -0.010580562986433506, -0.06809189915657043, -0.04557351768016815, 0.009316746145486832, -0.013501144014298916, 0.003312325105071068, -0.037315916270017624, 0.06500612944364548, 0.0110648013651371, -0.06469263881444931, 0.022550754249095917, -0.033748604357242584, -0.011019188910722733, -0.017289016395807266, -0.04804999753832817, 0.04089689254760742, 0.024317780509591103, 0.02374866232275963, -0.005095884669572115, -0.014493863098323345, 0.024562902748584747, 0.004460095893591642, 0.04637626186013222, -0.035627640783786774, -0.0048382761888206005, 0.030901728197932243, 0.019589778035879135, 0.002662436570972204, 0.026499910280108452, -0.013099713250994682, -0.00037529770634137094, -0.009844697080552578, -0.010411055758595467, 0.016744855791330338, 0.04994290694594383, 0.039769966155290604, 0.0034956245217472315, 0.048944901674985886, -0.042302556335926056, -0.028736086562275887, -0.011207682080566883, 0.019171999767422676, 0.054701175540685654, -0.004213505890220404, -0.001964613562449813, -0.014301387593150139, -0.01669532060623169, -0.053317707031965256, 0.025398671627044678, 0.005669865291565657, 0.07099740207195282, -0.04452061653137207, 0.06759697198867798, -0.004519957583397627, -0.006226229481399059, 0.05669567361474037, -0.04652867838740349, 0.021105946972966194, 0.04393651708960533, -0.0036487828474491835, 0.053901802748441696, -0.031885430216789246, 0.011129939928650856, 0.014543457888066769, -0.00928855873644352, 0.025628607720136642, 0.011645346879959106, 0.04099995642900467, -0.020736772567033768, -0.032122332602739334, -0.03228791058063507, -0.018884794786572456, -0.018539240583777428, -0.05664550140500069, 0.009181021712720394, -0.006485732737928629, -0.02185053378343582, -0.07208028435707092, 0.03701946511864662, 0.05588755011558533, 0.03368808329105377, -0.004820982925593853, 0.03847404196858406, -0.006880675908178091, 0.017059065401554108, 0.022018641233444214, 0.014109044335782528, -0.012897799722850323, -0.035932205617427826, 0.040478434413671494, 0.004524639341980219, -0.021815091371536255, -0.032862234860658646, -0.027454551309347153, -0.014132882468402386, 0.034920696169137955, -0.002672618255019188, -0.009102885611355305, -0.05782243609428406, 0.030048536136746407, -0.005583837162703276, -0.00040762266144156456, -0.031874049454927444, -0.03647918626666069, -0.004741137847304344, 0.027984172105789185, 0.05386187136173248, -0.03684078902006149, -0.004566368646919727, -0.017230147495865822, 0.045388516038656235, 0.03536072000861168, -0.030150502920150757, -0.00852429773658514, -0.01895732432603836, -0.03259117528796196, -0.0319795235991478, 0.013805758208036423, 0.035730116069316864, 0.02136169746518135, 0.0025375077966600657, -0.051643095910549164, 0.022867148742079735, 0.017721643671393394, -0.0001999242085730657, 0.007033824920654297, 0.009515547193586826, -0.014595500193536282, 0.0010821716859936714, 0.024301405996084213, -0.006979528348892927, -0.03567878529429436, 0.01836087740957737, -0.05604894831776619, 0.0353197306394577, -0.024996798485517502, -0.03304005414247513, -0.006267273798584938, 0.026019224897027016, 0.01044384203851223, 0.024955296888947487, -0.03564505651593208, -0.0016335401451215148, 0.005918651353567839, 0.04389524832367897, -0.027621790766716003, -0.04342666640877724, 0.046155717223882675, -0.03385314717888832, -0.027556756511330605, 0.04310304671525955, 0.04004034399986267, -0.02678694948554039, 0.008686762303113937, 0.029419509693980217, -0.040670815855264664, 0.03198738768696785, -0.03988081216812134, 0.004990335553884506, -0.018339568749070168, -0.030285295099020004, -0.01550127100199461, -0.0299448911100626, 0.029178285971283913, 0.01642960123717785, -0.0759166032075882, -0.013159970752894878, -0.06846592575311661, -0.03505478799343109, -0.02594093233346939, -0.03068455122411251, 0.01009597908705473, 0.020187148824334145, -0.001531062414869666, -0.01067787129431963, -0.021867262199521065, 0.007846696302294731, -0.009170042350888252, -0.0028580462094396353, 0.0048665753565728664, 0.00863971933722496, 0.006676695309579372, 0.0296829454600811, -0.018339578062295914, -0.026133595034480095, 0.01803428865969181, -0.007817997597157955, -0.030085008591413498, -0.018242493271827698, 0.010607987642288208, 0.0009453235543332994, -0.028085559606552124, -0.02958044968545437, -0.0075743552297353745, -0.024260438978672028, 0.020845375955104828, -0.010374169796705246, 0.01790979690849781, 0.024624081328511238, 0.022189348936080933, -0.027450039982795715, 0.04223756119608879, 0.021845635026693344, -0.039479147642850876, -0.012449906207621098, 0.01999916322529316, -0.0019977870397269726, 0.044709980487823486, -0.009362238459289074, -0.013291670940816402, -0.0431121289730072, -0.053221479058265686, 0.0225182194262743, -0.03361150994896889, -0.011086986400187016, -0.0392802432179451, -0.060410190373659134, -0.0281359925866127, 0.05979418754577637, 0.013584590516984463, -0.029232429340481758, 0.002591615542769432, -0.03894544392824173, 0.01823492906987667, -0.06608392298221588, 0.005704693496227264, -0.0491502620279789, 0.015373989008367062, 0.005012147128582001, 0.05761216953396797, -0.011881118640303612, 0.024684559553861618, 0.02162032015621662, 0.005322177428752184, 0.05179561674594879, 0.005807471461594105, -0.04452857747673988, -0.03240556642413139, 0.002346903318539262, 0.022042308002710342, -0.00836697593331337, -0.011129806749522686, -0.02854670211672783, 0.039584312587976456, -0.06285243481397629, -0.010651429183781147, 0.00916315708309412, -0.0424310564994812, -0.03207147866487503, 0.031587712466716766, 0.03880031779408455, -0.021367935463786125, 0.03695406764745712, -0.013796324841678143, 0.0679154023528099, 0.02425455115735531, 0.02013697847723961, -0.019271019846200943, -0.0021355082280933857, -0.03469236195087433, -0.02720300480723381, 0.019725266844034195, -0.019903821870684624, -0.015146429650485516, -0.019079215824604034, 0.01204791571944952, 0.025608250871300697, -0.029916910454630852, 0.04572594165802002, 0.050224706530570984, -0.010550417006015778, -0.01878044568002224, -0.011851659044623375, 0.03135763481259346, 0.010956374928355217, -0.040913548320531845, 0.01603800617158413, -0.013479545712471008, -0.038855697959661484, 0.000532060454133898, -0.03106558509171009, -0.06202375516295433, -0.03809114173054695, -0.009914322756230831, 0.09958423674106598, 0.014995856210589409, 0.05055902525782585, -0.009418152272701263, -0.06916145235300064, -0.046834491193294525, 0.04185658320784569, -0.011163522489368916, 0.027366647496819496, 0.062390487641096115, -0.015364148654043674, 0.004267596174031496, 0.019260348752141, -0.04788786172866821, 0.01611570455133915, -0.03420392423868179, 0.04559708759188652, -0.019003108143806458, -0.01821180246770382, 0.04536505043506622, 0.032154202461242676, -0.07574636489152908, -0.069642074406147, 0.0015656567411497235, -0.03466047719120979, -0.027196139097213745, -0.022223759442567825, -0.029169393703341484, 0.025553284212946892, 0.001262829639017582, -0.005945809651166201, 0.015436106361448765, 0.027522752061486244, 0.024634867906570435, -0.015131894499063492, 0.031342845410108566, -0.04616374149918556, 0.018639709800481796, 0.048092328011989594, -0.0031734704971313477, 0.000205114803975448, -0.026302872225642204, -0.02282477542757988, -0.027716603130102158, 0.006495272275060415, 0.024989338591694832, 0.01187913678586483, 0.024074364453554153, 0.012093200348317623, 0.019586527720093727, 0.04598298296332359, 0.00013573850446846336, -0.006316167302429676, 0.018065396696329117, -0.023956889286637306, -0.06407686322927475, -0.019371923059225082, 0.0011212755925953388, -0.0011323116486892104, 0.03863966837525368, -0.05257536470890045, 0.008182101882994175, 0.047208670526742935, 0.02368427813053131, 0.010978941805660725, -0.08305198699235916, -0.021215960383415222, -0.0357782281935215, -0.06488119065761566, -0.021937819197773933, -0.011164849624037743, -0.016607772558927536, 0.004048037808388472, -0.009634524583816528, -0.04291509464383125, -0.029071319848299026, -0.0036366318818181753, -0.012883920222520828, -0.009625009261071682, -0.03264731541275978, 0.018044909462332726, -0.05826703459024429, -0.03849761188030243, -0.06057625263929367, -0.007420544978231192, -0.026809094473719597, -0.012305358424782753, -0.00802098959684372, 0.01104219350963831, -0.012010137550532818, 0.026594629511237144, 0.029058195650577545, 0.011038710363209248, -0.03856057673692703, -0.034914664924144745, 0.02906566672027111, 0.03197484090924263, -0.010763107798993587, 0.06662186235189438, 0.05285163223743439, -0.014722144231200218, 0.012235596776008606, 0.03242100402712822, -0.009695419110357761, -0.02181052975356579, 0.025171149522066116, 0.04723910242319107, -0.0004228929174132645, -0.04312489926815033, -0.022869912907481194, 0.0375014953315258, -0.04970560595393181, 0.005172142293304205, -0.0004945429391227663, 0.007660061586648226, 0.0021319764200598, -0.021871384233236313, -0.007570291869342327, 0.065642811357975, 0.0019963886588811874, 0.019576378166675568, 0.003719681641086936, -0.0020763797219842672, 0.024729974567890167, 0.02355056256055832, -0.004216744564473629, 0.024504074826836586, 0.005943608935922384, -0.02627602592110634, 0.04125681146979332, -0.0006090049282647669, 0.017785169184207916, 0.045751165598630905, -0.0237266905605793, -0.020873289555311203, -0.019077235832810402, -0.014381252229213715, 0.018764667212963104, 0.03024923801422119, 0.03582319989800453, -0.0289468951523304, 0.026435261592268944, -0.04070514440536499, -0.030133672058582306, 0.04760949686169624, -0.08233623951673508, -0.05995933338999748, 0.03541644290089607, -0.02417299523949623, -0.02040400169789791, -0.020573627203702927, -0.0382537841796875, 0.005245064850896597, -0.03332345560193062, -0.042611267417669296, 0.0013225944712758064, 0.001399064902216196, 0.026336580514907837, 0.021494491025805473, -0.008884982205927372, 0.01113017275929451, 0.01102814543992281, 0.02049901708960533, -0.03181550279259682, -0.04430985078215599, -0.013646543025970459, 0.011728275567293167, 0.02487131766974926, 0.0028047822415828705, 0.00288275140337646, 0.020020121708512306, -0.022824516519904137, 0.024697985500097275, 0.016148632392287254, -0.02150830812752247, 0.012164692394435406, 0.023714780807495117, -0.013802851550281048, 0.02115505374968052, -0.025100117549300194, -0.006211891304701567, -0.00939953327178955, -0.038687124848365784, -0.03220038488507271, 0.053917158395051956, 0.07667375355958939, -0.0062779574654996395, 0.055564068257808685, 0.03239734470844269, 0.04073796793818474, 0.005326902959495783, -0.01117401197552681, -0.024284489452838898, 0.018756812438368797, 0.06581955403089523, 0.04833580181002617, -0.022032061591744423, 0.052621662616729736, 0.024811619892716408, -0.015687474980950356, -0.003741872264072299, 0.01786169409751892, 0.029981808736920357, -0.031289808452129364, -0.011266184039413929, -0.02427925541996956, -0.010666647925972939, 0.03139025717973709, -0.028727762401103973, 0.028810985386371613, -0.04313814267516136, 0.021640554070472717, -0.0258634015917778, -0.008488254621624947, 0.040896229445934296, -0.0005284629878588021, -0.019503463059663773, 0.006695980671793222, 0.008071290329098701, 0.0073083932511508465, 0.04695599898695946, 0.0005038729286752641, -0.008731532841920853, 0.043659012764692307, 0.03766360878944397, 0.0012664510868489742, 0.026388201862573624, 0.023574767634272575, 0.02077515795826912, -0.03543565422296524, 0.008292119950056076, -0.02304249256849289, 0.03358978033065796, -0.05377376079559326, 0.014965028502047062, -0.041628867387771606, 0.02557447738945484, -0.030251394957304, 0.00955241359770298, 0.046511780470609665, -0.027570057660341263, -0.010467260144650936, -0.02942337840795517, 0.026966577395796776, -0.047505952417850494, 0.0008412650786340237, 0.0550861731171608, -0.014983342960476875, -0.014563641510903835, 0.050726450979709625, -0.0018993106205016375, 0.019796226173639297, 0.0006539746536873281, 0.07542052119970322, 0.010400866158306599, 0.05177467316389084, 0.058854326605796814, -0.01727341301739216, -0.013927548192441463, 0.031354550272226334, -0.018525222316384315, -0.052458349615335464, -0.03218588978052139, -0.017606303095817566, -0.007761548273265362, -0.014616747386753559, -0.03699164465069771, 0.0021920909639447927, 0.046529803425073624, -0.009571737609803677, -0.01593717746436596, 0.015144717879593372, 0.04283127561211586, -0.03256901726126671, -0.002869843505322933, -0.005751386750489473, 0.05097684636712074, 0.010354571975767612, -0.019879037514328957, -0.03509123995900154, -0.046627435833215714, -0.006517390720546246, -0.02877677045762539, 0.007294797338545322, 0.0006401938735507429, -0.0105927474796772, -0.03824686259031296, -0.01809646748006344, -0.020528746768832207, 0.012954896315932274, -0.03528492525219917, -0.04744773358106613, 0.025787949562072754, 0.04169955477118492, 0.019425926730036736, 0.03902175650000572, -0.017790811136364937, 0.007379756774753332, 0.07084238529205322, 0.07845855504274368, -0.0029323631897568703, 0.050092075020074844, 0.008340093307197094, -0.038215845823287964, 0.015271654352545738, -0.034815218299627304, 0.016591450199484825, 0.0035514356568455696, -0.019961142912507057, -0.00787649117410183, 0.05084195360541344, -0.05334353446960449, -0.06464436650276184, -0.009191564284265041, 0.026314998045563698, 0.017261546105146408, -0.03117283433675766, -0.02065940573811531, -0.006500047165900469, -0.040309976786375046, -0.01943170838057995, -0.061505191028118134, -0.003855064744129777, 0.01831216551363468, -0.011724993586540222, 0.01253927405923605, -0.052464328706264496, 0.1303621381521225, 0.05017729848623276, 0.05211317166686058, 0.0213936660438776, 0.015760524198412895, 0.03353620693087578, 0.015443570911884308, -0.029490377753973007, 0.007253292482346296, -0.06227148696780205, 0.03660440072417259, -0.027094189077615738, 0.01704793982207775, 0.021941926330327988, 0.01736845262348652, 0.07564803212881088, -0.04062764346599579, -0.006499030161648989, 0.02242323011159897, -0.054337792098522186, -0.06211019679903984, 0.03749717399477959, -0.000756218156311661, 0.048669926822185516, -0.0007119086803868413, 0.013035516254603863, 0.02930084429681301, -0.08041052520275116, -0.018923159688711166, -0.02402079477906227, 0.03043101541697979, -0.02897149696946144, 0.03816119581460953, -0.0006021526060067117, -0.0020559991244226694, 0.01861289143562317, -0.01651109755039215, -0.0015445586759597063, 0.012858922593295574, 0.007740048225969076, -0.03136312589049339, -0.040495652705430984, -0.004212955012917519, -0.04027025029063225, 0.0025879640597850084, 0.030416738241910934, -0.013946105726063251, 0.010711727663874626, 0.014616480097174644, -0.022275712341070175, 0.026018988341093063, -0.011853192932903767, 0.0186576247215271, -0.044244300574064255, -0.05597726255655289, -0.006552921142429113, 0.0009813945507630706, -0.02905113622546196, -0.0030360231176018715, -0.00842699222266674, 0.024166084825992584, 0.009670864790678024, 0.0025831402745097876, 0.0344187393784523, -0.0235761571675539, 0.022800276055932045, 0.02255236729979515, 0.011645840480923653, -0.04368994012475014, -0.014271523803472519, -0.005368258338421583, -0.00093336176360026, -0.02045569382607937, -0.019164927303791046, 0.02579738013446331, 0.0388491190969944, -0.024504056200385094, 0.040655914694070816, 0.01566341333091259, -0.03456352651119232, 0.005715088918805122, -0.008774199523031712, 0.01059069111943245, -0.044565510004758835, 0.009021659381687641, 0.059501513838768005, -0.05441594496369362, -0.026061080396175385, -0.00798367615789175, 0.03754390403628349, 0.06783272325992584, 0.005302672740072012, -0.007624025922268629, -0.02964315563440323, -0.012350820004940033 ]
Posted at 18:12 in article. A quarter-century has passed in Iran since the revolution of February 1979. This can be called the period of "three republics". The first began with the revolution, lasted throughout the 1980-88 war with Iraq, and ended with the death of Ayatollah Khomeini in 1989. The second was the era of consolidation of state institutions under the presidency of Hashemi Rafsanjani from 1989-1997. The third was ushered in by the election of President Mohammad Khatami on a reform platform in 1997. The third republic will end with the election of a new president in June 2005. What will replace it? Where is Iran going? The best way to answer these questions – which are far wider than the mere identity of the new president – is to understand how these twenty-six momentous years have changed Iran as a country and we Iranians ourselves. Mohsen Sazegara served on Ayatollah Khomeini's staff during the cleric's exile in France and accompanied him on his "victory flight" back to Iran in February 1979. He was part of the inner sanctum of power in the new Islamic Republic, helping found the notorious Revolutionary Guard Corps and authoring its constitution. Throughout the 1980s Sazegara held a range of bureaucratic positions within the regime, including political deputy of Islamic Republic radio and television and vice-minister of planning and budget. Sazegara's disillusionment with the regime intensified after the Iran-Iraq war of 1980-88. He came to believe that the conceptual foundation the Islamic Republic was flawed and that Islamism must be eschewed in favour of a pluralist and tolerant democracy. He developed and published these views in a variety of journals later closed by the regime, including Golestan-e-Iran, Jamee, and Toos. In 2001, the Council of Guardians refused to allow Sazegara to register as a candidate in the presidential election. He became one of the chief organisers of a campaign for a referendum on a new Iranian constitution. He has been arrested repeatedly and endured two hunger strikes. He remains one of the Islamic Republic's most vocal dissidents. In March 2005, he joined the Washington Institute for Near East Policy on a two-month fellowship. Iranians today belong to three generations. The first, my own, I call the "generation of the revolution": people now in their 50s and 60s who were actively involved in the revolution. We belong ideologically to the mid-1960s and were heavily influenced by revolutionary discourses. Now, we have occupied every position of power in the country, and we don't want to step aside or open the way for others. Not only in the government, but in the opposition too! The second generation is the "generation of war": people who were under 20 years old at the time of the revolution, and are now in their 30s or 40s. They came to maturity during the Iran-Iraq war, when 265,000 Iranians died, mostly young men (around 700 people were killed during the revolution). This generation, who got involved in social and political affairs after the war ended, believed in what we said even more than we did. They had ideals, and were prepared to sacrifice everything. I have to say that they were really pure. Now, they are disillusioned and have become passive. I like the second generation very much and have many friends amongst them. They are really good people. The third generation are people in their 20s and younger – the majority of the country's population. This generation, our children, knows little and cares less about the revolution or the Shah. You had your revolution, they say, but we have a different agenda. We want jobs. We want comfort. We want life. We want happiness. During this post-revolution historical cycle, Iran has undergone a profound social transformation. This has five key, and interrelated, dimensions: demography, education, technology, travel and ideas. First, there has been a vast increase in population, from 35 million in 1979 to 69 million in 2004. Moreover, Iranians are increasingly city-dwellers: the urban population is approaching 70% – at least half of them in the capital, Tehran. This is a striking change in a country where the vast majority of people have historically worked on the land. Second, for the first time in Iran's history the majority of the population can read and write. Around 92% of the young are literate. There has also been an expansion of university education, and it is significant that more than 61% of all university students are girls. During their school years, they must be at home, and they do not have opportunities to be involved in society as boys do. One result is that they study more and better, and almost every index of public behaviour – voting, social affairs, employment – reflects this. Third, Iranians are communicating with each other more than ever before. There are 3-5 million internet users in Iran – perhaps the highest number in the middle east. The young generation in particular is online and blogging; there are 60-70,000 weblogs, making Persian the fourth most-used weblog language. Internet cafés abound. Over 3 million homes have satellite television – and the average Iranian family has 4.6 members. These people can watch Voice of America, CNN, BBC World, and over 700 other stations. BBC radio has more than 7.5 million listeners in Iran; the BBC's website has more than 250,000 Iranian visitors every day. The most popular newspaper in Iran has a circulation of around 450,000. All this is a window on the outside world for Iranians. The regime tried to interfere with satellite waves in Tehran two years ago, but the effort was difficult, expensive and controversial. It's simpler to prevent shortwave radio, and some websites have been blocked. But if the regime tries to close channels of communication, they'll have to close everyone's minds and isolate Iranians from the world. The changes of the last twenty years have made that impossible. The fourth of these changes is that Iranians are travelling back and forth more than ever. Around 2 million Iranians live outside Iran – mostly in western Europe, Canada, and the United States, but there are large numbers too in Japan. Every summer about 200,000 Iranians travel abroad, and approximately 400,000 Iranians return for a visit. So there is an active conversation going on: people talk about the world, about the future of Iran, everything. This is bad news for the regime in another respect. After the revolution, foreign travel without permission was banned and the country closed. Now, many people face problems in acquiring foreign visas, which leads them to ask themselves: why do we have a government like this, such that no one wants to issue visas to us? This interaction is only the latest phase in a long historical reality. Iranian people, throughout our history, have always been active in the international realm, encountering other societies and their ideas. Ordinary people as well as intellectuals follow what is happening in the outside world, in the west especially. Fifth, there has been an explosion of new ideas in Islamic intellectual life. This started during what I have called the "second republic" with a circle of intellectuals around journals of reformist theology, and quickly spread among university students. This trend arrived in the context of an exhaustion of ideas among what I call the four political tribes in Iran: Marxists, monarchists, nationalists, and Islamists. Now, at this juncture in Iranian history, all four approaches have reached a dead end. A new paradigm is emerging. My own experience as a member of the "generation of the revolution" helped convince me of this. A formative moment came in 1984. I was then deputy minister for heavy industry and president of the Industrial Development and Renovation Organisation. Something happened that made me say to myself: something is going wrong in this country. But we were in the middle of the war with Iraq, and I felt I had to stay in the government. It took about a year before I resigned. With the end of the war in 1998, and the death of Imam Khomeini in 1989, I decided I needed time to study. I refused offers of a variety of posts in the new government, saying that I would prefer to study history. I gradually realised that there were big mistakes in the underlying ideas of the revolution. I saw a kind of fascism at work in the Islamic Republic of Iran. As a result of this rethinking, I re-entered the arena of politics. In 2001, I forwarded my name to be a candidate in the presidential election; I knew that the unelected clerics in the Council of Guardians would refuse to register me, but my real purpose was to begin a conversation, especially with students. I went to many universities to campaign. Perhaps 30% of the students backed me, 70% voted for Khatami. My platform was the constitution. I argued that the problem is Iran's constitution and the laws that flow from it, and that to change them is the first, necessary step. The constitutional issue has become paramount because the country is now at a crisis point. There is huge dissatisfaction with the way the country is governed; the overwhelming majority of young Iranians are against the regime. This situation is really dangerous. In such circumstances, with the current constitution in place, the presidency means nothing. President Khatami possesses no real power. So the goal must be to change the constitution and make the position of a democratically elected president meaningful. My campaigning in 2001 and an essay entitled "The Last Word, the First Step" made me a target. In March 2003 officers of the ministry of intelligence arrested me at home. I was charged with making propaganda against the regime. In response, my wife announced that I would go on a hunger strike, and some friends proposed that I become mayor of Tehran under the auspices of a National Coalition of Liberals in town council elections. They printed a poster of me and handed it out in the streets, called a press conference and declared that their "mayor" was on hunger strike in jail. The description of me as mayor was a pressure on the regime, because according to the law, a directly elected council chooses the mayor. My friends said that if the people elect us, we in turn will elect Mohsen Sazegara mayor of Tehran. The regime made its calculations, and after five days they released me. I was arrested again in June 2003, and again started a hunger strike. It lasted seventy-nine days, with a two-week break in the middle. I am writing a book about it, called Prison in Prison. The reason for the break was that the authorities told me they were agreeing to my three demands – that the regime tolerate non-violent opponents like me, release the 800-plus university students who were arrested with me, and that the regime (in the form of the supreme leader himself) apologise to the nation for this mass incarceration. My own son was one of those arrested. He was kept in an isolation cell for twenty-five days; some were held in such cells for eighty-five days. I had twice tried a "dry" hunger strike, but my heart disease meant I could only last for around thirty hours. So this time, I fasted on sugar and water – three cubes of sugar in the morning, and three at night. My blood pressure still went up and up, and eventually I collapsed. So after fifty-six days they rushed me to the hospital and put me on an intravenous drip. I tried to resist, and they fastened my hands to the bed. But I didn't let them add any liquid protein to the drip – just water and a little bit of sugar and salt. Tehran's attorney-general, Saeed Moratazavi, visited me and said that my three demands were being met. As a result I ended my hunger strike. About ten days later I was released from the hospital on condition I pay a bail of $800,000 which they said could be part-secured if I handed over the title-deeds of my father's and brother's houses. When an officer of another branch of government came to arrest me on a new charge, it was clear that the attorney-general had lied; he had tricked me. I told the authorities that if you don't keep your promises, I will restart the hunger strike. And so I did. This time I quickly became weak, and they sent me back to the hospital. I was there for another twenty-three days until I was returned to jail. They said I would be kept there indefinitely. I was sure my death was imminent. I knew nothing about what was happening outside. My wife came once to visit with my mother, but the conversation was monitored. On my release, I found out that people at one university had held a candlelight vigil after a rumour that I had died. Several other universities announced they would hold their own vigils on behalf of all the political prisoners. I was released two days before they were due to be held, and I think they were the most important reason for my release. Since then, I have been sentenced to a year in prison for propaganda against the regime. Five more accusations have been made against me, carrying a possible penalty of twenty years in jail. One is action against national security, which consists of nothing – a speech I made at a university; another is having a relationship with foreign spies, a more serious charge. The evidence is interviews I have given to a Radio France broadcaster who is supposed to belong to a pro-democracy association in France controlled by the CIA. None of these experiences have stopped or will stop me from expressing my own ideas about what Iran needs: a new intellectual and political paradigm. Those in power in Iran have created a fascist version of Islam – an absolutist and authoritarian system. Everything has to be unified, singular, one, a total state. They even use the methods of fascism, like that militia of thugs, the Revolutionary Guards. They are called "white shirts", a variant of Nazi Germany's "brown shirts". They are at every demonstration in Iran, violently attacking all opposition groups. But now things are really changing. That's what I told my interrogators: "it" has happened and is happening in Iran. By "it" I mean one thing: the promise of democracy. This promise is being led by what I call the "reformation movement", based on a fourfold set of principles: democracy, human rights, civil society and involvement in the international community. This is something much wider and deeper than the "reform process" of President Khatami, which is now dead. It is vital to grasp that the reformation movement precedes Khatami's election in 1997 and will outlast him. His reform process was not, as many now claim, from the first a conspiracy to give the regime a new face and thereby make it last longer. I think that it was not wrong that people's demands for change, modernity and freedom led them to vote for Khatami. The impossibility of reform became apparent only two years after his election. The problem is that the underlying framework of the existing constitution of the Islamic Republic of Iran is structurally incompatible with achieving the goals the reformers have set – democracy, human rights, and secular pluralism. In this constitution, the leader is all-powerful. He can ratify everything and can veto anything – and the people are at his mercy. Article 4 of the constitution says that no law, statute, or order in the country can be against Islam. The six clerics who are the main part of the Council of Guardians granted themselves the authority to interpret what is and is not against Islam. The leader ratifies them. No democracy can be made out of Iran's constitutional law. Iran's problems are essential to the nature of the regime. And so it must be changed. This is the lesson of "reform". So what is to be done? How can the "reformation movement" succeed where the "reform process" failed? The answer is to mobilise civil society behind a referendum campaign to create a new constitution. This is the key: if you change the constitution, everything will change. To this end, several colleagues and I have begun a campaign for a referendum on the constitution. This started with eight original signatories – including a student movement leader, a dissident who spent over six years in prison, a lawyer who is in jail now, a human rights activist whose husband is now in jail, and me. We put it on the internet and invited all Iranians to sign it. More than 35,000 people have done so – including 300 prominent writers, scientists, and intellectuals. The regime has censored the site and blocked access to it, but we have invited people to add their names by email. The regime will almost certainly block the referendum before it can be put to a ballot. The way to defeat this is to apply pressure, pressure that will come from the people. There's no other way. So we are mobilising people around the referendum now, as well as seeking support from the international community. The referendum plan involves five steps. The first is the announcement itself. This was followed by state pressure, including arrests – but we are still alive. The second is spreading and deepening the concept. The referendum idea has been widely discussed among shortwave radio listeners, on the net, and on satellite TV, as well as in over 200 media articles. There have also been numerous meetings on the referendum idea in Iran's universities all around the country. When Islamist clerics and their supporters say that it is radical to talk about changing the constitution, students challenge them on matters of constitutional law. Students argue that free elections in Iran require getting rid of the Council of Guardians; and to get rid of the Council of Guardians requires changing the constitution. Everybody – university students, families, taxi-drivers – is talking about the referendum. This leads to the third step, organisation, the coordination of all this support behind the key aims of the plan. If this succeeds, the fourth step is civil resistance. There are plenty of pro-referendum people in Iran. At their heart are university students, the most important element of the population. In the universities, we can organise civil resistance actions around the referendum: demanding freedom for political prisoners, freedom of speech, the reopening of newspapers. In this regard, we are studying the experiences of other countries. The "velvet revolution" in Czechoslovakia and the satyagraya movement in India are only two examples. Iranians are quite different from Czechs and Indians, however. It's difficult, maybe impossible, to persuade Iranians to sit down and be beaten and attacked without resisting. We are not Hindus. But we can invite people to light candles in their windows, and many other things. We need non-violent action – not revolution. In the revolutionary period, I was glad to see hatred of the Shah's regime, because it created and fuelled a revolution. But our project now is democracy. This means total openness to all points of view. When we announced that we wanted to hold a referendum on our constitution, we said that all groups were welcome to join us. Democracy requires this. Why exclude anyone? Among our supporters are monarchists, even the son of the Shah. The monarchists say that they believe in parliamentary democracy, and that any Shah would only be the symbol of the country. If you find this material stimulating, please add your views to our discussion forums, and consider supporting openDemocracy by sending us a donation. Some argue that the referendum movement should propose a candidate in the presidential elections of June 2005 on a platform of changing the constitution. The candidate would use the campaign solely as a vehicle to press the case for a referendum – a kind of "demonstration candidacy". I'm not sure this is the best way. The referendum movement for freedom and democracy in Iran needs international support – moral, intellectual, and organisational. We do not need financial support. We would never compromise ourselves by accepting money from a foreign government; if you do that, you are doing their work rather than yours. Another source of foreign support might be from intellectuals, writers, artists, poets, playwrights, singers, novelists, philosophers. If they backed the referendum movement, it would help Iranian people gain the self-confidence they need. This psychological dimension is crucial. Iranians believe that for any movement to be successful it must have the support of the international community. This is the first time in our recent history that Iranians have thought this way. The reason is that the regime is autocratic: it concentrates all power in its hands. It can harass everybody, close down shops, shut newspapers, block websites. Many Iranians feel opposition is useless in the face of this. So they want international help. But this help should not be military. Some Iranians call American forces the "soldiers of democracy". It is widely believed in Iran that Britain supports the mullahs and the United States wants Iran free. I tell students in many universities that I don't agree. We need democracy, but not by means of an invasion. We must grow it ourselves, through civil society, participation in social and political affairs – not through military force. The main focus of discussions about Iran, its future and its relations with the west is the nuclear question. I think that this is a diversion. What matters is the nature of the country's government. Whether or not there is a nuclear programme and what danger it poses is altered by the stability and character of the governing circles. If Iran becomes a society with a democratic government operating within a constitutional settlement that is based on human rights principles, then this changes the relevance of any nuclear capabilities it may have or develop. The demand that Iran's government is open and transparent about its weapons programme is much less important than whether Iran can have an open and transparent political and constitutional system that the Iranian people themselves can trust. This is where trust starts: it can't be imposed from outside. Indeed, the danger of this diversion is that it will harden the regime and even strengthen support for it, the very opposite of what should be happening. The support of western intellectuals would be especially important to our young generation. So far, leftist thinkers and writers have paid little attention to Iran. In any case, anti-Americanism, anti-westernism, anti-imperialism doesn't speak to our struggle. Young Iranians are reading the work of Isaiah Berlin, Karl Popper, Hannah Arendt. These thinkers are all available in Persian. My generation thought about revolution and nothing more. But now Iranians are thinking about liberalism: Kant and neo-Kantianism. A new generation of Iranian scholars has studied the philosophy of science and religion. As a result, new ideas are emerging about a theme that figures centrally in Iran's national conversation: the conflict between tradition (not just our religion, Islam, but our poetry and literature, our rituals and culture) and modernity. This regime has done so many bad things to our country in the name of religion. As a result, young people in Iran are turning away from religion. If that's Islam, they say, we don't want it. So the divorce between Islam and the state is not only for the sake of human rights and democracy, but for Islam itself. We want to restore religion to its essence, our belief in God, something beautiful in our heart – but not in the state or the law. The result would be that religion is returned to people. Each person can have his or her own religion, and respect the rights of others to have theirs. The minimal theory of Islam says that Islam should be about living one's life, not running society or ruling the state. That is not the task of Islam. The main task of Islam is to invite people into God and into his light. This does not require a politics of Islam, an economics of Islam, a social affairs of Islam – the maximum theory of Islam, or Islamism. You don't need the state to impose religion. The new paradigm that revolves around liberalism, democracy, pluralism, and human rights is completed by secularism. Its embodiment in a new constitution will be the work of Iranians ourselves. But to ease its birth, we want and need the support of international civil society. We are in a global era where borders are being transcended. We need global support.
[ 0.003192432224750519, -0.026463396847248077, -0.017916303128004074, -0.007112693972885609, -0.018064316362142563, -0.013794390484690666, -0.027478372678160667, 0.018479328602552414, -0.020985007286071777, -0.0003352751664351672, 0.009868551976978779, -0.0040669930167496204, -0.011492288671433926, -0.02840876393020153, -0.020855477079749107, 0.008305404335260391, -0.006793107837438583, 0.028441138565540314, -0.01764102838933468, 0.014569994062185287, 0.018293598666787148, -0.027300721034407616, -0.07055758684873581, -0.00911299604922533, -0.009322786703705788, 0.028356404975056648, 0.025480588898062706, 0.0021808238234370947, 0.03735930472612381, 0.04321414977312088, 0.010614142753183842, -0.06193844974040985, 0.054217949509620667, -0.05651351064443588, -0.017818953841924667, -0.019399959594011307, 0.021862277761101723, -0.03417709469795227, -0.030877402052283287, -0.02062322199344635, 0.017079969868063927, -0.031098198145627975, 0.022789031267166138, -0.023479333147406578, -0.0697745606303215, -0.020389199256896973, -0.00045279000187292695, -0.06777670979499817, 0.017496639862656593, -0.01613040268421173, 0.0014449768932536244, 0.00676837470382452, 0.012378514744341373, -0.015623683109879494, 0.002905422355979681, 0.030328921973705292, 0.02993842586874962, -0.00485277222469449, -0.052190132439136505, 0.06204533949494362, 0.042768847197294235, 0.03594086691737175, 0.03532199561595917, -0.03280160203576088, 0.03243447095155716, 0.019283805042505264, 0.022141171619296074, -0.015321462415158749, 0.04025324806571007, -0.04790786653757095, 0.0015569468960165977, -0.01613187976181507, 0.009744960814714432, -0.006871000397950411, -0.022750770673155785, 0.01554679311811924, -0.01281735673546791, -0.0029241954907774925, 0.004548254422843456, -0.0016065655509009957, 0.007743435446172953, 0.036288075149059296, -0.055903997272253036, 0.0161877553910017, -0.03566709905862808, -0.013098878785967827, 0.0036541265435516834, 0.03902185335755348, 0.005627311300486326, 0.029019206762313843, -0.0033978421706706285, 0.04994838684797287, 0.013900072313845158, 0.0011785587994381785, 0.05046162009239197, 0.04125790297985077, -0.033917319029569626, 0.02616613544523716, 0.04123058542609215, -0.021566826850175858, 0.03363564610481262, 0.017161421477794647, 0.0037512436974793673, 0.04249109327793121, -0.022219128906726837, -0.018103979527950287, -0.0039945850148797035, -0.03396216034889221, -0.002924031112343073, -0.0325174406170845, 0.005247701425105333, -0.018183818086981773, 0.012368378229439259, 0.020419791340827942, 0.0022831072565168142, 0.05244089663028717, -0.002191659528762102, 0.014338675886392593, -0.02544509433209896, 0.025259900838136673, -0.022657545283436775, -0.003999701235443354, 0.038683220744132996, -0.005341236479580402, 0.020766345784068108, -0.03413018956780434, -0.020995888859033585, 0.037659939378499985, -0.029571790248155594, -0.012123496271669865, -0.013936285860836506, -0.01618245802819729, 0.0013654852518811822, 0.002425858285278082, 0.0045616235584020615, 0.01627822406589985, -0.006082628853619099, 0.025923429057002068, 0.000895850476808846, -0.04823913052678108, 0.02161302976310253, 0.03028753586113453, 0.023763645440340042, 0.08095139265060425, 0.02380078099668026, 0.01478058472275734, -0.017231464385986328, -0.006568725686520338, -0.011918904259800911, 0.04215391352772713, -0.04465358704328537, -0.011610735207796097, -0.02609855681657791, 0.010955178178846836, -0.01233451534062624, 0.002302883192896843, -0.016378914937376976, 0.022528909146785736, 0.005265833809971809, 0.03609132394194603, -0.03019130416214466, -0.024990659207105637, 0.009594331495463848, 0.04353238642215729, -0.00037837252602912486, 0.03232299163937569, -0.03951637074351311, -0.014509097672998905, -0.02498026005923748, -0.01762041077017784, 0.017883658409118652, -0.012244630604982376, 0.003649333957582712, 0.004580831155180931, 0.028126047924160957, 0.057147521525621414, 0.021947305649518967, 0.0005557914264500141, 0.0383150689303875, 0.055070213973522186, -0.04997794330120087, -0.004972153343260288, -0.0021462193690240383, 0.08028792589902878, 0.017237083986401558, 0.004615875892341137, -0.010690181516110897, 0.0010719236452132463, -0.04733407124876976, -0.038677435368299484, -0.012906208634376526, 0.04367653280496597, -0.011314578354358673, -0.002140754135325551, 0.024192219600081444, 0.005515760276466608, -0.026116501539945602, -0.01805044896900654, -0.01781795546412468, -0.027262117713689804, -0.053339939564466476, 0.02486376278102398, -0.025686802342534065, 0.025081424042582512, -0.011817315593361855, -0.012611337006092072, 0.04991176724433899, 0.07089848071336746, -0.04012303426861763, 0.02540368027985096, 0.03830309212207794, -0.005755016580224037, -0.02683323808014393, -0.02279762551188469, 0.0057018958032131195, -0.0400930792093277, -0.0410110242664814, 0.07120414823293686, -0.02546071819961071, -0.0016137327766045928, 0.0035330390091985464, 0.04807345196604729, 0.015516234561800957, 0.033303745090961456, -0.008549226447939873, 0.0018056847620755434, 0.027778536081314087, 0.07570260763168335, -0.033551041036844254, -0.01554439403116703, 0.02871374972164631, 0.057971592992544174, 0.025306461378932, 0.07895581424236298, 0.04357147589325905, 0.00009919911826727912, 0.04976360499858856, 0.04783863574266434, 0.003929467871785164, 0.036506254225969315, 0.013134741224348545, 0.004297440871596336, 0.0633818507194519, 0.026552138850092888, -0.007637553382664919, 0.06631936132907867, -0.0019095046445727348, -0.01299093384295702, 0.01278394553810358, 0.04158157855272293, 0.013226168230175972, 0.040143586695194244, 0.0319792740046978, 0.030719168484210968, -0.034222908318042755, 0.01718851551413536, 0.0345890074968338, 0.05398213863372803, -0.0261140838265419, -0.049658458679914474, 0.015758294612169266, 0.016074858605861664, -0.004626161884516478, -0.025349605828523636, 0.014021375216543674, 0.029595762491226196, 0.01807481050491333, 0.05039345845580101, -0.01341066975146532, -0.026262760162353516, -0.036136068403720856, -0.059680864214897156, -0.048160478472709656, -0.022418130189180374, -0.05795246362686157, 0.04898875206708908, 0.05257965624332428, -0.040967103093862534, 0.025976650416851044, -0.013903401792049408, -0.03995301574468613, -0.0241670124232769, -0.0035967370495200157, 0.043505650013685226, 0.013475301675498486, 0.018957894295454025, -0.01234905980527401, 0.039418019354343414, -0.008458876051008701, 0.012445998378098011, -0.01638454757630825, -0.015552782453596592, -0.002419308526441455, -0.004849960096180439, 0.025486309081315994, -0.026522096246480942, -0.00788472592830658, -0.004604783374816179, -0.05325215682387352, -0.0704149529337883, -0.01896999031305313, 0.02274060994386673, -0.013574161566793919, -0.010427122935652733, -0.000874919060152024, 0.039647120982408524, 0.008708057925105095, -0.019939884543418884, 0.03905339911580086, 0.011480231769382954, -0.040338993072509766, 0.02859397418797016, -0.003537761280313134, 0.03688888996839523, -0.05036188289523125, 0.038804441690444946, 0.019650936126708984, 0.023716464638710022, 0.00716334767639637, -0.012224605306982994, -0.019645720720291138, -0.0020078064408153296, 0.05168887972831726, -0.009677335619926453, -0.023782065138220787, 0.019278783351182938, 0.042747944593429565, -0.05815274640917778, 0.021380780264735222, -0.028035901486873627, -0.010103627108037472, -0.04467808082699776, -0.05741310119628906, 0.02414286509156227, 0.043055593967437744, 0.003168441355228424, -0.007234159391373396, -0.008096498437225819, -0.0032932667527347803, 0.0036377504002302885, 0.015850858762860298, -0.028717415407299995, 0.011005758307874203, 0.02966400235891342, 0.021223314106464386, 0.019576678052544594, 0.03748301789164543, -0.018433988094329834, 0.007934519089758396, 0.03228602930903435, 0.01079985685646534, 0.015442798845469952, 0.01725119538605213, -0.00624684477224946, 0.016487380489706993, 0.040779564529657364, -0.02555423229932785, -0.025261877104640007, 0.007166404277086258, -0.042437534779310226, 0.045453377068042755, -0.011101717129349709, -0.002588873263448477, -0.00991027057170868, -0.03740347549319267, -0.058850888162851334, 0.012812219560146332, 0.012794487178325653, 0.06059660390019417, -0.05684861168265343, 0.07165125012397766, -0.006102117244154215, -0.01342112198472023, 0.055404119193553925, -0.037429459393024445, 0.015277569182217121, 0.04602546989917755, -0.014390443451702595, 0.05228184908628464, -0.05384610593318939, -0.0030291650909930468, -0.0203316081315279, 0.010139414109289646, 0.013339199125766754, -0.002702822210267186, 0.008581536822021008, -0.03566278889775276, -0.008533869870007038, -0.010416791774332523, -0.03340016305446625, -0.009273353032767773, -0.016512693837285042, -0.0464881956577301, -0.019499782472848892, -0.02399001643061638, -0.05952625349164009, 0.08737940341234207, 0.044699084013700485, 0.08228907734155655, 0.01158954668790102, 0.040260348469018936, 0.009954031556844711, 0.037238698452711105, 0.04106782004237175, -0.013781693764030933, 0.024079997092485428, -0.050929661840200424, 0.045201487839221954, 0.03539273515343666, -0.026872090995311737, 0.007109702564775944, -0.032842718064785004, -0.0002646309440024197, 0.05126006901264191, 0.028471365571022034, -0.022556187584996223, -0.029027195647358894, 0.006284766364842653, 0.002180469920858741, 0.022423196583986282, -0.06866911053657532, 0.008685119450092316, -0.004428179934620857, 0.035786278545856476, -0.0006733343470841646, -0.06385040283203125, -0.007814164273440838, -0.028347857296466827, 0.057785116136074066, 0.03910108655691147, 0.01070558000355959, -0.05748380348086357, -0.040986690670251846, -0.04067628085613251, -0.028256189078092575, 0.006767679005861282, 0.013192109763622284, -0.012275489047169685, -0.00998177845031023, -0.038916975259780884, -0.0014625410549342632, 0.033161528408527374, 0.01571708545088768, -0.0036839633248746395, -0.025044860318303108, 0.05252109095454216, -0.027195341885089874, 0.02078346349298954, -0.027413778007030487, -0.009686334058642387, 0.024208296090364456, -0.05823159217834473, 0.011272531934082508, -0.02661212533712387, 0.01775336265563965, -0.013185740448534489, 0.003673751140013337, -0.014056004583835602, 0.03442884981632233, -0.011516110971570015, -0.025379911065101624, -0.023884665220975876, 0.05072207376360893, -0.029842326417565346, -0.01774412766098976, 0.04143836721777916, -0.021596860140562057, -0.03435000777244568, 0.012372339144349098, 0.047524962574243546, 0.0033594537526369095, 0.0144911278039217, 0.006221942603588104, -0.04272794723510742, 0.01800098642706871, -0.052028339356184006, 0.02132745087146759, -0.013816212303936481, -0.03672804310917854, 0.025683898478746414, -0.02040192298591137, 0.021191610023379326, -0.02495410665869713, -0.012513154186308384, -0.04733101278543472, -0.038871608674526215, 0.004462506156414747, 0.022433627396821976, -0.02355925925076008, 0.0022238760720938444, 0.009406168945133686, -0.03150139003992081, 0.0006841973518021405, -0.020916813984513283, -0.014637038111686707, 0.00812475848942995, -0.0017174381064251065, -0.009689681231975555, -0.0048464443534612656, -0.004676228854805231, 0.019403323531150818, 0.0035741212777793407, -0.02830951288342476, -0.042716413736343384, -0.017428146675229073, -0.020358501002192497, -0.055042609572410583, -0.009464832954108715, -0.027030732482671738, 0.017926225438714027, -0.018264299258589745, -0.025210099294781685, 0.00950633455067873, 0.026238324120640755, 0.010676027275621891, -0.03680756688117981, -0.0043562110513448715, -0.004443947225809097, -0.04250214993953705, 0.04195268452167511, 0.028338802978396416, -0.03688203543424606, -0.007372306194156408, 0.020757300779223442, -0.00989190861582756, 0.030881525948643684, -0.039099909365177155, -0.03438105434179306, -0.044570550322532654, -0.054681334644556046, -0.00671125203371048, -0.010575346648693085, -0.015585540793836117, -0.028670530766248703, -0.011867756955325603, 0.01830090582370758, 0.019263526424765587, 0.027196472510695457, -0.008224232122302055, -0.030737681314349174, -0.0438043475151062, 0.018742278218269348, -0.02350892312824726, -0.024238741025328636, -0.019677648320794106, -0.05076010525226593, -0.0238125491887331, 0.06637290120124817, -0.00915393978357315, 0.02315301075577736, 0.005265281535685062, 0.013984986580908298, 0.002038125181570649, -0.023923873901367188, -0.05289449915289879, -0.07446934282779694, -0.012574258260428905, 0.009713900275528431, 0.008067178539931774, -0.016993392258882523, -0.0432182140648365, 0.026990022510290146, -0.0054461769759655, 0.010644461959600449, -0.022558780387043953, -0.04417633265256882, -0.01793747954070568, 0.008809361606836319, 0.06783034652471542, -0.035233575850725174, 0.04222575202584267, -0.015106085687875748, 0.05307890474796295, 0.07094313204288483, 0.01628755033016205, -0.05655191093683243, 0.005070526152849197, -0.03947286680340767, -0.0697908103466034, 0.010918411426246166, -0.017942283302545547, 0.0005953600630164146, -0.01926068775355816, -0.00016510697605554014, 0.02523648552596569, -0.01501222513616085, 0.027119161561131477, 0.04743625223636627, -0.02734016254544258, 0.006951422430574894, -0.05150225758552551, 0.03244110569357872, 0.010235297493636608, -0.01955457031726837, 0.007477757520973682, 0.004282663110643625, -0.06396915018558502, -0.0012014827225357294, -0.04383673518896103, -0.049301877617836, -0.042783111333847046, -0.022991236299276352, 0.06848198920488358, 0.019651904702186584, 0.055545512586832047, 0.015091260895133018, -0.04498733952641487, -0.05299904942512512, 0.03868212178349495, -0.012038107961416245, 0.02932353876531124, 0.048918139189481735, -0.01976441778242588, 0.010980146005749702, 0.022256137803196907, 0.028075965121388435, 0.05189354345202446, -0.02737303450703621, 0.053486257791519165, -0.004438754171133041, -0.038741257041692734, 0.0007840614416636527, 0.04709868133068085, -0.08750747889280319, -0.058922212570905685, -0.03640212491154671, 0.019649390131235123, -0.007264440413564444, -0.022473575547337532, 0.02474873699247837, -0.016394466161727905, 0.004102784674614668, -0.01272022444754839, 0.04960263893008232, 0.012714025564491749, 0.034095872193574905, 0.00937530118972063, 0.019549891352653503, -0.02666599489748478, 0.03238920122385025, 0.03095395304262638, -0.04991560056805611, -0.046140335500240326, -0.04895791783928871, 0.007597339805215597, 0.001263291109353304, -0.003216580953449011, 0.02063305303454399, -0.014612039551138878, 0.022913550958037376, 0.04766886308789253, -0.009357859380543232, 0.04007649049162865, -0.004718550946563482, -0.01817142963409424, 0.013515985570847988, -0.019781142473220825, -0.058859165757894516, -0.02841702662408352, 0.027500512078404427, -0.01361083984375, 0.03932081162929535, -0.02192091755568981, -0.00773700000718236, 0.032761480659246445, 0.007020824123173952, -0.002061685314401984, -0.0688241645693779, -0.047497984021902084, -0.010111458599567413, -0.006391451694071293, -0.023076258599758148, 0.018913468345999718, -0.024600449949502945, 0.02547171711921692, 0.015374463982880116, -0.016495825722813606, -0.025122210383415222, 0.0027896740939468145, -0.03268587216734886, 0.01517421379685402, -0.02993074804544449, 0.017015008255839348, 0.0025037925224751234, -0.04442697763442993, -0.04271123558282852, -0.011962082237005234, -0.01719791628420353, -0.002029184717684984, 0.01314383465796709, 0.032708581537008286, -0.00555547745898366, 0.031000418588519096, 0.03290523961186409, 0.024699056521058083, 0.01688907854259014, -0.028125697746872902, -0.00359797733835876, 0.04050056263804436, 0.0009560873149894178, 0.0495188944041729, 0.028983335942029953, -0.020207736641168594, 0.00829553697258234, -0.015437385067343712, -0.05177050828933716, -0.02088317833840847, -0.023684745654463768, 0.012081822380423546, 0.007286947686225176, -0.03634640946984291, -0.030214179307222366, 0.010816860012710094, -0.03415961563587189, 0.025689899921417236, -0.020006369799375534, 0.04049519822001457, -0.03399853780865669, -0.02013970911502838, -0.009254432283341885, 0.04779978469014168, -0.0016633316408842802, 0.03450965881347656, 0.007721484638750553, 0.02434982918202877, 0.017788341268897057, -0.019698427990078926, 0.025786656886339188, 0.036732859909534454, 0.025159992277622223, -0.01877712830901146, -0.02275908552110195, 0.028020622208714485, 0.005129305645823479, 0.02784339152276516, -0.05191561579704285, -0.015262672677636147, -0.06462068110704422, -0.00487355375662446, 0.01445374358445406, 0.01711949333548546, 0.03130423650145531, 0.008042148314416409, 0.042720381170511246, -0.018438372761011124, -0.03352171555161476, -0.016066579148173332, -0.05904245749115944, -0.050507765263319016, 0.03287208825349808, -0.016042435541749, -0.0053551229648292065, -0.002614431083202362, -0.03480342775583267, -0.031561389565467834, 0.0058314064517617226, -0.005219243001192808, -0.012579475529491901, 0.042053453624248505, -0.0055784666910767555, 0.05714290216565132, 0.009671554900705814, -0.012706421315670013, 0.01859896443784237, 0.04376756772398949, -0.04120640456676483, -0.03453534096479416, 0.015456766821444035, -0.0036179402377456427, -0.004088715650141239, -0.0006814782973378897, -0.0002406771673122421, 0.011190514080226421, -0.018300320953130722, -0.01726841740310192, 0.02095864526927471, 0.0014525114092975855, 0.013797556050121784, 0.06013822928071022, 0.014060496352612972, 0.00012294032785575837, -0.039653170853853226, 0.040908798575401306, -0.014591854065656662, -0.0476115345954895, -0.030391477048397064, 0.017922213301062584, 0.051859576255083084, 0.0034922726918011904, 0.017289841547608376, 0.013813060708343983, 0.04131610319018364, -0.00008437829819740728, 0.0013562829699367285, 0.013543388806283474, 0.042947910726070404, 0.031001409515738487, 0.0676228404045105, 0.010798345319926739, 0.033977121114730835, 0.055463723838329315, 0.008421326987445354, 0.010962794534862041, 0.020039355382323265, 0.005365715362131596, -0.028169991448521614, -0.009344254620373249, -0.02694656141102314, -0.008827507495880127, -0.00030132452957332134, -0.013140377588570118, -0.01682371087372303, -0.023121163249015808, -0.017299454659223557, -0.02642711065709591, 0.011194589547812939, 0.04977807775139809, -0.024930723011493683, 0.012780135497450829, -0.02610396407544613, -0.023228956386446953, 0.0174460057169199, 0.03705577552318573, 0.05158250406384468, 0.010962001048028469, 0.0453326478600502, 0.02079041302204132, -0.023503199219703674, 0.05688846483826637, 0.03813164308667183, 0.010867037810385227, -0.02638550102710724, 0.007428641896694899, 0.0356927253305912, 0.010776042006909847, -0.03180168569087982, -0.028720004484057426, -0.03135622292757034, 0.015758657827973366, -0.04602813348174095, 0.004501757677644491, 0.007199760992079973, -0.0615462027490139, 0.021243758499622345, -0.07044607400894165, 0.03683370351791382, -0.024938317015767097, -0.028395183384418488, -0.0003430701035540551, -0.018764639273285866, 0.01981358416378498, 0.052836064249277115, -0.019052913412451744, 0.056003108620643616, 0.011455324478447437, 0.06408104300498962, -0.03729758784174919, 0.010431178845465183, 0.07161473482847214, -0.018342340365052223, -0.009135233238339424, 0.013890664093196392, 0.0022329497151076794, -0.02161445841193199, 0.012045697309076786, -0.06070343777537346, 0.030240805819630623, 0.003281491110101342, -7.642427704013244e-7, 0.012088451534509659, 0.04546887427568436, -0.033786993473768234, -0.030567362904548645, -0.005961038172245026, 0.02434001863002777, -0.030778255313634872, -0.007202410604804754, -0.012575849890708923, 0.026824690401554108, -0.04905037581920624, -0.007967650890350342, -0.014218099415302277, -0.04819587990641594, 0.009546649642288685, -0.05775785818696022, 0.06695441901683807, 0.012945604510605335, -0.028278013691306114, -0.056127529591321945, -0.05024878308176994, -0.03600837662816048, -0.007633511908352375, -0.034528788179159164, -0.04860905557870865, 0.01939529739320278, 0.07375974953174591, 0.01770729199051857, 0.007770250551402569, -0.00786864385008812, 0.006046393420547247, 0.02861958183348179, 0.05622674524784088, 0.015361130237579346, 0.015422915108501911, 0.05487015098333359, -0.006837168708443642, 0.05856131389737129, -0.02362409234046936, 0.024550149217247963, -0.02263229340314865, -0.01328959409147501, 0.004706887993961573, 0.019246431067585945, -0.028786763548851013, -0.02128739096224308, -0.024246402084827423, 0.009410579688847065, 0.008291466161608696, -0.011585061438381672, -0.09513408690690994, 0.009123096242547035, -0.02759491093456745, -0.01790226437151432, -0.038816437125205994, 0.03319083899259567, -0.025778034701943398, -0.003950259182602167, -0.008204171434044838, -0.06379897147417068, 0.13923458755016327, 0.07000377774238586, 0.01038993801921606, -0.018572447821497917, 0.024131326004862785, 0.062030963599681854, 0.018682405352592468, -0.001596946269273758, 0.03601403534412384, -0.02037443220615387, 0.017596902325749397, -0.018064260482788086, 0.021919293329119682, -0.008166073821485043, 0.0429566353559494, 0.06550998240709305, -0.038756463676691055, 0.0016392858233302832, 0.00497424928471446, -0.04267711192369461, -0.05846348777413368, 0.005714921280741692, -0.016255563125014305, 0.011636869050562382, -0.009051891043782234, -0.021317008882761, 0.053138237446546555, -0.04461834579706192, 0.017709478735923767, -0.00041680800495669246, 0.004602604079991579, -0.029216818511486053, 0.009609670378267765, -0.011382856406271458, -0.0501367561519146, 0.022899415343999863, 0.005552440881729126, -0.04862292483448982, 0.0189303457736969, 0.006788977421820164, -0.03008701466023922, 0.007913579232990742, 0.04531092569231987, -0.04747484251856804, 0.006445355713367462, 0.02611985057592392, -0.03336269035935402, 0.000043727308366214857, 0.00196394557133317, -0.060991786420345306, 0.043522413820028305, -0.048593077808618546, 0.027257172390818596, -0.006334684789180756, -0.03742685541510582, 0.039006780833005905, 0.03275265172123909, -0.00010902847861871123, -0.024190424010157585, -0.009997302666306496, 0.03231876343488693, 0.014106621034443378, 0.011932330206036568, 0.0002308726543560624, -0.03589990362524986, 0.020372997969388962, 0.056361302733421326, -0.006816849112510681, -0.002104490762576461, 0.0013301328290253878, -0.011005044914782047, -0.03721437603235245, -0.03492621332406998, -0.02688683196902275, 0.03348756581544876, 0.006812068168073893, -0.025214673951268196, 0.017408860847353935, -0.013217536732554436, -0.0036863135173916817, 0.002632471267133951, -0.0702783390879631, -0.015331432223320007, -0.02736370824277401, 0.03234374523162842, 0.05030898377299309, -0.022326255217194557, -0.04592162370681763, -0.012893697246909142, 0.03282730653882027, 0.05389980971813202, 0.002042466774582863, -0.020852763205766678, 0.0005122562870383263, -0.03689556568861008 ]
The perfect motorcycle experience is about more than sourcing the right parts for your vehicle. If you want a ride that's incredible, reliable and exciting all at the same time, you need the equipment that can keep your essential parts in place too! If you're planning on upgrading or enhancing your motorcycle experience, Third Gear stock headlight brackets for a range of custom café racer motorcycle projects. Choose from a number of different styles and colours to suit your specific biking needs. Our range includes black, chrome and carbon-style headlight brackets to suite front forks ranging from 32mm to 49mm. Whatever your bike needs to ensure durability and safety on the road, Third Gear have got you covered. We even stock a selection of universal indicator front form brackets in different colours too - perfect for all of your bike building needs. Check out our extensive range today to get started with your new motorcycle project!
[ -0.0017235162667930126, -0.004534723237156868, -0.028409330174326897, -0.0019141057273373008, -0.027937961742281914, 0.001242516445927322, -0.004348906222730875, 0.03527488186955452, 0.0223091933876276, 0.017356781288981438, 0.01125320978462696, 0.001953200902789831, 0.01447835098952055, -0.046994492411613464, 0.006357500795274973, 0.03355379030108452, -0.01407664455473423, -0.012242135591804981, -0.008245653472840786, 0.004042837768793106, -0.008074943907558918, -0.0264063011854887, -0.06023208796977997, -0.04884874448180199, -0.03781598433852196, 0.02553681842982769, 0.023441163823008537, -0.009142080321907997, 0.033503033220767975, 0.06610078364610672, -0.03220384195446968, -0.05355954170227051, 0.027492335066199303, -0.04382016137242317, -0.04106736183166504, -0.0061730314046144485, 0.010106632485985756, -0.024979887530207634, -0.027813635766506195, -0.0385667085647583, 0.043734461069107056, -0.039727672934532166, 0.0074186804704368114, -0.027191927656531334, -0.03423219546675682, -0.00485442578792572, -0.03213280439376831, -0.04126812145113945, 0.0469554103910923, -0.03696906194090843, 0.01842745579779148, -0.01694408245384693, -0.00700489291921258, -0.011396870948374271, -0.004549051634967327, 0.031684573739767075, 0.007139578461647034, -0.009881067089736462, -0.03252485767006874, 0.04107581451535225, 0.006222352385520935, -0.0021616979502141476, 0.020286982879042625, -0.04268452152609825, 0.0306980200111866, 0.0075672343373298645, 0.004861081019043922, 0.025006989017128944, 0.03842699155211449, -0.03264382854104042, -0.03666530176997185, 0.0038062629755586386, -0.007860509678721428, -0.006116720847785473, -0.013829942792654037, -0.006952489260584116, -0.00796357449144125, 0.048604536801576614, -0.040926020592451096, -0.01869136281311512, 0.01135051716119051, 0.05865895003080368, -0.013131258077919483, 0.02807648852467537, -0.06270159780979156, 0.007161231245845556, -0.044411372393369675, 0.01924947276711464, 0.017401037737727165, -0.009348259307444096, -0.023349612951278687, 0.03132960945367813, 0.005110673140734434, -0.005800358019769192, 0.03794840723276138, 0.010795642621815205, -0.03463735058903694, 0.02109616994857788, -0.017872553318738937, -0.026806313544511795, 0.018682658672332764, 0.002919482532888651, 0.004744790028780699, 0.006936579942703247, -0.004980608820915222, 0.01251964271068573, 0.0044687348417937756, -0.005610642489045858, -0.008397113531827927, -0.04572702944278717, 0.015407034195959568, -0.01643412932753563, 0.033474210649728775, 0.021539999172091484, -0.004638650454580784, 0.044798173010349274, -0.04595407098531723, 0.0471426285803318, -0.016588399186730385, 0.032210592180490494, 0.013805446214973927, -0.0012220422504469752, 0.03438188508152962, -0.007032928988337517, 0.0016101528890430927, -0.0358523353934288, -0.040209658443927765, 0.04082341864705086, -0.003413407364860177, -0.006327179726213217, -0.009605573490262032, -0.04877591133117676, 0.026185527443885803, 0.02891121245920658, -0.017218098044395447, 0.014168702997267246, -0.004235845059156418, 0.04917704313993454, -0.02158874273300171, -0.04681859165430069, 0.04826616868376732, 0.03396220877766609, 0.029630983248353004, 0.08147012442350388, -0.008046864531934261, 0.029695231467485428, 0.004021482542157173, -0.007746307644993067, -0.01660246029496193, 0.03280607610940933, -0.023501036688685417, -0.0019942792132496834, -0.016482798382639885, 0.013304478488862514, -0.01060796994715929, -0.024687111377716064, -0.006578958593308926, -0.004781363997608423, 0.05975188687443733, 0.046423811465501785, -0.010434085503220558, 0.026508746668696404, 0.013726281002163887, 0.0475340262055397, -0.010951552540063858, 0.029302719980478287, -0.02412947453558445, -0.021338213235139847, -0.020676923915743828, -0.03723471984267235, 0.007906589657068253, -0.0011429202277213335, 0.006824960000813007, 0.010410724207758904, 0.035930026322603226, 0.05858876183629036, 0.014657336287200451, -0.02651611529290676, 0.018683280795812607, 0.039656806737184525, -0.04289984703063965, 0.001600024406798184, 0.005598815158009529, 0.066886305809021, 0.027837183326482773, -0.016309404745697975, 0.003592568216845393, -0.02939651906490326, -0.031163571402430534, -0.016262972727417946, 0.00012418918777257204, 0.00815567746758461, -0.05687816068530083, 0.03678907826542854, -0.00009427330951439217, -0.0022877694573253393, -0.013862387277185917, -0.03254155442118645, -0.008627510629594326, -0.039333775639534, -0.007961840368807316, 0.039705973118543625, -0.023849276825785637, 0.007025157101452351, 0.016291974112391472, -0.04380890727043152, 0.020197898149490356, 0.07267342507839203, -0.04433548077940941, 0.0018462074222043157, 0.04512932524085045, -0.004554676823318005, -0.03004380688071251, -0.014452983625233173, 0.009372645057737827, -0.01193720381706953, -0.0059720734134316444, 0.05102376639842987, -0.0328243188560009, -0.0049736094661056995, 0.004004825372248888, 0.014514479786157608, 0.045624446123838425, 0.026322655379772186, -0.01935478113591671, 0.002398851327598095, -0.010509863495826721, 0.06946779787540436, 0.007981423288583755, -0.011007328517735004, -0.007666593883186579, 0.064976766705513, 0.038151923567056656, 0.05750543996691704, 0.017235739156603813, 0.014983128756284714, 0.044947873800992966, 0.05083166062831879, -0.013464866206049919, 0.046580635011196136, 0.023288359865546227, -0.0011734493309631944, 0.02439209260046482, 0.028755873441696167, -0.021121930330991745, -0.0006410673959180713, -0.0036142526660114527, -0.0038353311829268932, -0.0062562813982367516, 0.01984225958585739, -0.008194267749786377, 0.03919671103358269, -0.001273355446755886, 0.006274969317018986, -0.013617327436804771, -0.04278448596596718, 0.02665942721068859, 0.045654937624931335, -0.02361699566245079, 0.022629886865615845, 0.027274034917354584, 0.0414535216987133, -0.007747935131192207, -0.01904585026204586, 0.06367907673120499, 0.01428814698010683, 0.010053275153040886, 0.01187877170741558, -0.018498755991458893, -0.016914501786231995, -0.0364881306886673, -0.05201534554362297, -0.027128299698233604, -0.01511379238218069, -0.04514596611261368, 0.010359133593738079, 0.03606631979346275, -0.03794477507472038, 0.014356023631989956, -0.002037983387708664, 0.02916296012699604, -0.019954834133386612, -0.027911940589547157, 0.04092578962445259, 0.028950443491339684, 0.020912522450089455, -0.009335479699075222, 0.028698792681097984, -0.009146795608103275, 0.020679078996181488, -0.037089865654706955, -0.019182773306965828, 0.009539161808788776, -0.03135034069418907, 0.011905940249562263, 0.023977180942893028, -0.020013082772493362, -0.01867103762924671, -0.06333329528570175, -0.065301813185215, -0.006959924008697271, -0.009606032632291317, -0.013388639315962791, 0.005624073091894388, -0.02241985686123371, 0.005415245890617371, 0.014023364521563053, -0.039036717265844345, 0.028536122292280197, 0.051025085151195526, -0.06812892109155655, 0.03264998644590378, 0.051605477929115295, -0.005105757154524326, -0.06632304191589355, 0.04187567159533501, 0.043744638562202454, 0.02490590699017048, -0.01480498444288969, -0.014609583653509617, -0.056163571774959564, 0.03015388548374176, 0.021738778799772263, -0.005607783328741789, -0.030810028314590454, 0.06119596213102341, 0.02409498579800129, -0.06947209686040878, 0.018728863447904587, -0.05354977771639824, -0.03705339878797531, -0.02293143793940544, -0.05572351813316345, -0.014690456911921501, 0.028789939358830452, 0.007762792054563761, 0.004914578981697559, -0.010606887750327587, 0.02042952924966812, 0.007465155329555273, 0.049057528376579285, -0.025197917595505714, 0.039774488657712936, 0.054314207285642624, -0.00010958769416902214, 0.024451453238725662, 0.03476865962147713, -0.03716030344367027, -0.004446333274245262, -0.014817384071648121, 0.003081040922552347, 0.007498641032725573, 0.04587801918387413, -0.0015539509477093816, -0.0007854739087633789, 0.04526042938232422, -0.03693095222115517, -0.008125698193907738, 0.006875033024698496, 0.02053874358534813, 0.05112646520137787, -0.027849849313497543, 0.013800153508782387, -0.021172402426600456, -0.03907196968793869, -0.04977302998304367, 0.0424254834651947, 0.020577169954776764, 0.031479403376579285, -0.02592030167579651, 0.059609800577163696, -0.01254179049283266, -0.030392350628972054, 0.05453206226229668, -0.05514577776193619, -0.02056816779077053, 0.06348827481269836, 0.0038174118380993605, 0.02895120531320572, -0.03316599130630493, 0.03100448101758957, -0.006706952583044767, 0.014474376104772091, 0.007947389036417007, 0.008252091705799103, 0.019339146092534065, -0.009142004884779453, -0.015415806323289871, -0.03208908811211586, -0.008422264829277992, -0.0028592138551175594, -0.002413451671600342, -0.0009051959495991468, -0.016396641731262207, -0.03856772556900978, -0.05864577367901802, 0.0207821112126112, 0.053685370832681656, 0.057444196194410324, -0.0028736938256770372, 0.0036621512845158577, 0.01796543411910534, 0.006902578752487898, 0.01883651874959469, -0.009521023370325565, 0.021962804719805717, -0.02099360153079033, 0.04243643209338188, 0.03876717388629913, -0.01589888148009777, -0.050854966044425964, -0.022902149707078934, -0.042261868715286255, 0.04397426173090935, 0.0005461765103973448, 0.0014762439532205462, -0.04149395972490311, 0.007533503696322441, -0.049699969589710236, 0.013809915632009506, -0.04655998572707176, -0.04182944819331169, -0.030337899923324585, 0.02715234085917473, 0.021903451532125473, -0.05573021620512009, 0.0054878718219697475, -0.05828627943992615, 0.042773470282554626, 0.04827936366200447, -0.0022944712545722723, -0.05611027777194977, -0.0113823926076293, -0.02277410961687565, -0.02195112034678459, -0.0019668727181851864, 0.046779293566942215, 0.007204093504697084, 0.036643337458372116, -0.050288695842027664, 0.0018806034931913018, 0.00745945330709219, -0.01110283937305212, -0.007015758194029331, 0.0030009527690708637, 0.05982501804828644, -0.0018992192344740033, 0.03801031410694122, -0.00679550226777792, -0.037888821214437485, -0.00009403860167367384, -0.09576006978750229, 0.008238770999014378, -0.003113367361947894, -0.008934104815125465, -0.016837241128087044, 0.024670876562595367, 0.015892883762717247, 0.025293409824371338, -0.013252975419163704, 0.0022834213450551033, -0.05499594658613205, 0.01434528548270464, -0.023168332874774933, -0.05245362967252731, 0.0539337694644928, 0.0034579469356685877, -0.03422223776578903, 0.04194512590765953, 0.0300791934132576, -0.026094119995832443, 0.014607306569814682, 0.04637105390429497, -0.03086777776479721, 0.018680991604924202, -0.021561086177825928, 0.0027100197039544582, -0.029124043881893158, -0.029719587415456772, 0.019283335655927658, -0.029044119641184807, 0.04622820019721985, -0.008864502422511578, -0.023997195065021515, -0.005872840527445078, -0.06210950389504433, -0.024447543546557426, 0.03196181729435921, -0.004346572794020176, 0.026020465418696404, 0.004555333871394396, 0.015026126988232136, -0.0036056903190910816, -0.010608240030705929, 0.02398172952234745, -0.0009837173856794834, -0.006796565838158131, 0.03630264475941658, -0.01941818930208683, 0.03308213874697685, -0.00012063685426255688, -0.009582558646798134, -0.043636154383420944, 0.008596480824053288, -0.0051093022339046, -0.007962864823639393, -0.024544650688767433, 0.0005719147739000618, 0.007115773856639862, 0.00396446930244565, -0.010296632535755634, 0.008525215089321136, -0.02000475861132145, 0.021291472017765045, 0.016715815290808678, 0.009685481898486614, -0.02001938782632351, 0.02104816772043705, -0.05215439572930336, 0.036626286804676056, 0.04787089303135872, -0.024885667487978935, -0.031925998628139496, 0.05000213533639908, -0.010275933891534805, 0.05234149470925331, -0.020500848069787025, 0.010113812983036041, -0.02300601452589035, -0.0664764791727066, 0.024851087480783463, -0.028651632368564606, -0.0008889927412383258, -0.06030508130788803, -0.02203633449971676, 0.000008190792868845165, 0.04210196062922478, -0.005099365953356028, -0.01523343101143837, -0.002496580360457301, -0.04776935279369354, 0.0174685250967741, -0.051683209836483, -0.06897568702697754, -0.02471943572163582, -0.02872711792588234, -0.02662050537765026, 0.048442233353853226, 0.03160231560468674, 0.023278331384062767, 0.015615415759384632, 0.016114210709929466, 0.03544377163052559, -0.013189177960157394, -0.03878234326839447, -0.0425366535782814, -0.010980973951518536, 0.00960101094096899, -0.02891024388372898, 0.012022936716675758, -0.017454858869314194, 0.05009760335087776, -0.07382319122552872, 0.01878689043223858, -0.018979819491505623, -0.010156206786632538, 0.01905748061835766, -0.008738797158002853, 0.05644180625677109, -0.018500514328479767, -0.015330901369452477, -0.018056513741612434, 0.0314759723842144, 0.05012229084968567, -0.008662646636366844, -0.019634224474430084, -0.03504859283566475, -0.02093202993273735, -0.07091568410396576, 0.008594073355197906, -0.03754746541380882, 0.008458639495074749, -0.03532123938202858, -0.010060135275125504, 0.05985737964510918, -0.006255543790757656, 0.0586935430765152, 0.055585090070962906, -0.014612659811973572, -0.002428301377221942, -0.0509173609316349, 0.030229249969124794, 0.060002680867910385, 0.005051154177635908, -0.0032912741880863905, -0.014420552179217339, -0.028983276337385178, 0.020632848143577576, -0.05839449167251587, -0.025684893131256104, -0.024147039279341698, 0.004708577413111925, 0.08139275759458542, -0.01160434354096651, 0.07298679649829865, -0.03866169601678848, -0.040969282388687134, -0.02591153420507908, 0.06082164868712425, 0.005258780438452959, 0.017815420404076576, 0.049683164805173874, -0.009464993141591549, -0.007257628254592419, 0.04140634834766388, -0.024253375828266144, -0.017048761248588562, -0.06228330731391907, 0.08610359579324722, 0.004043760243803263, -0.052255067974328995, 0.02151285670697689, 0.04826492443680763, -0.047782327979803085, -0.046717364341020584, 0.0026026100385934114, 0.00016111844161059707, -0.007948358543217182, -0.016707587987184525, 0.0013427131343632936, -0.049057431519031525, 0.008755316026508808, -0.03176550194621086, 0.02720673754811287, -0.013056296855211258, 0.07190028578042984, -0.0010989359579980373, 0.007713755127042532, -0.08885104954242706, 0.024089019745588303, 0.01780950464308262, 0.01271205022931099, -0.007769252639263868, -0.027238594368100166, -0.0036587181966751814, 0.0020585788879543543, -0.018542250618338585, 0.04684988409280777, -0.03024299442768097, 0.028614619746804237, 0.02480524592101574, -0.01774108037352562, 0.03464588150382042, 0.001497409539297223, -0.007462645880877972, 0.02976612187922001, -0.04273466020822525, -0.03429662063717842, -0.0633733943104744, 0.01671489141881466, -0.024150708690285683, 0.012062697671353817, -0.047771748155355453, 0.0010535672772675753, 0.04718812182545662, 0.01133678387850523, -0.023850731551647186, -0.06621328741312027, -0.04024818539619446, -0.04231557995080948, -0.029287731274962425, -0.03772255405783653, -0.006100670900195837, 0.0012091201497241855, 0.04268031567335129, 0.017427606508135796, -0.035010091960430145, 0.01808495633304119, -0.0020771005656570196, 0.0012817134847864509, -0.007297404110431671, -0.0349857322871685, 0.002550828503444791, -0.023267433047294617, -0.05965496972203255, -0.03956938907504082, 0.024852972477674484, -0.01412325631827116, 0.029284529387950897, -0.01766687072813511, 0.016206897795200348, 0.016117623075842857, 0.027567578479647636, -0.018074868246912956, 0.005843534599989653, 0.0016802011523395777, -0.06405933201313019, 0.0037018905859440565, 0.01948820985853672, -0.01214553788304329, 0.05469736456871033, 0.008786565624177456, -0.02715984731912613, 0.008777209557592869, 0.012310942634940147, -0.020414264872670174, -0.022944314405322075, 0.00700595835223794, 0.01690918579697609, 0.0252763032913208, -0.04266120120882988, 0.003822761122137308, -0.010843831114470959, -0.04099738597869873, -0.012984473258256912, -0.008486717939376831, 0.015045908279716969, 0.015067839995026588, -0.017919564619660378, -0.03196166083216667, 0.07252820581197739, 0.002635334152728319, 0.019562389701604843, 0.00879587884992361, 0.029562145471572876, 0.017326971516013145, -0.023036375641822815, 0.014307511039078236, 0.04156362637877464, 0.02017153985798359, -0.0207012090831995, 0.017929354682564735, 0.0004502887895796448, -0.061630651354789734, 0.025131436064839363, -0.029963914304971695, -0.025914419442415237, -0.06697935611009598, -0.0019670885521918535, -0.010821450501680374, 0.06413530558347702, -0.00015835891827009618, -0.0048909494653344154, 0.04545857384800911, -0.03212759271264076, -0.03862994909286499, 0.019431430846452713, -0.053760699927806854, -0.011920977383852005, 0.03975924476981163, -0.01973431371152401, -0.0005293652648106217, 0.0029658619314432144, -0.037942904978990555, -0.01581294648349285, -0.03628042712807655, 0.041297245770692825, -0.0009735962958075106, 0.03652220591902733, -0.0042844801209867, 0.038055211305618286, -0.010518699884414673, 0.012715580873191357, 0.01005078386515379, 0.028995545580983162, -0.06509138643741608, -0.04447345808148384, 0.010770668275654316, 0.01105844508856535, -0.02280544303357601, -0.00570365646854043, 0.0016389819793403149, 0.00755362119525671, -0.027953995391726494, 0.008814124390482903, 0.0004711382498499006, 0.00498171616345644, -0.023945823311805725, 0.036769527941942215, 0.007151925936341286, 0.0063391998410224915, -0.048203639686107635, 0.03563157841563225, 0.020922524854540825, -0.021490884944796562, -0.005559868179261684, 0.04278605058789253, 0.04351959377527237, -0.008156642317771912, 0.02751734107732773, 0.026302538812160492, 0.06955217570066452, 0.0006073066615499556, 0.017242079600691795, 0.011137816123664379, 0.005030529573559761, 0.009042271412909031, 0.053045604377985, 0.030389679595828056, 0.02671767584979534, 0.044989075511693954, 0.019406741484999657, 0.021517127752304077, 0.00905610527843237, 0.020379381254315376, -0.01941876858472824, 0.035235024988651276, -0.017713693901896477, 0.00477982172742486, 0.0024992949329316616, 0.008941697888076305, 0.01643168367445469, -0.028744608163833618, -0.008522317744791508, 0.002985251136124134, 0.006797578651458025, 0.03966453671455383, 0.0065130251459777355, -0.009075411595404148, -0.007466810755431652, -0.024371424689888954, 0.015767782926559448, 0.040150128304958344, 0.009916923940181732, 0.046913255006074905, 0.032643310725688934, 0.02982650138437748, -0.027373583987355232, 0.02128380723297596, 0.028738519176840782, 0.0378216914832592, -0.042036280035972595, -0.002889608033001423, 0.006990738213062286, -0.02453473024070263, -0.04536027833819389, 0.014448790811002254, -0.035666558891534805, 0.015694715082645416, -0.03513103350996971, 0.022948404774069786, 0.024544915184378624, -0.03145328909158707, 0.009215069003403187, -0.03592051565647125, 0.020769940689206123, -0.05128465220332146, -0.003555066417902708, 0.03189018368721008, -0.0015647594118490815, -0.017850521951913834, 0.05676674842834473, 0.005280975252389908, 0.033463068306446075, -0.003893166547641158, 0.0453452430665493, -0.02893145941197872, 0.019190115854144096, 0.0195584949105978, -0.03011869266629219, 0.027016019448637962, 0.02242141403257847, -0.017056789249181747, -0.02240906096994877, -0.0035988069139420986, -0.03755508363246918, -0.01203667651861906, 0.007505576591938734, -0.05941576510667801, 0.002045515226200223, 0.04597442224621773, -0.01042838953435421, -0.04349880665540695, 0.025590423494577408, 0.037874024361371994, -0.03917824104428291, 0.018301596865057945, 0.020111117511987686, 0.05916573107242584, 0.017539624124765396, -0.01467247772961855, -0.05887920781970024, -0.01752825826406479, -0.016897527500987053, -0.02901173196732998, 0.02387276478111744, -0.03455018252134323, -0.018584631383419037, -0.0152047760784626, -0.046107593923807144, -0.05733095481991768, -0.0061903176829218864, -0.039655763655900955, -0.06516721844673157, 0.036729130893945694, 0.05020304024219513, -0.0009058997966349125, 0.001866672420874238, -0.022812942042946815, -0.005388559773564339, 0.014085271395742893, 0.06922880560159683, -0.02555273286998272, 0.05051832273602486, 0.07035394757986069, -0.035232461988925934, 0.025971783325076103, -0.0007374174310825765, 0.004032901022583246, 0.013344594277441502, 0.0014535520458593965, -0.011150924488902092, 0.03636520355939865, -0.018355075269937515, -0.07426547259092331, -0.007577776443213224, 0.046824533492326736, 0.015833692625164986, -0.01721513643860817, -0.05257898196578026, -0.0035282026510685682, -0.03627021610736847, -0.02771742083132267, -0.055214907974004745, 0.029736625030636787, 0.018425850197672844, -0.03783126920461655, -0.008813519030809402, -0.057923607528209686, 0.14314235746860504, 0.038623467087745667, 0.018191739916801453, 0.008388498798012733, 0.023612303659319878, 0.056945156306028366, 0.008675284683704376, 0.015601794235408306, -0.011523790657520294, -0.05180654302239418, 0.037943143397569656, -0.005605536047369242, 0.041547730565071106, -0.003721821354702115, 0.01313747838139534, 0.08087222278118134, -0.05136829987168312, 0.022453635931015015, 0.04397708550095558, -0.06334225833415985, -0.04332015663385391, 0.027234608307480812, 0.0049493745900690556, 0.013212018646299839, -0.0052783372811973095, 0.014623729512095451, -0.003816850483417511, -0.03264733403921127, -0.009837094694375992, -0.02998180314898491, 0.04208234325051308, -0.03340006619691849, 0.043612223118543625, -0.0003791577182710171, -0.0575321763753891, 0.04751364514231682, 0.022513875737786293, -0.008717612363398075, 0.00020400795619934797, 0.0014231944223865867, 0.0052994354628026485, -0.012933662161231041, 0.04625065624713898, -0.03708671033382416, 0.007338808383792639, 0.022811168804764748, -0.05043124035000801, 0.004021989181637764, 0.01602998748421669, -0.027935124933719635, 0.04522968456149101, -0.03391888365149498, 0.013242543675005436, 0.036203883588314056, -0.03525766357779503, 0.02513069659471512, -0.005551130510866642, -0.022112609818577766, -0.003773143282160163, -0.016826694831252098, 0.013444158248603344, -0.012350250966846943, -0.035947006195783615, -0.014697246253490448, -0.0511249303817749, -0.004896055441349745, 0.004439377225935459, 0.03513425216078758, 0.0019507909892126918, -0.014669708907604218, -0.008256926201283932, -0.0028757655527442694, -0.0021648588590323925, -0.04255404695868492, 0.03632599860429764, 0.02950301393866539, -0.02779724821448326, 0.02387985773384571, 0.010052974335849285, -0.048742566257715225, -0.023003319278359413, -0.032555557787418365, 0.028163110837340355, -0.013904372230172157, 0.013203134760260582, 0.048758622258901596, -0.029463989660143852, -0.034260571002960205, -0.052762988954782486, 0.057632263749837875, 0.04425257816910744, 0.04592238366603851, 0.01588640920817852, 0.005267268978059292, -0.01979975961148739 ]
Our aim is to provide you with a healthy beautiful smile, making you feel happy and more confident. We offer a wide range of treatments and we will work with you to prevent dental disease and help you understand how to maintain the health of your mouth, keeping it free from tooth decay and gum disease. We particularly aim to save you having invasive procedures: it is now possible in almost every case to avoid the need for fresh fillings and by some means to give you the beautiful teeth you would like. We will also help adapt this to your budget as far as possible. "21st Century Dentistry With Old Fashioned Courtesy" We endeavour to shape long-standing bonds with our patients based on shared trust and respect. We sincerely care about our patient's needs and take pleasure in meeting them. We are dedicated to open and honest communication with both patients and each other. We are committed to provide our patients with personalised care that boosts dental wellbeing, function, and aesthetics. We believe in providing the highest quality of care. For that reason, we continually educate and train ourselves and our patients. We believe in searching for the best people in dentistryto offer thier skills to our patients.
[ -0.017877880483865738, 0.002813895232975483, -0.03260107710957527, 0.027440182864665985, -0.028599271550774574, 0.0032728572841733694, 0.0023876752238720655, 0.04149915650486946, -0.022888727486133575, 0.0025473260320723057, 0.023298272863030434, 0.0060697938315570354, 0.030159657821059227, -0.005778869614005089, -0.01442892849445343, -0.011672274209558964, -0.02445419877767563, -0.026712603867053986, -0.009358094073832035, 0.028721312060952187, -0.019673647359013557, 0.012106758542358875, -0.06027400493621826, -0.05051005631685257, -0.03772468492388725, 0.04959022253751755, 0.045471299439668655, 0.006608921568840742, 0.04625474289059639, 0.04380128160119057, -0.028129050508141518, -0.016651654615998268, 0.03161175176501274, -0.028265787288546562, -0.04276539012789726, -0.019356705248355865, 0.011525697074830532, -0.02828519232571125, 0.010579513385891914, -0.04360022395849228, 0.0144175561144948, 0.01237721461802721, 0.026547549292445183, -0.03181339055299759, -0.0700942650437355, -0.0011668294901028275, -0.016215724870562553, -0.03482266142964363, -0.005217447876930237, -0.025537168607115746, 0.020625269040465355, -0.010782531462609768, 0.012122664600610733, -0.014483596198260784, 0.025510454550385475, 0.021147916093468666, 0.01812727563083172, 0.007990995422005653, -0.006519747897982597, 0.02398904785513878, 0.02856329269707203, 0.002575361169874668, 0.016454609110951424, -0.027726948261260986, 0.05648847296833992, 0.035252079367637634, -0.011995859444141388, 0.01137073989957571, 0.03162010386586189, -0.008567927405238152, -0.004087913315743208, -0.029492799192667007, 0.009930186904966831, -0.00943969376385212, -0.007116653025150299, 0.019090848043560982, 0.003982826601713896, -0.00006889695941936225, -0.031052405014634132, -0.016533276066184044, 0.056925542652606964, 0.050782326608896255, -0.0019787244964390993, 0.024171916767954826, -0.07523688673973083, -0.003329165279865265, -0.004711268004029989, 0.05073992535471916, -0.0020462791435420513, -0.0007312875241041183, 0.015377853997051716, 0.039342544972896576, -0.00404182355850935, 0.0049606431275606155, 0.014246046543121338, 0.04820670187473297, -0.05862728878855705, 0.024424102157354355, -0.005944381467998028, 0.0236480925232172, 0.023739315569400787, 0.03730976581573486, 0.0033317962661385536, 0.04987112432718277, -0.03224632143974304, 0.0023347579408437014, 0.0052984124049544334, -0.009602505713701248, -0.001350817154161632, -0.007107892539352179, -0.02432873845100403, -0.013705271296203136, 0.005616883747279644, -0.008619473315775394, -0.006845435593277216, 0.06466648727655411, -0.005142080131918192, 0.05026189982891083, -0.02062327414751053, 0.025538813322782516, 0.002061291830614209, 0.036075375974178314, 0.06146417558193207, -0.01097609382122755, -0.007766390684992075, -0.014585155993700027, -0.026679957285523415, 0.01754634454846382, -0.013464945368468761, -0.04842786490917206, -0.008982903324067593, -0.06522741168737411, -0.03605322539806366, 0.001562572317197919, 0.004447438754141331, 0.011463060975074768, 0.002254677237942815, 0.04662134498357773, 0.017946140840649605, -0.014453950338065624, 0.060564570128917694, 0.058725178241729736, 0.008707989938557148, 0.07647569477558136, 0.013197455555200577, 0.0368819423019886, 0.003698366926982999, -0.02220878377556801, -0.0183660089969635, 0.04355410486459732, -0.0077805533073842525, 0.037500396370887756, -0.02293950691819191, 0.027947118505835533, -0.010126730427145958, -0.013615896925330162, -0.03477219492197037, 0.0021650921553373337, -0.0027908419724553823, 0.0234847292304039, -0.0017987638711929321, 0.0001154368874267675, -0.018293216824531555, 0.043676506727933884, -0.011637100018560886, 0.03144834190607071, -0.008868684060871601, -0.008360128849744797, 0.027300039306282997, -0.0008374910103157163, 0.03585994243621826, 0.0016998020000755787, -0.016516858711838722, 0.00458873575553298, -0.005490896292030811, 0.05859703943133354, 0.02122068963944912, -0.02257292903959751, 0.02813190221786499, 0.036588624119758606, -0.04854917898774147, -0.011562547646462917, 0.027974531054496765, 0.03191961348056793, 0.037012163549661636, -0.04436567798256874, -0.019470805302262306, -0.010247153230011463, -0.043310150504112244, -0.033511027693748474, -0.00629942724481225, 0.03936684876680374, -0.032178279012441635, 0.03909715637564659, 0.013354129157960415, -0.012792462483048439, -0.008258486166596413, -0.01383085548877716, -0.028639594092965126, -0.048337679356336594, -0.01662849262356758, 0.027843981981277466, -0.034483395516872406, 0.02152397111058235, 0.04147559031844139, -0.028516774997115135, 0.008883706294000149, 0.04462776705622673, -0.026639537885785103, 0.017783259972929955, 0.024273773655295372, 0.04444195330142975, -0.0015445182798430324, -0.001277255592867732, 0.02186194621026516, -0.005002286750823259, -0.0016539563657715917, 0.036269411444664, -0.01987992227077484, -0.014439997263252735, 0.0005051634507253766, 0.019702913239598274, 0.03645554184913635, 0.04209958389401436, -0.0035486214328557253, 0.022871024906635284, -0.0278727225959301, 0.017234446480870247, -0.008840383030474186, -0.04105357080698013, -0.017610281705856323, 0.06623909622430801, 0.025765327736735344, 0.05732310190796852, 0.04222915321588516, 0.026003850623965263, 0.03330865874886513, 0.03119150549173355, -0.011120929382741451, 0.00971989706158638, -0.003513777395710349, 0.0029513975605368614, 0.04484006017446518, 0.01562635600566864, -0.038891393691301346, 0.012798774056136608, -0.021227240562438965, 0.013283200562000275, 0.0014811491128057241, 0.060597244650125504, 0.0031829976942390203, 0.05495253577828407, 0.010028970427811146, 0.0704948827624321, -0.04637489095330238, 0.011906269937753677, 0.06534676998853683, 0.021745331585407257, -0.007590682711452246, 0.011008054949343204, 0.009994305670261383, 0.018984155729413033, -0.03004811704158783, 0.009643386118113995, 0.02195839397609234, 0.000012609686564246658, 0.014323431067168713, 0.035403698682785034, 0.008935680612921715, -0.04430976137518883, -0.03240615874528885, -0.030434463173151016, -0.042586799710989, -0.05043969303369522, -0.03152501955628395, -0.0074242763221263885, 0.06638368219137192, -0.03798941150307655, 0.01613365113735199, -0.012233602814376354, -0.002363533014431596, -0.030559193342924118, -0.017450692132115364, 0.02402574010193348, 0.011794593185186386, 0.016142861917614937, -0.04196574166417122, 0.018018526956439018, -0.01594320684671402, 0.01798880286514759, -0.04585312679409981, -0.02437683381140232, -0.009083535522222519, -0.015099012292921543, 0.008204126730561256, -0.012033001519739628, 0.005076776724308729, 0.00616706907749176, -0.0215759314596653, -0.051271840929985046, 0.012742015533149242, 0.013260181993246078, 0.009433439932763577, 0.006148005835711956, -0.02114911563694477, 0.03872554004192352, 0.008336625061929226, -0.008431416004896164, 0.016225088387727737, 0.06301406770944595, -0.04254034534096718, 0.03180399164557457, -0.0012727092253044248, 0.024446645751595497, -0.0475606769323349, 0.00851911399513483, 0.04620499163866043, 0.0014793605078011751, -0.03741488233208656, -0.035444632172584534, -0.03485296666622162, 0.050000082701444626, 0.026099976152181625, -0.01697518490254879, -0.034536078572273254, 0.05160360783338547, 0.00515582412481308, -0.06363023817539215, 0.03545491024851799, -0.006089652888476849, 0.003217039629817009, -0.04703681170940399, -0.03501846268773079, 0.01643306203186512, 0.027853112667798996, 0.024406354874372482, 0.01895281672477722, -0.02762448973953724, 0.03525146096944809, -0.019693007692694664, 0.024185562506318092, -0.040384627878665924, 0.015412349253892899, 0.041847024112939835, 0.010940223932266235, 0.03441188111901283, 0.008172346279025078, -0.013838599435985088, 0.006268155295401812, 0.018980639055371284, 0.003292068373411894, 0.007231695111840963, 0.051228463649749756, 0.01830507628619671, 0.006319989915937185, 0.05230419710278511, -0.03589101508259773, 0.0006234099855646491, 0.015278642997145653, -0.013834763318300247, 0.050157953053712845, -0.00009987499652197585, 0.03856224566698074, 0.029292084276676178, -0.06616071611642838, -0.055872995406389236, 0.03819180279970169, 0.0022377369459718466, 0.0492873415350914, -0.04502743110060692, 0.05352737754583359, -0.03329012542963028, -0.03745418041944504, 0.03506643697619438, -0.04930371046066284, -0.009028293192386627, 0.03361089527606964, -0.008709208108484745, 0.04356421157717705, -0.052036602050065994, 0.024490391835570335, -0.014823787845671177, -0.00012760313984472305, 0.03126616030931473, -0.020694494247436523, 0.02641935832798481, -0.02808230370283127, 0.006903151981532574, -0.006470715161412954, -0.015482000075280666, 0.0031245213467627764, -0.011864101514220238, -0.000991920824162662, 0.01052761822938919, -0.05667153000831604, -0.07087524235248566, 0.030789965763688087, 0.038196638226509094, 0.026213789358735085, -0.027475325390696526, -0.003200375707820058, 0.03109242208302021, 0.01833469234406948, 0.05143330618739128, -0.007171422243118286, 0.03860453888773918, -0.03452642634510994, 0.044709935784339905, 0.04081401973962784, -0.029629267752170563, -0.04566854611039162, -0.010166463442146778, -0.034353580325841904, 0.025580748915672302, -0.00919374916702509, -0.04168429598212242, -0.033597078174352646, 0.026397420093417168, -0.03367533162236214, 0.012813862413167953, -0.02607947587966919, 0.01797552779316902, -0.040890131145715714, 0.0402892529964447, 0.02907668799161911, -0.06498272716999054, -0.016749894246459007, 0.0037028060760349035, 0.053799811750650406, 0.0407409705221653, 0.0066413963213562965, -0.043629880994558334, -0.028382500633597374, -0.007521823514252901, -0.04197303205728531, -0.008554715663194656, 0.009810907766222954, 0.027710560709238052, 0.009396090172231197, -0.06042097881436348, 0.021552661433815956, 0.01442885771393776, 0.0007093383464962244, -0.005944442469626665, -0.033783093094825745, 0.05030310899019241, 0.005727848969399929, 0.043375346809625626, -0.0024706353433430195, -0.0032293377444148064, 0.016119102016091347, -0.05578342080116272, 0.010694004595279694, -0.010899590328335762, -0.0437435619533062, -0.015484308823943138, 0.020234040915966034, 0.022829707711935043, 0.052096057683229446, 0.008199215866625309, 0.03494613617658615, -0.0032273551914840937, 0.026751194149255753, -0.050216466188430786, -0.032386910170316696, 0.05212724953889847, 0.005579393357038498, -0.06354225426912308, 0.012251230888068676, 0.03200661018490791, -0.019309718161821365, -0.004156363662332296, 0.030762052163481712, -0.03829723224043846, 0.021442364901304245, -0.029229043051600456, -0.009765869937837124, -0.0157571230083704, -0.03659452497959137, -0.016366176307201385, -0.03521184250712395, 0.019823089241981506, 0.005137139931321144, 0.002437697956338525, -0.03556325286626816, -0.043993331491947174, -0.009700278751552105, -0.00456355232745409, -0.00950832013040781, 0.027670688927173615, -0.022173065692186356, 0.0021009708289057016, -0.005129316356033087, -0.01926976628601551, 0.006989056244492531, 0.01245854701846838, -0.016602015122771263, 0.005436702165752649, -0.005221777129918337, 0.008844230324029922, 0.02411208674311638, -0.00040391040965914726, -0.047536902129650116, 0.0029458971694111824, -0.01776011474430561, -0.01350460760295391, -0.036542005836963654, 0.027089031413197517, -0.006725000683218241, 0.002191255334764719, -0.050634801387786865, -0.016446689143776894, 0.0017499063396826386, 0.026005351915955544, 0.0033674947917461395, -0.012650100514292717, -0.0038313199765980244, 0.017700204625725746, -0.06090830639004707, 0.05325165018439293, 0.03133198991417885, -0.023171350359916687, -0.018155215308070183, 0.041760340332984924, -0.06335035711526871, 0.043336641043424606, -0.018409952521324158, 0.0026737190783023834, -0.02690698765218258, -0.07297421991825104, -0.011833223514258862, -0.03663396090269089, -0.05338188260793686, -0.05258043110370636, -0.06283070147037506, -0.02450254000723362, 0.05181751400232315, -0.01574678160250187, -0.025017643347382545, 0.007481984328478575, -0.043777260929346085, -0.020766614004969597, -0.03987913206219673, -0.02596575953066349, -0.027055852115154266, 0.00279199774377048, 0.011149766854941845, 0.03780446574091911, 0.004664403386414051, -0.012918397784233093, -0.012821139767765999, 0.01840856671333313, 0.02617936208844185, -0.007554154377430677, -0.0547889806330204, -0.012778108939528465, -0.018229061737656593, 0.009361369535326958, -0.021650375798344612, 0.04390762001276016, 0.008787170052528381, 0.04849426820874214, -0.009779153391718864, -0.0035497951321303844, -0.0020762509666383266, 0.005092985462397337, -0.0030130548402667046, -0.03051798790693283, 0.033882807940244675, -0.04969930648803711, -0.0013299649581313133, -0.021991612389683723, 0.02413121983408928, 0.06628677994012833, 0.0029316318687051535, -0.03204745054244995, -0.03888547047972679, -0.05604308098554611, -0.04392373189330101, 0.0092195188626647, -0.038930170238018036, -0.011243565008044243, -0.04550665244460106, -0.007264578249305487, 0.04919072613120079, 0.024326957762241364, 0.051079053431749344, 0.04860026389360428, -0.0353323258459568, -0.006209845654666424, -0.019895872101187706, 0.01640736311674118, 0.04887508973479271, -0.03550495207309723, -0.02004564180970192, -0.007029683329164982, -0.020174715667963028, -0.008462286554276943, -0.041403595358133316, -0.05914189666509628, -0.04392773658037186, -0.004174975212663412, 0.06768299639225006, -0.027856823056936264, 0.016416378319263458, -0.00876538548618555, -0.04799860343337059, 0.0037327453028410673, 0.03528327867388725, -0.022791344672441483, 0.024284783750772476, 0.04170682281255722, -0.01570964977145195, -0.036938928067684174, 0.007590705994516611, -0.018392134457826614, 0.033232033252716064, -0.039557456970214844, 0.07298226654529572, 0.007225140929222107, -0.05237904563546181, 0.006248011253774166, 0.05326820909976959, -0.05905602127313614, -0.025206830352544785, 0.032334279268980026, 0.03591671213507652, -0.019417813047766685, -0.03386881574988365, -0.01014841441065073, -0.02833862416446209, 0.021871861070394516, -0.006342538632452488, 0.06478694826364517, 0.01012553833425045, 0.0701722502708435, 0.00003982535417890176, 0.041135791689157486, -0.019378891214728355, -0.0014352310681715608, 0.027539867907762527, 0.008256499655544758, -0.030106544494628906, -0.02058236673474312, 0.0271964929997921, 0.03254443407058716, 0.0000037220140711724525, 0.033536236733198166, -0.0008303816430270672, 0.03241944685578346, 0.02775583229959011, 0.0041465312242507935, 0.04962725192308426, -0.00030436122324317694, -0.01841612718999386, 0.03753446042537689, -0.053449708968400955, -0.04233795776963234, -0.04398433491587639, 0.03288333863019943, -0.007409899961203337, 0.02386288531124592, -0.03504779562354088, 0.0008579281275160611, 0.021547267213463783, 0.0338333360850811, -0.014025167562067509, -0.018581751734018326, -0.04266396909952164, -0.02465202659368515, -0.04023429751396179, -0.05377854034304619, -0.009389587678015232, 0.013690315186977386, 0.0458504855632782, 0.010912786237895489, -0.024521466344594955, -0.017918294295668602, 0.00041359677561558783, -0.04046271741390228, -0.006366946268826723, -0.04332197830080986, 0.06623891741037369, -0.038942839950323105, -0.05890179052948952, -0.03337431326508522, 0.006712339818477631, 0.0005277954041957855, 0.044124338775873184, -0.017166687175631523, 0.008284795098006725, -0.019656764343380928, 0.05201989412307739, -0.03785262256860733, -0.006969014182686806, -0.009335873648524284, -0.03278426453471184, 0.012087184935808182, 0.05141472816467285, -0.006848849821835756, 0.06071902811527252, 0.021576935425400734, 0.0017365517560392618, 0.016775932163000107, -0.008171378634870052, -0.055401407182216644, -0.01881345547735691, 0.0006224559037946165, 0.00017435131303500384, -0.007235166151076555, -0.037939440459012985, -0.011052252724766731, -0.007046900223940611, -0.05659089237451553, -0.005766155663877726, -0.022109033539891243, 0.004336733836680651, 0.0030548376962542534, 0.009397073648869991, -0.030022863298654556, 0.05286537483334541, -0.033198338001966476, 0.013449671678245068, 0.0293990857899189, 0.04408631473779678, 0.0010815052082762122, -0.04263908416032791, -0.0029417069163173437, 0.022138049826025963, 0.03074871189892292, -0.010741079226136208, -0.02704273909330368, 0.028747374191880226, -0.020513419061899185, 0.032584283500909805, -0.04245278984308243, -0.01790998876094818, -0.046007875353097916, -0.022459764033555984, -0.014463427476584911, 0.053265295922756195, 0.012561364099383354, -0.04655393585562706, 0.035089489072561264, -0.00838356465101242, -0.051595766097307205, 0.01650390215218067, -0.049485690891742706, -0.05340078845620155, 0.016604412347078323, -0.023678701370954514, -0.0049965037032961845, -0.026354927569627762, -0.060424890369176865, -0.007769090589135885, -0.015256085433065891, -0.028564779087901115, -0.02439282089471817, 0.006026886403560638, 0.008906799368560314, 0.04271910712122917, -0.011660982854664326, 0.009054599329829216, 0.015721306204795837, 0.025416230782866478, -0.015304253436625004, -0.03649930655956268, 0.038920894265174866, -0.03147924318909645, -0.011811855249106884, -0.038814153522253036, -0.006917356047779322, 0.040227580815553665, -0.011646217666566372, 0.019192637875676155, 0.010988517664372921, 0.015972604975104332, 0.003821507329121232, 0.044770367443561554, 0.030520377680659294, -0.023116344586014748, -0.018432149663567543, 0.07065119594335556, 0.011430470272898674, -0.06472282111644745, -0.05439844727516174, 0.027997445315122604, 0.04352156072854996, -0.017280643805861473, 0.04908587038516998, 0.018108194693922997, 0.07421237975358963, -0.020952444523572922, 0.015010415576398373, 0.004820369184017181, 0.03965531289577484, 0.029666809365153313, 0.006848491728305817, 0.013741210103034973, -0.009323619306087494, 0.06525097042322159, 0.01457209698855877, -0.018518483266234398, 0.0321941114962101, 0.02627606876194477, -0.04269560053944588, -0.00466103944927454, -0.031174706295132637, 0.01663210615515709, 0.024731703102588654, -0.005582055076956749, 0.008712190203368664, -0.028620751574635506, -0.00860725436359644, -0.026635190472006798, -0.036225009709596634, -0.0029320421162992716, 0.011521187610924244, -0.008589389733970165, 0.005287316162139177, -0.022739963605999947, 0.0376729741692543, 0.05449884384870529, 0.006812183186411858, 0.02428041212260723, 0.035666726529598236, 0.03826956823468208, -0.020484955981373787, 0.05621308088302612, 0.0006118687451817095, -0.01072619017213583, -0.03130962327122688, 0.02901395782828331, 0.007585940882563591, -0.029052093625068665, -0.012831456027925014, -0.03667015582323074, -0.03983505070209503, 0.0116469357162714, -0.031156232580542564, -0.024462267756462097, 0.012627147138118744, -0.02498815208673477, -0.02508631907403469, -0.062392208725214005, 0.013536283746361732, -0.025733666494488716, -0.013345392420887947, 0.036906834691762924, -0.006342102773487568, -0.017826233059167862, 0.040789905935525894, 0.021414421498775482, 0.0691194161772728, 0.009776248596608639, 0.030376264825463295, 0.01921387016773224, 0.006928933784365654, 0.025606177747249603, -0.037494949996471405, -0.01626250520348549, 0.00814889557659626, 0.0022243738640099764, 0.005402232054620981, -0.003499774495139718, -0.008226463571190834, -0.0040681492537260056, 0.01440866943448782, -0.03257087245583534, 0.007985618896782398, 0.049290720373392105, -0.022447695955634117, -0.04856438934803009, -0.031452808529138565, 0.03599705919623375, -0.02846292406320572, 0.03267441317439079, -0.017904438078403473, 0.039667483419179916, -0.008102037943899632, 0.001437011524103582, -0.033737700432538986, -0.04824785888195038, -0.011319998651742935, -0.04158986359834671, -0.005392846651375294, -0.015636641532182693, -0.03353343904018402, -0.029556892812252045, -0.060246195644140244, -0.05352536588907242, 0.01890389434993267, -0.028534211218357086, -0.06793496757745743, 0.05047328397631645, 0.06649450212717056, 0.008540181443095207, 0.041265495121479034, -0.023024260997772217, 0.0049802991561591625, 0.005221158266067505, 0.052144065499305725, 0.031727127730846405, 0.034656673669815063, 0.017880098894238472, -0.005626530386507511, 0.04220397025346756, -0.01895257644355297, 0.05322122201323509, -0.0159195177257061, -0.028957709670066833, -0.03650591894984245, 0.037007953971624374, -0.03771586716175079, -0.050198547542095184, 0.05029674246907234, 0.017419489100575447, 0.004557667765766382, -0.0065184966661036015, -0.07162138819694519, 0.0218399316072464, -0.04933636635541916, -0.023273836821317673, -0.04343440383672714, 0.03752995654940605, 0.0036777378991246223, -0.0282320287078619, -0.013644720427691936, -0.05993000045418739, 0.1305493265390396, 0.07221908867359161, 0.03790632262825966, 0.02117186412215233, 0.061188116669654846, 0.045789748430252075, 0.010079391300678253, 0.012137864716351032, 0.0015409730840474367, -0.04339604824781418, 0.028912097215652466, 0.008855760097503662, 0.027137866243720055, -0.015296331606805325, 0.043393149971961975, 0.059963759034872055, -0.008521070703864098, 0.03310713171958923, 0.008307765237987041, -0.03377571329474449, -0.051494300365448, 0.03246792405843735, 0.01616259478032589, -0.0006643982487730682, -0.017627159133553505, 0.020199405029416084, 0.036380235105752945, -0.014815760776400566, -0.02955138310790062, -0.05083038657903671, 0.03482668846845627, -0.04653548821806908, 0.021649181842803955, -0.03641296550631523, -0.03569994866847992, 0.03575503081083298, -0.0036216096486896276, -0.022266851738095284, -0.020273495465517044, 0.04421555623412132, 0.011780226603150368, -0.008549216203391552, 0.036338359117507935, -0.05636793375015259, 0.010025999508798122, -0.0021547183860093355, -0.07870755344629288, -0.012337472289800644, 0.015981165692210197, -0.013814317062497139, 0.05098196119070053, -0.05341937765479088, 0.025128601118922234, -0.005167870782315731, -0.009320865385234356, -0.006188721861690283, -0.0020728586241602898, -0.038406629115343094, -0.017914725467562675, 0.014928897842764854, 0.03933587670326233, 0.010627185925841331, -0.025451842695474625, -0.01853584125638008, -0.024373440071940422, -0.020029010251164436, 0.010591301135718822, 0.0521283857524395, -0.03170071914792061, -0.01193432416766882, -0.021393513306975365, -0.022441530600190163, -0.008024394512176514, 0.0028297938406467438, 0.05473713576793671, 0.04716719314455986, -0.014815161935985088, 0.04760551452636719, 0.023493871092796326, -0.04296645149588585, -0.036420077085494995, -0.030827535316348076, 0.009585204534232616, -0.0028322425205260515, 0.017649909481406212, 0.018672751262784004, -0.06181914731860161, -0.04338115081191063, -0.044716499745845795, 0.062183886766433716, 0.02411462739109993, 0.018217066302895546, -0.008355082012712955, -0.006989902351051569, -0.014091295190155506 ]
An excellent kickoff in a football game requires you to learn to punt a football. Before, punts were mainly employed for commercial fishing but now they're utilized just for recreation. A punt is essentially a narrow boat that's flat-bottomed. The spread punt is the simplest to teach. Some folks believe that punting or gambling is an enjoyable approach to call home, but nothing could be farther from the reality. Don't be impatient and expect to produce your fortune overnight, if you don't know something which majority of the punters don't OR you're exceptionally lucky. Harness racing's been around for centuries in 1 form or another. If your horse should happen to finish beyond the official places then you would lose your whole stake money. 1 crucial point to understand, is that a number of horses run in races they CANNOT WIN! With so many competitive races daily, you're statistically very likely to come up against no less than a few different horses that stand a great prospect of beating your bet. The club is just one of the oldest hockey clubs on earth, being established in 1874. When most teams play cautiously, the majority of the time it is going to be a dull match. Our goal as coaches is to be sure our players possess the tools necessary so they will maximize their potential whilst playing for us. If you ran a prosperous conventional business you would continue to keep your private money separate from your small business cash. There are far more effective methods of spending our money. It's quite possible to earn money regularly with the perfect system of picking horses to lose. It is essential that your betting bank needs to be money that you're able to afford to lose in the worse case situation. If you haven't, the value of a systematic betting log may not be more emphasized. If you don't do a one-off bet on the Grand National for instance, once a calendar year, you will likely be betting now and for a long time to come. In case the country was thrashed badly by their opponent in a prior game, there might be motivation to take care of the game for a revenge fixture. Nearly all horse races in the united kingdom are based on some kind of handicapping system. By having the ability to come across favorites that are running at odds which will payout more than anticipated, or more than normal, you are able to take advantage of the profitable race odds that have seemingly been overlooked by the betting public. Determining the odds through the many entities listed above can result in a minor misplacement in what you might have expected your punting payout to be. Just because you've lost the last ten bets doesn't mean the opportunity for your 11th bet is bad. Just believing in luck can't enhance your chances. Yes, luck plays a good role in everybody's life. For the impatient individual, a week of losing bets will probably finish her or him off. It was initially built in 1810. Much time is also needed to look at the odds provided by the quite a few bookmakers. The place portion of the bet can be utilized to guard the win stake in the event the mathematics are correct. The main reason why they remain in first spot is simple to explain. Punters Club will keep an eye on the rotation depending on your rules. Sportsbet Punters Club is going to have progressive collection of ALL Members and their ROI will be shown. Now that your punters club is made and all of your friends have joined, it's time to begin betting. Punters club, a new add-on to the BP website, has been made to fulfill the more compact group of individuals who look for an alternate to regular subscription. A number of memberships can be bought. All team members have to be aged 18 decades and over. Members who don't have sufficient funds will stay inactive until they can Deposit from their private account. Being a professional bettor and holding a job and possibly even being a parent requires a lot to time, and at times it feels like 24 hours is inadequate. Realtime gaming is a great example. Of course new players have plenty of questions regarding how to find the proper place to gamble safely. Instead, the ball is put on the opposition's 35-yard line and offensive team will attempt to advance the football till they score or eliminate possession. 1 trick is to join at them all so they'll begin sending you promotions immediately. You can't alter the spreadsheet. The upcoming downloadable spreadsheet is created from the template used to do non-linear regression using Microsoft Excel. Furthermore, a downloadable spreadsheet template is also located at the ending of the post. In contrast to other software connected with financial matters excel templates are easy to use. Our menu incorporates each one of the traditional Cocktails as well as a couple surprises. The essential feature is it's extra absolutely free chips and credits added to the starting balance free of charge. You may also watch videos from earlier races on the website and access information regarding the situation in the betting markets. If you would like a great long golden sanded paradise, then Woolacombe is the location for you. In the event the hotel is completely booked, ask to get put on their cancellations list. Discover the absolute best our neighbourhood offers. If you're attempting to find work at this time and will need to get started working today, then here are few Universal jobs that you can begin immediately. Below or some sorts of work you're able to walk in to pretty much today. Until that moment, you're going to be in a position to see today's racing suggestions to find out how many winners we got that day. You must go in each day and know your occupation is on the line daily. Once everything is initiated, then it's time to invite visitors to your exclusive club. You are able to cash out at any moment. All bills now completely current but for the insurance that was cancelled earlier in the year. The couple was so pleased to have found some sort of femme energy that is likely to make their relationship so much stronger. A few comments are made about the preceding days results but they have not helped whatsoever. After some seconds you're going to have a really lot of information to play. Use the exact first row to receive a header, and a column for each and every form of advice you're tracking. After a few days, the info will highlight trends and behaviours you may not have known. By going into the Challenge you're consenting to get additional information from the Bunbury Turf Club and consenting to appear in a reasonable quantity of marketing and publicity. What To search For In A Tipster Service One of the easiest and most effective methods to ascertain whether a service or system really works is to paper test it for a definite period of time and insist that you've a complimentary trial, rather than having to pay upfront. Some of the numerous horse racing tipster services which are available, will all incorporate a variety of things that analyze the very best and most likely prospective winners. Now earning a list management can be very straightforward. So learn more about app development and the way it can benefit your company or organisation. Joining a recruitment business is a wonderful means to find work quickly. The proprietors of the club have really taken all of your requirements under consideration. I am the creator of the considerable number of posts. It would be ideal if you appreciate them! I have been composition for at some point about badminton, bookies, and individuals who use betting sites online to wager on badminton. I'd say I'm abit of an expert on betting! Badminton is a diversion played with a two people, both play with a racket and it's sort of like tennis. You hit a 'shuttlecock' over a net to one another, trusting one misses. The shuttlecock is the equal to a tennis ball. They don't bounce. Shuttlecocks are feathered with an elastic shot amidst them. They're feathered so they fly through the air pleasantly and furthermore float with the shot out front. The quills cause the delay the shuttlecock, along these lines making it fly through the air easily, yet they likewise fly extremely quick. They fly at an a lot quicker speed then a ball would for example. Singles is the most prevalent type of the diversion, despite the fact that it tends to be played in substantial numbers for group amusements. Pairs is likewise played where there's two players for each team. The amusement originates from english india, this is the place the diversion was conceived, and lamentably there were no cameras or telephones in those days to catch what the amusement more likely than not been similar to. More likely than not been interesting to watch with those rackets and shuttlecocks they had in those days, also the absence of shoes! Denmark use to be the powerhouse Badminton nation on the planet yet from that point forward China has assumed control. Indeed, even the mid year olympics have assumed control over the badminton sports field since 1992. Presently when you go to the following olympics you'll have the capacity to observe some badminton! At the largest amounts of Badminton you'll require some insane continuance levels. It's a high pace amusement and you'll require extraordinary leg quality else you will think that its difficult to play for long terms of time. Not just will you need great oxygen consuming wellness yet you'll require extraordinary hand eye co-appointment with eminent engine capacities from your cerebrum. With the shuttlecock moving at such a fast you'll require the best of the two universes, both rationally and physically. You should be fit enough to get your body to the shuttlecock yet in addition rationally sufficiently able to see where the shuttlecock is moving and to guide your arms where it should be hit. Badminton is likewise an extremely prevalent game to wager on. In the betting part Badminton has turned into an incredible to wager on due to the high measure of amusements it offers. Wagering on Badminton is alot of fun on the grounds that the amusements can be close. In case you're ready to wager live you'll have a great time when it comes down to the mash of the diversion. Be that as it may, wagering on badminton won't generally be simple in light of the fact that the challenge is so great. Numerous badminton bookies offer wagering on the amusements genuinely normal, yet you'll need to ask your bookie regardless of whether they wager on badminton.
[ 0.0018628145335242152, 0.02473650500178337, 0.004256846383213997, -0.011099288240075111, -0.013410921208560467, 0.017687765881419182, 0.03664873167872429, 0.017562467604875565, 0.029042037203907967, 0.024001451209187508, 0.06933324784040451, 0.015577991493046284, 0.014193348586559296, -0.010203731246292591, 0.0030324766412377357, 0.004604189191013575, -0.027534224092960358, -0.04970003664493561, -0.03376638516783714, 0.010243987664580345, -0.026322299614548683, -0.0026525461580604315, -0.06401924043893814, -0.044957488775253296, -0.011905684135854244, 0.044997453689575195, 0.02421226166188717, -0.0120073352009058, 0.056354817003011703, 0.04166848957538605, -0.016847435384988785, -0.018583988770842552, 0.027279511094093323, -0.03431099280714989, -0.029383769258856773, -0.021373722702264786, 0.02724013477563858, -0.040039170533418655, -0.05729979649186134, -0.018365412950515747, 0.012343467213213444, -0.004796852357685566, 0.015936333686113358, -0.0018904348835349083, -0.029914185404777527, 0.0065777599811553955, -0.031831178814172745, -0.03916770964860916, 0.01248975284397602, -0.06291200965642929, 0.025224540382623672, -0.00469208462163806, 0.002848933218047023, -0.010533689521253109, 0.002952436450868845, 0.024252789095044136, 0.02127128094434738, -0.013599244877696037, -0.02987656369805336, 0.05077189952135086, 0.04081644490361214, -0.011076673865318298, 0.04792863875627518, -0.03570292145013809, 0.026396969333291054, 0.020220421254634857, -0.016760962083935738, -0.039860744029283524, 0.00970129482448101, -0.010926474817097187, -0.017817454412579536, 0.014864995144307613, -0.024605749174952507, -0.008683658204972744, 0.016134999692440033, 0.007680997718125582, 0.013251766562461853, 0.001289581647142768, -0.023205317556858063, 0.03493089601397514, -0.0013171692844480276, 0.07192257046699524, 0.008563138544559479, 0.023079970851540565, -0.040250953286886215, -0.018070578575134277, 0.016806917265057564, 0.016678299754858017, 0.006825218442827463, -0.03740965947508812, -0.0014366391114890575, 0.041973065584897995, -0.007434106431901455, -0.009780020453035831, 0.02273561805486679, 0.016939368098974228, -0.00853614043444395, 0.05003596097230911, 0.003084515919908881, 0.006452090572565794, 0.03542181849479675, 0.019491631537675858, 0.008707094937562943, 0.035352956503629684, -0.020349320024251938, -0.010697481222450733, 0.01371732633560896, 0.007446701172739267, -0.01676790788769722, -0.027736924588680267, -0.01323103066533804, -0.023366853594779968, 0.014834132976830006, -0.025173913687467575, -0.014642644673585892, 0.03367166966199875, -0.010255411267280579, 0.01919846050441265, -0.017379431053996086, 0.016445400193333626, 0.030194612219929695, -0.004492297302931547, 0.036666519939899445, -0.025214586406946182, 0.025758784264326096, -0.013031192123889923, -0.037950582802295685, 0.05693630129098892, -0.044823676347732544, -0.026887906715273857, -0.010217505507171154, -0.04804677516222, -0.006467150989919901, 0.017320826649665833, 0.0032830953132361174, 0.024765199050307274, -0.023347001522779465, 0.04030705988407135, 0.007932160049676895, -0.07465518265962601, 0.07060487568378448, 0.03230351582169533, -0.0163508802652359, 0.09152525663375854, -0.007639646530151367, 0.008933626115322113, 0.004853370133787394, -0.012123296968638897, -0.01609860733151436, 0.05065671354532242, -0.026815146207809448, 0.0019550451543182135, -0.0018404623260721564, 0.012097904458642006, 0.01668732985854149, -0.02885553613305092, -0.01244933158159256, 0.036599356681108475, 0.009964839555323124, 0.032202910631895065, -0.010011905804276466, 0.01933302730321884, -0.03768490254878998, 0.0328994058072567, -0.006651750300079584, 0.02797459252178669, -0.02096174843609333, -0.03208020329475403, -0.015383592806756496, -0.0029236359987407923, 0.01746370643377304, -0.022934043779969215, -0.0022595960181206465, -0.01447139959782362, 0.02049517259001732, 0.05179464444518089, 0.04115841165184975, -0.005655998829752207, 0.037209346890449524, 0.05851290002465248, -0.04317927733063698, 0.013659520074725151, -0.007912253960967064, 0.09814769774675369, 0.018196355551481247, -0.007431974168866873, 0.012139979749917984, -0.018611596897244453, -0.04283313453197479, -0.008583301678299904, 0.008401523344218731, 0.04927124083042145, -0.028389867395162582, 0.026530202478170395, 0.01383901759982109, -0.03774791955947876, 0.011835552752017975, -0.0006023283931426704, -0.029790587723255157, -0.04312016814947128, -0.019699858501553535, 0.06290681660175323, -0.041866179555654526, 0.042597293853759766, 0.012687621638178825, -0.011385387741029263, 0.019307967275381088, 0.04376626014709473, -0.07097037136554718, -0.02920076623558998, 0.01567264460027218, 0.01833144947886467, -0.024129943922162056, -0.007602494675666094, -0.0177238117903471, 0.007472790312021971, -0.02965988777577877, 0.02940434031188488, 0.006666668690741062, -0.013407337479293346, 0.033461350947618484, 0.03173809498548508, 0.021313033998012543, 0.05799559876322746, 0.002018466591835022, -0.01082727313041687, -0.014934064820408821, 0.04103603959083557, -0.016782457008957863, 0.02700434811413288, -0.01839534193277359, 0.06765918433666229, 0.04286276176571846, 0.05853837728500366, 0.04490525275468826, -0.00210752640850842, 0.01601303555071354, 0.039425626397132874, -0.0192090030759573, 0.04595957696437836, 0.00274762068875134, 0.01832161657512188, 0.022827811539173126, 0.027625905349850655, -0.025479990988969803, 0.009477425366640091, -0.013750454410910606, 0.01100411731749773, -0.01890243962407112, 0.0352887399494648, -0.02182495780289173, 0.03011033870279789, 0.004066157154738903, 0.029210643842816353, -0.022054307162761688, 0.0031383950263261795, 0.04286615177989006, 0.05575733631849289, -0.047392185777425766, -0.0056922598741948605, -0.02830708771944046, 0.014887413941323757, 0.0057973070070147514, -0.0038479878567159176, 0.040965426713228226, 0.0027630608528852463, 0.010303640738129616, 0.023943033069372177, -0.011619407683610916, -0.05032818764448166, -0.03121786005795002, -0.07731921970844269, -0.04703283682465553, -0.031243136152625084, -0.07357637584209442, -0.01654665917158127, 0.035890888422727585, -0.04521295055747032, 0.00587510596960783, -0.04152029752731323, -0.004122705198824406, -0.0004896661848761141, 0.015447068028151989, 0.04714857414364815, -0.016186464577913284, 0.024117952212691307, -0.03184967860579491, 0.01287857536226511, -0.006120574660599232, 0.05034241825342178, -0.042685359716415405, -0.015630507841706276, -0.00006617308099521324, 0.0015333545161411166, 0.03176552429795265, -0.01804211735725403, 0.025493551045656204, -0.02413365989923477, -0.0208724495023489, -0.04850281774997711, 0.00482960045337677, 0.004388518165796995, 0.046831533312797546, 0.0016083744121715426, -0.030136168003082275, 0.027844393625855446, 0.01052070315927267, -0.06147138774394989, -0.015413274988532066, 0.027315419167280197, -0.0494660809636116, 0.029723690822720528, 0.017216531559824944, -0.00943926814943552, -0.04306911304593086, 0.04587490111589432, 0.043195709586143494, -0.01082698069512844, -0.006997616030275822, -0.04153863713145256, -0.017708489671349525, -0.028630806133151054, 0.03256439045071602, -0.021321214735507965, -0.036804817616939545, 0.03564997389912605, 0.029310040175914764, -0.091097392141819, 0.00912268552929163, -0.012101448141038418, -0.027642223984003067, -0.055555231869220734, -0.024070657789707184, 0.02318267896771431, -0.0008251006947830319, 0.0037077446468174458, 0.021586406975984573, -0.042854469269514084, 0.032026682049036026, 0.0201895572245121, 0.02100946381688118, -0.049587737768888474, 0.035286739468574524, 0.02274984121322632, 0.030195429921150208, -0.006284904666244984, 0.007496442645788193, -0.021466540172696114, 0.0007081455551087856, 0.007394346874207258, -0.007067848462611437, 0.01914122700691223, 0.032565392553806305, -0.004343156702816486, 0.023842375725507736, 0.036630526185035706, -0.007671797182410955, 0.020340027287602425, -0.00105623051058501, -0.002451264066621661, 0.02709215320646763, 0.018880687654018402, 0.012144239619374275, 0.0015848171897232533, -0.030594097450375557, -0.051444992423057556, 0.020180687308311462, 0.030985180288553238, 0.06961497664451599, -0.07309596240520477, 0.10966983437538147, -0.0013005641521885991, -0.010702898725867271, 0.03792322799563408, -0.03278600424528122, -0.0045125787146389484, 0.052229445427656174, 0.011048762127757072, 0.031219186261296272, -0.0416049025952816, 0.04922144114971161, -0.024694064632058144, 0.014535464346408844, 0.02612919919192791, 0.0036371813621371984, 0.023838838562369347, -0.002531464444473386, -0.04057086631655693, -0.03518594428896904, -0.00952906720340252, 0.003956102300435305, 0.0034043395426124334, 0.010757661424577236, -0.0030321006197482347, -0.04046708717942238, -0.05619512498378754, 0.03227410838007927, 0.033997248858213425, 0.04706394299864769, -0.02304212376475334, 0.031076958402991295, -0.011638613417744637, 0.009254583157598972, 0.03723994642496109, 0.002557853003963828, -0.009980931878089905, -0.04417267069220543, 0.03460199385881424, 0.010533076710999012, -0.02946033701300621, -0.041877057403326035, -0.012660087086260319, -0.0008313488797284663, 0.017349258065223694, 0.0002722302742768079, -0.012235768139362335, -0.04461757093667984, 0.03624758496880531, -0.01874839887022972, 0.012900879606604576, -0.026980910450220108, -0.023503689095377922, -0.002852794947102666, 0.03981677070260048, 0.05194678157567978, -0.06737008690834045, 0.022340981289744377, -0.0396990105509758, 0.04611702263355255, 0.034794148057699203, 0.01608813740313053, -0.05161662399768829, -0.03210006281733513, -0.02790202759206295, -0.03839367255568504, 0.023388242349028587, 0.05574662610888481, -0.005698557943105698, 0.017461039125919342, -0.04033747687935829, 0.02119431458413601, 0.012154662050306797, 0.00877983495593071, 0.024585425853729248, 0.004269525408744812, 0.034202102571725845, -0.013587025925517082, 0.030802711844444275, -0.0025959727354347706, -0.0048061637207865715, 0.03727961331605911, -0.07698216289281845, -0.0006817427347414196, -0.016887152567505836, -0.017266185954213142, -0.0028223516419529915, 0.03650040552020073, -0.005637832917273045, 0.016815733164548874, 0.0008776644826866686, 0.014386280439794064, -0.017224177718162537, 0.03475305438041687, -0.04426718130707741, -0.04087679460644722, 0.04501206800341606, -0.02100849524140358, -0.029243452474474907, 0.055461786687374115, 0.0293623935431242, -0.00811635423451662, -0.028207728639245033, 0.0428183414041996, -0.0554107129573822, 0.050953079015016556, -0.021518869325518608, 0.021685602143406868, -0.013881748542189598, -0.024236658588051796, -0.013964882120490074, -0.047536540776491165, 0.027557577937841415, 0.002606587717309594, 0.0015176977030932903, -0.03790492191910744, -0.06046203523874283, -0.021449701860547066, 0.0021377489902079105, -0.0023524269927293062, 0.016445670276880264, -0.013575336895883083, -0.01126139611005783, -0.0376284159719944, -0.025859851390123367, 0.009681911207735538, 0.02247796021401882, 0.0015809929464012384, 0.04507358372211456, 0.018341638147830963, 0.006153368391096592, -0.02740105614066124, -0.03447917103767395, -0.015042304992675781, -0.010028704069554806, 0.004720913711935282, -0.010833513922989368, -0.029685864225029945, -0.03575868159532547, -0.040647320449352264, 0.01698172092437744, -0.03139819577336311, 0.025103261694312096, -0.0035626201424747705, 0.0324346199631691, 0.0151205500587821, 0.034705791622400284, -0.016618900001049042, 0.019661791622638702, -0.054547443985939026, 0.02554875612258911, 0.012551108375191689, -0.05870520696043968, -0.04663612321019173, 0.013280009850859642, -0.022693466395139694, 0.04793106019496918, 0.003945767879486084, -0.024907661601901054, -0.049187853932380676, -0.07227182388305664, 0.013300038874149323, -0.016420818865299225, -0.030545445159077644, -0.09273127466440201, -0.033232856541872025, -0.025699513033032417, 0.026567967608571053, 0.0009540430037304759, -0.03963952139019966, 0.012374377809464931, -0.06700009107589722, 0.02336691878736019, -0.04118463024497032, -0.012560559436678886, -0.02571774087846279, 0.006705139297991991, 0.008179239928722382, 0.04045278951525688, 0.021173259243369102, 0.03524614870548248, -0.009069809690117836, 0.0038565085269510746, 0.053504228591918945, 0.002630084054544568, -0.04429028555750847, -0.039688270539045334, -0.022371534258127213, -0.00853769388049841, 0.00533335329964757, -0.006254246458411217, -0.021815406158566475, 0.03801114484667778, -0.034753281623125076, 0.005372156854718924, -0.009376458823680878, -0.020235640928149223, -0.012461586855351925, 0.014099686406552792, 0.03887144476175308, -0.029878588393330574, 0.026425926014780998, -0.033337634056806564, 0.07739261537790298, 0.0359443724155426, -0.008879405446350574, -0.033906832337379456, 0.0006755878566764295, -0.04702749103307724, -0.06954523921012878, 0.029316214844584465, -0.02408738248050213, 0.00017369251872878522, -0.06282220035791397, -0.02519167773425579, 0.06908781826496124, 0.0048584402538836, 0.020396357402205467, 0.06147119030356407, -0.02359953708946705, 0.006086462177336216, -0.01577449031174183, 0.013948384672403336, 0.044605087488889694, -0.0015555600402876735, 0.016868339851498604, -0.02041207253932953, -0.030447378754615784, 0.008858689107000828, -0.04731001332402229, -0.030340611934661865, -0.05758695304393768, 0.009207232855260372, 0.04878951609134674, 0.017382947728037834, 0.02537579834461212, -0.042107146233320236, -0.04211396351456642, -0.049116406589746475, 0.006995443254709244, 0.028489748015999794, 0.017940929159522057, 0.05123237892985344, 0.008417131379246712, -0.02210291661322117, 0.002867321949452162, -0.000033394117053830996, 0.013504783622920513, -0.050768665969371796, 0.08193717151880264, 0.0056470539420843124, -0.028298255056142807, 0.030687959864735603, 0.04556306451559067, -0.07584826648235321, -0.042235881090164185, -0.010547460988163948, 0.015334737487137318, 0.021784773096442223, -0.03189980983734131, -0.009902235120534897, -0.017189066857099533, 0.005122090224176645, 0.023949220776557922, 0.03821159899234772, -0.04514015093445778, 0.05603855103254318, -0.007253550924360752, 0.03009057231247425, -0.06302405893802643, 0.020548028871417046, 0.0018347264267504215, 0.0012614685110747814, -0.002324819564819336, -0.04163786768913269, 0.0071249352768063545, 0.011468532495200634, -0.0074585299007594585, 0.015405669808387756, -0.003720170119777322, 0.009399302303791046, 0.03753482550382614, -0.009664727374911308, 0.04634318873286247, -0.009464895352721214, -0.015442559495568275, 0.014012712053954601, -0.043663911521434784, -0.04318021982908249, -0.051116351038217545, 0.005791487637907267, 0.004740622825920582, 0.033781785517930984, -0.04090910032391548, 0.011800098232924938, 0.012881284579634666, 0.008399197831749916, 0.005760017316788435, -0.07294278591871262, -0.057914189994335175, -0.03416832908987999, -0.05714789777994156, -0.016115859150886536, -0.01144727785140276, 0.006991636008024216, 0.024974558502435684, -0.004319548606872559, -0.024333277717232704, -0.0024611607659608126, 0.021158510819077492, -0.01137620024383068, 0.00401807576417923, -0.028068246319890022, 0.054433953016996384, -0.04177964851260185, -0.035658080130815506, -0.04531961306929588, -0.005608458071947098, -0.019006112590432167, 0.012367467395961285, -0.0036627633962780237, 0.03789789602160454, -0.00999215804040432, 0.024844221770763397, 0.007062681019306183, 0.024599002674221992, -0.01590905897319317, -0.0379331111907959, -0.019315645098686218, 0.029202202335000038, -0.035808954387903214, 0.057354286313056946, 0.034377582371234894, -0.014201131649315357, 0.026109477505087852, 0.00529852882027626, -0.022240610793232918, -0.024586644023656845, 0.003419883782044053, 0.015576870180666447, 0.010829184204339981, -0.0020848156418651342, -0.023838218301534653, 0.007901928387582302, -0.025243449956178665, 0.011012306436896324, -0.006340809166431427, 0.007765284739434719, 0.015997683629393578, -0.028217719867825508, -0.000981799908913672, 0.0747813954949379, -0.01703096739947796, 0.023513980209827423, 0.014384724199771881, 0.04060870781540871, 0.004475427325814962, 0.01642412692308426, 0.017624568194150925, 0.035347647964954376, 0.038941025733947754, -0.022843429818749428, 0.03510960564017296, -0.005057532340288162, -0.001972596626728773, 0.023914655670523643, -0.031752392649650574, -0.016883064061403275, -0.0520264133810997, -0.03590256720781326, 0.012691240757703781, 0.02972901239991188, 0.006689253728836775, 0.01505922619253397, 0.02536790259182453, -0.0364675372838974, -0.04244554787874222, -0.0004787817888427526, -0.08027642220258713, -0.00947433989495039, 0.03155294805765152, -0.015484707430005074, -0.022210247814655304, -0.013348468579351902, -0.025889620184898376, 0.0021582096815109253, 0.005485700909048319, -0.021164370700716972, -0.02773364819586277, 0.025935688987374306, -0.03989112377166748, 0.02022293396294117, -0.0008586948970332742, 0.0029065485578030348, 0.007664606906473637, 0.028702236711978912, -0.01590239815413952, -0.04764612019062042, 0.01405227929353714, 0.025459900498390198, -0.00019746743782889098, -0.0012586191296577454, -0.005092172417789698, -0.005467016249895096, 0.00549558037891984, 0.030145088210701942, -0.013229080475866795, 0.007662142161279917, -0.002478807233273983, 0.010381599888205528, 0.012871080078184605, 0.015524238348007202, -0.037784554064273834, 0.06479532271623611, 0.023736540228128433, -0.02253304235637188, -0.010886270552873611, 0.02773045189678669, 0.02024388499557972, -0.01892566867172718, 0.04613268002867699, 0.02689089998602867, 0.027326056733727455, -0.034681182354688644, -0.0006699304794892669, -0.008699153549969196, 0.027168208733201027, 0.043745268136262894, 0.04427841678261757, -0.016082625836133957, 0.007888790220022202, 0.025808624923229218, -0.015369631350040436, 0.002236371161416173, 0.02911015972495079, -0.001751133007928729, -0.03377237170934677, 0.05075247958302498, -0.03203499689698219, 0.009286031126976013, -0.0027717312332242727, -0.043267346918582916, -0.010133861564099789, -0.007032779976725578, 0.0050483704544603825, -0.015380549244582653, -0.014475219883024693, 0.058318089693784714, -0.016804905608296394, 0.001587707782164216, -0.00003374496736796573, -0.02170831896364689, 0.0004577638173941523, 0.03075653500854969, 0.01566757634282112, 0.0023931406904011965, 0.026589442044496536, 0.03153656795620918, -0.017734114080667496, 0.04618433490395546, 0.046312808990478516, -0.006405627820640802, -0.023613769561052322, 0.02107946015894413, -0.002789906458929181, -0.0017694012494757771, -0.07038949429988861, 0.0032842790242284536, -0.052055709064006805, 0.027285318821668625, -0.009606989100575447, -0.03246627748012543, 0.020944638177752495, -0.05788227543234825, 0.014805927872657776, -0.035680677741765976, 0.03848952427506447, -0.0389765240252018, 0.01117968000471592, 0.01389165036380291, -0.009863059967756271, -0.03613261505961418, 0.042907509952783585, -0.015602893196046352, 0.03251310810446739, -0.0019584507681429386, 0.04929899051785469, -0.0031860126182436943, 0.024867653846740723, 0.05581524223089218, -0.017542358487844467, -0.017012661322951317, 0.020117122679948807, 0.01060455571860075, -0.032594118267297745, 0.006375516299158335, -0.04782787710428238, 0.0028393978718668222, -0.022737694904208183, -0.03693174570798874, -0.02583085373044014, 0.05652076005935669, -0.0018481166334822774, -0.06448951363563538, 0.0020603113807737827, 0.022809721529483795, -0.04529930651187897, 0.03751186281442642, 0.029701169580221176, 0.01971632055938244, 0.0033202937338501215, -0.03269896283745766, -0.03161268308758736, -0.046014465391635895, 0.005213864613324404, -0.061733178794384, 0.04401145502924919, -0.023641644045710564, -0.043007999658584595, -0.019270354881882668, -0.05408940091729164, 0.007509682793170214, 0.03139147162437439, -0.037941284477710724, -0.059441231191158295, 0.05692216753959656, 0.043246522545814514, 0.017505494877696037, 0.005367810372263193, 0.0020571877248585224, -0.009397073648869991, 0.023023812100291252, 0.052701376378536224, -0.009572366252541542, 0.018164129927754402, 0.034569308161735535, -0.015927104279398918, 0.018188389018177986, -0.04961397498846054, 0.033118702471256256, 0.016726383939385414, -0.02038530446588993, -0.035854630172252655, 0.028784770518541336, -0.027398928999900818, -0.07613612711429596, 0.004184345249086618, 0.022959908470511436, -0.0029894306790083647, 0.0009444141178391874, -0.07210879027843475, 0.021707288920879364, -0.03929050639271736, -0.016290467232465744, -0.04639215022325516, 0.041893262416124344, 0.01895337738096714, -0.006539974827319384, -0.01772371307015419, -0.06778090447187424, 0.15930098295211792, 0.017004869878292084, 0.032212238758802414, -0.03454842418432236, 0.0332009494304657, 0.020758410915732384, 0.03935190290212631, 0.002066279063001275, 0.004381219390779734, 0.0032396980095654726, 0.04389076307415962, -0.027560550719499588, 0.041930582374334335, -0.013612373732030392, 0.022731706500053406, 0.07616408914327621, -0.03197917714715004, -0.0217212475836277, 0.03278232738375664, -0.03864915296435356, -0.01716369204223156, 0.004841409157961607, 0.027756253257393837, 0.030944516882300377, 0.011378778144717216, 0.03551540523767471, 0.046885937452316284, -0.08508753776550293, 0.0025824857875704765, -0.0005211438983678818, 0.031081564724445343, -0.03290535509586334, 0.031177032738924026, -0.012303064577281475, -0.03537103161215782, 0.0568322017788887, -0.0060849315486848354, -0.019727082923054695, -0.013810683973133564, 0.0018268948188051581, 0.010393051430583, -0.009077072143554688, 0.029332993552088737, -0.040195584297180176, 0.0008905851864255965, 0.03434913232922554, -0.05020828917622566, 0.030384019017219543, -0.012516853399574757, -0.0415722019970417, 0.00995535310357809, -0.03182368725538254, 0.04744404926896095, -0.013015378266572952, -0.02027050405740738, 0.012352162040770054, 0.0015228575794026256, -0.03997524827718735, 0.0019485879456624389, 0.015279225073754787, 0.04237782210111618, -0.00954876933246851, -0.015382257290184498, 0.005475420970469713, -0.024133941158652306, 0.007816173136234283, 0.03174931928515434, -0.01020787749439478, -0.0013209872413426638, -0.026273535564541817, -0.0428537093102932, -0.001547188381664455, -0.013092853128910065, -0.03364811837673187, 0.03921167552471161, 0.014958021230995655, 0.0014476684154942632, 0.03750690817832947, -0.0013864197535440326, -0.04111664742231369, -0.04262462630867958, -0.022162606939673424, 0.006516376510262489, -0.02646806836128235, 0.0237538143992424, 0.022602133452892303, -0.04886193573474884, -0.03541385382413864, -0.007741473149508238, 0.05681292712688446, 0.045291826128959656, 0.05838287994265556, 0.022647229954600334, -0.004633489530533552, -0.02454231306910515 ]
Chip And Joanna Gaines Discuss Racism With Their Kids, Recruit Emmanuel Acho For Help The couple discussed the idea of raising kids to be colorblind with the former NFL player. Larry Busacca / Getty Images Joe Allen Chip and Joanna Gaines are trying to learn how they can help their kids better understand race in America. In a new episode of Uncomfortable Conversations with a Black Man released on Wednesday night, the Fixer Upper stars sat down with host Emmanuel Acho and their five children. In the episode, Joanna explains that she and Chip have been having a dialogue with the kids about race. She said that Chip recently wanted to see how they were feeling in the wake of George Floyd's death, and so he presented them with a scenario. He asked the kids to imagine that they were at a gas station and saw two men, one white and one black. The kids said that they wouldn't feel threatened by either man, and Chip thought it was good that they didn't see color. Joanna said that, while initially they thought it was good that their kids were "colorblind," they eventually started to push back on that idea. "In your opinion, what's the best way to move forward with this conversation?" she asked Emmanuel. The athlete resisted the idea of colorblindness in his response. "I think that it's best that we raise our kids to see color because there's a beauty in color and there's a beauty in culture," the host explained. He went on to offer an example, saying that because he didn't grow up around dogs, he couldn't tell the difference between a dog who was a threat and one who wasn't. "I think that if we don't see color — if we don't expose our children to different colors, to different races — then it'll be the same thing as a white kid who becomes an adult: You won't be able to decipher the difference between a black man that's a threat and a black man that's just black," he continued. Emmanuel also said that racism was ingrained in our culture in ways that had little to do with the actions of individual people. Near the end of the video, Emmie, Chip, and Joanna's second-youngest child, asked the ex-NFL star if he's afraid of white people. Emmanuel laughed before offering a serious, heartfelt reply. He said that, while he's not afraid of white people, he is cautious around them. He added that kids learn things at a young age that help shape who they are as adults. The current Fox Sports 1 analyst said that the couple's decision to let their kids take part in the conversation was a necessary part of creating something "life-changing."
[ 0.016627412289381027, -0.016325993463397026, -0.02790544182062149, 0.021957356482744217, -0.00511624151840806, -0.03390882909297943, -0.0351455882191658, 0.024705395102500916, 0.01429186575114727, 0.0051401457749307156, 0.026635916903614998, -0.013145213015377522, 0.017815425992012024, -0.017282729968428612, -0.0026545594446361065, -0.011642842553555965, -0.012543871067464352, -0.0205835048109293, -0.025960734114050865, -0.032091058790683746, -0.007062096614390612, 0.016413874924182892, -0.04424041137099266, -0.010441680438816547, -0.011688432656228542, 0.035143740475177765, 0.02752937376499176, -0.014762913808226585, 0.06153290346264839, 0.05365116521716118, -0.034807149320840836, -0.04283149167895317, 0.011555392295122147, -0.05850036442279816, -0.014567721635103226, -0.02758350968360901, 0.06871895492076874, -0.019274407997727394, -0.0566091313958168, -0.02922172285616398, -0.006311362609267235, -0.013368434272706509, 0.04483519494533539, -0.04022173210978508, -0.05361998826265335, 0.007884489372372627, -0.028350630775094032, 0.012662368826568127, -0.012481838464736938, -0.01106772106140852, 0.0030998075380921364, -0.022466987371444702, 0.022878043353557587, 0.02082955650985241, 0.019033703953027725, 0.025621572509407997, 0.01856396161019802, -0.014378699474036694, -0.04083528369665146, 0.014538746327161789, 0.027019349858164787, 0.0034753999207168818, 0.016306273639202118, -0.07884881645441055, 0.025977041572332382, 0.02343488112092018, -0.011976879090070724, -0.022004924714565277, 0.020507533103227615, 0.009704716503620148, 0.002800053684040904, -0.0001175636425614357, -0.014218476600944996, -0.034770578145980835, 0.014338275417685509, -0.04416447505354881, -0.02427835389971733, -0.002095941687002778, -0.007670867722481489, -0.005845969542860985, 0.0020454111509025097, 0.056674133986234665, 0.011738321743905544, 0.014008678495883942, -0.03031248226761818, -0.010815579444169998, -0.012616544961929321, -0.003400104818865657, -0.0027758574578911066, 0.007052940782159567, -0.0003310228930786252, 0.062438782304525375, 0.000137795927003026, -0.020529987290501595, 0.04298776015639305, 0.0411267913877964, -0.026456579566001892, 0.025940334424376488, 0.003715932136401534, -0.013205734081566334, 0.02548515424132347, 0.014283121563494205, 0.00004694399467553012, 0.04583876579999924, -0.01700136438012123, -0.02177671529352665, -0.005560217425227165, 0.021014487370848656, 0.015718070790171623, 0.0037802846636623144, -0.008093863725662231, -0.04591118544340134, 0.009877728298306465, -0.0051103984005749226, -0.03767428919672966, 0.06489613652229309, 0.013862533494830132, 0.024414531886577606, -0.04889203980565071, 0.026669733226299286, 0.008006514050066471, 0.0018788789166137576, 0.04063049703836441, -0.016070105135440826, 0.037182193249464035, -0.011824540793895721, -0.04423306882381439, 0.019632961601018906, -0.04820144921541214, -0.006181763019412756, 0.020906496793031693, -0.0314333550632, 0.007978915236890316, 0.001732604461722076, -0.018998105078935623, 0.01852954365313053, 0.009238929487764835, 0.007730068173259497, -0.005102618131786585, -0.05679716169834137, 0.053812578320503235, 0.02119120955467224, 0.002950618276372552, 0.06571996957063675, 0.013334915973246098, 0.02121526189148426, -0.007612036075443029, -0.005557325668632984, -0.031902965158224106, 0.01899903081357479, -0.015084020793437958, 0.013988528400659561, -0.019749827682971954, -0.0028540135826915503, -0.020869815722107887, -0.0007348957005888224, 0.006154308561235666, 0.00806677620857954, 0.033442988991737366, 0.03563953563570976, -0.009377740323543549, 0.02897699363529682, -0.011061949655413628, 0.05190461874008179, -0.037090640515089035, 0.04588894546031952, -0.03712685406208038, -0.04160274192690849, -0.0025165665429085493, -0.026123929768800735, 0.042721930891275406, 0.00839305017143488, -0.013948705978691578, 0.019311174750328064, 0.012975230813026428, 0.035769231617450714, 0.04125741124153137, 0.011205489747226238, 0.007900021970272064, 0.036145854741334915, -0.017873428761959076, -0.019425254315137863, -0.022977599874138832, 0.06595923751592636, -0.005420395638793707, -0.026741262525320053, 0.013161630369722843, -0.027019305154681206, -0.05790122225880623, -0.02535516954958439, -0.011007674038410187, 0.010492031462490559, -0.004912927746772766, 0.01713225059211254, 0.029094111174345016, 0.03312212973833084, -0.009580499492585659, -0.05713684856891632, -0.02599841170012951, -0.07198470830917358, -0.04296441003680229, 0.046998169273138046, -0.035906653851270676, 0.050693828612565994, 0.008692576549947262, -0.028710734099149704, 0.011194702237844467, 0.05726737529039383, -0.038431912660598755, 0.005430615972727537, 0.037050094455480576, 0.0206028763204813, 0.004016224294900894, -0.014425056986510754, 0.019177433103322983, -0.04213780537247658, 0.0010358813451603055, 0.03509512543678284, -0.02957923151552677, 0.021608958020806313, 0.05673716217279434, -0.000321399507811293, 0.04393259063363075, 0.0585986003279686, -0.0014639025321230292, -0.008154266513884068, 0.012392832897603512, 0.04169695824384689, -0.01236258540302515, -0.013905364088714123, -0.0022477866150438786, 0.035888876765966415, 0.03433675318956375, 0.0456148162484169, 0.022851603105664253, 0.01950869895517826, 0.051967035979032516, 0.035513073205947876, 0.0021161295007914305, 0.017792675644159317, -0.0077272444032132626, 0.0032136966474354267, 0.06068427488207817, 0.01657242514193058, -0.0245379451662302, 0.02874920144677162, -0.02308014966547489, 0.029497044160962105, -0.03342895209789276, 0.032680414617061615, -0.0195203498005867, 0.04308886453509331, 0.020630136132240295, 0.04512434080243111, -0.018055466935038567, -0.0005678822635672987, 0.035412345081567764, 0.054567601531744, -0.023923233151435852, -0.012591802515089512, -0.005274998489767313, -0.014472977258265018, 0.0003823201113846153, -0.02331920899450779, 0.05756872147321701, 0.016230927780270576, -0.010700929909944534, 0.04931061342358589, -0.0006750277825631201, -0.04404453560709953, -0.017353763803839684, -0.07316548377275467, -0.027147283777594566, -0.022206926718354225, -0.05971730500459671, 0.01599983125925064, 0.031857702881097794, -0.040826693177223206, 0.000943716790061444, -0.007488221861422062, -0.01480842288583517, -0.001348000718280673, -0.00874206144362688, 0.06238441541790962, 0.019403649494051933, 0.02901669405400753, -0.042075734585523605, 0.02936529368162155, 0.021429501473903656, 0.03278621658682823, -0.0016309231286868453, -0.009176952764391899, -0.006856102030724287, -0.04041249305009842, 0.060527101159095764, -0.01445391308516264, -0.0036156619898974895, -0.015504919923841953, -0.050409190356731415, -0.07482890784740448, 0.008515061810612679, 0.014794313348829746, 0.0013661556877195835, 0.01180766336619854, -0.036677081137895584, 0.026297669857740402, 0.04668812453746796, -0.028008827939629555, 0.04372231662273407, 0.020469972863793373, -0.008919112384319305, 0.03748534992337227, 0.028337961062788963, 0.027582615613937378, -0.03725793585181236, 0.04049596190452576, 0.035758573561906815, 0.02276252768933773, -0.03461402654647827, 0.01437208242714405, -0.029410816729068756, -0.005803990643471479, 0.016782565042376518, -0.0125441774725914, -0.05183212831616402, 0.03677084296941757, 0.02166781947016716, -0.05669490993022919, 0.039855629205703735, -0.06272881478071213, -0.05884929746389389, -0.028994714841246605, -0.041942521929740906, 0.018327057361602783, 0.03546491637825966, 0.022280026227235794, 0.02168572135269642, -0.03113066963851452, 0.018864154815673828, 0.0036066467873752117, 0.028380800038576126, -0.014431791380047798, 0.00858052633702755, 0.02982362173497677, 0.031179659068584442, 0.01416972279548645, -0.02662101574242115, -0.01317816786468029, -0.003980498295277357, 0.01710781641304493, 0.004485701210796833, -0.016736874356865883, 0.026462707668542862, -0.00621969997882843, 0.035149719566106796, 0.04268457740545273, -0.03651351109147072, -0.006239893846213818, 0.010789156891405582, 0.0004389569512568414, 0.0332653783261776, 0.0028384076431393623, 0.006856400053948164, -0.006751520559191704, -0.0563444122672081, -0.05112514644861221, 0.03184659779071808, -0.011971875093877316, 0.06505797803401947, -0.052993401885032654, 0.063105009496212, -0.0034829163923859596, -0.03856457769870758, 0.05206150561571121, -0.021095464006066322, 0.008164097554981709, 0.034461960196495056, -0.010516563430428505, 0.0689057931303978, -0.05714275315403938, 0.00019103915838059038, -0.023612327873706818, 0.024390224367380142, 0.0028186219278723, 0.021721478551626205, -0.011521371081471443, -0.0375351645052433, -0.01950538158416748, 0.007145642768591642, -0.03552026301622391, -0.005866602528840303, -0.028116656467318535, 0.029064977541565895, 0.015562537126243114, -0.04830488562583923, -0.029875893145799637, 0.02003137581050396, 0.02967168763279915, 0.04966713488101959, 0.0031913816928863525, 0.025675585493445396, -0.04155838117003441, -0.005346518941223621, 0.007766007445752621, -0.008706899359822273, 0.02217293158173561, -0.024123117327690125, 0.014949999749660492, 0.02042253501713276, -0.06716573238372803, -0.025170695036649704, -0.007829749025404453, -0.03161539137363434, 0.04796086996793747, 0.03004392422735691, 0.005884711164981127, -0.04328164458274841, 0.014240851625800133, 0.0020358616020530462, 0.019855152815580368, -0.07320388406515121, -0.030133893713355064, -0.0037098987959325314, 0.03075406327843666, 0.030009793117642403, -0.028110245242714882, 0.008170191198587418, -0.045497871935367584, 0.05915503576397896, 0.03883682191371918, 0.013869408518075943, -0.04827212914824486, -0.003021573182195425, -0.05337023735046387, -0.0005235447897575796, -0.004489435814321041, 0.05776282027363777, 0.020245740190148354, -0.00518551841378212, -0.016979878768324852, -0.009976829402148724, 0.027080630883574486, 0.02825467847287655, 0.027240272611379623, -0.0057721748016774654, 0.0132677610963583, -0.006528490222990513, 0.03223137557506561, -0.006498183589428663, -0.016354212537407875, -0.000755359185859561, -0.08058792352676392, 0.03774801641702652, -0.001662788912653923, -0.00871309544891119, -0.01540351565927267, 0.03193831071257591, 0.02525516040623188, 0.01397760771214962, -0.03208209574222565, -0.007592502515763044, 0.0002553149242885411, 0.05783596262335777, -0.03707309067249298, -0.03686794638633728, 0.019183877855539322, -0.007506137248128653, -0.018235111609101295, 0.0009263516403734684, 0.036315470933914185, 0.006670387461781502, 0.0019032176351174712, -0.01193538773804903, -0.0602676123380661, 0.04076108708977699, -0.042358845472335815, 0.0029592453502118587, -0.029279254376888275, -0.019741253927350044, 0.01330570038408041, -0.040733810514211655, 0.03659675270318985, -0.011396012268960476, 0.004103881772607565, -0.042969927191734314, -0.02269865944981575, -0.02355271577835083, -0.02269439585506916, 0.01639110967516899, 0.022859930992126465, 0.010380752384662628, -0.008934727869927883, -0.001791413058526814, -0.03264075145125389, 0.027752939611673355, -0.006635168567299843, -0.020012035965919495, -0.007305571343749762, 0.007212196011096239, -0.017604442313313484, 0.022233255207538605, -0.017508719116449356, -0.025836020708084106, 0.007038503885269165, 0.006052092649042606, -0.04148707166314125, -0.05356881767511368, 0.000811633828561753, -0.041035667061805725, -0.020226428285241127, -0.012832931242883205, 0.004729819018393755, -0.027193885296583176, 0.006368094123899937, 0.03555308282375336, -0.0035865469835698605, 0.009128314442932606, 0.023781845346093178, -0.04880120977759361, 0.04328164830803871, 0.01972145587205887, -0.02999013662338257, -0.05266208574175835, 0.01064364705234766, 0.010175736621022224, 0.04158741608262062, -0.019478794187307358, 0.00023355869052466005, -0.04506171867251396, -0.06326835602521896, 0.0011652982793748379, -0.02044258639216423, -0.016702642664313316, -0.04040346294641495, -0.0009094051783904433, 0.013782506808638573, 0.051989633589982986, 0.016177918761968613, 0.012581358663737774, 0.02425788715481758, -0.0460321269929409, 0.007040448021143675, -0.04224514216184616, -0.024304993450641632, -0.045281656086444855, -0.040508437901735306, -0.00321177183650434, 0.04992738366127014, 0.005226327572017908, 0.01586390845477581, 0.02011619508266449, -0.0013746116310358047, 0.019283993169665337, -0.036533255130052567, -0.018121251836419106, -0.04033321887254715, -0.03279402479529381, 0.010218792594969273, -0.006666485220193863, 0.000005687188604497351, -0.011982539668679237, 0.05768931284546852, -0.03440495580434799, -0.005208481568843126, -0.014853906817734241, -0.004441181663423777, 0.005991607904434204, -0.00006539422611240298, 0.07172930240631104, -0.00627436488866806, 0.016422711312770844, -0.06466488540172577, 0.046429671347141266, 0.05171240493655205, -0.021022526547312737, -0.037027694284915924, -0.018120331689715385, -0.019780674949288368, -0.07037143409252167, 0.0354761965572834, -0.024722646921873093, -0.018895123153924942, -0.05837664753198624, 0.01342733670026064, 0.03037075139582157, -0.006791148334741592, 0.023568157106637955, 0.05522322282195091, -0.010511857457458973, -0.024258801713585854, -0.027571571990847588, 0.01995415985584259, 0.02173664979636669, -0.0163876935839653, 0.005605239886790514, -0.028654929250478745, -0.015690062195062637, -0.011971499770879745, -0.043702106922864914, -0.020724087953567505, -0.023868203163146973, -0.011654958128929138, 0.07490743696689606, -0.04785811901092529, 0.04320317134261131, -0.0007171506294980645, -0.04039522632956505, -0.048766572028398514, 0.02586512453854084, 0.00490995030850172, 0.021370206028223038, 0.06442545354366302, -0.029696037992835045, -0.023665644228458405, 0.011814297176897526, 0.021023031324148178, -0.012813905254006386, -0.04499058425426483, 0.0552237369120121, 0.0021026376634836197, -0.022375039756298065, 0.03572580963373184, 0.050011418759822845, -0.07568349689245224, -0.030968625098466873, -0.0008595429244451225, 0.01577591896057129, 0.027950352057814598, -0.0057608578354120255, 0.003769397735595703, 0.012947534210979939, 0.019634438678622246, 0.02114037796854973, 0.04584822431206703, -0.008504300378262997, 0.05238732323050499, -0.0032099357340484858, 0.04861122742295265, -0.04792555049061775, 0.0016412956174463034, 0.004908935632556677, 0.009663158096373081, -0.03209170699119568, -0.010734681971371174, 0.018840154632925987, -0.008672213181853294, -0.028363898396492004, 0.07276137918233871, -0.02278321422636509, -0.02508431486785412, -0.00848206877708435, -0.02106146700680256, 0.041081760078668594, 0.009496224112808704, -0.02367384359240532, -0.01214373204857111, -0.03771619126200676, -0.026481853798031807, -0.055203039199113846, 0.018984297290444374, 0.01864476688206196, 0.034143250435590744, -0.049395427107810974, -0.004746072459965944, 0.04574261233210564, -0.00675438717007637, 0.01985120214521885, -0.024517841637134552, -0.035002052783966064, -0.058598343282938004, -0.07088425755500793, 0.004233859479427338, -0.030629200860857964, 0.016587013378739357, 0.02464570477604866, 0.04836007207632065, -0.02187931537628174, 0.02891537733376026, 0.011190034449100494, -0.012782203033566475, 0.004819011781364679, -0.027948638424277306, 0.02272268570959568, -0.03011416085064411, -0.0386790968477726, -0.040933553129434586, -0.022061878815293312, -0.024286452680826187, -0.016012895852327347, -0.01984860748052597, 0.04625465348362923, -0.030343441292643547, 0.0373927503824234, -0.003473266726359725, -0.0024098025169223547, -0.022326620295643806, -0.04620293527841568, -0.0064195552840828896, 0.05254259333014488, -0.003984651993960142, -0.005845474544912577, 0.042680732905864716, -0.042365435510873795, -0.0031098215840756893, 0.03016543760895729, -0.0257750041782856, -0.03014707937836647, 0.009065135382115841, -0.03100471943616867, 0.002966776955872774, -0.03471612557768822, -0.00895763374865055, -0.02783036231994629, -0.037669017910957336, 0.001091580605134368, 0.008175557479262352, 0.004324667621403933, 0.018621252849698067, 0.004986091051250696, 0.005490437150001526, 0.032372478395700455, 0.021932879462838173, 0.028091585263609886, -0.021433785557746887, 0.027921155095100403, 0.015440925024449825, 0.028518108651041985, 0.015043394640088081, 0.04744194820523262, 0.00244874507188797, 0.011532002128660679, 0.004620274528861046, 0.047472450882196426, -0.020093189552426338, 0.0269037876278162, -0.00729443458840251, -0.03684592247009277, -0.043373268097639084, -0.0166322011500597, 0.0015897211851552129, 0.012654975987970829, 0.005099368281662464, -0.027134498581290245, 0.05320416018366814, -0.01357027143239975, -0.06642511487007141, 0.041032880544662476, -0.051634371280670166, -0.020862702280282974, 0.032087575644254684, -0.014787519350647926, 0.001252486719749868, -0.029747899621725082, -0.04128728061914444, 0.002642712090164423, -0.002693588612601161, -0.009072988294064999, -0.024197200313210487, 0.06610136479139328, -0.021169155836105347, 0.026738017797470093, 0.022212238982319832, 0.008415871299803257, -0.03422392159700394, 0.0208241268992424, -0.041447240859270096, -0.08133592456579208, 0.0058516147546470165, 0.028757624328136444, 0.00464330380782485, -0.008600683882832527, -0.029080241918563843, 0.01329764537513256, 0.01486264169216156, -0.0032612949144095182, -0.015707409009337425, 0.016459716483950615, -0.011441746726632118, 0.025305740535259247, -0.008188278414309025, 0.004057744517922401, -0.006711261346936226, 0.0331236906349659, 0.02927013486623764, -0.05916566774249077, -0.0029306698124855757, 0.09448262304067612, 0.05064933001995087, -0.008199857547879219, 0.03247873857617378, 0.02808692306280136, 0.03160383552312851, -0.04169255867600441, 0.0436243861913681, 0.006814845837652683, 0.03263673186302185, 0.026476440951228142, 0.04485655948519707, 0.007054021116346121, 0.024528346955776215, 0.06890514492988586, -0.007182941772043705, 0.03236982226371765, 0.011004716157913208, 0.03942796587944031, -0.036597661674022675, -0.02476729452610016, -0.05726492777466774, 0.024383846670389175, 0.020867856219410896, -0.01595255918800831, 0.010374894365668297, -0.057648442685604095, 0.013240567408502102, 0.003331124549731612, -0.024321969598531723, 0.0471951887011528, 0.0012869786005467176, 0.01820855773985386, 0.0025820466689765453, 0.0038548309821635485, 0.0076973517425358295, 0.045353490859270096, -0.011167223565280437, 0.006226938217878342, 0.0265238918364048, 0.033880867063999176, -0.0010659567778930068, 0.04983362928032875, -0.012768195010721684, -0.0006761751137673855, -0.05267193913459778, -0.010335543192923069, 0.03482676297426224, -0.004446164704859257, -0.03450218215584755, 0.014248523861169815, -0.04842302203178406, 0.03357614204287529, -0.014109720475971699, 0.0011818326311185956, 0.03949194774031639, -0.04276858642697334, -0.024266807362437248, -0.021107202395796776, 0.04489010572433472, -0.046822428703308105, -0.026011230424046516, 0.043895456939935684, -0.01922718435525894, -0.006192687898874283, 0.028132863342761993, -0.011804645881056786, 0.023195913061499596, 0.0028896487783640623, 0.01670467108488083, -0.0060223545879125595, 0.045233067125082016, 0.04693211242556572, -0.0267292819917202, -0.02758457325398922, 0.007831282913684845, -0.027551498264074326, -0.07389875501394272, 0.013233457691967487, -0.043328315019607544, 0.03992965817451477, -0.011719713918864727, -0.028759004548192024, -0.001698648906312883, 0.02887820266187191, -0.011441757902503014, -0.05317727476358414, -0.01296007726341486, 0.024180585518479347, -0.05290345475077629, 0.03777046129107475, 0.013133720494806767, 0.011180336587131023, 0.01335136964917183, -0.01966424658894539, -0.04972659796476364, -0.04789787903428078, 0.03949115425348282, -0.03263372555375099, 0.05133955925703049, -0.02389419823884964, -0.022110385820269585, -0.016788916662335396, -0.06464239954948425, -0.026147328317165375, 0.011172284372150898, -0.037914175540208817, -0.05570727586746216, 0.023271378129720688, 0.047581251710653305, -0.02000606805086136, 0.018638672307133675, -0.003666908713057637, 0.0005289688124321401, 0.04287581145763397, 0.06782626360654831, -0.014177345670759678, 0.04545626416802406, 0.049811750650405884, -0.05785156786441803, 0.028005842119455338, -0.01721235364675522, 0.03454054892063141, -0.03786812722682953, 0.013411819003522396, -0.011553737334907055, 0.02822175808250904, -0.01665787398815155, -0.055113788694143295, 0.009778604842722416, 0.015052175149321556, 0.00021446596656460315, -0.03142419829964638, -0.09094905853271484, 0.00860561802983284, -0.026426861062645912, -0.0043010408990085125, -0.04891200363636017, 0.029762033373117447, -0.027272628620266914, 0.014359729364514351, 0.00022921874187886715, -0.05696380138397217, 0.16577786207199097, 0.04867354407906532, 0.03913295641541481, -0.005113146733492613, 0.012562432326376438, 0.029462924227118492, 0.001174413482658565, -0.024369405582547188, 0.007350628264248371, -0.047914788126945496, 0.018335191532969475, -0.006192966364324093, 0.046580720692873, -0.0078734764829278, 0.02522421069443226, 0.06094110384583473, -0.042975734919309616, -0.017613444477319717, -0.008667323738336563, -0.04221928119659424, -0.038294777274131775, 0.029805809259414673, 0.005571155343204737, 0.0014103882713243365, -0.0019249855540692806, 0.03831540793180466, 0.007836194708943367, -0.06620495766401291, -0.0014534887159243226, -0.05765703320503235, 0.013779258355498314, -0.010271000675857067, 0.041166752576828, -0.03367586061358452, -0.014419376850128174, 0.05748817324638367, 0.014535422436892986, -0.0005578817799687386, 0.01557988952845335, -0.005505381152033806, -0.057499829679727554, 0.011632345616817474, 0.04841044917702675, -0.028446316719055176, -0.0012426223838701844, 0.02184111997485161, -0.05857560411095619, -0.0013636564835906029, 0.010171380825340748, -0.025026164948940277, 0.05539785325527191, -0.0330667644739151, 0.054230812937021255, 0.020930202677845955, 0.01739508844912052, 0.022754531353712082, -0.003703304100781679, -0.03619058057665825, -0.00939851999282837, 0.014128433540463448, 0.028880493715405464, 0.001141978777013719, 0.001994557213038206, 0.004608780611306429, -0.02752617932856083, 0.024487294256687164, 0.04683461785316467, 0.009613977745175362, 0.007020964752882719, -0.022966668009757996, -0.003598986892029643, 0.0025886257644742727, 0.023716343566775322, -0.02974185161292553, 0.04163450375199318, 0.0020987282041460276, -0.019745808094739914, 0.029376065358519554, 0.0400753989815712, -0.015730811282992363, -0.035992126911878586, -0.05482643470168114, 0.0023966224398463964, -0.03388383984565735, 0.028382770717144012, 0.029460730031132698, -0.04635302722454071, -0.03160235285758972, -0.026598284021019936, 0.07488171756267548, 0.030676817521452904, 0.017350437119603157, -0.0150164058431983, 0.003445788286626339, -0.015108981169760227 ]
Jeona Sathi · Syed Abdul Hadi | Length: Writer: Ahmed Imtiaz Bulbul. Composer: Golam Hossain Ladu. This track is on the following album: Ekbar Jodi . Buy Jeona sathi: Read Digital Music Reviews - buildenergyefficienthomes.com Jeona sathi. By Syed Abdul Hadi. • 1 song, Play on Spotify. 1. Jeona sathi. Featured on Ekbar Jodi Keu. Phone, Suggest a phone number jeona sathi - abdul hadi. 3 likes. Music. jeona sathi - abdul hadi. Posts about jeona sathi - abdul hadi. There are no stories. Jeona Sathi official lyrics by Syed Abdul Hadi:: যেওনা সাথি৷৷ ও ও ও যেওনা সাথি. Jeona Sathi-যেওনা সাথি ❤ (DUET) recorded by shaparan2 on Sing! by Smule. Sing with lyrics to your favorite karaoke songs.
[ -0.0337749645113945, 0.017637845128774643, -0.007818091660737991, -0.009877975098788738, -0.01858602464199066, -0.009400436654686928, -0.024156298488378525, 0.003686504438519478, 0.020664896816015244, 0.008923609741032124, 0.03257960081100464, -0.0001743287139106542, 0.003576303832232952, -0.05191748961806297, -0.0121587123721838, 0.0037706235889345407, -0.03861652687191963, -0.014416836202144623, 0.005846838466823101, -0.023624762892723083, 0.011948727071285248, 0.022186504676938057, -0.07926221936941147, -0.0033187607768923044, -0.013192854821681976, 0.04982366785407066, 0.0009474295075051486, 0.010486394166946411, 0.04438154771924019, 0.04760819673538208, -0.012602409347891808, 0.000671624206006527, 0.04383951798081398, -0.057382360100746155, -0.009322306141257286, 0.0003241745289415121, 0.029464203864336014, -0.02360568940639496, -0.024157263338565826, -0.05015074834227562, -0.005772776901721954, -0.015691054984927177, 0.02243305929005146, -0.034090861678123474, -0.036678798496723175, -0.00904764886945486, 0.005741775967180729, -0.030539849773049355, 0.017739437520503998, -0.04119839891791344, -0.01368851400911808, -0.011379054747521877, 0.005888406652957201, -0.034985579550266266, 0.004994324874132872, 0.005441408138722181, 0.0007751244702376425, -0.03410906717181206, -0.03261309862136841, 0.031878434121608734, 0.001759844133630395, -0.007966272532939911, 0.04077703878283501, -0.05440603196620941, -0.012226305902004242, 0.02945372462272644, 0.002501413691788912, 0.010477407835423946, 0.02764481119811535, -0.02978474646806717, -0.010490012355148792, 0.005720564629882574, -0.010049780830740929, -0.028225451707839966, -0.014950490556657314, 0.011936343275010586, 0.012444352731108665, -0.007502762135118246, 0.020566537976264954, 0.018597301095724106, 0.010492835193872452, 0.05220455676317215, 0.009508095681667328, 0.01099324133247137, -0.06715469062328339, -0.010326399467885494, -0.002120116027072072, 0.011382521130144596, -0.03062824159860611, 0.007697697263211012, -0.01694798655807972, 0.07484981417655945, -0.017305316403508186, 0.00817624107003212, 0.050227321684360504, 0.02793542668223381, -0.027834700420498848, 0.028647730126976967, 0.011190366931259632, 0.005904593504965305, 0.02997356653213501, 0.03908199444413185, 0.007822921499609947, 0.021587414667010307, -0.038343098014593124, -0.009240846149623394, -0.0030545496847480536, -0.005057268775999546, -0.01067501213401556, -0.026602014899253845, 0.014590893872082233, -0.028607161715626717, 0.022554541006684303, 0.005576988682150841, 0.0025369685608893633, 0.033912044018507004, 0.01797911524772644, 0.055850185453891754, -0.042531613260507584, -0.016939176246523857, 0.039944395422935486, 0.03352000564336777, 0.04725012183189392, -0.014056702144443989, 0.005316742695868015, -0.030135946348309517, -0.030288267880678177, 0.045874256640672684, -0.02816609852015972, -0.04025113582611084, -0.004260941408574581, -0.05124149098992348, 0.011078416369855404, 0.008406921289861202, -0.00706052640452981, 0.03352715075016022, 0.001883406308479607, 0.05799311399459839, 0.04052728787064552, -0.0445825420320034, 0.043205857276916504, 0.03887949883937836, 0.028594234958291054, 0.11155601590871811, 0.0009206081740558147, 0.05585974082350731, 0.010465688072144985, 0.04293910413980484, -0.04122519493103027, 0.025485724210739136, -0.006965682376176119, 0.03936544433236122, 0.007252770010381937, 0.040711235255002975, 0.015101315453648567, -0.004037260077893734, -0.0012277350760996342, 0.01641259528696537, 0.010330306366086006, 0.04304596036672592, 0.0007220878032967448, 0.003738963510841131, -0.011871930211782455, 0.020832089707255363, 0.01039951667189598, 0.03380192443728447, -0.008581170812249184, 0.007211422082036734, 0.002475837944075465, -0.03221258521080017, 0.047534797340631485, 0.0022167505230754614, -0.01520367432385683, -0.0006269212462939322, 0.004124849569052458, 0.056094057857990265, 0.03438148647546768, -0.023796843364834785, 0.03712787106633186, 0.04140665382146835, -0.0009430798818357289, 0.010120678693056107, 0.02968452125787735, 0.06925199180841446, 0.019154131412506104, -0.0014563796576112509, -0.005678574554622173, 0.03018083982169628, -0.04271135851740837, -0.036546219140291214, -0.026078497990965843, 0.049212098121643066, -0.020796146243810654, 0.010172861628234386, -0.01600560173392296, -0.0024352502077817917, -0.01056977640837431, -0.020337842404842377, -0.039779484272003174, -0.05875737965106964, -0.015237917192280293, 0.048686180263757706, -0.052911028265953064, 0.03860433027148247, 0.005312548950314522, -0.04320758581161499, 0.006274161394685507, 0.053886812180280685, -0.06312169879674911, 0.031246542930603027, 0.049293577671051025, 0.019866373389959335, -0.004931894596666098, -0.02055925689637661, 0.015799013897776604, 0.019747909158468246, -0.0013826776994392276, 0.032685037702322006, -0.005596793256700039, -0.005775956902652979, -0.009479681961238384, 0.02135556749999523, 0.039683230221271515, 0.05683010816574097, -0.006703064776957035, -0.007680031470954418, 0.003943910356611013, 0.036489468067884445, -0.009888675063848495, -0.02253296971321106, -0.005759457126259804, 0.030833536759018898, 0.0263422429561615, 0.04749992862343788, 0.03247350454330444, 0.0147689925506711, 0.02742163836956024, 0.02906595915555954, 0.0005129767232574522, 0.014213577844202518, -0.016454555094242096, 0.030230708420276642, 0.03849264234304428, 0.04406248778104782, -0.0059082699008286, 0.0057823751121759415, 0.018771877512335777, -0.009604337625205517, -0.02055690996348858, 0.009614607319235802, -0.004224980250000954, 0.03673937916755676, 0.06165475770831108, 0.04574360325932503, -0.024305669590830803, 0.010811745189130306, 0.05879376083612442, 0.04421541839838028, 0.011557509191334248, -0.015378976240754128, 0.006544058211147785, 0.04117896035313606, 0.009951045736670494, -0.005672301631420851, 0.026999421417713165, 0.0037889827508479357, -0.01344416756182909, 0.021173670887947083, -0.013152455911040306, -0.04740101844072342, -0.032818760722875595, -0.04453785717487335, -0.05893762409687042, -0.017749004065990448, -0.04099727421998978, 0.03516935929656029, 0.06454043090343475, -0.03170301392674446, -0.001520728343166411, 0.019867613911628723, -0.015138857066631317, -0.03697345778346062, -0.05150318890810013, 0.029422160238027573, 0.0328131839632988, 0.048434533178806305, -0.04680906608700752, 0.02418169192969799, 0.0091352928429842, 0.0370708703994751, -0.005080199334770441, -0.01623254083096981, 0.0024876310490071774, -0.022805603221058846, -0.012852919287979603, -0.014422116801142693, 0.00702076219022274, 0.006863520946353674, -0.04982015863060951, -0.06709236651659012, 0.03276841714978218, -0.00956349354237318, -0.014237279072403908, -0.005209703929722309, -0.029702529311180115, 0.05477555841207504, 0.04016967490315437, -0.023628076538443565, 0.035837844014167786, 0.03450857847929001, -0.016580181196331978, 0.04803896322846413, 0.02710084803402424, 0.042762674391269684, -0.011886226944625378, 0.004530192352831364, 0.02804652787744999, 0.04297395795583725, -0.05783168599009514, -0.012722647748887539, -0.04349137842655182, 0.02125772275030613, -0.0038973030168563128, 0.00042599847074598074, -0.04564990848302841, 0.022921977564692497, 0.022227497771382332, -0.07769817113876343, 0.034107692539691925, -0.046755172312259674, -0.038413308560848236, -0.026558488607406616, -0.00007908201223472133, 0.006267035845667124, 0.014048264361917973, 0.058084748685359955, 0.006605219095945358, -0.00791610311716795, -0.007232642266899347, 0.023291440680623055, 0.05292772501707077, -0.023262325674295425, 0.0022476648446172476, 0.04642872512340546, 0.003307842183858156, 0.015398646704852581, 0.027781393378973007, -0.005558277480304241, 0.0026215785183012486, 0.022068055346608162, -0.030795997008681297, -0.013919807970523834, 0.013560325838625431, -0.019691862165927887, 0.018713274970650673, 0.050079863518476486, -0.025133104994893074, -0.0313941091299057, -0.004127272870391607, 0.0022636770736426115, 0.0031000690069049597, 0.02489062398672104, 0.024667060002684593, -0.0017493218183517456, -0.02882552333176136, -0.05621733143925667, 0.018171532079577446, -0.013732721097767353, 0.03153074532747269, -0.07595573365688324, 0.06343912333250046, -0.022364703938364983, -0.045638564974069595, 0.05840841308236122, -0.052717145532369614, 0.0018599038012325764, 0.07257289439439774, -0.023893753066658974, -0.000898760452400893, -0.04651370644569397, 0.023370804265141487, -0.02578328177332878, 0.015075178816914558, 0.030530456453561783, 0.0069873156026005745, 0.04289883375167847, -0.04567879065871239, -0.03599309176206589, -0.010132227092981339, -0.005819479934871197, -0.04450250789523125, -0.016683297231793404, 0.04049349203705788, -0.0360095351934433, -0.027297580614686012, -0.055479951202869415, 0.027790958061814308, 0.013766692951321602, 0.049012862145900726, 0.004248883109539747, 0.023860756307840347, 0.03676275163888931, 0.023490015417337418, 0.04476269334554672, -0.009606732986867428, 0.015916207805275917, -0.0360015407204628, 0.04684348404407501, 0.017436379566788673, -0.0227214265614748, -0.017795301973819733, -0.028424296528100967, -0.045309070497751236, 0.013962622731924057, -0.001032351516187191, -0.024646440520882607, -0.04060117155313492, 0.016341278329491615, -0.010797282680869102, 0.013237765990197659, -0.034137096256017685, -0.03211487457156181, -0.04350249841809273, 0.025602862238883972, 0.03526254743337631, -0.05255243182182312, 0.023472093045711517, -0.037709109485149384, 0.058581069111824036, 0.011527414433658123, 0.0037385993637144566, -0.049059126526117325, -0.026014205068349838, -0.012939667329192162, -0.04262267053127289, 0.001668310142122209, 0.010506543330848217, 0.01992630772292614, 0.00013943068915978074, -0.07597919553518295, 0.05677090212702751, 0.02944081462919712, -0.02326648309826851, -0.0043218377977609634, 0.002282498637214303, 0.044808242470026016, -0.031540948897600174, 0.01474829763174057, -0.05325133353471756, -0.0019167560385540128, 0.03429826349020004, -0.05143114924430847, -0.005301069933921099, 0.0070179118774831295, -0.002255175495520234, 0.007254744879901409, -0.004192986525595188, 0.006089556030929089, 0.030402163043618202, -0.01746012642979622, -0.02408396080136299, 0.00127471424639225, 0.010536006651818752, -0.02725735493004322, -0.022211497649550438, 0.01902240514755249, 0.010587128810584545, -0.018269600346684456, 0.05520995333790779, 0.0351606048643589, 0.0007174823549576104, 0.012626424431800842, 0.008987781591713428, -0.03289187327027321, 0.038680702447891235, -0.03632250055670738, 0.0096212700009346, -0.011173872277140617, -0.02690722607076168, -0.008423643186688423, -0.04737454652786255, 0.020059088245034218, 0.0009421866852790117, -0.008663680404424667, -0.025933776050806046, -0.061449144035577774, -0.050830598920583725, 0.013494914397597313, -0.014146174304187298, -0.00033366974093951285, 0.016884837299585342, -0.04039411246776581, -0.028706872835755348, 0.010418765246868134, 0.003501356579363346, -0.015851257368922234, -0.03088267892599106, -0.012453696690499783, 0.010051853954792023, 0.0327974334359169, 0.04367070645093918, -0.02064266987144947, -0.05980425328016281, 0.015967493876814842, 0.018282797187566757, -0.0337553396821022, -0.03947102278470993, 0.011366705410182476, -0.03292197361588478, -0.026827698573470116, 0.007173292804509401, 0.029516281560063362, -0.015119755640625954, -0.030605580657720566, 0.002892744727432728, 0.003845307044684887, -0.000317421363433823, 0.019381852820515633, -0.0264634657651186, 0.03572919964790344, 0.01944049634039402, -0.0468926727771759, -0.011992890387773514, 0.031536564230918884, -0.004329442512243986, 0.057135891169309616, -0.008102490566670895, -0.03559688851237297, -0.0824311152100563, -0.0447227843105793, 0.006230634171515703, -0.015363623388111591, -0.01293822843581438, -0.037766359746456146, -0.023246703669428825, -0.021341979503631592, 0.029954515397548676, 0.009828728623688221, -0.006374485325068235, -0.030917709693312645, -0.05667324736714363, 0.0244755819439888, -0.027359936386346817, -0.0381246916949749, -0.013788387179374695, -0.011345689184963703, -0.009144209325313568, 0.0588659904897213, -0.007260962389409542, 0.0404190793633461, 0.036316100507974625, -0.001879644813016057, 0.0041376822628080845, -0.015570100396871567, -0.04208596050739288, -0.025596169754862785, -0.00803700927644968, -0.001583387958817184, -0.004357283003628254, 0.018712446093559265, -0.04957951605319977, 0.03057989291846752, -0.06426236033439636, -0.000691595661919564, -0.04649403691291809, -0.04785105958580971, 0.017224716022610664, 0.022262439131736755, 0.061401933431625366, -0.020569229498505592, 0.007673565298318863, -0.015978630632162094, 0.04476772993803024, 0.02290458232164383, -0.025366133078932762, -0.04655105620622635, -0.04926604405045509, -0.04102334380149841, -0.06334683299064636, 0.013611767441034317, -0.022666780278086662, -0.024203211069107056, -0.04593402519822121, 0.017491040751338005, 0.00552684860303998, -0.018735161051154137, 0.02567577362060547, 0.054234448820352554, -0.0057023195549845695, -0.0002368476998526603, -0.019432662054896355, 0.00898036826401949, 0.013439206406474113, -0.044048991054296494, -0.0139093529433012, -0.0029084631241858006, -0.03425291180610657, 0.005053207743912935, -0.04051440954208374, -0.06940849125385284, -0.017845518887043, -0.02665710635483265, 0.02764255367219448, -0.028665760532021523, 0.053325384855270386, 0.03179227188229561, -0.028019720688462257, -0.05736398696899414, 0.02866077609360218, -0.000002120581712006242, 0.0065576378256082535, 0.06268364191055298, -0.010243180207908154, -0.01059903297573328, 0.028549257665872574, 0.04283476620912552, 0.024075539782643318, -0.03662804886698723, 0.051290348172187805, -0.031980909407138824, -0.024203313514590263, 0.03780178725719452, 0.04438242316246033, -0.07514960318803787, -0.041349146515131, -0.0009544551721774042, -0.008659999817609787, 0.01066987868398428, -0.04593310505151749, 0.01440091710537672, -0.00822543352842331, 0.007869656197726727, 0.018242117017507553, 0.0094135208055377, -0.0198175348341465, 0.043437760323286057, 0.029139690101146698, 0.037613723427057266, -0.025406090542674065, -0.011836354620754719, 0.039270687848329544, 0.00016037681780289859, -0.040656451135873795, -0.0493551529943943, 0.013410590589046478, -0.015683406963944435, -0.015944436192512512, 0.06181429326534271, 0.008096558041870594, 0.05253959819674492, 0.04089140146970749, -0.029736502096056938, 0.047536786645650864, -0.0030659742187708616, 0.00014180377183947712, -0.00742016825824976, -0.027001865208148956, -0.0446162223815918, -0.0046729943715035915, 0.049587249755859375, -0.03299872577190399, 0.013664918951690197, -0.03602737560868263, 0.024862943217158318, 0.0036646805237978697, 0.0024434837978333235, 0.011204943992197514, -0.047460902482271194, -0.05319688096642494, -0.04079023748636246, -0.03522698953747749, 0.004751600790768862, 0.008927426300942898, -0.01902010291814804, 0.045197829604148865, 0.02409040369093418, -0.03636163845658302, 0.014252357184886932, 0.01858946867287159, -0.029085194692015648, 0.019704869017004967, -0.014180553145706654, 0.012183615006506443, -0.03481462225317955, -0.009239587932825089, -0.036663033068180084, 0.005588886793702841, -0.030811281874775887, -0.006409759633243084, -0.019794035702943802, 0.012236381880939007, -0.005526856053620577, 0.022388603538274765, -0.01430120225995779, 0.03984016925096512, 0.005155475810170174, -0.02453339658677578, 0.020692311227321625, 0.028591850772500038, 0.012219393625855446, 0.04990968853235245, 0.0439656600356102, -0.012423677369952202, 0.004853006452322006, 0.02117564156651497, -0.03897130489349365, -0.019882533699274063, -0.025521613657474518, 0.026207858696579933, 0.016203608363866806, -0.025269178673624992, -0.033538032323122025, 0.011048374697566032, -0.024362780153751373, 0.013911847956478596, 0.027511082589626312, -0.007649408187717199, -0.014714137651026249, 0.012932907789945602, -0.02081601694226265, 0.05433923378586769, -0.028480885550379753, 0.023711856454610825, 0.0174572616815567, 0.037579093128442764, 0.015154455788433552, 0.009369096718728542, 0.027403870597481728, 0.0037711961194872856, 0.05927283316850662, -0.02335529960691929, 0.0020479089580476284, 0.021110819652676582, 0.0017018303042277694, 0.05270211771130562, -0.02714035101234913, -0.021994665265083313, -0.022410860285162926, -0.021208563819527626, -0.000681683886796236, 0.04430585354566574, 0.014405861496925354, -0.02755172923207283, 0.03154915198683739, -0.022398019209504128, -0.05517037212848663, 0.0003410907229408622, -0.05205896124243736, -0.04831293970346451, 0.04212571308016777, 0.006656039506196976, -0.014925449155271053, 0.02898455038666725, -0.046236395835876465, -0.00861420389264822, 0.03311363607645035, 0.0042878189124166965, -0.02560356631875038, 0.048631828278303146, -0.03163277357816696, 0.032856281846761703, -0.03840791434049606, 0.011380907148122787, -0.0016193762421607971, 0.04293358325958252, -0.054622456431388855, -0.06363082677125931, -0.01306238304823637, 0.007000521756708622, 0.03170299530029297, 0.0004018584731966257, 0.00157056690659374, 0.009986244142055511, -0.01608039252460003, -0.006308859679847956, -0.021387582644820213, -0.005662279669195414, 0.02293272316455841, 0.029781050980091095, -0.005081155337393284, -0.001857645227573812, -0.03259701654314995, 0.027538156136870384, -0.01449514552950859, -0.016230035573244095, -0.034033358097076416, 0.03119734115898609, 0.043300140649080276, -0.02555917762219906, 0.023284250870347023, 0.0030943681485950947, 0.046804532408714294, 0.016920410096645355, 0.008501906879246235, -0.005888813640922308, 0.08188042044639587, 0.03795364871621132, 0.050881728529930115, -0.0378594733774662, 0.01188488956540823, 0.05032534524798393, -0.013451255857944489, -0.019724905490875244, 0.01404874213039875, 0.03175841271877289, -0.03226039186120033, 0.020103367045521736, -0.02933465503156185, -0.01047603040933609, 0.02148589678108692, 0.004246621858328581, 0.018327606841921806, -0.04277044162154198, 0.01643333211541176, -0.021042659878730774, -0.013235659338533878, 0.048279110342264175, -0.044013895094394684, 0.016766350716352463, -0.016835857182741165, -0.007520269602537155, 0.01805083453655243, 0.044559966772794724, 0.017706166952848434, 0.04717010632157326, 0.06520829349756241, 0.036759793758392334, 0.01097145676612854, 0.01309265848249197, 0.025231290608644485, -0.02174610272049904, -0.060913585126399994, 0.02743213251233101, 0.021713705733418465, -0.013575966469943523, -0.012010211125016212, -0.007444409653544426, -0.053032830357551575, 0.05612725391983986, -0.03450911492109299, -0.049229640513658524, 0.03932776302099228, -0.04568484425544739, -0.02083566226065159, -0.035928044468164444, 0.04508669674396515, -0.02833477593958378, 0.0010114279575645924, 0.019613435491919518, -0.0030409013852477074, -0.03093591518700123, 0.027231751009821892, -0.02073431946337223, 0.02638843283057213, 0.008473662659525871, 0.0731314942240715, -0.004553691949695349, 0.05103231593966484, 0.05147778242826462, -0.04519879072904587, -0.031002510339021683, 0.01950337179005146, 0.017013506963849068, -0.026630913838744164, -0.004688852466642857, -0.036614857614040375, -0.019471902400255203, -0.005982961505651474, -0.002073742216452956, 0.0111116673797369, 0.03236347436904907, -0.00294894864782691, -0.057721883058547974, 0.03272685036063194, 0.006764767691493034, -0.039911940693855286, 0.047810960561037064, -0.008936353959143162, 0.04848221689462662, -0.013611388392746449, 0.006625005975365639, -0.025371521711349487, -0.034680917859077454, -0.00013525020040106028, -0.05626523122191429, 0.03646348416805267, -0.013571360148489475, -0.0555025115609169, -0.041126761585474014, -0.025530509650707245, -0.03891163319349289, 0.0257706455886364, -0.0256672240793705, -0.062476642429828644, 0.0376867949962616, 0.07232389599084854, 0.011525502428412437, 0.014001281000673771, -0.04007923603057861, 0.007296645548194647, 0.030957452952861786, 0.06560483574867249, -0.013781586661934853, 0.06510846316814423, 0.048200540244579315, -0.019199188798666, 0.03924070671200752, -0.03699752315878868, 0.020296763628721237, 0.019422834739089012, -0.0218289103358984, -0.007362123113125563, 0.011467063799500465, -0.06706541776657104, -0.061834707856178284, 0.006704939994961023, 0.03555728495121002, -0.016050513833761215, -0.03034105896949768, -0.08218075335025787, -0.007669123820960522, -0.029520388692617416, -0.027479710057377815, -0.04863661155104637, 0.03260209411382675, -0.025300122797489166, -0.007407422177493572, 0.018480489030480385, -0.08243623375892639, 0.1339045614004135, 0.04086934030056, 0.009944072924554348, -0.0038423468358814716, -0.010904722847044468, 0.01546459924429655, 0.0032901279628276825, -0.054733406752347946, -0.004594974219799042, -0.044660020619630814, 0.0034475929569453, -0.026658134534955025, 0.022789407521486282, 0.006470463704317808, -0.0037118818145245314, 0.03695569559931755, -0.02821933478116989, -0.00020793179282918572, 0.02768026292324066, -0.04814683273434639, -0.06793166697025299, 0.016049867495894432, 0.009572407230734825, -0.017859701067209244, -0.011052818968892097, 0.010868812911212444, 0.023571940138936043, -0.044646840542554855, 0.014307897537946701, 0.015268569812178612, 0.02673017419874668, -0.03646127134561539, 0.029109768569469452, -0.015966102480888367, -0.023008223623037338, 0.03822784498333931, -0.015463929623365402, 0.012633353471755981, 0.04864463955163956, 0.016351191326975822, -0.053778164088726044, 0.0168183334171772, 0.03047291375696659, -0.04180435463786125, 0.007132464088499546, 0.03298984467983246, -0.013058283366262913, 0.01394893229007721, -0.014441193081438541, -0.058214928954839706, 0.044562891125679016, -0.051623739302158356, 0.019995518028736115, -0.012834493070840836, -0.04101523384451866, 0.006913063116371632, -0.005671982653439045, -0.011314153671264648, -0.03094354085624218, -0.024113062769174576, 0.026401804760098457, 0.007320023141801357, -0.023839270696043968, 0.003842090955004096, -0.038409274071455, -0.011221718043088913, 0.022101635113358498, 0.01747177354991436, -0.006532198749482632, 0.011259708553552628, -0.005894480738788843, -0.018382711336016655, -0.03068511001765728, -0.006308455020189285, 0.006512455176562071, 0.014157510362565517, -0.030359633266925812, 0.07082011550664902, 0.0057982574217021465, 0.011583405546844006, -0.02023819461464882, -0.025897953659296036, 0.005619646515697241, 0.018654754385352135, 0.04216078668832779, 0.06316207349300385, -0.0428067222237587, -0.012254323810338974, -0.023966694250702858, 0.03273486718535423, 0.033882927149534225, -0.006150692235678434, -0.0003918212896678597, -0.021473737433552742, -0.022618727758526802 ]
Fant4stic: A Review August 13, 2016 by Rogue Jedi I originally wrote this review earlier this year, but have been inspired to post it by our latest Movie Night. Loosely based on the Marvel characters of the same name, 2015's Fantastic Four is a bizarrely dark version of their origin story. The film marks Fox's third attempt at the franchise, and the 2015 reboot manages to fail even more than the first two. Fantastic Four is 100 minutes of boredom and poor creative decisions. Alternative names: "Fantastic Bore," Fantastic Snore," "Fail-tastic Four," "Not-a-Single-Fan-tastic Four," "Fantastic Fourgotten" and "Terrible Piece of Trash Movie." The film begins with Reed Richards, played as a child by Owen Judge, being mocked for his scientific aspirations. This is the film's best part, as there are no obvious plot-holes or cringe-worthy creative decisions. Additionally, Richards' flying car plans are a nice reference to the original comics. However, it is all downhill from here. The moment where the film makes the transition from mediocre to terrible is very clear. As Ben Grimm (Evan Hannemann) is physically abused by his older brother, his brother exclaims "It's clobberin' time!" This one line exemplifies everything that is wrong with this movie: its overly dark tone, its extensive liberties with the source material and its general unpleasantness to the audience. After Grimm gets away, he meets and befriends Richards. They work together on Richards' teleporter. Their friendship never seems believable, as they never demonstrate similar interests or even spend significant screen-time together. The film jumps to 2015, where Richards and Grimm (now played by Miles Teller and Jamie Bell, respectively) are displaying their completed teleporter at a school science fair. They are inexplicably completing against a student who seems to be in middle school at most. The teleporter succeeds and impresses Dr. Storm (Reg E. Cathey), who coincidentally happens to be visiting the science fair with his daughter, Susan (Kate Mara). Richards is whisked away to help work on a much larger-scale teleporter, while Grimm is promptly forgotten about until the plot calls on him again. At this point, we meet to our final major characters, Victor Von Doom (Toby Kebbell) whose entire background is completely glossed over, and Susan's brother Johnny Storm (Michael B. Jordan), who is introduced through an incredibly uninspired car race. Richards, Johnny Storm and Von Doom work on the teleporter, while Susan Storm, perhaps sexistly, is relegated to making the suits. For unknown reasons, this is all done in the same room, even though they are working in a gigantic building that would surely have additional rooms for people to work in. The film can't seem to decide if the teleporter travels to another dimension or another planet, as it's confusingly referred to as both at different points. The film's only successful attempt at humor occurs here, in a funny scene where Richards takes an awkward selfie to send to Grimm. Richards and Susan Storm also have a scene that implies romantic feelings, but the subplot is dropped and their relationship never comes up again. Johnny Storm jokingly refers to Von Doom as "Adolf", presumably because he is from Eastern Europe. This unintentionally ends up making Storm look more like a jerk than a harmless jokester. This also implies a lack of research by the creators, as Von Doom is Latverian, meaning he has Romani heritage. The Romani were the second most killed group during the Holocaust, after the Jews, making Storm's joke about Von Doom being a Nazi quite offensive. The teleporter is completed, and very promptly tested. The testing consists of a single drone and a single chimpanzee. The chimpanzee is incredibly obvious CGI, and it raises the question of why they couldn't just used a real, trained chimpanzee. The scene also presents how poorly thought-out the film often is, as a scientist only looks briefly at the ape before proclaiming the machine fit for human use, without examining it in any other way. Richards, Johnny Storm and Von Doom get drunk and rant about how they should be the first visitors to the new dimension/planet, and not trained astronauts. They decide to go themselves that night. Richards calls Grimm, who sees nothing wrong with the plan, and he agrees to drive over. The group (again, rather sexistly sans Susan) get in the teleporter, which can somehow be operated by three drunks, despite requiring a room full of scientists earlier. They are transported to a generic, poorly animated sci-fi landscape. They start exploring and find some mysterious green energy, which they idiotically decide to touch. This, of course, doesn't end well and the group runs back to the teleporter. Von Doom falls and is left behind. Meanwhile, Susan is, for some reason, the only one to notice that they're gone. She raises the alarm, which no one in the facility reacts to. The teleporter returns to the earth and causes an explosion. The four are all mutated, including Susan, inexplicably. It takes over half the movie for the title characters of this superhero movie to get their super powers, which is just unacceptable. Richards wakes up in a military base and finds that he has the power to stretch himself. The surprisingly unsupervised patient escapes through an air vent and we see Grimm, who has been turned into living stone, Susan Storm, who can become invisible and Johnny Storm, who can produce fire with his body. The entire scene is filled with body horror, and the jarring tonal shift is pretty awkward. Richards abandons his friends, escapes the military base and hides out in South America. This raises several questions: Later on, we learn that containment suits are needed to control their powers. However, despite this, Richards is able to escape the base, travel from North America to South America and create his own containment suit while he should be unable to control his powers. How? How would Richards manage to get to South America in the first place? Why would Richards completely abandon his friends? Especially after he promised to help Grimm? We spend some brief time in South America, only to abruptly time-skip one year to find Richards building a home-made teleporter. However, this sub-plot is completely dropped, and Richards is captured and brought back to the military base, making the last several scenes somewhat pointless. We find that the military has been manipulating the group, forcing a despondent Grimm to go on missions and training the Storms to do the same. We don't actually see these missions, just a brief video on a TV screen. This is especially disappointing, as trailers implied that Grimm's missions would receive a larger focus than they ended up getting. The military uses Richards to rebuild the teleporter and promptly sends in a team of explorers. The explorers find Von Doom in the alternate dimension/planet, who has somehow survived a year without food or water. Von Doom now has a truly ridiculous appearance. It consists of a hood and cape and a space suit that has turned metallic. It fails for two reasons: firstly, it makes no logical sense, as there would be no fabric for Von Doom to make the hood and cape and secondly, it looks incredibly stupid. Von Doom's design could perhaps best be described as "an old hobo wearing dirty tin foil." It is honestly the worst character design I have ever seen in a superhero movie. The explorers take Von Doom back to the military base. He proceeds to give the incredibly cliched line of "There is no Victor, there is only DOOM!" and go on a killing spree. He does this by violently exploding people's heads and the entire scene is unnecessarily graphic. It's also unforgivable that the movie's actual antagonist doesn't appear until the final 15 minutes of the film. For poorly explained reasons, Doom has declared war on humanity and plans to destroy the Earth. He kills Dr. Storm, who was perhaps the film's best acted main character, and travels back to the other dimension/planet. The four follow him in an attempt to avert his plan, and the climax begins. I won't spoil it, but I will say that it's full of bad CGI, terrible fight choreography and rushed character development. Fantastic Four is a failure on all fronts. The characters are bland and have no chemistry. The CGI and special effects have no place in a $120 million movie. There is far too little action, and the action that is there is laughable. The tonal shifts are jarring and the pacing is terrible. It is plagued by plot-holes and inconsistencies. It's also incredibly boring. But worst of all, Fantastic Four is embarrassed, both of being a superhero movie and of being a Fantastic Four movie. A character states that they don't have superpowers, they have "aggressively abnormal physical conditions" They do almost no superheroics. None of the characters go by their superhero titles, and the term "Fantastic Four" is never uttered in the entire film. The dark and gritty tone is about as far away as you could possibly be from the source material's general light-heartedness. If Fox ever wants to make a good Fantastic Four film, they must learn from their mistakes and realize what makes the characters work. Also, someone tried to deface one of my questions to promote this movie, which is not cool. I learned that this movie stinks. Categories ReviewTags fantastic four, fox, marvel Star Trek 50 Day 5: Getting deep into DS9, Star Trek writers reflect on the TNG era, and the Star Trek Rat Pack steals the show! The Book of Deacon trilogy by Joseph Lallo (spoilers) 4 thoughts on "Fant4stic: A Review" Gotta agree with you. This was an especially joyless outing for the four superheroes. Apparently the director was continually pushing for the cast to "act less" and keep their performances as flat and emotionless as possible. http://www.hollywoodreporter.com/news/fantastic-four-blame-game-fox-814764 This was indeed a stinker. Grim, Nolan-y and with gaping plot holes throughout. Then again, what do you expect from a film that went through a half-dozen writers before shooting had started, and had a director who was on the verge of a nervous breakdown? This was a dreadful movie which IMO should never have been made. I agree with all the points that you mentioned, I was just puzzled about what they were doing, why Reeves left his friends in the clutches of evil people and why any of it really. This is one of those movies that should never have been! Mikasa Pinata September 3, 2016 at 10:54 PM | Reply If only Fox would give the rights back to Marvel! Heaven knows they could do so much better with it. Universe Factory - World Building Stack Exchange Screen Nerds - Movie Reviews A Pawn's Perspective - Tabletop Gaming Reviews Highlights from 2019 – 2nd Quarter Men in Black: International a Spoiler Free Review Why Harry Potter is Not a Horcrux Jack's Bad Movies: Predator 2 (1990) FanX Salt Lake Comic Convention (Spring 2019) Bad-Movies (29) Lessons-Learned (6) Question of the Week (35) Spoiler Free (9) Eloise Ann Hamann on Men in Black: International a Spoiler Free Review: "I'm a fan of men wearing black. Does that count?" Jun 19, 08:17 Slytherincess on Why Harry Potter is Not a Horcrux: "Hey, thanks for reading my blog post on why Harry Potter is not a Horcrux. I appreciate your (very extensive)…" Jun 6, 17:11 Slytherincess on Why Harry Potter is Not a Horcrux: "You are welcome, and I'm really glad you enjoyed reading it. :) (I admit I am pleased that it changed…" Jun 6, 15:42 Slytherincess on Why Harry Potter is Not a Horcrux: "Poor Pluto! Defriended by the universe . . . then refriended . . . it doesn't know what to think!…" Jun 6, 13:34 mm201 on Why Harry Potter is Not a Horcrux: "This "is Harry a horcrux" debate reminds me of the "is Pluto a planet" debacle. Yes, an authoritative source has…" Jun 4, 11:25
[ 0.036413416266441345, -0.04368594288825989, 0.0145877031609416, 0.011356820352375507, -0.021315693855285645, -0.0039617507718503475, -0.023637104779481888, 0.02027006819844246, -0.010488930158317089, 0.012506659142673016, 0.036012422293424606, -0.013086967170238495, 0.01799057424068451, -0.044790249317884445, -0.001784219522960484, -0.02384047769010067, -0.015633681789040565, -0.015952609479427338, -0.03792167827486992, -0.010194041766226292, -0.006684828083962202, 0.004144481848925352, -0.06071075424551964, -0.03341318294405937, -0.008736299350857735, 0.034696705639362335, 0.029148368164896965, 0.020105255767703056, 0.059423767030239105, 0.049103859812021255, 0.00728115439414978, -0.07235781103372574, 0.04364786297082901, -0.04429219663143158, -0.028915077447891235, -0.017399270087480545, 0.05317097157239914, 0.010103879496455193, -0.014788689091801643, -0.02211426943540573, 0.02991582453250885, -0.05059386417269707, 0.0368717722594738, -0.04325597733259201, -0.06993086636066437, -0.023643136024475098, -0.010852044448256493, -0.01793334260582924, 0.022109821438789368, -0.05924580618739128, -0.010119065642356873, -0.03014826960861683, 0.014366871677339077, -0.003602619981393218, 0.012143025174736977, 0.0030214309226721525, 0.024983232840895653, 0.01493059005588293, -0.008342323824763298, 0.04574661701917648, 0.0256744883954525, 0.02476615458726883, 0.024618176743388176, -0.038975782692432404, -0.00412080017849803, 0.010009889490902424, -0.02898780256509781, -0.007204814348369837, 0.03644336760044098, 0.010125676169991493, -0.01865195855498314, 0.02034113183617592, -0.013413868844509125, -0.015824001282453537, -0.0063298228196799755, 0.00413337629288435, 0.0020438891369849443, 0.010193999856710434, -0.02245536632835865, -0.008970019407570362, 0.011447007767856121, 0.05334356799721718, 0.01055496372282505, 0.0358123704791069, -0.030813731253147125, -0.04953237622976303, 0.010617616586387157, 0.020262056961655617, 0.007264047395437956, -0.016529526561498642, 0.03091791644692421, 0.04082658886909485, 0.00596269266679883, -0.03414082154631615, 0.05173731967806816, 0.05919354408979416, -0.030788438394665718, 0.03214128687977791, -0.015596759505569935, -0.02840985730290413, 0.013351264409720898, 0.007343469653278589, -0.04922914132475853, 0.02603931352496147, -0.03181616961956024, -0.0139352697879076, 0.038268111646175385, 0.0030420671682804823, -0.007257519289851189, -0.040675681084394455, -0.011656573042273521, -0.01908433623611927, 0.028098680078983307, 0.021504420787096024, -0.02342827059328556, 0.024214038625359535, 0.026796674355864525, 0.060896921902894974, -0.0210508331656456, -0.0002405452250968665, 0.006703904364258051, -0.013527682051062584, 0.033026814460754395, -0.019060324877500534, -0.0069216713309288025, -0.04653725400567055, -0.02524988353252411, 0.014027144759893417, -0.0279234629124403, -0.0017588012851774693, 0.017079874873161316, -0.00853382982313633, -0.008260892704129219, 0.027491161599755287, -0.0038940308149904013, 0.010335948318243027, 0.012018285691738129, 0.052012406289577484, -0.010895193554461002, -0.081778384745121, 0.041195400059223175, 0.019639983773231506, -0.003162686014547944, 0.10240089148283005, -0.0015778262168169022, 0.013314057141542435, 0.010986105538904667, -0.00706869550049305, -0.03702988848090172, 0.05547880381345749, -0.038377732038497925, -0.007474855054169893, -0.0018747099675238132, 0.019177211448550224, -0.0000033591452393011423, 0.015325763262808323, -0.013908841647207737, -0.010075909085571766, 0.016857793554663658, 0.02800576388835907, 0.024676159024238586, -0.004886646755039692, -0.0025708749890327454, 0.06825492531061172, 0.013688351958990097, 0.027845002710819244, -0.03718492016196251, -0.02068731002509594, 0.005853984039276838, -0.020863614976406097, 0.027723930776119232, 0.004449025262147188, -0.02107217162847519, 0.02028638683259487, 0.024510582908988, 0.01720675453543663, 0.050657112151384354, -0.03378363698720932, 0.030866114422678947, 0.05285535752773285, -0.026945708319544792, 0.0010589698795229197, 0.011438786052167416, 0.05776374787092209, -0.024172386154532433, -0.02483176253736019, 0.00898853037506342, -0.0458003468811512, -0.06329337507486343, -0.039495740085840225, -0.04938448593020439, 0.016354206949472427, -0.064909428358078, 0.033723972737789154, 0.0070097618736326694, 0.015766117721796036, -0.047712139785289764, -0.04934616759419441, -0.00805407203733921, -0.05625801905989647, -0.006019940134137869, 0.04673977196216583, -0.034250956028699875, 0.0032430158462375402, -0.012842820957303047, -0.02337675914168358, 0.03972426429390907, 0.045852772891521454, -0.03079400770366192, -0.01811370626091957, 0.022338328883051872, 0.01930694840848446, -0.028094641864299774, -0.004810539074242115, -0.024449985474348068, -0.0013943861704319715, -0.016977906227111816, 0.078594870865345, -0.014498178847134113, 0.019837070256471634, -0.001687149633653462, 0.01893587037920952, 0.03357260301709175, 0.05353228375315666, 0.01784820295870304, -0.020638594403862953, 0.0022674421779811382, 0.07116222381591797, -0.032220397144556046, -0.020533384755253792, -0.015229525044560432, 0.055631376802921295, 0.032227445393800735, 0.05235530808568001, 0.012221517972648144, 0.02169392816722393, 0.04532747343182564, 0.024105176329612732, -0.010210451669991016, 0.004054439719766378, 0.01108495146036148, 0.005192060023546219, 0.05463048070669174, 0.05058005824685097, -0.01674351468682289, 0.06359336525201797, -0.023209532722830772, -0.019371090456843376, -0.032152339816093445, 0.007980928756296635, 0.01983320154249668, 0.02529175952076912, 0.03793938085436821, 0.0025051876436918974, -0.03688319772481918, 0.0016274226363748312, 0.03273701295256615, 0.07000212371349335, 0.007390971295535564, -0.013994787819683552, -0.02522028610110283, 0.0240955613553524, -0.008077899925410748, -0.016677623614668846, 0.03648153319954872, 0.02020125836133957, 0.001189549220725894, 0.018500182777643204, 0.0338810533285141, -0.041824959218502045, -0.03871486335992813, -0.05355479568243027, -0.058015596121549606, -0.017844250425696373, -0.024701546877622604, 0.00316194468177855, 0.028888601809740067, -0.024331921711564064, 0.04375043883919716, 0.025725312530994415, -0.027618054300546646, -0.03529001399874687, 0.018855858594179153, 0.036260537803173065, 0.03686058521270752, 0.062435902655124664, -0.027404777705669403, 0.05110887810587883, 0.00003353176361997612, 0.027408670634031296, -0.012795769609510899, -0.02124899812042713, 0.01776972971856594, 0.012288009747862816, 0.03866950049996376, -0.008281419984996319, -0.025546351447701454, -0.02927960827946663, -0.05679546296596527, -0.03701396659016609, 0.01879991963505745, 0.02115742489695549, -0.015258179046213627, -0.0020136828534305096, -0.03916190564632416, 0.0369357131421566, 0.05834127217531204, -0.03346142917871475, 0.046742282807826996, 0.02464979700744152, -0.030525604262948036, 0.05747717246413231, 0.011558301746845245, 0.010679555125534534, -0.045073069632053375, 0.05457257479429245, 0.013809098862111568, 0.012131420895457268, -0.018182750791311264, -0.004756661597639322, -0.014408206567168236, 0.026406895369291306, 0.03641019016504288, -0.02721926011145115, -0.06994760036468506, 0.039875276386737823, -0.00646140705794096, -0.07230007648468018, 0.011795547790825367, -0.023040583357214928, -0.006211267318576574, -0.019567202776670456, -0.05191507562994957, 0.020435338839888573, 0.009416385553777218, 0.048372622579336166, 0.008622750639915466, -0.03206968307495117, 0.01912328042089939, 0.0053526717238128185, 0.0468607135117054, -0.011273804120719433, -0.0020502014085650444, 0.029349548742175102, 0.007382779382169247, 0.03692209720611572, 0.027462948113679886, -0.029164407402276993, -0.014331130310893059, 0.012027640827000141, 0.016203498467803, -0.01585032045841217, 0.037562575191259384, 0.016064519062638283, -0.004045322071760893, 0.05838070809841156, -0.014530052430927753, -0.006967946421355009, -0.002545366296544671, 0.0322117879986763, 0.021325144916772842, -0.002049333183094859, -0.00605674646794796, -0.017177239060401917, -0.059004876762628555, -0.04899370297789574, 0.019628209993243217, -0.00478718988597393, 0.04405481740832329, -0.02087167277932167, 0.03913260996341705, -0.023603646084666252, -0.0005807977868244052, 0.037986788898706436, -0.03191959112882614, 0.01325960736721754, 0.02510003186762333, -0.0065484419465065, 0.01495547778904438, -0.0025932034477591515, 0.018196353688836098, -0.013133794069290161, 0.05281656235456467, 0.007107148878276348, 0.006832979619503021, 0.04823536053299904, -0.023995770141482353, -0.006199097726494074, -0.02422463521361351, -0.029707888141274452, 0.004013546276837587, -0.02263885922729969, 0.0004358183068688959, -0.005664587952196598, -0.04771345108747482, -0.042939309030771255, 0.04455289989709854, 0.04042831063270569, 0.04406915232539177, 0.010617843829095364, 0.010908217169344425, 0.0009279018267989159, 0.007784628309309483, 0.03388473764061928, -0.010937831364572048, 0.02253403328359127, -0.03012342005968094, 0.0407448448240757, 0.012360422872006893, -0.03426170349121094, -0.005343278404325247, -0.002839783439412713, -0.027374709025025368, 0.042287278920412064, 0.012585042975842953, -0.007330441381782293, -0.01740431785583496, 0.023341920226812363, 0.005285721272230148, 0.013575099408626556, -0.05141846090555191, -0.05362144485116005, 0.00797438994050026, 0.022624827921390533, 0.018893267959356308, -0.034949302673339844, -0.017366843298077583, -0.052189651876688004, 0.05716751888394356, 0.05898365378379822, 0.002679203636944294, -0.05369184911251068, -0.03972293809056282, -0.052314650267362595, -0.05274638533592224, -0.004421681631356478, 0.04544008895754814, 0.02750922366976738, 0.00869398657232523, -0.04059886559844017, 0.013535120524466038, 0.006386623717844486, -0.0361221581697464, -0.02935635857284069, 0.025037329643964767, 0.008000682108104229, 0.006921800319105387, 0.02313593216240406, -0.016009114682674408, -0.040144629776477814, 0.012892358936369419, -0.04070667177438736, 0.01747807301580906, 0.03880821168422699, -0.02052297629415989, -0.01862972602248192, 0.009915035218000412, 0.025393327698111534, 0.06879043579101562, 0.001870847074314952, -0.011530410498380661, -0.034185342490673065, 0.060002926737070084, -0.054073140025138855, -0.051479026675224304, 0.04212962090969086, 0.002243202878162265, -0.006158024072647095, 0.02034646086394787, 0.06198682636022568, -0.012860200367867947, 0.010699345730245113, 0.018692415207624435, -0.04712668061256409, 0.04749416559934616, -0.04701833426952362, 0.03531652316451073, -0.024204079061746597, -0.03226650878787041, 0.013187688775360584, -0.03412262350320816, 0.026835989207029343, -0.0077796136029064655, -0.013822797685861588, -0.026358896866440773, -0.043603796511888504, 0.0052954270504415035, -0.00675589544698596, -0.006351198069751263, -0.014825817197561264, -0.010139509104192257, -0.0019829345401376486, -0.03448522090911865, -0.008702526800334454, -0.005918219685554504, 0.02288755588233471, -0.02097342535853386, 0.016423897817730904, -0.010904179885983467, 0.004183316137641668, -0.0107795475050807, 0.007268933579325676, -0.04928028956055641, 0.021936897188425064, 0.0006928039947524667, -0.00700153224170208, -0.0555436834692955, 0.017507905140519142, -0.022784238681197166, -0.016427578404545784, -0.028405603021383286, 0.0033337261993438005, -0.03883849456906319, 0.03986164182424545, -0.011131939478218555, 0.028253082185983658, 0.013044037856161594, -0.034112103283405304, -0.04466390982270241, 0.046461790800094604, -0.009277823381125927, -0.020147737115621567, -0.03868163004517555, 0.0713919997215271, -0.016419753432273865, 0.025718718767166138, 0.0054200924932956696, -0.029299424961209297, -0.04922962188720703, -0.05053184926509857, 0.006802641786634922, -0.03168515861034393, -0.002812880789861083, -0.027225762605667114, -0.03363357111811638, -0.026931889355182648, 0.03320342302322388, 0.005144096445292234, -0.037828948348760605, -0.016033418476581573, -0.025796562433242798, 0.0035107515286654234, 0.004697810392826796, -0.024623820558190346, -0.04130789265036583, -0.009059949778020382, 0.0012379775289446115, 0.05370565131306648, -0.02634591795504093, 0.048897288739681244, 0.008693402633070946, 0.01753387600183487, 0.037290457636117935, -0.0027428444009274244, -0.04751361533999443, -0.02287149243056774, 0.004950100090354681, -0.009923762641847134, 0.027466775849461555, 0.01619797758758068, -0.036806054413318634, 0.008746828883886337, -0.046599581837654114, -0.009544475935399532, -0.02069167047739029, -0.039156168699264526, 0.000815651030279696, -0.011380588635802269, 0.0799424946308136, -0.016928162425756454, 0.008515486493706703, -0.02213236317038536, 0.05739257112145424, 0.06718301773071289, 0.028891677036881447, -0.025208530947566032, -0.022293386980891228, -0.020432908087968826, -0.04926692321896553, 0.023538196459412575, -0.058434564620256424, -0.016980363056063652, -0.04829496890306473, -0.009943217970430851, 0.05401032418012619, -0.006159516517072916, 0.0233817920088768, 0.051634278148412704, 0.016333768144249916, 0.0028061028569936752, -0.0063673267140984535, 0.024692272767424583, 0.05804360657930374, -0.031613897532224655, 0.006123767700046301, -0.03337893635034561, -0.014289009384810925, -0.020432785153388977, -0.04517626389861107, -0.023985859006643295, -0.07638321071863174, 0.0028487276285886765, 0.0697171539068222, -0.04873093590140343, 0.04100950434803963, -0.019449464976787567, -0.054201118648052216, -0.042235586792230606, 0.020828433334827423, -0.0003729609597939998, 0.010087127797305584, 0.040683530271053314, 0.040171973407268524, -0.027533527463674545, 0.03760195150971413, 0.04289045184850693, -0.029946941882371902, -0.02862589620053768, 0.057672057300806046, -0.012654637917876244, -0.029006993398070335, 0.03380278870463371, 0.00605286518111825, -0.0588655099272728, -0.048618629574775696, -0.03444359824061394, -0.010016199201345444, -0.004852444399148226, -0.025609269738197327, 0.00030581693863496184, -0.04498536139726639, -0.009569264948368073, -0.0071617066860198975, 0.055536650121212006, 0.004456456750631332, 0.0240975022315979, 0.012768223881721497, 0.013632064685225487, -0.05289861559867859, 0.0537564791738987, 0.028658827766776085, -0.006143254693597555, -0.035626985132694244, -0.046795617789030075, -0.026410680264234543, -0.006097009871155024, -0.016712812706828117, 0.019434351474046707, -0.011930875480175018, 0.01536073349416256, 0.02701626904308796, -0.00338800554163754, 0.042037371546030045, -0.004456434864550829, -0.03555936738848686, 0.01803220994770527, -0.01972576230764389, -0.04854510724544525, -0.06466781347990036, 0.03989734128117561, -0.005409194156527519, 0.009309305809438229, -0.07304541021585464, -0.0072386786341667175, 0.025370696559548378, -0.0026236828416585922, 0.02776208706200123, -0.054874636232852936, -0.04347294569015503, -0.03806283324956894, -0.06084060296416283, -0.005903148557990789, 0.013775233179330826, -0.012432591058313847, 0.029477018862962723, 0.01416819915175438, 0.005379278678447008, -0.004677587188780308, -0.012384775094687939, -0.01883522793650627, 0.02847866155207157, -0.014200710691511631, 0.031999532133340836, -0.033511094748973846, -0.005093696061521769, -0.053364913910627365, -0.03693640977144241, -0.011770923621952534, 0.002998871263116598, -0.024392299354076385, 0.03942972049117088, 0.025159047916531563, 0.036474887281656265, 0.014111120253801346, -0.006660119164735079, -0.018530331552028656, -0.016952939331531525, -0.027119114995002747, 0.05971340462565422, 0.004622915294021368, 0.03191668167710304, 0.008770282380282879, 0.0011619102442637086, 0.03732277825474739, -0.02218678407371044, -0.017541680485010147, -0.0019508859841153026, 0.004730052314698696, 0.008474915288388729, 0.021096667274832726, -0.033153947442770004, -0.027640221640467644, -0.007709436118602753, -0.03541281446814537, 0.026213020086288452, 0.014673233032226562, 0.017710650339722633, -0.023440124467015266, -0.0020014778710901737, -0.020116515457630157, 0.035559769719839096, -0.02250051125884056, 0.037198156118392944, 0.007039943709969521, 0.007704871706664562, 0.010138378478586674, 0.012429915368556976, 0.005430940072983503, 0.0417880043387413, 0.03604420647025108, -0.04054125025868416, -0.003915577661246061, 0.0077619063667953014, -0.003949354402720928, 0.03224337100982666, -0.018907733261585236, -0.026117943227291107, -0.03969345614314079, -0.0005281113553792238, 0.006200867705047131, 0.04369104281067848, 0.020721815526485443, -0.0087088942527771, 0.024484489113092422, -0.04025832563638687, -0.063493512570858, 0.00044951096060685813, -0.05948832258582115, -0.018782638013362885, 0.03666391968727112, -0.00992571096867323, -0.019764868542551994, -0.03558293357491493, -0.040384359657764435, -0.013360464945435524, -0.017575202509760857, 0.019580435007810593, 0.010370378382503986, 0.014828760176897049, 0.014914126135408878, 0.03579793497920036, -0.03482520207762718, -0.014843040145933628, -0.013237143866717815, 0.05939622223377228, -0.049840860068798065, -0.04234394431114197, 0.015790414065122604, 0.03515205904841423, -0.008016292937099934, -0.012672480195760727, -0.0027023302391171455, 0.004565900657325983, 0.016750765964388847, 0.029161827638745308, 0.019653571769595146, -0.011517229489982128, -0.021069135516881943, 0.058507516980171204, -0.00999772734940052, -0.01280821580439806, -0.008878502063453197, 0.02793784998357296, 0.050666775554418564, -0.008374152705073357, -0.024273738265037537, 0.045484259724617004, 0.04201200231909752, -0.024359283968806267, 0.055247582495212555, 0.04886947572231293, 0.039755407720804214, -0.002885258523747325, 0.01447982806712389, -0.005010840483009815, 0.04431461542844772, 0.033867742866277695, 0.04437626153230667, 0.0037339716218411922, -0.004836493171751499, 0.061374254524707794, -0.022635526955127716, 0.006765945348888636, 0.026321182027459145, 0.028880208730697632, -0.023608073592185974, -0.0011660803575068712, 0.0006601533968932927, 0.024944061413407326, -0.009770411066710949, 0.007659889757633209, -0.003326913807541132, -0.01509158406406641, -0.014490985311567783, -0.0013705362798646092, 0.009011177346110344, 0.05801396816968918, -0.027851952239871025, -0.02011454664170742, 0.00548922922462225, 0.005427699536085129, -0.008287140168249607, 0.04932127147912979, 0.003952803555876017, -0.018038377165794373, 0.028752077370882034, 0.020319629460573196, -0.044448141008615494, 0.04108022525906563, 0.008814441971480846, 0.012239615432918072, -0.0233962070196867, 0.021519185975193977, 0.043161481618881226, 0.011380038224160671, -0.036679334938526154, 0.014410849660634995, -0.06008412316441536, 0.032739512622356415, -0.012808316387236118, -0.022464504465460777, 0.02842593565583229, -0.052960459142923355, -0.028995368629693985, -0.03186141699552536, 0.04943397268652916, -0.05972642824053764, 0.014648319222033024, 0.037620555609464645, -0.0004453880537766963, 0.021281255409121513, 0.03773672133684158, -0.005081836134195328, 0.03844370320439339, 0.011458422988653183, 0.0425373911857605, -0.02116898074746132, 0.047697488218545914, 0.03419072553515434, 0.00005470958785736002, -0.04068252816796303, 0.06068604066967964, -0.03214256465435028, -0.034097593277692795, -0.037055641412734985, -0.04764210060238838, -0.0005793122109025717, -0.027525095269083977, 0.024752996861934662, -0.010494797490537167, 0.021869031712412834, -0.032671231776475906, -0.058614332228899, -0.0029555941000580788, 0.015331628732383251, -0.06438891589641571, 0.0018030283972620964, 0.0036641834303736687, 0.03708852455019951, -0.01542170811444521, -0.007570881862193346, -0.03547089546918869, -0.05546443909406662, -0.04569212719798088, -0.024330299347639084, 0.01999201998114586, -0.0038849269039928913, -0.017730887979269028, -0.03327125683426857, -0.025530941784381866, -0.04432845860719681, -0.03283122554421425, -0.020135488361120224, -0.039149198681116104, 0.04453412815928459, 0.05987755209207535, -0.015759261325001717, 0.005815921351313591, -0.030302852392196655, 0.0016276633832603693, 0.02266920916736126, 0.07105004787445068, 0.0037113591097295284, 0.013041605241596699, 0.02739609405398369, -0.03543215990066528, 0.022335825487971306, -0.051498640328645706, 0.014881220646202564, -0.06658392399549484, -0.0009617130272090435, -0.017803238704800606, 0.02437678538262844, -0.004179793410003185, -0.052986349910497665, -0.00231344485655427, 0.004370893817394972, -0.004447748884558678, -0.03354566544294357, -0.08658279478549957, -0.020633384585380554, -0.021751374006271362, 0.011636199429631233, -0.029362931847572327, 0.026390649378299713, 0.028965508565306664, -0.0011006852146238089, -0.005948586389422417, -0.05674004182219505, 0.14002905786037445, 0.06758297979831696, 0.04747004434466362, -0.018473105505108833, 0.047636326402425766, 0.026490889489650726, 0.03164202347397804, -0.013870349153876305, 0.004535182379186153, -0.018657254055142403, 0.04569622501730919, 0.017707154154777527, 0.02725106105208397, 0.010391791351139545, 0.008624348789453506, 0.08448155969381332, -0.05686570331454277, 0.0017781795468181372, 0.0006026147166267037, -0.04438559710979462, -0.03581937775015831, 0.010975144803524017, 0.002369843190535903, 0.03755272924900055, -0.034607309848070145, 0.026754798367619514, 0.030210336670279503, -0.023291312158107758, -0.004133718088269234, 0.0005791516741737723, 0.01167792733758688, -0.03858213126659393, 0.0409572459757328, -0.02757597528398037, -0.01901892013847828, 0.021333372220396996, 0.0034025097265839577, -0.020265698432922363, 0.0082074711099267, -0.0012610432459041476, -0.00872622337192297, -0.011074134148657322, 0.03251643851399422, -0.03167644888162613, 0.02130703628063202, -0.002759210765361786, -0.01866447553038597, -0.011264977976679802, 0.001697072177194059, -0.049779344350099564, 0.07408048212528229, -0.044012416154146194, 0.018654489889740944, 0.0001266566541744396, -0.03719911724328995, 0.012037516571581364, -0.0028614592738449574, -0.004188749007880688, -0.019339533522725105, 0.010389387607574463, 0.04954192787408829, -0.011886228807270527, -0.000854277575854212, -0.010533902794122696, -0.05968490615487099, 0.009648092091083527, 0.009492754936218262, -0.006737266667187214, -0.012389451265335083, -0.05024849250912666, -0.017303256317973137, 0.006858056876808405, 0.015038364566862583, -0.010902408510446548, 0.03929240629076958, 0.03924933820962906, 0.003665641648694873, 0.032635077834129333, 0.0019705176819115877, -0.006400956306606531, -0.01956738345324993, -0.03342171013355255, 0.0006892190431244671, -0.0064958855509757996, 0.03948741406202316, 0.03450163081288338, -0.02484075166285038, -0.048354268074035645, -0.0035434935707598925, 0.05893533676862717, 0.034460049122571945, 0.033710967749357224, -0.019081592559814453, -0.0021208375692367554, -0.022590603679418564 ]
Life After School Summit helps dreams come true TAYLORS, S.C. -- An event organized by a United Methodist church in Taylors shows the positive influence churches can have in encouraging young people to continue their education. More than 150 youth and family members attended the Life After School Summit at St. Mark UMC in Taylors, S.C., on May 17, 2014, for presentations and exhibits by representatives from colleges and universities, the armed forces and other organizations. When St. Mark UMC in South Carolina opened its college information program to the community, nearly 200 people turned out for assistance. Photo from the General Board of Higher Education & Ministry. For the past decade, St. Mark has sponsored an annual education program about scholarships and college testing requirements typically attended by students in grades seven through 12 and their family members from the congregation. This year, however, the program was opened to anyone in the community, and about 125 students and 45 to 50 parents participated, including several busloads of participants from other churches. "One of the most powerful things we had was nine of our [church's] college students, ranging from freshmen to first year out of college, who were on a student-only panel," said church member Derek McGowan, a corporate campus relations manager and former U.S. Air Force recruiter who chaired the church's program committee. "They opened up and talked about anything those students needed to know about going to college. That received the highest marks." Representatives from seven colleges and universities, the military and other organizations were present for workshops, counseling sessions and other presentations. More than $280,000 in scholarships was offered to students attending the event. Melanie Overton, assistant general secretary for Schools, Colleges and Universities at the General Board of Higher Education & Ministry, said the St. Mark event is a great example of how churches can help high school students. "The church has a role to play in mentoring students," Overton said. "Some students need the help of a community to explore their options and prepare themselves to make the best possible decision about their future." Churches are a part of young people's lives long before they begin thinking about college, Overton said. "Churches are there when kids are in middle school and high school, and they are the ones who can help nurture their aspirations and help them think about financial planning and those kinds of things," Overton said. The event helped one student achieve a lifelong dream of attending college. Kari Bradford received a full, four-year scholarship to South Carolina State University. "I heard there were going to be scholarships to offer, and I wanted to go to see if I could get either a full ride or a partial scholarship to help me," Bradford said. "And I also went so I could learn about college life and how to adapt and what I should and shouldn't be doing there." Bradford, who had a 3.6 GPA at Greer Middle College Charter High School and has been South Carolina's state high jump champion since the seventh grade, left the day-long education summit early to successfully compete in a state track meet and learned about her scholarship when it was announced in church the next day. "Churches are there when kids are in middle school and high school, and they are the ones who can help nurture their aspirations and help them think about financial planning and those kinds of things." -- Melanie Overton, General Board of Higher Education & Ministry She plans to study health sciences and hopes to become a physical therapist. McGowan said the primary focus was ninth- through 12th-grade students, but the event was opened up to some first-year college students "who were still not catching on to what college life was about." Six workshops ran simultaneously in church classrooms on topics such as job enrichment opportunities, military careers and parenting first-year college students. A representative of the Workforce Development Agency in nearby Greenville talked about summer jobs for students. A panel of parents discussed how to help students get through their first semester. Other speakers talked about how to fill out job applications and how to be successful in interviews. One standing-room-only session featured college coaches and players who spoke about NCAA rules and requirements. "A lot of students were thinking how easy it is to be on scholarship and go to college, so some of the high school coaches sent their football teams to the meeting," McGowan said. "We didn't want to exclude anyone in our congregation by focusing on academia only. That's why we called it the Life After School Summit," McGowan said. "Traditionally, churches have a college program or something that's college-focused, [and] there is nothing there for people who want to go to technical colleges, two-year schools, trade schools or the military. So adding that component made it a much more successful program because those rooms were filled, as well." Retired teachers and educators in St. Mark's congregation served as part of the support team for the summit, and seventh- and eighth-grade students wore "Ask Me" T-shirts and helped participants find their sessions. The church's hospitality committee provided free lunch to everyone attending. One college participating was Spartanburg Methodist College, a two-year liberal arts institution in nearby Spartanburg, S.C., where more than half of its 800 students are the first in their families to attend college. "A two-year school [like Spartanburg Methodist] is really a great place for people to start, especially if they are first-generation students, because of the one-on-one attention that our students receive," said Dr. Colleen Perry Keith, president of the 103-year-old United Methodist-related college. She said because the college focuses on the first two years, faculty and staff really understand the challenges these first-generation college students face. "And we work to try to make those challenges manageable for them," she added. Nationally, about 20 percent of students who start two-year colleges complete their four-year degree elsewhere, but that percentage at Spartanburg Methodist is more than four times greater, Keith said. "Our mean graduation rate for the last nine years is 41.3 percent for those who actually go for the full two years and meet all of the degree requirements to graduate," she said. But Keith said 82 percent of Spartanburg's students either graduate or go on to pursue their education somewhere else. Following on the summit's success, McGowan said St. Mark is planning another educational event later this year. "We're going to do it again in September," he said. "Five universities are sending deans or presidents to speak to the students, and they are bringing more scholarships." To learn more about United Methodist schools colleges and universities, visit www.gbhem.org/education. -- Tom Gillem is a writer and photographer in Brentwood, Tenn. Hurricane Irma - Hurricane Michael recovery: Volunteer to bring yourself or a team to help with the recovery. #floridarestores Your Stories & Pics UMC News
[ -0.028369087725877762, -0.012158661149442196, -0.024260826408863068, 0.026275886222720146, -0.044489484280347824, 0.03942325711250305, 0.0027554885018616915, 0.04055644944310188, 0.025462741032242775, -0.008797047659754753, 0.01815362460911274, -0.03662620857357979, 0.023029321804642677, -0.02914893440902233, -0.0071387868374586105, -0.0253816656768322, -0.017124105244874954, -0.02913840301334858, -0.015631843358278275, 0.012636405415832996, -0.02953592874109745, 0.02189469337463379, -0.043918706476688385, -0.03117399848997593, -0.01364104077219963, 0.003581021912395954, 0.03194329887628555, -0.01185446698218584, 0.042654212564229965, 0.07679237425327301, -0.033240120857954025, -0.05433395504951477, 0.020437922328710556, -0.042379673570394516, -0.048192281275987625, -0.020739512518048286, 0.03838581591844559, -0.036452971398830414, 0.013923505321145058, -0.01825135201215744, -0.015806252136826515, -0.036086007952690125, 0.03250392526388168, -0.03467549383640289, -0.043410610407590866, 0.011281168088316917, 0.0037563948426395655, -0.0327129103243351, 0.019020266830921173, 0.003920847084373236, 0.0018951084930449724, -0.016819065436720848, -0.007953649386763573, 0.008054864592850208, 0.032737936824560165, 0.01222511287778616, 0.006441016681492329, -0.03192902356386185, -0.011759082786738873, 0.03028477542102337, 0.007771552540361881, 0.01632728800177574, 0.031619489192962646, -0.04029190540313721, 0.033212821930646896, 0.01866832748055458, -0.016317961737513542, -0.01776391640305519, -0.0066337576135993, -0.006377044599503279, 0.01585368998348713, -0.007494411896914244, -0.04043855145573616, 0.0077619100920856, 0.03171638399362564, -0.0044478001073002815, -0.013611264526844025, 0.0037399353459477425, 0.0000919421945582144, 0.0036889170296490192, -0.004762033931910992, 0.04111288860440254, 0.01535168569535017, 0.02845521830022335, -0.09616508334875107, -0.020880727097392082, -0.01807069219648838, 0.009290123358368874, 0.033007651567459106, 0.0004441684577614069, -0.03043336234986782, 0.0528390072286129, -0.0010516727343201637, -0.032194867730140686, 0.048298146575689316, 0.025610556825995445, -0.056396838277578354, 0.01890348270535469, 0.01902727782726288, -0.015380902215838432, 0.007943113334476948, 0.01463328767567873, -0.013282960280776024, 0.048947419971227646, -0.06967812031507492, -0.0019338910933583975, 0.014886432327330112, -0.003315078327432275, 0.005706260912120342, -0.02188260294497013, -0.0062586460262537, -0.006702443119138479, 0.05176056921482086, -0.01499225664883852, 0.002465616911649704, 0.058433130383491516, -0.03660361096262932, 0.03484001010656357, -0.034049905836582184, 0.0353412963449955, 0.006015031132847071, 0.00734346080571413, 0.015688581392169, -0.03646688163280487, 0.028189310804009438, -0.015829749405384064, -0.027685442939400673, 0.047965310513973236, -0.049473900347948074, -0.007435543928295374, 0.004510556347668171, -0.06422211229801178, -0.029331550002098083, 0.04065055400133133, -0.008020655252039433, 0.001382573856972158, 0.0020326273515820503, 0.023882178589701653, 0.0030822246335446835, -0.06316260248422623, 0.053742051124572754, 0.038583654910326004, 0.0113198421895504, 0.09662486612796783, 0.0024435215163975954, 0.021092833951115608, -0.002991745015606284, -0.013649962842464447, -0.048757851123809814, 0.007240742444992065, -0.024408604949712753, 0.023586442694067955, -0.016767943277955055, 0.044558774679899216, -0.004134760238230228, 0.007074197754263878, -0.0003090160898864269, 0.0041870311833918095, 0.013542761094868183, 0.0035591076593846083, -0.011723059229552746, 0.023625586181879044, -0.02799144573509693, 0.05439838767051697, -0.011038104072213173, 0.02556401677429676, -0.020313190296292305, -0.010274872183799744, -0.004961729049682617, -0.03325514495372772, 0.010970422066748142, 0.0370040126144886, -0.03906357288360596, 0.019634190946817398, 0.029435066506266594, 0.05084358900785446, 0.055092740803956985, -0.01652497611939907, 0.022658951580524445, 0.05065644159913063, -0.08050491660833359, -0.01605619117617607, 0.00612525874748826, 0.05593770369887352, 0.007351531647145748, -0.021183663979172707, 0.010649166069924831, -0.002074269112199545, -0.036685265600681305, -0.02109193615615368, -0.021903635933995247, 0.04195078834891319, -0.017093434929847717, 0.03517160564661026, -0.007622540928423405, -0.015406720340251923, -0.026584278792142868, -0.016391241922974586, -0.012401219457387924, -0.021698683500289917, -0.025630954653024673, 0.043250493705272675, -0.0046204691752791405, 0.048482492566108704, -0.0186554417014122, -0.008011667989194393, 0.028363890945911407, 0.048607438802719116, -0.06002146750688553, 0.007050578482449055, 0.06650179624557495, 0.020703094080090523, -0.02548685483634472, -0.010985711589455605, 0.023755012080073357, 0.008910669945180416, -0.024784300476312637, 0.046077195554971695, -0.005583025515079498, -0.014862032607197762, 0.013792876154184341, 0.008155565708875656, 0.009325729683041573, 0.03357282280921936, 0.01167995948344469, -0.025133220478892326, 0.028373580425977707, 0.03874969482421875, -0.04116390645503998, -0.03782844543457031, -0.025385448709130287, 0.03249596804380417, 0.030617516487836838, 0.03937406465411186, 0.05244419723749161, 0.020321764051914215, 0.003479167353361845, 0.05601218715310097, -0.02150554582476616, 0.02751750312745571, 0.01676587015390396, -0.00968177244067192, 0.030202314257621765, 0.0418318547308445, -0.030856406316161156, 0.033007487654685974, -0.01841926947236061, -0.026562681421637535, -0.00005041473559685983, 0.02045724168419838, 0.006400879472494125, 0.04031888768076897, 0.01327430084347725, 0.046060848981142044, -0.014878003858029842, 0.01940825581550598, 0.028094450011849403, 0.051813408732414246, -0.03199885040521622, -0.00951090082526207, 0.010102673433721066, 0.006926719099283218, -0.020447058603167534, 0.007731468882411718, 0.03129450976848602, 0.02130884677171707, -0.010526866652071476, 0.005075062625110149, -0.018493693321943283, -0.051045212894678116, -0.009001650847494602, -0.0546412467956543, -0.02420884370803833, -0.05518339201807976, -0.04270196333527565, -0.003891815897077322, 0.034662097692489624, -0.05368674173951149, 0.013829409144818783, 0.008522960357367992, -0.003120065899565816, -0.00427549984306097, 0.008572772145271301, 0.05979163572192192, 0.04482610896229744, 0.040297165513038635, -0.05772809684276581, 0.050440069288015366, 0.028586527332663536, 0.03582516685128212, -0.033053237944841385, -0.002072208561003208, 0.013201067224144936, -0.03948286920785904, 0.03958367183804512, -0.032666850835084915, -0.019915636628866196, -0.004290922544896603, -0.06902208179235458, -0.06689819693565369, 0.0257127583026886, 0.032303690910339355, -0.010479158721864223, 0.012993104755878448, -0.037508368492126465, 0.07504819333553314, 0.012394702062010765, -0.057772424072027206, 0.04088132455945015, 0.05000302195549011, -0.03180525079369545, 0.05186140909790993, 0.017590219154953957, 0.01228318177163601, -0.05139017105102539, 0.029199006035923958, 0.03655046224594116, -0.018603621050715446, -0.007757451385259628, -0.0077471802942454815, -0.03929338976740837, -0.007867529056966305, 0.011519603431224823, -0.020655112341046333, -0.04553941264748573, 0.05273796245455742, 0.025518614798784256, -0.06138540059328079, 0.039243876934051514, -0.0189865343272686, -0.03713195398449898, -0.036422502249479294, -0.027486195787787437, 0.02635304443538189, 0.03194623813033104, 0.019325030967593193, 0.006967191584408283, -0.01196305826306343, -0.011682644486427307, 0.019476190209388733, 0.06266438215970993, -0.02094079740345478, 0.022615810856223106, 0.0317496657371521, -0.023943206295371056, 0.0034068848472088575, 0.012160120531916618, -0.033323075622320175, 0.015147418715059757, 0.008092429488897324, 0.012321613729000092, 0.01564725860953331, 0.013712862506508827, 0.009560300968587399, -0.007853646762669086, 0.03097415715456009, -0.02620084024965763, -0.0016823506448417902, -0.024590231478214264, 0.035830192267894745, -0.0022222704719752073, 0.024780573323369026, 0.0021465071476995945, -0.004249054007232189, -0.0032652681693434715, -0.018741177394986153, 0.04242098703980446, 0.0326874703168869, 0.057720884680747986, -0.06664172559976578, 0.046352364122867584, -0.01904313638806343, -0.029615890234708786, 0.04705711454153061, -0.028675947338342667, -0.003753288881853223, 0.05049528181552887, -0.004357106983661652, 0.01760087162256241, -0.03656674548983574, 0.007859105244278908, -0.028537847101688385, 0.010005469433963299, -0.0037918775342404842, -0.014152566902339458, 0.006580049637705088, -0.0364559143781662, 0.013520544394850731, -0.0264151431620121, -0.008133789524435997, 0.002346196910366416, -0.03720561042428017, 0.018516061827540398, -0.021087536588311195, -0.033583950251340866, -0.02684309519827366, 0.053853634744882584, 0.025503797456622124, 0.04218224436044693, -0.020729290321469307, 0.03248760849237442, 0.0005095019587315619, 0.002067151479423046, 0.033821579068899155, -0.016264325007796288, 0.0374804362654686, -0.060517001897096634, 0.031090570613741875, 0.008612542413175106, -0.04424641653895378, -0.037636056542396545, -0.014821583405137062, -0.026115871965885162, 0.045783109962940216, 0.029345305636525154, -0.015083374455571175, -0.03365744277834892, 0.02842249721288681, -0.00907900556921959, 0.05932364612817764, -0.041399870067834854, -0.016491133719682693, -0.011963621713221073, 0.02283407375216484, -0.0033330637961626053, -0.037182293832302094, -0.0004838035674765706, -0.017460228875279427, 0.025339685380458832, 0.01806500181555748, -0.023076584562659264, -0.031068310141563416, -0.0402858592569828, 0.006039315368980169, -0.015628494322299957, -0.007924885489046574, 0.04037731885910034, -0.029601041227579117, -0.022148411720991135, -0.036291953176259995, 0.017487887293100357, 0.023815592750906944, 0.014591732993721962, -0.0234800036996603, 0.007504891138523817, 0.019151998683810234, 0.026082433760166168, 0.026543626561760902, -0.009649266488850117, -0.026657704263925552, 0.033568937331438065, -0.05938565358519554, 0.041463568806648254, -0.014984456822276115, -0.0018492083763703704, -0.005059960298240185, 0.004853235557675362, -0.005204378627240658, 0.03765372931957245, -0.05868435278534889, 0.017157064750790596, 0.0010347868083044887, 0.03338686749339104, -0.04107872396707535, -0.027595538645982742, 0.08555005490779877, -0.029260709881782532, -0.021156487986445427, 0.0112520232796669, 0.04312603548169136, -0.02076592482626438, 0.02805814892053604, -0.009156684391200542, -0.03162205219268799, 0.05553208664059639, -0.04262218624353409, -0.000491923710796982, -0.042409710586071014, -0.03791436180472374, 0.008536179549992085, -0.0033977204002439976, 0.026478763669729233, -0.0021274304017424583, -0.010988305322825909, -0.03475821763277054, -0.03588429093360901, 0.0016837532166391611, 0.025713326409459114, -0.004248158074915409, -0.0030026643071323633, -0.0018722634995356202, 0.011979340575635433, 0.004143648315221071, -0.012926514260470867, 0.021817153319716454, 0.0150386868044734, 0.01607332192361355, 0.01794031821191311, -0.03403836488723755, 0.009080875664949417, 0.020356569439172745, -0.023953648284077644, -0.02904374524950981, -0.013865825720131397, -0.0009098051814362407, -0.030770497396588326, -0.07998742163181305, -0.004983471240848303, -0.06326236575841904, -0.053931888192892075, -0.023513004183769226, 0.022618932649493217, -0.023724336177110672, 0.008029711432754993, 0.055205706506967545, 0.011854126118123531, -0.022190682590007782, 0.017628686502575874, -0.040482260286808014, 0.033666521310806274, 0.032933514565229416, -0.04481768608093262, -0.025899693369865417, 0.019394638016819954, -0.030443446710705757, 0.05581905320286751, -0.0014695603167638183, -0.01360921747982502, -0.020291151478886604, -0.05801310017704964, -0.02691635489463806, -0.038454148918390274, 0.000970794353634119, -0.05662980675697327, -0.029681259766221046, 0.015279367566108704, 0.05077086389064789, 0.03208957612514496, -0.005582901183515787, 0.00536855636164546, -0.03334365785121918, -0.01174379512667656, -0.049795765429735184, -0.006900093983858824, -0.0274290069937706, -0.02476860210299492, -0.028546953573822975, 0.04629610478878021, 0.0355847105383873, 0.012527471408247948, -0.0027216749731451273, 0.015451346524059772, 0.015641888603568077, -0.04868657514452934, -0.0531764030456543, -0.03424326702952385, -0.0133766895160079, -0.005947710946202278, 0.008306854404509068, -0.006977810524404049, -0.0219411663711071, 0.06529329717159271, -0.03279075399041176, -0.02329154685139656, -0.05144953355193138, 0.004342247266322374, 0.001656247186474502, -0.0020160404965281487, 0.03978699445724487, -0.014343684539198875, 0.02286776527762413, -0.029639407992362976, 0.04835961386561394, 0.024562356993556023, -0.025314660742878914, -0.01843327097594738, -0.042215459048748016, -0.02037406526505947, -0.037520695477724075, 0.033300742506980896, 0.0003945511416532099, -0.02061876282095909, -0.034280821681022644, -0.012284999713301659, 0.03333692252635956, -0.015602009370923042, 0.04111246019601822, 0.04638546332716942, -0.02560940571129322, -0.025453682988882065, -0.014572164043784142, 0.02459273301064968, 0.04243715479969978, 0.004481463227421045, -0.00761555228382349, -0.028522402048110962, -0.018423214554786682, -0.008054528385400772, -0.02706042118370533, -0.032686151564121246, -0.05569674074649811, -0.019895898178219795, 0.07170061022043228, -0.015599601902067661, 0.057205189019441605, -0.006567942909896374, -0.028347603976726532, -0.024799080565571785, 0.02823013998568058, 0.008699201978743076, -0.0014342489885166287, 0.03749062120914459, -0.0010471510468050838, -0.009969438426196575, 0.007069654297083616, -0.0003476712736301124, -0.0027184742502868176, -0.02191571705043316, 0.03787147253751755, -0.014739006757736206, -0.05367662012577057, 0.03471780940890312, 0.08641881495714188, -0.03668920695781708, -0.015727125108242035, 0.021609384566545486, -0.01263952162116766, 0.0013117918279021978, -0.018367473036050797, -0.011848827823996544, 0.00861259177327156, 0.01281218882650137, -0.014349392615258694, 0.019176863133907318, -0.030284708365797997, 0.02996460348367691, -0.028200041502714157, 0.03789406642317772, -0.04450839385390282, 0.01073966920375824, 0.001448599505238235, 0.0060164667665958405, -0.034660935401916504, -0.04032323509454727, 0.009465406648814678, -0.0010678429389372468, -0.02500101923942566, 0.05962517112493515, -0.016940703615546227, 0.008499084040522575, 0.011529437266290188, -0.002499268390238285, 0.046209726482629776, -0.006520310416817665, -0.026942456141114235, 0.005744704511016607, -0.030036645010113716, -0.06022612378001213, -0.03299936652183533, -0.003999284468591213, 0.01668861322104931, 0.04860864579677582, -0.03252863883972168, 0.038815937936306, 0.045839253813028336, -0.0032484461553394794, 0.01903502084314823, -0.032732974737882614, -0.018366409465670586, -0.0019634589552879333, -0.04991825297474861, -0.03877994418144226, -0.02832762524485588, 0.02080872841179371, 0.03141172230243683, 0.029324818402528763, -0.05011779069900513, -0.006387460511177778, 0.026844872161746025, -0.031010672450065613, 0.00950835831463337, -0.014822916127741337, 0.010779826901853085, -0.02646959386765957, -0.06003998965024948, -0.05216585472226143, 0.006072936579585075, -0.023052318021655083, -0.0038796814624220133, -0.03408794477581978, 0.03195653855800629, 0.0005661004688590765, 0.023526355624198914, -0.0015091713285073638, -0.01592467725276947, -0.01312078908085823, -0.052100613713264465, 0.025413753464818, 0.05210626870393753, -0.02555970661342144, 0.04175961762666702, 0.045253168791532516, -0.03769833594560623, 0.02939615584909916, -0.02650107815861702, -0.0367022268474102, -0.04256511479616165, 0.02977333404123783, 0.005133240483701229, -0.013121409341692924, -0.057592812925577164, 0.002835826715454459, -0.020949047058820724, -0.03058387152850628, -0.004590121563524008, 0.008107230067253113, 0.023409059271216393, 0.013663382269442081, -0.02394339069724083, 0.030911890789866447, 0.0678265392780304, 0.024920593947172165, 0.015956278890371323, -0.0049340310506522655, 0.034794554114341736, 0.04426311329007149, 0.04430031031370163, 0.004611299838870764, 0.03686761111021042, 0.01009248849004507, -0.023742718622088432, 0.015831738710403442, -0.00441206619143486, -0.023731518536806107, 0.03379853442311287, -0.0013291615759953856, -0.00046658713836222887, -0.047352977097034454, 0.001961932284757495, 0.0060808598063886166, 0.026198742911219597, 0.008028165437281132, -0.04481802508234978, 0.027096640318632126, -0.043193086981773376, 0.009129759855568409, -0.013854390941560268, -0.051460716873407364, -0.028342679142951965, 0.026209937408566475, -0.002566189970821142, -0.04565829038619995, -0.01694050058722496, -0.06047280132770538, 0.024558808654546738, -0.03358405828475952, -0.003910120110958815, -0.020003674551844597, 0.05494547262787819, 0.0064077721908688545, 0.018346499651670456, -0.012208781205117702, -0.00019565096590667963, 0.00657377764582634, 0.06814401596784592, -0.03931371122598648, -0.06105845049023628, 0.01837269403040409, -0.004881996661424637, 0.03533794730901718, 0.03132938966155052, 0.0062836515717208385, 0.0015509717632085085, 0.012590757571160793, 0.007234367076307535, -0.025111423805356026, 0.03199722617864609, -0.004874835256487131, 0.0021407322492450476, -0.01585972309112549, 0.008063127286732197, -0.010669494979083538, 0.001738996827043593, -0.00066428940044716, -0.047539252787828445, -0.036294493824243546, 0.05282335355877876, 0.03123239055275917, -0.020721834152936935, 0.060566797852516174, -0.0019621714018285275, 0.06090307608246803, 0.008777977898716927, 0.00021546198695432395, -0.020615793764591217, 0.04301798343658447, 0.03476674109697342, 0.05375153198838234, 0.020873375236988068, -0.0009733093320392072, 0.04437454044818878, -0.0029821530915796757, -0.007876286283135414, 0.05306599289178848, 0.007286119274795055, -0.01677011139690876, -0.004764096811413765, -0.023466147482395172, 0.02355293557047844, 0.027195584028959274, -0.040034953504800797, 0.02677731215953827, -0.04013361781835556, -0.014490652829408646, -0.04888783022761345, -0.009689423255622387, 0.04350455105304718, -0.0014864690601825714, -0.006327277049422264, -0.014171697199344635, -0.014392506331205368, -0.01797226257622242, 0.046516336500644684, 0.013297457247972488, 0.0034650673624128103, 0.0529828704893589, 0.02333151549100876, 0.0006253118626773357, 0.02033284679055214, 0.016870301216840744, 0.00015035057731438428, -0.027543777599930763, 0.02005821093916893, 0.0012993988348171115, 0.006520818918943405, -0.036097873002290726, -0.003611538093537092, -0.024007152765989304, 0.04771006107330322, -0.022509293630719185, -0.012905712239444256, 0.033355847001075745, -0.03348896652460098, -0.06080018728971481, -0.04676980897784233, 0.042892977595329285, -0.02714582532644272, -0.023229259997606277, 0.03820215165615082, -0.034217361360788345, -0.027270691469311714, 0.026360126212239265, 0.0012886623153463006, 0.036958757787942886, 0.024622192606329918, 0.04568938538432121, -0.013509846292436123, 0.037954095751047134, 0.06608057022094727, -0.04259493947029114, -0.019023900851607323, 0.0207014512270689, -0.006547375116497278, -0.02227441594004631, 0.001992861507460475, -0.03405054286122322, 0.008749078027904034, -0.03120451420545578, -0.031080909073352814, 0.030159125104546547, 0.021058522164821625, 0.0067961509339511395, -0.06044097989797592, 0.000918281904887408, 0.03811989724636078, -0.023244764655828476, 0.026450011879205704, 0.017463039606809616, 0.05399492755532265, -0.006087793968617916, -0.01720971055328846, -0.01945839822292328, -0.028904812410473824, -0.0012798134703189135, -0.04445374384522438, 0.058801986277103424, 0.006293097045272589, -0.013465345837175846, 0.0003128290409222245, -0.06861041486263275, -0.025374671444296837, 0.00759244617074728, -0.03626836836338043, -0.046936389058828354, 0.013320096768438816, 0.044951699674129486, 0.019948430359363556, -0.021418141201138496, -0.024146145209670067, -0.0134009113535285, 0.05404192954301834, 0.02722938358783722, -0.01205432042479515, 0.03038664534687996, 0.015743255615234375, -0.05439962446689606, 0.013797753490507603, -0.007451105862855911, 0.026936547830700874, -0.016095632687211037, -0.03344065696001053, -0.006784541066735983, 0.024459445849061012, -0.011544754728674889, -0.07569672167301178, 0.012293180450797081, 0.024103691801428795, 0.008857486769557, -0.004201254807412624, -0.0661962628364563, 0.004123877268284559, -0.06233669072389603, -0.011300683952867985, -0.037913329899311066, 0.014010896906256676, 0.02840399742126465, 0.01487191952764988, -0.01377078890800476, -0.0688132643699646, 0.1659666746854782, 0.03229548782110214, 0.02729921229183674, -0.015073219314217567, 0.019123580306768417, 0.0667753592133522, 0.03819585591554642, 0.001876933965831995, 0.0021950961090624332, -0.02055370807647705, 0.015737276524305344, 0.012728733941912651, 0.030825404450297356, -0.012075959704816341, 0.0010392057010903955, 0.05612611025571823, -0.05333482101559639, 0.02137112244963646, 0.021646728739142418, -0.053949542343616486, -0.055231742560863495, -0.019579026848077774, -0.00970416609197855, 0.03101988323032856, -0.016988229006528854, 0.040560636669397354, 0.012962404638528824, -0.05344651639461517, 0.007703682873398066, -0.030732443556189537, 0.030104851350188255, -0.028202809393405914, 0.046724941581487656, -0.006535845808684826, -0.04915840923786163, 0.06422998756170273, 0.0043036979623138905, -0.0329476073384285, 0.019920583814382553, 0.004915731493383646, -0.005314240697771311, -0.008159685879945755, 0.04133697971701622, -0.05096101760864258, 0.011363771744072437, 0.04745637997984886, -0.05805906653404236, 0.007802499458193779, 0.014937242493033409, -0.029685866087675095, 0.06563974171876907, -0.03939855843782425, 0.041024673730134964, 0.038213230669498444, -0.02709014341235161, 0.0023598189000040293, 0.015350914560258389, -0.025953108444809914, 0.0067470865324139595, -0.0030422788113355637, 0.06319013983011246, 0.0296119824051857, -0.013134505599737167, 0.038932204246520996, -0.028672654181718826, 0.02142779715359211, 0.016237344592809677, -0.0043029505759477615, -0.006477745715528727, -0.0352688692510128, -0.03117014281451702, 0.005364434327930212, 0.012106594629585743, -0.036903221160173416, 0.0390142947435379, -0.008565511554479599, -0.018802642822265625, 0.027123279869556427, -0.013097807765007019, -0.013747968710958958, -0.0037869764491915703, -0.008159846998751163, -0.004530163947492838, 0.0032936069183051586, 0.01607460528612137, 0.06124773621559143, -0.052181344479322433, -0.039197083562612534, -0.03993234410881996, 0.06702709943056107, 0.048430901020765305, 0.033821120858192444, -0.019957825541496277, 0.012851999141275883, 0.010437363758683205 ]
Q: Cannot connect to websocket server using AHC-WS component in Apache Camel I'm using ACH-WS component in Apache Camel to connect to a websocket server using WSS (Slack's websocket server to be more precise). I have a route like this one: from("ahc-wss://host") .log(...) .to(...) When I init my app I see the following log: Route: wss-inbound-event started and consuming from: Endpoint[ahc-wss://ms109.slack-msgs.com/websocket/....] However it sounds like the connection to the server never happens. If I copy the URL string and use another websocket client it connects and immediately get some welcome messages. This is the proof that AHC-WS component never connected because the URL can only be used once according to Slack's documentation. I wonder if I need to provide additional options to the component in order to work. A: Looking at the code of the component it seems like it expects that you send a message first as the connection is established at that time. If you just create the consumer it won't connect to the URL. To solve my issue what I did was to add a ping message to the Slack API one the app is started. That makes the endpoint connect to the server and starts receiving events.
[ 0.013722531497478485, 0.012362256646156311, -0.022243065759539604, 0.02777780219912529, -0.0018902856390923262, 0.036523353308439255, -0.026429252699017525, 0.013558411970734596, 0.031506434082984924, 0.04335501044988632, 0.010477880947291851, 0.009912360459566116, 0.010959209874272346, -0.041280120611190796, -0.000006701691745547578, -0.004972837399691343, -0.0362989567220211, -0.017508549615740776, -0.02337108738720417, -0.01674005202949047, 0.015415544621646404, 0.011617028154432774, -0.0565715953707695, -0.050731461495161057, -0.011551189236342907, 0.050622567534446716, 0.01583115942776203, -0.01597270742058754, 0.061588238924741745, 0.05376699939370155, -0.001219110912643373, -0.0004365301865618676, 0.038665540516376495, -0.050757426768541336, -0.012850027531385422, -0.05448811873793602, 0.009534131735563278, -0.02365970052778721, -0.0706053078174591, -0.08236865699291229, 0.0065353550016880035, -0.019724717363715172, -0.0018282030941918492, -0.059816278517246246, -0.0421384796500206, 0.013974211178719997, -0.003394349943846464, -0.0268834438174963, 0.0069941249676048756, -0.03488849848508835, -0.028862610459327698, 0.01022301521152258, 0.030472368001937866, -0.01080335769802332, -0.023451965302228928, 0.003492684569209814, -0.01753791980445385, -0.02296607196331024, -0.06329794228076935, 0.02337886206805706, 0.029078351333737373, 0.02256239764392376, -0.0012263109674677253, -0.08156723529100418, 0.03594442456960678, 0.020019061863422394, -0.010295853950083256, 0.01589450053870678, 0.0266928318887949, -0.028347991406917572, -0.01817903481423855, 0.007671247702091932, -0.04717680439352989, -0.05195554718375206, -0.0033889305777847767, 0.02342352829873562, -0.005776614416390657, 0.026644008234143257, 0.007081500254571438, 0.03057565540075302, -0.011340251192450523, 0.0535048171877861, -0.0020146009046584368, 0.003146072383970022, -0.055049847811460495, -0.023243391886353493, -0.009439085610210896, -0.03337429091334343, 0.01515792403370142, 0.007933229207992554, -0.016587665304541588, 0.04683413729071617, 0.0028875605203211308, -0.013684101402759552, 0.018285561352968216, 0.03879088908433914, -0.0607091449201107, 0.023060142993927002, 0.00615739868953824, 0.008224097080528736, 0.04196825250983238, 0.028858607634902, -0.027923014014959335, 0.01573295332491398, -0.03641074523329735, -0.006298841908574104, -0.018322698771953583, 0.0005976248648948967, -0.054317936301231384, -0.022478289902210236, -0.016304653137922287, -0.029165150597691536, -0.007154046092182398, -0.020828960463404655, 0.003933223430067301, 0.04775872081518173, -0.010369569063186646, 0.03621770814061165, -0.05194166675209999, -0.001028224709443748, -0.00534486910328269, 0.004764704033732414, 0.053497277200222015, -0.0018373960629105568, 0.03229183703660965, -0.015803685411810875, -0.0203652735799551, 0.05157855898141861, -0.02466016821563244, -0.03048691526055336, 0.015901105478405952, -0.03150276839733124, 0.0016835950082167983, 0.01536524761468172, -0.014831001870334148, 0.051231950521469116, 0.010889925062656403, 0.03390418365597725, 0.04717942699790001, -0.056910041719675064, 0.01840454339981079, 0.007768944837152958, 0.031263500452041626, 0.09906361997127533, -0.002702611032873392, 0.0387178435921669, -0.0016976918559521437, -0.010388200171291828, -0.04916631802916527, -0.01679348200559616, -0.026631610468029976, 0.012660383246839046, 0.006369515787810087, -0.006515443790704012, -0.004059171769768, 0.004981107544153929, 0.013926682993769646, 0.00257226568646729, 0.014629277400672436, 0.019107967615127563, 0.010206636041402817, 0.052924588322639465, -0.036433231085538864, 0.021985230967402458, -0.03373564034700394, 0.04875234141945839, -0.03961372375488281, -0.02226933464407921, -0.018770841881632805, -0.03874858468770981, 0.03289499506354332, 0.00790648628026247, 0.004129235167056322, 0.010265577584505081, 0.00861942395567894, 0.013839079067111015, 0.007946886122226715, 0.020096104592084885, 0.0004441131604835391, 0.03728081285953522, -0.02142689749598503, 0.0015837633982300758, -0.031472258269786835, 0.08040449768304825, 0.029474256560206413, 0.013967071659862995, 0.013805019669234753, -0.010244104079902172, -0.0015488284407183528, -0.013012761250138283, -0.004519335459917784, 0.02693868800997734, -0.023871470242738724, 0.040620531886816025, 0.02034013904631138, 0.007976669818162918, -0.021364474669098854, 0.017225399613380432, -0.021588919684290886, -0.04057494178414345, -0.015562815591692924, 0.05646755173802376, -0.05325967073440552, 0.0475476048886776, -0.003624123753979802, -0.02744731679558754, 0.0022047082893550396, 0.03588400036096573, -0.04010616987943649, -0.04633006826043129, 0.040021415799856186, 0.03276441618800163, -0.039398133754730225, -0.025346780195832253, 0.026358434930443764, -0.04230162128806114, -0.053899962455034256, 0.04770021140575409, -0.005941831506788731, -0.023773057386279106, -0.010630481876432896, 0.04573771730065346, 0.050654880702495575, 0.027118459343910217, -0.030094683170318604, 0.013005901128053665, 0.008704395964741707, 0.039792489260435104, -0.03095361590385437, -0.008762194775044918, -0.011032884940505028, 0.03339782729744911, 0.014622410759329796, 0.06155695766210556, 0.015466120094060898, 0.01540276501327753, 0.035595495253801346, 0.05086546018719673, -0.005310053937137127, 0.03040379099547863, -0.010794324800372124, 0.03391105681657791, 0.03975807502865791, 0.042356640100479126, -0.008344018831849098, -0.02018076181411743, -0.016844607889652252, -0.0021153059788048267, -0.01693854294717312, 0.018002329394221306, -0.022967727854847908, 0.040329672396183014, 0.05313228815793991, 0.04914622753858566, -0.02961316704750061, -0.0339052714407444, 0.01295616663992405, 0.05147489160299301, -0.04533319175243378, -0.02857997454702854, 0.004717822186648846, 0.02067658118903637, 0.0066328817047178745, -0.002181173535063863, 0.027942419052124023, 0.02563191018998623, 0.011743046343326569, 0.01397623959928751, -0.04113788530230522, -0.05184393748641014, -0.0518571101129055, -0.029936138540506363, -0.035960860550403595, -0.01253843866288662, -0.057965438812971115, 0.0175276268273592, 0.047348201274871826, -0.039410851895809174, 0.032458726316690445, -0.004069828893989325, 0.014609946869313717, -0.012127071619033813, 0.008579215966165066, 0.04651860147714615, 0.02919086441397667, 0.032335154712200165, -0.018305283039808273, 0.019941439852118492, 0.00429754052311182, 0.047205448150634766, -0.016778163611888885, -0.004313732963055372, -0.009435041807591915, -0.033056531101465225, 0.02056226320564747, -0.005816256161779165, -0.014330539852380753, 0.030296504497528076, -0.026641659438610077, -0.04386834055185318, -0.014651942066848278, -0.01797974668443203, 0.019665472209453583, 0.015857193619012833, -0.04953553155064583, 0.05928780883550644, 0.024247368797659874, -0.03786030784249306, 0.0473114475607872, 0.03623932972550392, -0.00889932457357645, 0.051616016775369644, -0.014296004548668861, 0.00025835883570834994, -0.051834240555763245, 0.061019401997327805, 0.04501722753047943, 0.014094673097133636, -0.028892571106553078, -0.022360051050782204, -0.028616169467568398, -0.0029326111543923616, 0.018032053485512733, -0.008575554005801678, -0.004863040987402201, 0.0295869130641222, -0.004531035665422678, -0.06557988375425339, 0.043344467878341675, -0.04952388256788254, -0.03382959961891174, -0.036516692489385605, -0.04270883649587631, 0.03059304505586624, 0.028846053406596184, 0.024980587884783745, -0.006840265356004238, -0.02207891456782818, -0.027983158826828003, 0.02468954399228096, 0.036831870675086975, -0.02850162796676159, 0.053707849234342575, 0.03688158467411995, -0.009873464703559875, -0.0019095788011327386, 0.01879933476448059, -0.028821634128689766, 0.013258458115160465, 0.014403769746422768, -0.023420773446559906, 0.004874210339039564, 0.002679638098925352, 0.019159752875566483, -0.001697031781077385, 0.05922577902674675, -0.060990769416093826, 0.023792268708348274, 0.004956198390573263, 0.00976033415645361, 0.021934112533926964, 0.01845625415444374, -0.00230786157771945, -0.005080134142190218, -0.058901090174913406, -0.053741320967674255, 0.04757513850927353, 0.04345573112368584, 0.09439481049776077, -0.04571685194969177, 0.03641851991415024, 0.006726552732288837, -0.022570613771677017, 0.023970969021320343, -0.0597892589867115, -0.017985451966524124, 0.020146159455180168, 0.003637108486145735, 0.03193972259759903, -0.026783280074596405, 0.007378383073955774, 0.00991548877209425, 0.012480142526328564, 0.04379948973655701, 0.027407899498939514, -0.016101572662591934, -0.046669505536556244, 0.006358893122524023, -0.014363649301230907, -0.015861546620726585, 0.0013352487003430724, -0.022411327809095383, 0.026134800165891647, 0.008958665654063225, -0.04745914787054062, -0.04332679882645607, 0.004246524069458246, 0.01679101400077343, 0.055452316999435425, 0.010728785768151283, 0.01613854616880417, 0.0008296312298625708, 0.023412024602293968, 0.024361414834856987, -0.007844175212085247, 0.016726704314351082, -0.06108170375227928, 0.029988829046487808, 0.000590649142395705, -0.0365171879529953, -0.011576015502214432, -0.04507556930184364, -0.023231474682688713, 0.009226925671100616, 0.01162630133330822, -0.0235183946788311, -0.05283702537417412, 0.026685191318392754, 0.002185581251978874, 0.017006831243634224, -0.013646602630615234, -0.060458820313215256, -0.01829296350479126, 0.06407605856657028, 0.029037535190582275, -0.04410872235894203, -0.011661228723824024, -0.07523791491985321, 0.009232675656676292, 0.054376743733882904, -0.012111559510231018, -0.05353837087750435, -0.02481980249285698, -0.028411315754055977, -0.0468146875500679, 0.01197019312530756, 0.045667700469493866, 0.02912234142422676, -0.024404820054769516, -0.02136671543121338, 0.012830125167965889, 0.01721300184726715, -0.005266391672194004, -0.021152403205633163, -0.0029761933255940676, 0.018164385110139847, -0.0068504237569868565, 0.02805410325527191, -0.03637837618589401, -0.025915518403053284, 0.01031515747308731, -0.055793218314647675, 0.008342361077666283, -0.022845201194286346, -0.021430574357509613, -0.001079790759831667, 0.022886520251631737, 0.03181571885943413, 0.02776052989065647, -0.02552647329866886, 0.0019259132677689195, -0.009805918671190739, 0.05839625746011734, -0.030573267489671707, 0.0071425121277570724, 0.043376438319683075, -0.011286602355539799, -0.005169390235096216, 0.02293625846505165, 0.039889417588710785, -0.004178170580416918, 0.0007492199074476957, 0.005097281653434038, -0.03414815291762352, 0.006695334799587727, -0.03948633372783661, -0.000010721793842094485, 0.008148442953824997, -0.020933639258146286, 0.016039367765188217, -0.0407295823097229, 0.05177028104662895, 0.01855825074017048, -0.009717569686472416, 0.003084424417465925, -0.049483537673950195, 0.005453243386000395, -0.015946093946695328, -0.0025356675032526255, 0.03826699033379555, 0.0007867549429647624, -0.007802746724337339, -0.011845119297504425, -0.021989870816469193, 0.019004058092832565, -0.0042561921291053295, 0.0008691655239090323, 0.017755962908267975, 0.050991255789995193, 0.05370066687464714, 0.028120392933487892, -0.01544636394828558, -0.0559220165014267, -0.023472361266613007, -0.02255125902593136, -0.010275322012603283, -0.02056087553501129, 0.016330303624272346, -0.02718631736934185, -0.020815016701817513, 0.00323239853605628, 0.0021819397807121277, -0.007112869061529636, 0.001830721041187644, 0.022257311269640923, 0.020918861031532288, 0.014384136535227299, 0.012979449704289436, -0.051852598786354065, 0.03114977478981018, 0.034203629940748215, -0.05775412172079086, -0.01579548977315426, 0.01852714829146862, -0.026371661573648453, 0.06834366172552109, 0.031061580404639244, -0.04722971469163895, -0.02825559489428997, -0.056884318590164185, 0.006749355234205723, -0.031170353293418884, -0.02173624001443386, -0.03965378925204277, -0.03105422854423523, -0.025495052337646484, 0.046906083822250366, 0.01568509079515934, 0.006660006009042263, 0.003521922044456005, -0.041922178119421005, 0.016393408179283142, -0.047620899975299835, -0.02352214604616165, -0.0033281706273555756, 0.0285743810236454, 0.02732625976204872, 0.04536999389529228, -0.01140153594315052, 0.03137507662177086, 0.004798962268978357, 0.013161763548851013, 0.01394216250628233, 0.003191503928974271, -0.03316310793161392, -0.01815468817949295, -0.014413024298846722, -0.012499245814979076, 0.004683455917984247, 0.002099576871842146, -0.005372689105570316, 0.04702265188097954, -0.01757657714188099, -0.016969146206974983, -0.034133367240428925, -0.003278984921053052, -0.015771470963954926, 0.03327147662639618, 0.058056581765413284, -0.0114950155839324, 0.021511826664209366, 0.01114464458078146, 0.05954596772789955, 0.009783211164176464, -0.0018883745651692152, -0.06104901805520058, -0.011304758489131927, -0.027905479073524475, -0.04587407037615776, 0.010729028843343258, -0.015931881964206696, -0.03155772387981415, -0.05245760455727577, -0.040674980729818344, 0.046477243304252625, -0.01392397005110979, 0.0370309092104435, 0.04330863058567047, -0.030486809089779854, 0.012892207130789757, -0.03587820380926132, 0.07382228225469589, 0.03221398591995239, -0.003909922204911709, -0.016012733802199364, -0.00014014585758559406, -0.016849592328071594, -0.007490123156458139, -0.040823549032211304, -0.015977079048752785, -0.025171929970383644, -0.018074987456202507, 0.036008503288030624, -0.00430285045877099, 0.02822759561240673, 0.012473434209823608, -0.040494710206985474, -0.035680536180734634, 0.03939700126647949, 0.02871653437614441, 0.014085949398577213, 0.03037346340715885, 0.02190345898270607, -0.010892095044255257, 0.008514613844454288, 0.005531545262783766, 0.004686945583671331, -0.030624812468886375, 0.05404995381832123, -0.035680029541254044, -0.00556926941499114, 0.04379808530211449, 0.05318904668092728, -0.03798636421561241, -0.045708898454904556, -0.02459617331624031, 0.010301939211785793, -0.01489789318293333, -0.016346776857972145, -0.006266895215958357, -0.023540597409009933, -0.0002604590845294297, 0.005496712401509285, 0.024610955268144608, 0.0053100017830729485, 0.01530491653829813, -0.016315437853336334, 0.027799930423498154, -0.05237488076090813, 0.007033990230411291, 0.07085482031106949, -0.0008865064010024071, -0.04770175740122795, -0.06280777603387833, 0.01408667117357254, -0.02769126556813717, -0.02555634081363678, 0.020131975412368774, -0.045834120362997055, 0.030658861622214317, 0.026486923918128014, -0.007210099138319492, 0.05259588733315468, -0.006921326741576195, 0.031437162309885025, 0.04287837818264961, -0.04038964584469795, -0.07063838839530945, -0.024097876623272896, 0.027046894654631615, -0.013783388771116734, 0.04992891103029251, -0.03745486959815025, 0.025663360953330994, 0.023855045437812805, 0.012410941533744335, 0.00825265608727932, -0.051345109939575195, -0.04610921069979668, -0.051481638103723526, -0.034527506679296494, -0.04393494874238968, 0.019150927662849426, -0.0021624367218464613, 0.01613514870405197, 0.007003195118159056, -0.019971301779150963, -0.015686729922890663, 0.022235220298171043, 0.005419878289103508, -0.014118448831140995, -0.029349137097597122, 0.017622897401452065, -0.05144066363573074, -0.042787931859493256, -0.038975004106760025, 0.01651112362742424, 0.01520569808781147, 0.00633822288364172, -0.012407436035573483, 0.02568226493895054, -0.05125083774328232, 0.027008946985006332, 0.00176552205812186, 0.04156572371721268, -0.016850430518388748, -0.046554144471883774, 0.0020694960840046406, 0.0174426082521677, -0.0031821290031075478, 0.037198349833488464, 0.019217034801840782, -0.033875808119773865, 0.0432736836373806, 0.031595561653375626, -0.013601900078356266, -0.01591910794377327, -0.019069062545895576, 0.008017078973352909, 0.021791858598589897, -0.04381541907787323, -0.018412623554468155, 0.02288740873336792, -0.041458263993263245, 0.033029910176992416, -0.03785290941596031, 0.002138466341421008, -0.0008703155326656997, 0.001961676636710763, 0.017161775380373, 0.05949965864419937, -0.013384925201535225, 0.03464140370488167, -0.024534111842513084, 0.04943619668483734, 0.024810291826725006, 0.020428350195288658, 0.01465771533548832, 0.015717830508947372, 0.0015027899062260985, -0.03758062794804573, 0.037037890404462814, -0.0008647399954497814, -0.0023946231231093407, 0.02489175833761692, -0.03879164159297943, -0.005941889714449644, -0.010728285647928715, -0.026537319645285606, 0.002847620053216815, 0.0419052429497242, -0.018106821924448013, 0.006313337478786707, 0.04671553894877434, -0.027783947065472603, -0.019967136904597282, 0.03284360095858574, -0.0770939365029335, -0.009496558457612991, 0.031395986676216125, -0.017710747197270393, -0.025275278836488724, -0.02314927615225315, -0.05423472076654434, 0.020670898258686066, -0.002707266015931964, -0.02274652011692524, -0.0018948176875710487, 0.036288417875766754, 0.008173655718564987, 0.044809192419052124, -0.022015342488884926, -0.005101080052554607, 0.009945373982191086, 0.055773667991161346, -0.03758487477898598, -0.059414565563201904, 0.00582759827375412, 0.05549732595682144, 0.016008121892809868, -0.00882297195494175, -0.019321486353874207, 0.030812064185738564, -0.027326339855790138, 0.031053222715854645, 0.016831496730446815, -0.013754991814494133, -0.048785269260406494, 0.020641621202230453, -0.01450912281870842, 0.0035289928782731295, -0.03957495093345642, 0.018704744055867195, 0.03846359997987747, -0.008540024049580097, -0.022637413814663887, 0.034328196197748184, 0.05427151545882225, -0.016788294538855553, 0.009258951991796494, 0.017550472170114517, 0.02403928153216839, -0.0011744486400857568, 0.011882953345775604, -0.025564098730683327, 0.05116920545697212, 0.022459277883172035, 0.0640905424952507, 0.026977812871336937, 0.017678838223218918, 0.036771662533283234, -0.015899768099188805, -0.025488082319498062, 0.049764785915613174, 0.023460298776626587, -0.050513558089733124, 0.05284604802727699, -0.05475122854113579, 0.0043255179189145565, 0.0028486689552664757, -0.01926601678133011, -0.009044049307703972, -0.010714194737374783, 0.002023281529545784, 0.0010367580689489841, 0.0007242453284561634, 0.02707585319876671, -0.020597007125616074, 0.014741988852620125, -0.021358348429203033, -0.02305922657251358, 0.00946201104670763, 0.05198129266500473, 0.0016004100907593966, 0.010462191887199879, 0.014519686810672283, 0.059426989406347275, 0.02836659923195839, 0.00810419861227274, -0.01337940152734518, 0.021899443119764328, -0.03644036501646042, -0.005512534640729427, 0.00408867746591568, -0.013564429245889187, -0.003899869043380022, 0.022411681711673737, -0.03960593789815903, 0.02301647886633873, -0.04335124418139458, -0.006203533615916967, 0.036386776715517044, -0.009717271663248539, -0.01896136812865734, -0.01782361790537834, 0.0010618013329803944, -0.04472099244594574, -0.008145646192133427, 0.01630301959812641, 0.021626492962241173, -0.02731913886964321, 0.06315842270851135, -0.013848486356437206, 0.04918885603547096, -0.0015597570454701781, 0.04507885500788689, -0.006324805319309235, 0.05267566815018654, 0.03444112092256546, -0.021613799035549164, -0.024742208421230316, 0.03570452332496643, -0.028702249750494957, -0.04782193526625633, 0.008413320407271385, -0.03707120567560196, 0.0034044580534100533, -0.04640073701739311, -0.03508075699210167, -0.047018930315971375, 0.031687356531620026, -0.02546689100563526, -0.06569225341081619, 0.007330923806875944, 0.025621576234698296, -0.05014113336801529, 0.014747481793165207, 0.05168856680393219, 0.034327778965234756, -0.027069121599197388, -0.039977651089429855, -0.02851106971502304, -0.025882359594106674, 0.011364332400262356, -0.0440811812877655, 0.04912226274609566, -0.017337704077363014, -0.017895428463816643, -0.03570738062262535, -0.017525019124150276, -0.004010239150375128, -0.02615947648882866, -0.0237188171595335, 0.00040609305142425, 0.017416363582015038, 0.04176650941371918, 0.02283710241317749, 0.01975117065012455, -0.011336632072925568, -0.008070656098425388, 0.016494469717144966, 0.07482096552848816, 0.019059184938669205, 0.042222969233989716, 0.04940269887447357, -0.03004942089319229, 0.002074699616059661, -0.023079847916960716, 0.04501502960920334, 0.012545122765004635, -0.009291533380746841, -0.024927593767642975, 0.0005990536883473396, -0.04169704020023346, -0.03845132142305374, -0.0056950864382088184, 0.017286021262407303, 0.016912423074245453, -0.047281261533498764, -0.06419160217046738, -0.019307130947709084, -0.04448568448424339, -0.028355062007904053, -0.053991686552762985, 0.02868175134062767, 0.034456975758075714, -0.03043924644589424, 0.02254101075232029, -0.03700614720582962, 0.15162216126918793, 0.02461010217666626, 0.04828691855072975, -0.005187072325497866, 0.010186056606471539, 0.07180095463991165, 0.024955417960882187, 0.006459493190050125, 0.029376165941357613, -0.05686976760625839, 0.025261787697672844, -0.006095084361732006, 0.034796323627233505, 0.0364912748336792, 0.004122848156839609, 0.07597782462835312, -0.041870445013046265, -0.019872238859534264, 0.019229155033826828, -0.055951088666915894, -0.054334238171577454, 0.015680896118283272, 0.001107807387597859, 0.063991479575634, 0.00042525731259956956, 0.02415015548467636, 0.018586836755275726, -0.056072767823934555, -0.0019246955635026097, -0.03815619647502899, 0.026243451982736588, 0.013510211370885372, 0.03538747504353523, -0.017677336931228638, -0.017104096710681915, 0.05465816333889961, 0.03495938703417778, -0.0017398748314008117, 0.018491771072149277, -0.005120127461850643, 0.009357142262160778, -0.01021709106862545, 0.011714750900864601, -0.026949161663651466, -0.007166695781052113, 0.018992597237229347, -0.01656123623251915, 0.003883135039359331, 0.02901197038590908, -0.04031338542699814, 0.02496526762843132, -0.02549559995532036, 0.027893783524632454, -0.008623553439974785, -0.026998184621334076, -0.015614526346325874, 0.006445372011512518, -0.028853606432676315, -0.022578289732336998, -0.022235028445720673, 0.021947627887129784, 0.009526225738227367, -0.03526172786951065, 0.005349996034055948, -0.039004262536764145, -0.01510548871010542, 0.03783055767416954, 0.017735246568918228, -0.013108077459037304, -0.0023803336080163717, -0.025167910382151604, -0.014777413569390774, -0.020282933488488197, -0.058676496148109436, 0.00037504106876440346, 0.05723457410931587, -0.025811949744820595, 0.04969741404056549, 0.01620614528656006, -0.012925351969897747, -0.02892909198999405, -0.013423585332930088, -0.017852414399385452, -0.030218718573451042, 0.02361699752509594, 0.040328606963157654, -0.057906780391931534, -0.06894156336784363, -0.04573119804263115, 0.024213271215558052, 0.08004893362522125, 0.005129442550241947, -0.015481417067348957, 0.025708314031362534, 0.0022759607527405024 ]
Around this time last year, I met with some of my friends who are part of to talk about something I had wanted to see for a long time: a story on เอสบีโอเบท ในไทย relishes, nam phrik. These dishes form the most significant segment of เอสบีโอเบท ในไทย cuisine, but they're the least understood and the least appreciated. I thought it was about time this changed. Western food media doesn't like to publish a story like this. It's too niche. It doesn't have a broad appeal. For them, it doesn't make sense to dedicate their precious real estate on something most people don't already know and love. Nam phrik, therefore, hasn't received a lot of coverage in mainstream publications, and when it does, the coverage doesn't go deep and is often rife with misinformation. For a country that takes such great pride in its cuisine, เอสบีโอเบท ในไทยland, surprisingly, hasn't seemed very enthusiastic about spotlighting its food in its cinematic endeavors. If it's true that art imitates life, then it's quite perplexing how the magnitude of the love the เอสบีโอเบท ในไทย people have for their food and the enormity of the role food plays in their lives—all obvious to even the most casual observers—haven't really manifested themselves on silver screen and television. And the few times when food and eating were incorporated into films and dramas, it was rarely done with any perceptible sense of intentionality. Here's a simple dipping sauce that I made the other day just as I've done hundreds of times in my life. It's very easy to make; it doesn't require special ingredients; it is extremely versatile.
[ -0.01264249812811613, -0.012690986506640911, -0.021812887862324715, -0.015862781554460526, -0.018163027241826057, -0.01924894005060196, 0.010863047093153, 0.04553479701280594, 0.002460759598761797, 0.013788379728794098, 0.04014964774250984, -0.018934667110443115, 0.022294051945209503, -0.024479595944285393, -0.024485446512699127, -0.010674964636564255, -0.0019178049406036735, -0.041011661291122437, -0.031385015696287155, -0.009923323057591915, 0.014575961977243423, -0.011833341792225838, -0.06646240502595901, -0.03028540313243866, -0.0002825908886734396, 0.026011688634753227, 0.021033190190792084, -0.02609878219664097, 0.05965089425444603, 0.03530581668019295, 0.0068125044927001, -0.011220493353903294, 0.021331405267119408, -0.05480692908167839, -0.008141353726387024, -0.03786604106426239, 0.02699148841202259, -0.030344819650053978, -0.004897686652839184, -0.03691438212990761, 0.017388157546520233, -0.03442716225981712, 0.06473369151353836, -0.020607206970453262, -0.03308282420039177, 0.005874856375157833, -0.014615857973694801, -0.03725132346153259, 0.05530155822634697, -0.024832021445035934, 0.016866378486156464, -0.002869006246328354, 0.025675956159830093, 0.03183518722653389, 0.0048710061237216, 0.018431061878800392, 0.015067574568092823, -0.009328675456345081, -0.009977750480175018, 0.03282950073480606, 0.0023651134688407183, -0.018494701012969017, 0.018650759011507034, -0.08325543999671936, 0.020631685853004456, 0.001989698503166437, 0.004824481438845396, -0.029251638799905777, 0.012652202509343624, -0.012247140519320965, 0.007925769314169884, 0.00423035491257906, -0.04342762008309364, -0.018890326842665672, -0.011609266512095928, -0.025121480226516724, 0.011802301742136478, -0.0001881431817309931, 0.0021156209986656904, 0.02554921619594097, -0.015086556784808636, 0.08758131414651871, 0.012649495154619217, 0.02569904923439026, -0.049362581223249435, 0.001353868399746716, 0.0044336640276014805, 0.029218152165412903, -0.006942385341972113, 0.011768518947064877, 0.0025259354151785374, 0.04062991589307785, -0.024988681077957153, -0.028119508177042007, 0.036357685923576355, 0.020457953214645386, -0.03384238854050636, 0.04949809983372688, -0.006356085650622845, -0.005490083713084459, 0.044755205512046814, 0.032332032918930054, 0.0018495287513360381, 0.02533414587378502, -0.027741454541683197, 0.011846709065139294, -0.016886262223124504, -0.012714644894003868, -0.02108369767665863, -0.02751266211271286, -0.00751458527520299, -0.025022974237799644, -0.01966671645641327, -0.01535142119973898, -0.01497043389827013, 0.036541491746902466, -0.003643288742750883, 0.04269649088382721, -0.051509346812963486, 0.013409440405666828, 0.001706011244095862, -0.012645863927900791, 0.03736676648259163, -0.04050125554203987, 0.028096038848161697, -0.030297856777906418, -0.015119603835046291, 0.04047654569149017, -0.03740718960762024, 0.0027669297996908426, 0.004504305310547352, -0.032895468175411224, 0.001899461611174047, 0.024571798741817474, -0.04058457165956497, 0.02461298741400242, -0.03008178062736988, 0.010171433910727501, 0.006271569523960352, -0.06815578043460846, 0.038657866418361664, 0.007741985376924276, 0.0018902987940236926, 0.08574388176202774, 0.018480705097317696, 0.020393474027514458, -0.016926061362028122, -0.017238963395357132, -0.0038215038366615772, 0.04002714902162552, -0.004289988428354263, 0.00032036236370913684, -0.014351914636790752, 0.0073946258053183556, -0.03561760112643242, -0.001824024016968906, 0.005858861841261387, 0.009198209270834923, 0.011156339198350906, 0.03941098228096962, -0.013655152171850204, -0.009904727339744568, -0.01775047928094864, 0.05480483919382095, 0.009021375328302383, 0.07095664739608765, -0.03987765312194824, -0.013896637596189976, 0.002123206155374646, -0.054580286145210266, 0.018004491925239563, 0.004262704402208328, -0.03448392450809479, 0.013794982805848122, 0.006063411012291908, 0.07433287054300308, 0.03811606764793396, -0.029812980443239212, 0.04836057126522064, 0.054672300815582275, -0.06132547929883003, 0.0206086914986372, -0.019749023020267487, 0.0587778203189373, 0.010435430333018303, -0.028242841362953186, -0.03594035282731056, -0.037650760263204575, -0.039951879531145096, -0.01699559949338436, -0.010798514820635319, 0.02902361750602722, -0.02671249955892563, 0.02625659480690956, 0.022000931203365326, 0.004778377711772919, 0.006135524716228247, -0.010201452299952507, 0.01739748939871788, -0.05442708358168602, -0.023586928844451904, 0.04703871160745621, -0.007553614675998688, 0.038937393575906754, -0.0049029323272407055, -0.009196653962135315, 0.029838325455784798, 0.0610680878162384, -0.06193849816918373, 0.010515005327761173, 0.008190568536520004, -0.024946875870227814, -0.02831999398767948, -0.02668459713459015, -0.026355862617492676, -0.0446607880294323, -0.026893185451626778, 0.04406127333641052, -0.00978646520525217, 0.004210030194371939, 0.04653749242424965, 0.027991101145744324, 0.029490983113646507, 0.011004009284079075, -0.00014682371693197638, 0.01072190422564745, -0.0036264415830373764, 0.05543956905603409, -0.03581833094358444, -0.0259809959679842, -0.035961393266916275, 0.03636350855231285, 0.01745479367673397, 0.056140732020139694, 0.05662195757031441, 0.02476932667195797, 0.020581673830747604, 0.027632305398583412, 0.011982846073806286, 0.016441579908132553, 0.029940638691186905, -0.004451030865311623, 0.011704802513122559, 0.03262578323483467, 0.0026738408487290144, 0.029721612110733986, 0.02732807584106922, -0.00859158206731081, -0.0037109998520463705, 0.02980290912091732, 0.0032859460916370153, 0.03547689691185951, 0.07752577215433121, 0.04855727776885033, -0.014746489934623241, -0.012173982337117195, 0.034290656447410583, 0.07116520404815674, -0.030799388885498047, -0.012109997682273388, -0.009302164427936077, 0.02098512277007103, 0.00789588876068592, 0.01329584140330553, 0.01744810678064823, 0.0007401340990327299, -0.029971212148666382, 0.024839645251631737, -0.019978193566203117, -0.024975154548883438, -0.03460792452096939, -0.03394283726811409, -0.040403593331575394, -0.02513820491731167, -0.04079093039035797, 0.018471185117959976, 0.04150663688778877, -0.021204281598329544, 0.015819694846868515, 0.02182867005467415, -0.019374359399080276, -0.01784268207848072, -0.031001390889286995, 0.04013611003756523, 0.04448133334517479, 0.030533934012055397, -0.03107331693172455, 0.054899800568819046, 0.0024640371557325125, 0.054560206830501556, -0.0032397895120084286, -0.01516189705580473, -0.007379484828561544, 0.023734090849757195, 0.027223531156778336, 0.013327331282198429, -0.015352338552474976, -0.028201483190059662, -0.007208268623799086, -0.04890735074877739, 0.021403728052973747, -0.003549132263287902, -0.016376810148358345, 0.004507955629378557, -0.03693276271224022, 0.01909318007528782, 0.011748659424483776, -0.02037481963634491, 0.04349018633365631, 0.008976384997367859, -0.030097439885139465, 0.02663780376315117, -0.006424959748983383, 0.0223577581346035, -0.03838726505637169, 0.03566811606287956, 0.05187564343214035, 0.011527448892593384, -0.004423496313393116, -0.024296682327985764, -0.04155799746513367, -0.0016520158387720585, 0.026654411107301712, -0.03776339441537857, -0.03571447357535362, 0.016658881679177284, 0.04935983940958977, -0.07020795345306396, 0.03363150358200073, -0.032808687537908554, -0.013827904127538204, -0.021718764677643776, -0.03371737524867058, 0.04166179895401001, 0.027345163747668266, -0.00023700419114902616, 0.01800846867263317, -0.00001472064741392387, -0.007443829905241728, 0.028654182329773903, 0.046865593641996384, -0.033483024686574936, -0.0003610870335251093, 0.03654351457953453, -0.013234725221991539, 0.0430154986679554, 0.013394675217568874, -0.017027651891112328, -0.014724032022058964, -0.0025203581899404526, 0.026864051818847656, 0.025355588644742966, 0.031922753900289536, 0.03311716392636299, 0.010937603190541267, 0.07080551236867905, -0.020856386050581932, -0.022223029285669327, 0.02630244381725788, -0.004838730674237013, 0.006890004966408014, -0.0068855308927595615, 0.006183075252920389, -0.011792130768299103, -0.04681698605418205, -0.02841474860906601, 0.025083690881729126, -0.01484094001352787, 0.038840893656015396, -0.04217878356575966, 0.05714453384280205, 0.010204782709479332, -0.02013334631919861, 0.030207457020878792, -0.06794387102127075, 0.015103780664503574, 0.048655539751052856, 0.004291895776987076, 0.013643205165863037, -0.050816118717193604, 0.007980486378073692, -0.021274983882904053, 0.03783620893955231, 0.0483565479516983, -0.025617798790335655, 0.031564705073833466, -0.031327247619628906, -0.03357516601681709, 0.006421052850782871, -0.036796532571315765, -0.020792771130800247, -0.0168303232640028, 0.021938946098089218, -0.014032387174665928, -0.04581143334507942, -0.03596780076622963, 0.032476529479026794, 0.022011075168848038, 0.06947960704565048, 0.0027998732402920723, 0.04915391653776169, 0.034966371953487396, 0.014000159688293934, 0.024679681286215782, 0.004032457247376442, -0.01879587583243847, -0.026369085535407066, 0.03341493755578995, 0.007491222117096186, -0.02564489282667637, -0.012430521659553051, -0.016292273998260498, -0.01459431927651167, 0.016327040269970894, -0.020602673292160034, 0.005109394900500774, -0.02679138258099556, 0.009205814450979233, -0.004515341483056545, 0.01963084749877453, -0.05065913498401642, -0.0025174065958708525, -0.015208910219371319, 0.01902250200510025, 0.03141186013817787, -0.053629957139492035, 0.01219254732131958, -0.026425259187817574, 0.0799010694026947, 0.015470222570002079, -0.01587362214922905, -0.06187257543206215, -0.021387506276369095, -0.03095630742609501, -0.04748353362083435, 0.0396842323243618, 0.03450625762343407, -0.01467067003250122, 0.027400121092796326, -0.045746952295303345, 0.0009261897066608071, 0.019855916500091553, -0.0008168930071406066, -0.0039128572680056095, -0.0032950115855783224, 0.021362842991948128, -0.010137087665498257, 0.04509340226650238, -0.02347847819328308, -0.03829793632030487, 0.011035528033971786, -0.04203971102833748, 0.005581954028457403, 0.017879988998174667, -0.024464866146445274, 0.022323762997984886, 0.01280361320823431, 0.011663041077554226, 0.012766549363732338, 0.028242086991667747, 0.005899844225496054, -0.007063944824039936, 0.0307630468159914, -0.03731240704655647, -0.04599166661500931, 0.04487813636660576, -0.008232172578573227, -0.03454362601041794, 0.024181358516216278, 0.042091742157936096, -0.008216042071580887, 0.009926612488925457, 0.01359754242002964, -0.05932085961103439, 0.02886841632425785, -0.026227422058582306, 0.011739534325897694, 0.02973092719912529, -0.02893463335931301, 0.015605373308062553, -0.050808001309633255, 0.05001099035143852, 0.018882302567362785, -0.022749686613678932, -0.03215940669178963, -0.052803173661231995, -0.020413557067513466, 0.02450791373848915, 0.005810033995658159, 0.014146309345960617, -0.012441802769899368, -0.022070929408073425, -0.0011839153012260795, -0.004428711254149675, -0.012384070083498955, -0.038088273257017136, 0.005417757201939821, 0.004664574284106493, -0.009465248323976994, 0.014241676777601242, -0.002034219214692712, -0.021595725789666176, -0.03711261972784996, -0.023855198174715042, -0.015147477388381958, 0.02697020396590233, -0.04691692441701889, 0.010891295038163662, -0.021489541977643967, -0.0013801736058667302, -0.026814626529812813, -0.011658420786261559, -0.013518847525119781, 0.0037036023568361998, 0.02698446996510029, 0.04158049076795578, 0.0033443670254200697, 0.004780967719852924, -0.029742777347564697, 0.030049867928028107, -0.0034449556842446327, -0.048369988799095154, -0.06099995598196983, 0.01816069707274437, -0.03126269578933716, 0.03969532623887062, -0.00442440016195178, -0.02107628434896469, -0.056739818304777145, -0.08474341779947281, -0.012759929522871971, -0.027541445568203926, -0.023436488583683968, -0.04232730343937874, -0.04051801934838295, -0.021400559693574905, 0.04455341771245003, 0.004498456139117479, 0.008924397639930248, 0.0034645621199160814, -0.049788229167461395, 0.0090956324711442, 0.005717788822948933, -0.041367579251527786, -0.022516584023833275, -0.025844918563961983, -0.021461518481373787, 0.05839173495769501, -0.014010105282068253, 0.055687446147203445, -0.0054329815320670605, 0.012644577771425247, 0.04017671197652817, -0.0071975537575781345, -0.027525443583726883, -0.03887485712766647, 0.011439364403486252, 0.02030007354915142, 0.007930289022624493, 0.016003666445612907, -0.033465974032878876, 0.06118108332157135, -0.053737010806798935, 0.009771115146577358, -0.037231091409921646, 0.018080350011587143, 0.009275768883526325, -0.01694616861641407, 0.04818801209330559, 0.00023615878308191895, 0.010169831104576588, -0.06501520425081253, 0.06523497402667999, 0.06090964376926422, -0.013953198678791523, -0.04871799796819687, -0.03360901027917862, -0.04387480765581131, -0.05069086328148842, 0.027109257876873016, -0.03487752750515938, -0.01713087223470211, -0.021177325397729874, 0.005142777692526579, 0.046353135257959366, -0.03218718618154526, 0.05546564236283302, 0.06503906100988388, -0.002536232117563486, -0.01794469729065895, -0.04101451113820076, 0.028569908812642097, 0.06464456021785736, -0.05792151764035225, -0.026746047660708427, -0.013688022270798683, -0.04436757043004036, -0.0039368243888020515, -0.012444188818335533, -0.03750715032219887, -0.029815612360835075, 0.008827066980302334, 0.05798439681529999, -0.017767291516065598, 0.0354921780526638, 0.018143029883503914, -0.057402342557907104, -0.04404512792825699, 0.04296747222542763, 0.022602783516049385, 0.002478345762938261, 0.04867679998278618, -0.0006465109181590378, -0.004210352897644043, 0.04610670357942581, 0.02058311179280281, -0.0026802760548889637, -0.024883724749088287, 0.04881047084927559, -0.005394328851252794, -0.04498039186000824, 0.0304556991904974, 0.046263229101896286, -0.08801344037055969, -0.05000074580311775, -0.002475501038134098, -0.007132238708436489, 0.012935055419802666, -0.018564023077487946, -0.004283606540411711, -0.03171625733375549, 0.0233061034232378, 0.01679346151649952, 0.03858226537704468, -0.021842988207936287, 0.031342312693595886, 0.007984776049852371, 0.02395404689013958, -0.040194422006607056, 0.015248014591634274, 0.024738004431128502, -0.03326628357172012, -0.02689114771783352, -0.04116645082831383, -0.001663099741563201, -0.007996635511517525, -0.005276208743453026, 0.024651145562529564, -0.013560155406594276, -0.003083742456510663, 0.022149797528982162, -0.001131636556237936, 0.029759639874100685, 0.01477789506316185, -0.021291788667440414, 0.02607242576777935, -0.04681873321533203, -0.04536006227135658, -0.048101235181093216, 0.022415898740291595, -0.019190117716789246, 0.021153990179300308, -0.03642182797193527, 0.0061924341134727, 0.010235347785055637, -0.013634905219078064, 0.014413920231163502, -0.04178273677825928, -0.026495784521102905, -0.06490889191627502, -0.05762806534767151, -0.041834451258182526, -0.0029262988828122616, 0.007239891216158867, 0.011761737987399101, 0.02947833761572838, -0.047879792749881744, -0.021367134526371956, 0.0011755416635423899, -0.03947048634290695, 0.007918025366961956, -0.03146887198090553, 0.04423173516988754, -0.017645899206399918, -0.033460162580013275, -0.011837045662105083, -0.004881756380200386, -0.02725229598581791, 0.016139771789312363, 0.007272462826222181, 0.006749378517270088, 0.005942071322351694, 0.020768718793988228, 0.01800704374909401, 0.011975827626883984, -0.006955440156161785, -0.04394569247961044, 0.007630689535290003, 0.0438239723443985, 0.014803760685026646, 0.044391341507434845, -0.007800006773322821, -0.04281044751405716, 0.019158465787768364, -0.008646954782307148, -0.03769350051879883, -0.04333849623799324, -0.00873514823615551, -0.003225350985303521, 0.009422740899026394, -0.026785152032971382, -0.007600476033985615, -0.011502753011882305, -0.025678159669041634, 0.006649443414062262, -0.02140446938574314, 0.012633786536753178, 0.031020626425743103, 0.025658806785941124, 0.005100821144878864, 0.06299105286598206, -0.008092045783996582, 0.06775056570768356, -0.0037326121237128973, 0.03307681903243065, 0.024367962032556534, 0.024473659694194794, 0.03252359479665756, 0.03361770510673523, 0.04186351224780083, -0.035003673285245895, -0.012311304919421673, 0.06162107735872269, 0.027003660798072815, 0.045683737844228745, -0.024061115458607674, -0.024251485243439674, -0.04898605868220329, -0.01231595128774643, 0.0016836973372846842, 0.03656572848558426, -0.024518614634871483, -0.02646416425704956, -0.00019274046644568443, -0.03548846021294594, -0.028447721153497696, -0.039112888276576996, -0.03565789759159088, -0.030936947092413902, 0.05238804966211319, -0.041260503232479095, 0.007767960894852877, -0.01294571254402399, -0.021420327946543694, 0.015549502335488796, -0.02852853760123253, 0.0009853909723460674, -0.004195637535303831, 0.0057325237430632114, -0.031075865030288696, 0.06439009308815002, -0.028297610580921173, -0.010069028474390507, 0.004465586971491575, 0.02282899245619774, -0.06147328391671181, -0.05310678854584694, 0.021944941952824593, 0.017853569239377975, 0.010097239166498184, -0.011163245886564255, -0.021982623264193535, 0.014451800845563412, -0.009557622484862804, -0.0077981469221413136, 0.011438906192779541, 0.012584315612912178, -0.007923762314021587, 0.04083918407559395, 0.013140755705535412, -0.024093983694911003, -0.034278299659490585, 0.03934578225016594, 0.017808424308896065, -0.012167735956609249, -0.014583510346710682, 0.062785804271698, 0.03339436277747154, 0.01293707825243473, 0.05397474020719528, 0.027817359194159508, 0.03179119899868965, -0.01884876750409603, 0.04208550974726677, 0.00839221104979515, 0.029686743393540382, 0.04741327464580536, 0.023166542872786522, -0.019152415916323662, 0.0075176614336669445, 0.0335502102971077, -0.01611195132136345, 0.0015391346532851458, 0.029474548995494843, 0.03774995729327202, -0.027490563690662384, 0.006419862154871225, -0.008175099268555641, -0.008659799583256245, 0.007850496098399162, -0.02517607994377613, -0.0017733367858454585, -0.042790841311216354, 0.02027580514550209, 0.009749386459589005, -0.019672444090247154, 0.047189269214868546, -0.049331046640872955, 0.009196288883686066, -0.014781213365495205, 0.0024834703654050827, 0.00007097600609995425, 0.035056255757808685, 0.003994016908109188, 0.010076433420181274, 0.049008432775735855, 0.020168032497167587, -0.011099255643785, 0.04299856722354889, 0.0017731833504512906, 0.00440084608271718, -0.03630688786506653, 0.009649563580751419, 0.023329459130764008, -0.01559301745146513, -0.028559211641550064, 0.015424570068717003, -0.002424833830446005, 0.04765446484088898, -0.04530784487724304, -0.0029714247211813927, 0.030673407018184662, -0.02244396135210991, -0.04228253290057182, -0.07194186747074127, 0.052096374332904816, -0.03156992420554161, 0.01136005762964487, 0.003923495765775442, 0.014230013824999332, -0.02588404342532158, 0.030126575380563736, -0.014982677064836025, 0.03905973955988884, 0.0270729660987854, 0.07016980648040771, -0.040489837527275085, 0.009832196868956089, 0.05681344494223595, 0.0030799650121480227, -0.02717854082584381, -0.02474493719637394, 0.013056236319243908, -0.0364018939435482, -0.01003683265298605, -0.04542146623134613, 0.00039034776273183525, -0.028308603912591934, -0.03559988737106323, 0.018826469779014587, 0.05741269513964653, 0.022459279745817184, -0.05173973739147186, 0.019917186349630356, 0.03889257460832596, -0.04667725786566734, 0.0019699980039149523, 0.005156053230166435, 0.03098907321691513, -0.0053816125728189945, 0.03500416874885559, -0.06479212641716003, -0.020652424544095993, -0.01699402928352356, -0.01538551039993763, 0.06646735221147537, -0.027820609509944916, -0.03636227175593376, -0.03308390453457832, -0.046261321753263474, -0.015774335712194443, 0.00313025014474988, -0.03463476896286011, -0.05933636799454689, 0.05315062031149864, 0.028473246842622757, 0.0025145215913653374, -0.004444746766239405, -0.032509200274944305, 0.008258236572146416, 0.01774277351796627, 0.06734555214643478, -0.012115832418203354, 0.02413816750049591, 0.03227411210536957, -0.03849513456225395, 0.03303144499659538, -0.03124510869383812, 0.025566324591636658, -0.016758250072598457, -0.03576509281992912, -0.02937176637351513, 0.0468488372862339, -0.031740497797727585, -0.0657534971833229, 0.03893875330686569, 0.03204263374209404, 0.011235863901674747, -0.0143123185262084, -0.07601011544466019, -0.01474162470549345, -0.03153780475258827, -0.010613789781928062, -0.04787389934062958, 0.006224281154572964, -0.009549292735755444, 0.025989338755607605, 0.008157766424119473, -0.0565660260617733, 0.1648135483264923, 0.06942328810691833, 0.03666304051876068, 0.008750931359827518, 0.02709762565791607, 0.00973417330533266, 0.032086849212646484, -0.03628234565258026, -0.0073582567274570465, -0.03489820286631584, 0.076229028403759, -0.004386899992823601, 0.028766334056854248, 0.016819195821881294, 0.015412653796374798, 0.04287712648510933, -0.03190691024065018, 0.02140810154378414, 0.0016481553902849555, -0.049016159027814865, -0.0603349395096302, 0.014733614400029182, -0.004264270421117544, -0.001078793779015541, -0.01952008716762066, 0.013768728822469711, 0.033787719905376434, -0.05125982314348221, -0.003094593994319439, -0.025797244161367416, 0.005064909812062979, -0.031937941908836365, 0.0767306387424469, -0.02363716997206211, -0.06909064203500748, 0.04558291658759117, 0.0161273330450058, -0.05399496480822563, 0.03718605637550354, 0.023526523262262344, -0.020363453775644302, 0.010142969898879528, 0.016148146241903305, -0.02131900191307068, -0.0032218957785516977, 0.052787307649850845, -0.023595541715621948, -0.0052676633931696415, 0.0005818461650051177, -0.04381159693002701, 0.05853184685111046, -0.027224045246839523, 0.05138449743390083, -0.03659471124410629, -0.03796703368425369, 0.011274865828454494, 0.01264535915106535, -0.014875282533466816, -0.01155016664415598, 0.00021807012672070414, 0.011325778439640999, 0.017395764589309692, -0.018566511571407318, -0.011921406723558903, -0.0062734028324484825, -0.0026628104969859123, 0.021816536784172058, -0.0003565438382793218, 0.00002804863834171556, -0.023803628981113434, 0.018786758184432983, -0.02212381362915039, 0.04133934527635574, -0.018473030999302864, 0.03238694369792938, 0.03202405199408531, -0.029591171070933342, 0.021263185888528824, 0.004403679631650448, -0.04518347606062889, 0.0013924000086262822, -0.04509345814585686, -0.03362331539392471, -0.011936735361814499, 0.02557702362537384, 0.043308060616254807, -0.018029527738690376, -0.01799655519425869, -0.0681968405842781, 0.047083936631679535, 0.0424383170902729, 0.02161586657166481, -0.019181301817297935, -0.015240294858813286, -0.01031151507049799 ]
VICTOR VALLEY, Calif. — The cities of Apple Valley, Chino Hills, Hesperia, Rancho Cucamonga, Victorville, and Yucaipa Police Department has been awarded a combined total of $475,000.00 grant from the California Office of Traffic Safety (OTS) for a year-long enforcement and public awareness program. The traffic safety program is intended to educate the public on safe roadway habits and deter people from violating traffic laws or practicing other unsafe behaviors that lead to injuries and fatalities. DUI saturation patrols to take suspected alcohol/drug-impaired drivers – and those unlicensed or with a revoked/suspended license – off the road. Motorcycle safety operations in areas with high rider volume and where a higher rate of motorcycle crashes occur. In 2016, 3,623 people were killed in crashes across the state, a 7 percent increase from 2015, according to the National Highway Traffic Safety Administration. Particularly alarming is the rise in pedestrian deaths, with 867 pedestrians killed on California roadways in 2016, a nearly 33 percent increase from 2012. Along with the growing dangers of distracting technologies like phones and drug-impaired driving, this grant funding will provide opportunities to combat these dangerous and illegal behaviors.
[ -0.002264624461531639, 0.02096736431121826, -0.011082042939960957, 0.007856136187911034, -0.012811027467250824, -0.0010817323345690966, -0.007137719541788101, 0.021073097363114357, 0.03216429799795151, 0.026003042235970497, 0.009677072055637836, -0.019533948972821236, 0.03811619058251381, -0.02819507010281086, -0.010769269429147243, 0.00004430848275660537, -0.030212944373488426, -0.015184392221271992, -0.0000310319519485347, 0.011928186751902103, -0.03535695746541023, 0.02924584411084652, -0.0660315677523613, -0.06628488004207611, -0.02242475003004074, 0.022792061790823936, 0.05179230496287346, -0.02183503471314907, 0.06232595816254616, 0.047699589282274246, 0.0010655109072104096, -0.06608565151691437, 0.045589763671159744, -0.028487317264080048, 0.003437311388552189, -0.017546124756336212, 0.03160665184259415, -0.0052766879089176655, 0.01670895516872406, -0.03589257597923279, 0.014335430227220058, -0.0348057858645916, 0.04407637193799019, -0.043321643024683, -0.03729919344186783, -0.014883982948958874, -0.003018075367435813, -0.03456375375390053, 0.0006142517668195069, -0.02817949652671814, -0.048017919063568115, -0.0032687480561435223, 0.014587897807359695, -0.01566750556230545, 0.031501512974500656, 0.019317634403705597, -0.007614745292812586, -0.026245202869176865, 0.0034729361068457365, 0.009113265201449394, 0.008956309407949448, -0.013092816807329655, -0.01452331431210041, -0.05484025925397873, 0.025337349623441696, 0.016036152839660645, -0.03203553706407547, -0.004031372722238302, 0.01492971833795309, -0.022233709692955017, -0.009967364370822906, 0.032284144312143326, -0.03663288429379463, -0.02504662051796913, 0.003274336224421859, 0.010883654467761517, 0.008042890578508377, -0.00846862979233265, -0.024829845875501633, -0.0024675631430000067, -0.00939583033323288, 0.06654158979654312, 0.0263761468231678, 0.014555086381733418, -0.06441550701856613, -0.023372065275907516, -0.0033541275188326836, -0.010490107350051403, 0.0036660805344581604, -0.02271648310124874, 0.0007561874226666987, 0.044524844735860825, 0.014016622677445412, 0.001044178963638842, 0.03452378883957863, 0.04751516878604889, -0.04808596149086952, 0.016123173758387566, 0.02031784877181053, -0.010015110485255718, 0.017164012417197227, 0.004784669727087021, 0.011430518701672554, 0.07667489349842072, -0.021669765934348106, -0.009541724808514118, 0.005064223427325487, -0.023837381973862648, 0.010287202894687653, -0.04642970487475395, -0.0005808499408885837, 0.012518901377916336, 0.01718824915587902, 0.02125544659793377, -0.00634373864158988, 0.05854863300919533, -0.0070153456181287766, 0.04100121185183525, -0.029385924339294434, 0.03427566587924957, 0.022304989397525787, -0.0369018018245697, 0.0585642047226429, -0.028188887983560562, -0.002257288433611393, -0.03113369457423687, -0.01378693524748087, 0.06483211368322372, -0.055320024490356445, 0.001467470545321703, 0.029859045520424843, -0.054489102214574814, -0.018215935677289963, 0.022472256794571877, -0.006418301723897457, 0.0013776314444839954, -0.006009245291352272, 0.041170697659254074, 0.027954157441854477, -0.028918728232383728, 0.03187951073050499, 0.030903305858373642, -0.008630356751382351, 0.06958462297916412, 0.0014319868059828877, 0.017257239669561386, 0.01239793747663498, -0.004172279965132475, -0.017606427893042564, 0.0396602489054203, -0.0390278697013855, 0.041839685291051865, -0.01824025623500347, 0.007058511022478342, -0.01475090067833662, -0.03165954351425171, 0.01893848553299904, 0.003760292660444975, 0.01551011111587286, 0.04750422015786171, -0.03126842901110649, 0.0323566310107708, 0.0125495670363307, 0.027506718412041664, -0.02597733773291111, 0.02755458652973175, -0.03749265521764755, -0.002561257453635335, -0.02905171550810337, -0.020474469289183617, 0.02877497486770153, 0.010259843431413174, -0.017401868477463722, 0.00958652701228857, 0.06260281056165695, 0.034975316375494, 0.05372645705938339, 0.003216055454686284, 0.024851692840456963, 0.03981618955731392, -0.019665759056806564, -0.008237081579864025, -0.030533388257026672, 0.06563535332679749, 0.003401149995625019, -0.022756224498152733, -0.005776164121925831, -0.015299731865525246, -0.022519728168845177, -0.02014535665512085, 0.007584583014249802, 0.01247305516153574, -0.019820166751742363, 0.029113445430994034, 0.02074412815272808, 0.0019399691373109818, 0.014654483646154404, -0.024797998368740082, 0.029040170833468437, -0.03885772079229355, -0.030571753159165382, 0.03712032735347748, -0.0034665572457015514, 0.008314734324812889, -0.03129992261528969, 0.007227700669318438, 0.023154892027378082, 0.06420567631721497, -0.043441154062747955, -0.020162029191851616, 0.061205003410577774, 0.014182602986693382, -0.02141829952597618, -0.007068219594657421, 0.013924879021942616, -0.007158368825912476, -0.017035748809576035, 0.0539117157459259, 0.038817062973976135, -0.03979629650712013, -0.02879991941154003, 0.011624550446867943, 0.03406212478876114, 0.02457626722753048, 0.010997151955962181, 0.016190171241760254, -0.005666300188750029, 0.035744115710258484, -0.034478433430194855, 0.010813072323799133, 0.02723875641822815, 0.04092233628034592, 0.023324618116021156, 0.051415976136922836, 0.0384330153465271, 0.014354345388710499, 0.027119163423776627, 0.02702024206519127, -0.017157865688204765, 0.03091103956103325, 0.01899084635078907, 0.029687955975532532, 0.02852674573659897, 0.01951735094189644, -0.025390250608325005, 0.03551912680268288, -0.018964631482958794, -0.019659636542201042, -0.03335832431912422, 0.004267980344593525, -0.0029419257771223783, 0.025250017642974854, 0.0018552675610408187, 0.027896234765648842, -0.0269550159573555, 0.0066018789075315, 0.04040258750319481, 0.0633213147521019, -0.03801480680704117, -0.002759159542620182, 0.009575990028679371, 0.03773881494998932, 0.040646493434906006, 0.001031479681842029, 0.04206251725554466, 0.01957962103188038, -0.008314589038491249, 0.022730529308319092, -0.029185956344008446, -0.034232743084430695, -0.052201755344867706, -0.049963969737291336, -0.04600176960229874, -0.031024880707263947, -0.07004886120557785, -0.008808093145489693, 0.052994754165410995, -0.0749610960483551, 0.01515841856598854, -0.017771264538168907, -0.0034286603331565857, -0.03697861358523369, -0.0147456806153059, 0.046293701976537704, 0.04479368031024933, 0.044143106788396835, -0.06334222108125687, 0.053296107798814774, 0.018432052806019783, 0.021577933803200722, -0.0371854268014431, -0.028025483712553978, -0.02016107738018036, 0.007064464036375284, 0.0488545261323452, -0.022929178550839424, 0.005777578800916672, 0.00867077149450779, -0.02896002307534218, -0.054729312658309937, 0.0022744727320969105, -0.013245483860373497, -0.005122924689203501, -0.016184775158762932, -0.03210969269275665, 0.024043787270784378, 0.026987764984369278, -0.042831532657146454, 0.018990356475114822, 0.0495741069316864, -0.05006622523069382, 0.03057149052619934, 0.012125566601753235, 0.027236757799983025, -0.0531742088496685, 0.06287546455860138, 0.020967217162251472, -0.014140800572931767, -0.0033743821550160646, -0.021196957677602768, -0.01621284894645214, 0.032873909920454025, 0.00454735429957509, -0.02114713191986084, -0.04316941276192665, 0.04172103852033615, 0.03922984004020691, -0.04367459565401077, 0.022866781800985336, -0.054717253893613815, -0.019869806244969368, -0.046578116714954376, -0.0541013702750206, 0.018647709861397743, 0.04426518827676773, 0.01048487052321434, -0.005897912196815014, -0.05199914425611496, -0.00016753019008319825, 0.00006283747643465176, 0.0446416512131691, -0.047487832605838776, 0.04431445896625519, 0.04818657040596008, -0.011025962419807911, 0.017891058698296547, 0.03174399584531784, -0.008495406247675419, -0.020425183698534966, 0.015195819549262524, -0.015833407640457153, 0.017194649204611778, 0.0485512875020504, -0.0042112236842513084, -0.006717138923704624, 0.041753094643354416, -0.05131937935948372, -0.0005386667908169329, 0.024015169590711594, 0.02871641330420971, 0.017072610557079315, -0.005399019923061132, 0.01269902940839529, 0.0031363400630652905, -0.0435216948390007, -0.03465525805950165, 0.0322900116443634, 0.0004805044736713171, 0.033508289605379105, -0.06557303667068481, 0.03725872561335564, -0.014437318779528141, -0.03935546055436134, 0.039554547518491745, -0.07367880642414093, 0.0020457978826016188, 0.07368279248476028, -0.013650255277752876, 0.05568881705403328, -0.0377831906080246, 0.02075379528105259, 0.0154334157705307, 0.002409848850220442, 0.02764659747481346, 0.0017176928231492639, 0.016089027747511864, -0.023268431425094604, -0.028020696714520454, -0.01228344812989235, -0.003087216755375266, 0.004988044500350952, -0.032867930829524994, -0.02374609000980854, -0.017508601769804955, -0.04668640345335007, -0.054256219416856766, 0.026063764467835426, 0.029331659898161888, 0.040627919137477875, -0.010680792853236198, 0.04749597981572151, -0.005934840999543667, 0.03705509006977081, 0.033615294843912125, -0.010144365951418877, -0.013539241626858711, -0.027494188398122787, 0.04462080076336861, 0.027096394449472427, -0.06282185018062592, -0.05645012483000755, -0.04464808851480484, -0.009090675041079521, 0.03817829117178917, 0.04297547787427902, -0.007782207801938057, -0.022696303203701973, 0.01092576701194048, 0.0006590901757590473, 0.008646246045827866, -0.01605970785021782, -0.01050463505089283, -0.015729043632745743, 0.03672036528587341, 0.03318853676319122, -0.05171515792608261, -0.007774680852890015, -0.033985864371061325, 0.031116988509893417, 0.06432972848415375, -0.003822446335107088, -0.03384747728705406, 0.0296563021838665, -0.03635529428720474, -0.055577490478754044, 0.007360443007200956, 0.019429653882980347, 0.015250226482748985, 0.005273210816085339, -0.05207103118300438, 0.04319719970226288, 0.022083133459091187, 0.015575564466416836, 0.0005421294481493533, -0.01359613612294197, 0.017845749855041504, 0.01160112302750349, 0.034945663064718246, -0.0031901923939585686, -0.03976365923881531, 0.04382074624300003, -0.04883905500173569, 0.037549734115600586, 0.018220115453004837, -0.04709066078066826, -0.0027348336298018694, 0.036877524107694626, 0.03167848661541939, 0.032581303268671036, -0.03847649693489075, 0.007327883038669825, 0.0022688598837703466, 0.01342363003641367, -0.04990921914577484, -0.013269508257508278, 0.036812420934438705, -0.020228426903486252, -0.007760248612612486, 0.03684740513563156, -0.005135270766913891, -0.031020784750580788, 0.005891553126275539, -0.004611530806869268, -0.07184655964374542, 0.03908751159906387, -0.031092042103409767, -0.003865726524963975, -0.016174104064702988, -0.03609314560890198, 0.020368797704577446, -0.03503383696079254, -0.008003264665603638, -0.009891854599118233, -0.02089877240359783, -0.03580930456519127, -0.033714085817337036, 0.019862668588757515, 0.02847541682422161, -0.025064365938305855, 0.033573880791664124, 0.03455456346273422, 0.0027418050449341536, -0.01269599236547947, 0.013323838822543621, 0.027715357020497322, 0.021622594445943832, -0.051754824817180634, -0.008647416718304157, 0.016577355563640594, -0.011067534796893597, -0.006875285878777504, -0.014993560500442982, -0.040582966059446335, 0.026002222672104836, -0.0127769960090518, -0.03271236643195152, -0.03524592146277428, 0.01681261509656906, -0.022090937942266464, -0.03125033155083656, -0.05169223994016647, 0.039873410016298294, -0.04490905627608299, 0.008853506296873093, 0.00540380971506238, 0.00788191333413124, -0.012458852492272854, 0.003890024730935693, -0.02144164964556694, 0.020908894017338753, 0.02606390230357647, -0.056084003299474716, -0.024929489940404892, 0.023211663588881493, -0.010165250860154629, 0.043965209275484085, -0.003915324341505766, -0.018667615950107574, -0.03973063826560974, -0.049403417855501175, -0.01137285865843296, -0.05304581671953201, -0.014050072059035301, -0.037785232067108154, -0.00490971002727747, 0.016689609736204147, 0.012184925377368927, 0.02984541840851307, 0.004199094604700804, 0.01602773182094097, -0.023083971813321114, -0.019714506343007088, -0.045636244118213654, -0.03360682725906372, -0.0013506741961464286, -0.02815152332186699, -0.004776570945978165, 0.06746333092451096, 0.04778666794300079, -0.0016585972625762224, -0.019110944122076035, 0.025116220116615295, 0.010285841301083565, -0.022392265498638153, -0.05021211504936218, -0.04831822216510773, -0.015206124633550644, -0.0038829233963042498, -0.0058255852200090885, 0.004171716049313545, -0.054544899612665176, 0.04904116317629814, -0.05922459065914154, 0.011653704568743706, -0.024040240794420242, -0.042222533375024796, 0.011601366102695465, 0.005404944531619549, 0.04972422495484352, -0.003952288068830967, 0.0214296355843544, 0.01133999228477478, 0.013937918469309807, 0.006552722305059433, 0.007580410689115524, -0.018669405952095985, -0.03499322757124901, -0.012982296757400036, -0.05596114322543144, 0.0231602992862463, -0.016878360882401466, 0.0006464747712016106, -0.034252699464559555, 0.0060752201825380325, 0.027407396584749222, 0.003714315127581358, 0.06332006305456161, 0.07110396772623062, -0.013955729082226753, -0.010341332294046879, -0.009767341427505016, 0.07264651358127594, 0.0333162285387516, 0.002428301377221942, 0.0014062855625525117, -0.0058092172257602215, -0.045040056109428406, 0.009751683101058006, -0.07242562621831894, -0.04828888922929764, -0.024155735969543457, -0.013388475403189659, 0.06548548489809036, 0.012354031205177307, 0.03734467178583145, -0.05238443985581398, -0.024174071848392487, -0.052152249962091446, 0.03345015272498131, -0.025473669171333313, 0.014605478383600712, 0.045575786381959915, 0.004736590664833784, -0.029527032747864723, 0.034666698426008224, -0.0268756952136755, -0.012284846045076847, -0.03173387423157692, 0.06739997863769531, -0.0017836944898590446, -0.05800808593630791, -0.0016855642898008227, 0.06537482887506485, -0.02338864468038082, -0.029746120795607567, 0.03972240909934044, -0.024664999917149544, 0.03887929394841194, -0.01835014671087265, -0.000042891871999017894, 0.0013665154110640287, 0.0038890005089342594, 0.0006650788709521294, 0.01219088677316904, 0.00146705680526793, 0.0615234412252903, -0.008604309521615505, 0.03970680758357048, -0.044361554086208344, 0.007582287769764662, 0.018134860321879387, 0.021648462861776352, -0.01765892095863819, -0.02717527188360691, -0.02711549401283264, 0.0009611693676561117, 0.0017008917639032006, 0.04871484264731407, -0.04208875447511673, -0.003298649564385414, 0.02142070233821869, -0.031605686992406845, 0.021586213260889053, -0.021689919754862785, -0.018549129366874695, 0.04890884459018707, -0.008444762788712978, -0.06128290295600891, -0.048687491565942764, 0.000786320015322417, 0.004504689015448093, 0.051606595516204834, -0.07858043164014816, -0.010338322259485722, 0.03809570148587227, -0.00779332360252738, -0.008050909265875816, -0.06064566969871521, -0.03371574729681015, -0.01650967448949814, -0.04637328162789345, -0.05138421431183815, 0.008039528504014015, -0.015252798795700073, 0.01470125187188387, 0.006133925635367632, -0.025651976466178894, 0.005561077035963535, -0.009850772097706795, -0.04148254916071892, -0.0113814827054739, -0.025479501113295555, 0.004544369876384735, -0.03434016555547714, -0.06261870265007019, -0.03209221735596657, -0.011532572098076344, -0.01111396960914135, 0.015728803351521492, -0.028590230271220207, 0.024318965151906013, 0.006828292738646269, 0.016867248341441154, 0.036956265568733215, -0.005752888508141041, -0.008631603792309761, -0.01447886973619461, -0.026806477457284927, 0.04554286226630211, 0.004718192853033543, 0.021982954815030098, 0.03982936963438988, -0.042363740503787994, 0.04723436012864113, -0.026391526684165, -0.007181763648986816, 0.0031157329212874174, 0.007373116444796324, -0.029950140044093132, 0.023993145674467087, -0.05265629664063454, -0.02853265590965748, -0.007020870689302683, -0.034827690571546555, 0.0033858749084174633, -0.027586959302425385, 0.02503061667084694, 0.008199691772460938, -0.030342666432261467, -0.04262474551796913, 0.04024597257375717, -0.006985391490161419, 0.0334615483880043, 0.002080527599900961, 0.036791011691093445, 0.022043243050575256, 0.0005490107578225434, 0.005422917194664478, 0.01902129128575325, 0.03599806874990463, -0.003769760951399803, 0.026733409613370895, 0.01701105199754238, -0.03610369563102722, 0.03883278742432594, -0.033102069050073624, -0.036608535796403885, -0.02276228368282318, 0.005860718432813883, -0.0380149781703949, 0.03951402008533478, -0.006839549634605646, 0.006517357192933559, 0.02460556849837303, -0.010946185328066349, -0.052575670182704926, -0.0004138302174396813, -0.07177726924419403, -0.04355199262499809, 0.028554895892739296, -0.03957946598529816, -0.0015448860358446836, -0.009807007387280464, -0.05747339129447937, -0.005709146615117788, -0.021329399198293686, -0.0004495650064200163, -0.002424434991553426, 0.006295024883002043, 0.012171270325779915, 0.03977007791399956, -0.004469182342290878, 0.02636723779141903, 0.018328186124563217, 0.03878550976514816, -0.03873791918158531, -0.047736089676618576, 0.011742784641683102, 0.0543588288128376, 0.005581880919635296, -0.0112634701654315, -0.006953945849090815, 0.036402009427547455, -0.026286758482456207, -0.02561889961361885, -0.01000672485679388, 0.03681009262800217, -0.0068769315257668495, -0.00012929231161251664, -0.016771787777543068, 0.004321048501878977, -0.01715133897960186, 0.05372368544340134, -0.030174126848578453, -0.006937606725841761, -0.04962290823459625, 0.0018900710856541991, 0.01828930340707302, -0.019256146624684334, 0.02981427125632763, 0.026731310412287712, 0.05540299788117409, 0.0037824467290192842, 0.02264275774359703, -0.01217555534094572, 0.06149383634328842, 0.02176792547106743, 0.03984280675649643, 0.03284773975610733, 0.008509907871484756, 0.048440758138895035, -0.005767433904111385, -0.01946568675339222, 0.059124886989593506, -0.008062859997153282, -0.042786963284015656, 0.011370208114385605, -0.0509696826338768, 0.04066203534603119, 0.01049643475562334, -0.018094118684530258, -0.003968262113630772, -0.016354769468307495, 0.023023467510938644, 0.013288787566125393, -0.024796858429908752, 0.04976925626397133, -0.0233482513576746, -0.018807698041200638, -0.024012262001633644, 0.0002567150513641536, 0.008154746145009995, 0.03722364455461502, -0.006740042474120855, 0.017312731593847275, 0.036521460860967636, 0.0313422866165638, 0.0023715957067906857, 0.04144023731350899, 0.01738102175295353, 0.0007575320778414607, -0.02524374984204769, 0.007881926372647285, 0.011807656846940517, -0.009756104089319706, -0.01625976711511612, 0.024579383432865143, -0.02580166608095169, 0.017300397157669067, -0.03696345165371895, -0.008103758096694946, 0.05384419113397598, -0.05630171298980713, 0.005260065663605928, -0.03477286919951439, 0.0311454888433218, -0.055822473019361496, -0.03427097946405411, 0.05789093300700188, 0.021388569846749306, -0.028889860957860947, 0.022385556250810623, 0.0148916682228446, 0.035921018570661545, 0.014203442260622978, 0.06113334372639656, -0.02778199128806591, 0.0393688790500164, 0.025773854926228523, -0.04689883068203926, 0.0057808756828308105, 0.001049480983056128, -0.03827286139130592, -0.06205396354198456, -0.04282873123884201, -0.029812384396791458, -0.016135895624756813, 0.0061727771535515785, -0.05208814516663551, -0.0006704644183628261, 0.03404807299375534, 0.006338037550449371, -0.0418458916246891, 0.026374271139502525, 0.012248092330992222, -0.018693599849939346, 0.015019087120890617, -0.0033448629546910524, 0.023378178477287292, -0.005993180442601442, -0.007945898920297623, -0.028412191197276115, -0.025658980011940002, -0.01589300110936165, -0.022900618612766266, 0.04773546755313873, -0.017928849905729294, -0.034238822758197784, -0.009777090512216091, -0.053910013288259506, -0.016535088419914246, 0.04217109829187393, -0.0427561029791832, -0.06002223864197731, 0.029794473201036453, 0.021453501656651497, 0.011858044192194939, 0.053284093737602234, 0.0019935802556574345, -0.011435017921030521, 0.04218516871333122, 0.06728724390268326, -0.01708218641579151, 0.05233436077833176, 0.010723053477704525, -0.008428536355495453, 0.04408003389835358, -0.015475361607968807, 0.03779172524809837, -0.0324697382748127, -0.01543543953448534, -0.03414682298898697, 0.011190257035195827, -0.03056514821946621, -0.054830316454172134, 0.007564250845462084, 0.013815109618008137, 0.009140257723629475, -0.02493121474981308, -0.06572365760803223, -0.014883885160088539, -0.016904758289456367, -0.006062381435185671, -0.04766708239912987, 0.01111728698015213, 0.014737957157194614, -0.004321035463362932, -0.00795353390276432, -0.06522981077432632, 0.15269611775875092, -0.006341822445392609, 0.02500298246741295, 0.028465252369642258, 0.03560251742601395, 0.05514190346002579, 0.04827761650085449, -0.00408919295296073, -0.021493514999747276, -0.03612993285059929, -0.007502375170588493, -0.012177376076579094, 0.04854992777109146, -0.0025983324740082026, 0.023174775764346123, 0.06363222748041153, -0.05164436623454094, 0.015106298960745335, 0.03604118525981903, -0.04801159352064133, -0.065964475274086, 0.042596012353897095, -0.0011997674591839314, 0.012580092996358871, -0.009006820619106293, 0.02958676405251026, -0.006281442008912563, -0.04218073561787605, 0.004558062180876732, -0.022773008793592453, 0.02673543430864811, -0.03824644163250923, 0.030020063742995262, 0.002262548077851534, -0.06317062675952911, 0.049707379192113876, 0.0199399646371603, 0.008648081682622433, -0.020036110654473305, 0.022708870470523834, 0.01870924048125744, 0.023624323308467865, 0.024734551087021828, -0.04300811514258385, 0.00918977614492178, 0.030500035732984543, -0.03374854847788811, 0.014960341155529022, 0.009509770199656487, -0.02851055935025215, 0.043353624641895294, -0.012338106520473957, 0.04977318271994591, 0.017139820381999016, -0.013744918629527092, 0.001164905959740281, 0.007737984415143728, -0.0012626267271116376, -0.009134559892117977, 0.0023643136955797672, 0.06865881383419037, -0.020128367468714714, -0.013792459852993488, 0.00019719942065421492, -0.04222509637475014, -0.02915128692984581, 0.018855437636375427, -0.019628290086984634, 0.015178329311311245, -0.03147115185856819, -0.0010061219800263643, -0.001978182001039386, -0.006681814789772034, -0.007424190174788237, 0.06553806364536285, 0.05549037456512451, -0.0158204585313797, 0.04394448921084404, -0.00099096295889467, -0.026087842881679535, -0.00982196070253849, -0.024108093231916428, 0.03253580629825592, -0.020046761259436607, 0.0007446349482052028, 0.06211715191602707, -0.02307147905230522, -0.007417569402605295, -0.01400784868746996, 0.04363806173205376, 0.04436716437339783, 0.006200568284839392, -0.005473145749419928, 0.005460343323647976, -0.009309487417340279 ]
I News / Can You Believe These 7 Weird Plants Were Grown in Smart Gardens?! Thanks to the innovation of Smart Gardens and enthusiastic community members, we've witnessed some incredible indoor garden displays over the years. We also value creativity among our community very highly. Experimental Plant Pods allow indoor gardeners to grow their own seeds in Smart Gardens using revolutionary Smart Soil. Incredibly, someone was able to grow this beauty indoors. Sequoia is a genus of redwood coniferous trees. It belongs to a species which includes the tallest living trees on Earth. Sequoia is commonly referred to as 'coastal redwood' and 'California redwood'. Success has been found in growing tangerines in a Smart Garden. Did you know the citrus tangerine originated from China? It's currently grown in many other parts of the world due to its refreshing taste and the fact it's a great source of vitamin C. Another community member experienced success in growing Goji berries. The seeds only took 2 days to sprout! Goji berries are native to Asia and often used in traditional Asian cuisine. The taste of dried goji berries is somewhat similar to cranberries and cherries. Yes indeed, it's possible to grow these charming plants indoors! Turns out they love our Smart Soil. Sunflowers are native to the Americas and are highly valued for their use in dye, food, and oil. They've also become synonymous with cheerfulness and goodwill. Some of our community members have managed to grow this amazing superfood in their Smart Gardens. It's often believed that avocados originated in the Tehuacan Valley in the state of Puebla, Mexico. Avocados are an excellent source of vitamins C, E, K, and B-6. With medicinal uses that vary from pain reduction to reducing anxiety, cannabis can be a great plant to test out and grow in your Smart Garden. However, only grow if legally allowed in your state or country! Several community members have been successful in growing Venus Flytraps using their Smart Gardens. This carnivorous plant is native to subtropical wetlands on the East Coast of the United States. Just try to avoid poking them with your finger! These plants prefer insects. What unusual plants have you tried growing in your Smart Garden? Feel free to share your plant images and updates in our Facebook community, we'd love to hear from you. Also, stay tuned for updates in our community about growing garlic in a smart garden. Our gardeners are currently testing how well they grow... Once we know the results, we'll share them with you!
[ -0.017114944756031036, 0.004724080208688974, 0.0017281583277508616, -0.010559646412730217, -0.005110438447445631, 0.031759489327669144, -0.017373548820614815, 0.06738141179084778, 0.059059128165245056, 0.025210455060005188, 0.028327468782663345, 0.005665430799126625, 0.007609429303556681, -0.03443461284041405, -0.0015062509337440133, -0.016848674044013023, -0.024419182911515236, 0.0016850100364536047, -0.010006424970924854, -0.0032099829986691475, 0.006743617821484804, 0.03832525387406349, -0.06443605571985245, -0.007571948226541281, -0.02128586359322071, 0.03098250925540924, 0.04174327477812767, -0.02926534041762352, 0.05266546830534935, 0.03191298618912697, -0.023795276880264282, -0.03686017170548439, 0.04929066076874733, -0.062369078397750854, -0.05270477011799812, -0.013871103525161743, 0.026172691956162453, -0.005403726361691952, -0.035094816237688065, -0.06946145743131638, 0.0032004250679165125, -0.037027519196271896, 0.03328491374850273, -0.011927462182939053, -0.01242961548268795, -0.020827630534768105, -0.029039179906249046, -0.023817257955670357, 0.019220851361751556, -0.038857389241456985, 0.017854223027825356, 0.021279597654938698, -0.003349610138684511, 0.0056612384505569935, 0.008889839984476566, -0.004979033023118973, 0.004216203466057777, 0.0006833147490397096, -0.02403336577117443, 0.04722844436764717, -0.014573527500033379, 0.005310042295604944, 0.021119892597198486, -0.033207979053258896, 0.02742839977145195, 0.03032233938574791, -0.004316094797104597, -0.011180595494806767, -0.0005408631986938417, -0.02354273945093155, -0.004604630637913942, 0.017513778060674667, -0.004323984030634165, -0.030311942100524902, 0.004651461727917194, 0.007187587674707174, 0.0022652228362858295, 0.02333565056324005, -0.0009188904077745974, 0.0013972135493531823, 0.019168714061379433, 0.06823976337909698, -0.00619518244639039, 0.010869849473237991, -0.05633213371038437, -0.04786728322505951, -0.017797719687223434, 0.001960697816684842, -0.016159750521183014, 0.02090500295162201, 0.01926431618630886, 0.053305234760046005, 0.0008935644291341305, -0.0048194583505392075, 0.049502164125442505, 0.03972993791103363, -0.05713944137096405, 0.04951377213001251, -0.0025310299824923277, 0.01416024100035429, 0.044478435069322586, -0.0014438285725191236, 0.004734626971185207, 0.04628076031804085, -0.014240373857319355, -0.022379454225301743, 0.0010487051913514733, 0.0000682378449710086, -0.02547835372388363, -0.030105572193861008, 0.025792809203267097, -0.008669053204357624, 0.015190101228654385, 0.03478049486875534, 0.01304238848388195, 0.07376708835363388, -0.009659589268267155, 0.056256599724292755, -0.0855574905872345, 0.01379480306059122, -0.02355252020061016, -0.02794528752565384, -0.0005195827106945217, -0.032509420067071915, 0.026780344545841217, -0.04854385927319527, -0.017383841797709465, 0.03721598908305168, -0.011435668915510178, -0.014864380471408367, 0.028361693024635315, -0.042246632277965546, -0.0017523723654448986, 0.003270671470090747, -0.01873801462352276, 0.021058587357401848, -0.03524494543671608, 0.007085656747221947, 0.01322820782661438, -0.07232169061899185, 0.05251586437225342, 0.028591962531208992, 0.014044535346329212, 0.07602286338806152, 0.043832022696733475, 0.026413260027766228, 0.011823774315416813, -0.009465274401009083, -0.06017185002565384, 0.028322791680693626, 0.0020441608503460884, 0.011342542245984077, -0.016882602125406265, 0.03430716693401337, -0.011663826182484627, 0.013907738961279392, -0.014152794145047665, 0.018065430223941803, 0.04303162544965744, 0.04479040205478668, 0.016668863594532013, 0.038779012858867645, -0.017877861857414246, 0.015893684700131416, -0.009547552093863487, 0.033235933631658554, -0.052680227905511856, -0.01027825940400362, -0.013644833117723465, -0.029134394600987434, 0.015517155639827251, 0.007234477438032627, -0.023766977712512016, 0.027336925268173218, 0.0338335856795311, 0.04158101603388786, 0.054281074553728104, 0.017090508714318275, 0.003993152175098658, 0.02220476046204567, -0.05380808562040329, -0.012118479236960411, -0.009331297129392624, 0.05581549182534218, -0.001025589182972908, -0.003640582086518407, -0.017515402287244797, -0.04623744636774063, 0.0008116151439025998, -0.015460642985999584, 0.006674828473478556, 0.032698605209589005, -0.029039734974503517, 0.013644974678754807, 0.008296431973576546, 0.03310419246554375, -0.022604184225201607, 0.013045023195445538, 0.011716223321855068, -0.0671076774597168, -0.03542777895927429, 0.05274118483066559, -0.002432015258818865, 0.016827279701828957, 0.014950425364077091, -0.03833730146288872, 0.03054014779627323, 0.06882699579000473, -0.04507634416222572, 0.009987913072109222, 0.04192596673965454, -0.0144003015011549, -0.02299530804157257, -0.01895856484770775, 0.03410709276795387, -0.041271720081567764, -0.015614409931004047, 0.03876514732837677, -0.00826328806579113, -0.0012130883987993002, 0.01825961098074913, 0.037602946162223816, 0.049847736954689026, 0.037552282214164734, -0.0007024015649221838, 0.03350428491830826, 0.018511049449443817, 0.05246014893054962, -0.008931971155107021, -0.021531619131565094, -0.003027089638635516, 0.05624013766646385, 0.04872078821063042, 0.05053090676665306, 0.04752366617321968, 0.017912982031702995, -0.002172713866457343, 0.008351217024028301, -0.0017930642934516072, 0.031419213861227036, 0.031216206029057503, -0.00542992539703846, 0.028914151713252068, 0.03139178827404976, 0.005854178685694933, 0.037414129823446274, -0.02293538488447666, 0.004918044898658991, -0.03577287122607231, 0.01235337182879448, -0.045185212045907974, 0.020016102120280266, 0.010761150158941746, 0.019990824162960052, -0.012043086811900139, 0.0015560700558125973, 0.0240520890802145, 0.04500012472271919, -0.027700290083885193, -0.02194351889193058, -0.032399777323007584, 0.007494733668863773, -0.014132484793663025, 0.03265180066227913, 0.015691066160798073, 0.02282094769179821, -0.032723650336265564, 0.020644035190343857, -0.00808018073439598, -0.025337280705571175, -0.0631844624876976, -0.050516679883003235, -0.06311545521020889, -0.017059853300452232, -0.04546964168548584, 0.0032748410012573004, 0.027487613260746002, -0.027381736785173416, 0.03450499847531319, -0.008341513574123383, -0.01192809920758009, -0.02768385037779808, -0.0010375900892540812, 0.028563085943460464, 0.011810810305178165, 0.03754773363471031, -0.030062299221754074, 0.038956522941589355, -0.051622603088617325, 0.021917806938290596, -0.025657476857304573, 0.008019639179110527, -0.00897179450839758, -0.024374041706323624, 0.030784348025918007, -0.01631394401192665, -0.00607555964961648, -0.011691511608660221, -0.03620419278740883, -0.03969221189618111, 0.006058955565094948, 0.005111938342452049, -0.0039044262375682592, -0.014668729156255722, -0.04938388615846634, 0.044458866119384766, 0.030168332159519196, -0.02453276328742504, 0.04407397657632828, 0.05739941820502281, -0.006574578117579222, 0.07202804833650589, 0.031428124755620956, 0.017258064821362495, -0.055430371314287186, 0.03621220588684082, 0.03868470713496208, -0.0038293388206511736, -0.03349289670586586, -0.022915495559573174, -0.07294061034917831, 0.012498827651143074, 0.03216347098350525, -0.030613688752055168, -0.018392140045762062, 0.0483139269053936, 0.005503244232386351, -0.0855645015835762, 0.027317369356751442, -0.0442463681101799, -0.049449481070041656, -0.006075593642890453, -0.03860074281692505, 0.04732563719153404, 0.03657408058643341, 0.02553515136241913, -0.017498426139354706, -0.04455448314547539, -0.03035079315304756, -0.0035827667452394962, 0.04745024815201759, -0.006126374937593937, -0.007606332190334797, 0.04582764208316803, 0.008019579574465752, 0.03466641157865524, 0.0193492379039526, 0.0002780969371087849, -0.005807738751173019, -0.011196589097380638, 0.01619214192032814, 0.0004577827639877796, -0.002683710539713502, -0.017698237672448158, 0.0014558715047314763, 0.07544940710067749, -0.03625049442052841, -0.008445884101092815, 0.009741175919771194, 0.022533845156431198, 0.03153836727142334, -0.0018858829280361533, 0.02925322949886322, -0.01863740012049675, -0.06673797965049744, -0.06030265986919403, 0.020089443773031235, 0.00775945745408535, 0.033870745450258255, -0.040903475135564804, 0.05333491414785385, -0.014437303878366947, -0.042962633073329926, 0.05135344713926315, -0.04505129158496857, -0.009333396330475807, 0.016487006098031998, -0.024156099185347557, 0.0130933141335845, -0.021293332800269127, 0.01660197228193283, -0.008475279435515404, -0.005482103209942579, 0.050026342272758484, -0.011142365634441376, 0.023790381848812103, -0.015253754332661629, -0.06435741484165192, 0.017661450430750847, -0.010364779271185398, -0.002660829573869705, -0.031659964472055435, 0.02930878847837448, -0.011721881106495857, -0.047886308282613754, -0.041073862463235855, 0.01138895284384489, 0.011543681845068932, 0.021248579025268555, 0.01931065507233143, 0.024226488545536995, 0.02662854641675949, 0.01623026467859745, 0.03504028916358948, -0.014557636342942715, 0.017449485138058662, -0.030625106766819954, 0.036401018500328064, 0.06751268357038498, -0.049869757145643234, -0.010965462774038315, -0.007389260921627283, -0.02017006278038025, 0.026283038780093193, -0.021106792613863945, -0.011843199841678143, -0.027937259525060654, 0.013466003350913525, 0.02057221718132496, 0.03783899545669556, -0.027632296085357666, -0.015485385432839394, -0.04145577922463417, 0.049185581505298615, 0.02007734403014183, -0.054995276033878326, -0.024088522419333458, -0.04870157316327095, 0.02086888998746872, 0.05693395063281059, -0.018424948677420616, -0.05427371710538864, -0.030363496392965317, -0.025417348369956017, -0.022768575698137283, 0.027003932744264603, 0.02405988797545433, -0.027280088514089584, -0.012846452184021473, -0.015029795467853546, 0.026496348902583122, 0.0621795579791069, 0.009107591584324837, -0.008031528443098068, 0.004863392096012831, 0.038414791226387024, 0.022297028452157974, 0.03149300068616867, 0.009771999903023243, -0.04349495470523834, 0.008597301319241524, -0.06642087548971176, -0.023198284208774567, -0.023279940709471703, 0.00581009779125452, 0.021392768248915672, 0.030301539227366447, 0.0006588295800611377, 0.030978279188275337, -0.03221670910716057, 0.01287789922207594, -0.004311314318329096, 0.03982289135456085, -0.013562889769673347, -0.03143284097313881, 0.037277840077877045, -0.016772542148828506, -0.03651263564825058, 0.019332444295287132, 0.014426382258534431, 0.001063568633981049, 0.02286958135664463, 0.030185041949152946, -0.03710097074508667, 0.04961472377181053, -0.017619671300053596, 0.028433149680495262, -0.0014915791107341647, -0.041897550225257874, 0.0154424412176013, -0.02626613900065422, 0.014049289748072624, 0.00607245834544301, -0.040729425847530365, -0.023949086666107178, -0.0713200494647026, -0.008946796879172325, 0.027095887809991837, -0.03932664915919304, 0.02810593880712986, -0.0238830354064703, -0.019593099132180214, -0.0026575285010039806, 0.015868574380874634, -0.00035307806683704257, 0.003009977750480175, -0.011487661860883236, -0.02678980864584446, 0.026967348530888557, 0.007418247405439615, 0.05148952081799507, -0.0098474295809865, -0.03189146891236305, -0.001120233559049666, -0.006615332327783108, -0.022286085411906242, -0.04594860598444939, 0.012087984941899776, -0.03782273828983307, 0.006432437337934971, -0.02230844646692276, -0.0025383802130818367, -0.023772243410348892, 0.004751225002110004, 0.008675901219248772, -0.0009381069685332477, 0.021114865317940712, -0.004827904514968395, -0.032129354774951935, 0.05206511542201042, 0.0006340593681670725, -0.058070313185453415, -0.03266272693872452, 0.05700372904539108, -0.000591937976423651, 0.061686914414167404, 0.013583160936832428, -0.044720131903886795, -0.052752893418073654, -0.0392768532037735, -0.01572328992187977, -0.048108503222465515, -0.019378041848540306, -0.04471006244421005, 0.009609490633010864, -0.05397767946124077, 0.014576388522982597, 0.008053590543568134, -0.01692335121333599, 0.00028232301701791584, -0.03467067703604698, -0.03995245695114136, -0.012192139402031898, -0.03929781913757324, -0.041904401034116745, -0.026740526780486107, -0.024831313639879227, 0.02984153851866722, -0.032111089676618576, 0.0014604097232222557, 0.0023040275555104017, 0.005808732472360134, 0.0013638949021697044, -0.0030646645464003086, -0.04657405987381935, -0.03642962872982025, -0.025823358446359634, -0.021120699122548103, -0.0025519952178001404, 0.031054098159074783, -0.06902381777763367, 0.045934874564409256, -0.04960034787654877, -0.0158944483846426, -0.007465152069926262, 0.0171927772462368, -0.010300086811184883, 0.027754241600632668, 0.04757072404026985, 0.011443886905908585, -0.0006994848954491317, -0.02143878862261772, 0.04118992015719414, 0.061751507222652435, -0.009655414149165154, -0.05805889889597893, -0.05892719328403473, -0.021602410823106766, -0.04244319722056389, 0.04872061312198639, -0.050300516188144684, -0.031824350357055664, -0.027379266917705536, 0.005281754303723574, 0.03571592643857002, 0.015248998999595642, 0.026489518582820892, 0.036768838763237, -0.011887926608324051, -0.026054104790091515, -0.03352400287985802, 0.03396834060549736, 0.07060158997774124, -0.04289311543107033, -0.028363805264234543, -0.01562616042792797, -0.03354642912745476, 0.013624941930174828, -0.04028131812810898, -0.03391450271010399, -0.06280599534511566, 0.00012955476995557547, 0.07997284829616547, -0.028412044048309326, 0.027903098613023758, -0.020784741267561913, -0.037354856729507446, -0.04420499876141548, 0.05328235775232315, 0.014796290546655655, 0.0034812488593161106, 0.06662337481975555, 0.0047834464348852634, -0.011738776229321957, 0.03370186313986778, 0.016464048996567726, -0.01790311001241207, -0.037216320633888245, 0.045943304896354675, 0.014566260389983654, -0.0416300930082798, -0.0004544437979348004, 0.03855147957801819, -0.04878189042210579, -0.022727452218532562, -0.012572726234793663, -0.01713104359805584, 0.012964357621967793, -0.012683369219303131, 0.029664421454072, 0.008858940564095974, -0.013646159321069717, -0.001170834293588996, 0.048291996121406555, -0.014228272251784801, 0.029199466109275818, 0.02125178650021553, 0.05152280628681183, -0.036705199629068375, 0.025288937613368034, 0.04296395182609558, -0.02287481166422367, -0.03089280053973198, -0.021279282867908478, -0.026938477531075478, 0.029548294842243195, 0.004196549765765667, 0.0276511088013649, -0.06330227851867676, 0.008664312772452831, 0.024811554700136185, 0.0074280560947954655, 0.010448076762259007, 0.0043179006315767765, -0.028784556314349174, 0.01848961040377617, -0.010902519337832928, -0.020201675593852997, -0.04815934970974922, 0.014653273858129978, 0.004444560967385769, 0.025703102350234985, -0.04937703162431717, -0.012864175252616405, 0.04323273152112961, 0.00754981953650713, -0.018178483471274376, -0.050827182829380035, -0.029134009033441544, -0.034104082733392715, -0.06704869121313095, -0.04669566452503204, -0.022511055693030357, -0.016148999333381653, 0.005795702338218689, -0.010773727670311928, -0.03068113885819912, 0.025418516248464584, 0.00831296481192112, -0.0451609306037426, -0.012934904545545578, -0.013681621290743351, 0.045225657522678375, -0.04078931361436844, -0.04008379206061363, 0.00006499971641460434, -0.010412922129034996, -0.008916407823562622, 0.011998356319963932, -0.020437588915228844, 0.03256911411881447, -0.0017475243657827377, 0.04219508916139603, 0.03886205330491066, 0.027471909299492836, -0.02521022967994213, -0.02016405574977398, -0.024154745042324066, 0.04283894971013069, 0.01682017743587494, 0.03505973145365715, 0.05108264461159706, 0.00016940805653575808, 0.026399793103337288, -0.011658778414130211, -0.005311766639351845, -0.03738934174180031, 0.02361183427274227, 0.01147461961954832, -0.013499312102794647, 0.00007444396032951772, -0.049685973674058914, -0.00862202513962984, -0.040467653423547745, 0.0048884060233831406, -0.0019392825197428465, 0.020139919593930244, 0.010543986223638058, 0.001608988270163536, -0.033529456704854965, 0.06535867601633072, 0.028620410710573196, 0.025151250883936882, -0.014096660539507866, 0.03427093103528023, 0.01987440511584282, -0.022277958691120148, -0.0043674129992723465, 0.0172104649245739, 0.008632349781692028, -0.053380731493234634, -0.005792008247226477, 0.03914995118975639, -0.0073433369398117065, 0.01372862234711647, 0.0017184554599225521, -0.016011223196983337, -0.05507160723209381, -0.006661505438387394, -0.0108965914696455, 0.05288461595773697, 0.011556773446500301, -0.01531099621206522, 0.02128615602850914, -0.02893747016787529, -0.03736606612801552, 0.0068382155150175095, -0.06695476174354553, -0.032223645597696304, 0.041935402899980545, -0.010638824664056301, -0.046397220343351364, 0.0016194088384509087, -0.016851916909217834, -0.01597275771200657, -0.03169085085391998, -0.025413094088435173, 0.00025074236327782273, 0.03752639889717102, -0.013014116324484348, 0.04276009276509285, -0.011287717148661613, 0.008732618764042854, 0.008725726045668125, 0.023389853537082672, -0.029889237135648727, -0.020627913996577263, -0.004447118379175663, 0.02900109812617302, 0.03911328688263893, -0.007952145300805569, 0.006110941059887409, 0.009137907065451145, 0.013358640484511852, 0.012716089375317097, -0.011711557395756245, 0.0003869690699502826, -0.025902317836880684, 0.020624501630663872, 0.012930748052895069, 0.017282191663980484, -0.02361469343304634, 0.05174175277352333, 0.023704232648015022, -0.04736746475100517, -0.058398064225912094, 0.03149905055761337, 0.06411530077457428, 0.007675321772694588, 0.05046343430876732, 0.007946913130581379, 0.022816192358732224, -0.021638033911585808, 0.023757418617606163, -0.01627308875322342, 0.056549862027168274, 0.018624113872647285, 0.04188212752342224, 0.019962428137660027, 0.027013983577489853, 0.06015273928642273, -0.034830205142498016, 0.0032387152314186096, 0.026702722534537315, 0.004014362581074238, -0.02352162078022957, 0.010979635640978813, -0.03485916182398796, 0.01958528719842434, 0.007487738039344549, -0.02976968325674534, -0.009304669685661793, -0.005641319788992405, -0.013443993404507637, -0.0196931641548872, -0.015373362228274345, 0.03364323079586029, -0.02559085749089718, 0.01707128994166851, 0.0025570979341864586, -0.019964898005127907, -0.0009824704611673951, 0.021897384896874428, -0.006229093763977289, -0.005922125186771154, 0.048129528760910034, 0.04127668961882591, 0.002570133190602064, 0.03216254711151123, -0.005341627635061741, -0.013408425264060497, -0.023215165361762047, 0.027629993855953217, -0.006217457354068756, -0.0036322602536529303, -0.011145064607262611, 0.01646561734378338, -0.0649818405508995, 0.033758744597435, -0.013545664958655834, -0.04809824377298355, 0.06339912861585617, -0.04346286132931709, -0.0379348024725914, -0.038388773798942566, 0.029896987602114677, -0.04149195924401283, -0.0009581641061231494, 0.01938142254948616, -0.017775651067495346, -0.052764467895030975, 0.014833956956863403, 0.003048459766432643, 0.0369095578789711, 0.04636438190937042, 0.06099503114819527, 0.012687026523053646, 0.04395892471075058, 0.0436926893889904, -0.039142902940511703, -0.009444558061659336, 0.03208167478442192, 0.012033196166157722, -0.02705821767449379, -0.030571376904845238, -0.035944052040576935, -0.0009328328887932003, -0.009029783308506012, -0.014284593053162098, 0.0175655297935009, 0.04613354057073593, 0.01667436584830284, -0.03965457156300545, 0.0033505300525575876, 0.030226459726691246, -0.01885189302265644, 0.0420912466943264, 0.009025666862726212, 0.034586139023303986, 0.011547370813786983, 0.004985949024558067, -0.007226275280117989, -0.0623023696243763, -0.004641221836209297, -0.05052817240357399, 0.032745301723480225, -0.05026388540863991, -0.024554139003157616, -0.028957676142454147, -0.02813011407852173, -0.023405607789754868, 0.031999606639146805, -0.02963581122457981, -0.06119672954082489, 0.039903029799461365, 0.017743609845638275, -0.003898147027939558, 0.013164760544896126, -0.02993815205991268, 0.014391073025763035, 0.04005772992968559, 0.02390957623720169, -0.013476104475557804, 0.024684293195605278, 0.044137727469205856, 0.006471011321991682, 0.035169366747140884, 0.002915486926212907, 0.029700377956032753, -0.018760554492473602, -0.02216039039194584, -0.040213875472545624, 0.024635188281536102, -0.01646001636981964, -0.06318141520023346, 0.031422894448041916, 0.035647109150886536, -0.006231960374861956, -0.04274618998169899, -0.058502353727817535, -0.009270981885492802, -0.029789648950099945, -0.03823748603463173, -0.0471901036798954, 0.004017631057649851, -0.012657687067985535, -0.02088451012969017, 0.004826901480555534, -0.06249203532934189, 0.15629206597805023, 0.049073994159698486, 0.03449771925806999, 0.037269461899995804, 0.013953628949820995, 0.05975819379091263, 0.045990828424692154, -0.01998175121843815, -0.028156237676739693, -0.013875558041036129, 0.009850731119513512, -0.050764504820108414, 0.03271135315299034, 0.04089925438165665, 0.02103286236524582, 0.0518542043864727, -0.05029087886214256, -0.0002943691215477884, 0.04190555214881897, -0.011434356682002544, -0.07244732230901718, 0.012418149039149284, 0.028194531798362732, 0.004124518018215895, -0.003157072002068162, 0.019771285355091095, -0.02079310454428196, -0.012567517347633839, -0.03023858554661274, -0.02588406577706337, 0.032796382904052734, -0.04572010040283203, 0.05093562975525856, -0.019548654556274414, -0.0334937609732151, 0.048003051429986954, -0.0005857109208591282, -0.0015380451222881675, 0.007188812363892794, 0.02320272848010063, -0.005521072540432215, 0.00678101135417819, 0.010337910614907742, -0.015067343600094318, -0.004169156774878502, 0.05549556761980057, -0.03804728388786316, -0.010804309509694576, 0.020254621282219887, -0.02871624194085598, 0.03921710327267647, -0.04906051978468895, 0.04840827360749245, -0.024517709389328957, -0.018861902877688408, 0.02625681273639202, -0.00895802304148674, 0.007811425719410181, -0.020894275978207588, 0.01771627739071846, 0.020597605034708977, -0.010349156334996223, -0.03721009939908981, 0.020524535328149796, -0.029285460710525513, 0.00740201398730278, 0.0512283593416214, -0.008503326214849949, -0.004082993138581514, -0.02112029865384102, -0.018069205805659294, -0.011836275458335876, 0.00059175631031394, -0.011376752518117428, 0.046379946172237396, 0.026320621371269226, 0.009252706542611122, 0.0336693599820137, 0.024652371183037758, -0.028132230043411255, -0.016701452434062958, -0.06023065000772476, -0.023972932249307632, -0.011811883188784122, 0.05758962407708168, 0.029883703216910362, -0.03768449276685715, -0.027387872338294983, -0.0019126390106976032, 0.06031322106719017, 0.02564910240471363, 0.007384889293462038, 0.021723216399550438, -0.010689614340662956, -0.015482612885534763 ]
Phnom Penh Post - South Korea's potential growth on downhill for decades South Korea's potential growth on downhill for decades Asia News Network | Publication date 19 August 2021 | 20:17 ICT Pedestrians cross a road in Gwanghwamun Square, of South Korean capital Seoul. YONHAP NEWS AGENCY Thu, 19 August 2021 Asia News Network South Korea's potential growth rate has declined for decades, reflecting the nation's aging society, slowing capital accumulation and changing job market, a think tank report showed on August 18. Asia's fourth-largest economy's potential growth rate – gross domestic product (GDP) per capita aged 15 and over – by decade came to an average 2.1 per cent in the 2010s, compared with 7.6 per cent in the 1980s, according to the Korea Economic Research Institute (Keri). The figure has been gradually falling, with 5.3 per cent in the 1990s and 3.8 per cent in the 2000s. A potential growth is the rate of economic expansion a country can sustain over the medium term without excess inflation. It has overall declined in advanced economies in recent decades. The think tank took total factor productivity, capital accumulation, labour hours and employment per decade into account when calculating the growth rates. As a result, all areas expect employment rate have been declining in recent decades. Total factor productivity (TFT) – a measure of productive efficiency by measuring the size of output from "unseen" inputs including labour, capital and regulations – fell to 2.9 per cent in the 2010s from 6.4 per cent in the 1980s. The figure stood at 4.2 per cent in the 1990s and 4.1 per cent in the 2000s. Capital accumulation reached its peak at 2.1 per cent in the 1990s from 0.7 per cent in the 1980s, then sharply fell to 0.3 per cent in the 2000s. It stood flat at zero per cent in the 2010s. Average labour hours came to minus 1.2 per cent in the 2010s, compared with 0.1 per cent in the 1980s. It stood at 0.8 per cent and 0.9 per cent in the 1990s and 2000s, respectively. Meanwhile, the employment rate has steadily hovered around 0.4 per cent in the cited decades, Keri said. The think tank voiced concerns that the slowing pace of the potential growth could eventually pull the economy down into negative growth, if the issues remain unresolved. The changing labour market affected by the nation's declining birthrate and the aging population trend is likely to further drag down the growth potential, it added. The nation has been slowly morphing into an aged society. The number of senior citizens, or people aged 65 and older, came to 8.21 million as of November, data from Statistics Korea showed, accounting for 16.4 per cent of the total population. The economy is projected to become a super-aged society in 2025, when those aged 65 and older account for 20 per cent of the population. The total fertility rate – the average number of children a woman bears in her lifetime – hit a new record low of 0.84 last year, the same data showed. It marked the third straight year that the rate was below one per cent. Overall, South Korea's total population grew slightly in the cited period, as more Koreans living overseas returned home due to the global Covid-19 pandemic. A total of 51.83 million people lived in South Korea as of November 1, up 0.1 per cent or 50,000 year-on-year. "Since there is a limit to supply in labour and capital, Korea must boost its total factor productivity to nurture its growth potential," said Choo Kwang-ho, the head of Keri's economy policy division. "In order to achieve that, an overhaul of the strict business regulations, tax benefits and support for more research and development must be implemented," Choo added. THE KOREA HERALD/ASIA NEWS NETWORK Contact author: Asia News Network Labour shortages in Japan overshadow economic recovery 2021-2023 recovery plan launched Progress on jab drive, Covid control key to recovery: NBC IMF lauds Kingdom's early-Covid moves 2021-23 plan for economic recovery on way: minister Indonesia pushes economic recovery goals back to 2022 The macroeconomic assumptions of a recently released 2022 state budget draft reflect the expectation that Indonesia's economy will largely return to pre-pandemic conditions by 2022, a Economic measures mounted to recover from Covid-19 and boost private funding IMF approves $240M grant for pandemic recovery fund Japan, Mekong states back Cambodia's economic recovery initiative Lockdown eased, time​ to get the economy in order
[ 0.0025405879132449627, 0.0071248686872422695, -0.027677835896611214, 0.019137850031256676, -0.005108138546347618, -0.010531499050557613, 0.012257465161383152, 0.011193866841495037, 0.010840971022844315, 0.0355389341711998, 0.04319159314036369, -0.026633543893694878, -0.007485995069146156, -0.049583226442337036, 0.0064468528144061565, 0.004843791946768761, -0.019061988219618797, -0.04463007301092148, -0.0169718898832798, 0.000410228269174695, -0.0009471818339079618, 0.001542067970149219, -0.05175541341304779, -0.0368490032851696, -0.018729044124484062, 0.07077909260988235, 0.03332025557756424, 0.016337865963578224, 0.060500502586364746, 0.05735396593809128, 0.006420189514756203, -0.07304684072732925, 0.01104933861643076, -0.036590009927749634, -0.03486262261867523, -0.009083712473511696, 0.02463454194366932, -0.0320114865899086, 0.0077506923116743565, -0.0425565242767334, 0.01519894227385521, -0.01650930382311344, 0.05081452056765556, -0.037334974855184555, -0.020545216277241707, 0.011079289019107819, -0.009155301377177238, -0.0513349287211895, 0.0034805189352482557, -0.03387591615319252, -0.017244035378098488, -0.01717425137758255, 0.03959616273641586, -0.015326553024351597, 0.005292399786412716, -0.013399587012827396, 0.013338491320610046, -0.009415346197783947, -0.025790758430957794, 0.062289685010910034, 0.032596394419670105, 0.024460136890411377, 0.04631670191884041, -0.052484944462776184, 0.020228790119290352, 0.02073545567691326, 0.019497927278280258, -0.02408016100525856, 0.013365639373660088, -0.03709251061081886, -0.03554151952266693, -0.016764752566814423, -0.034693118184804916, -0.024129483848810196, -0.005926670040935278, 0.004115507006645203, -0.005623456556349993, 0.002634200267493725, 0.009853637777268887, -0.02165316790342331, 0.02300300821661949, 0.04438324272632599, -0.01466683391481638, 0.026362227275967598, -0.045316681265830994, 0.0006868040072731674, -0.003418891690671444, 0.020155882462859154, 0.006100316997617483, 0.02547692507505417, -0.007820871658623219, 0.04932358115911484, 0.010705366730690002, 0.025914093479514122, 0.010167407803237438, 0.038249000906944275, -0.03480078652501106, -0.001960125984624028, -0.028606487438082695, -0.007177920080721378, 0.022725816816091537, 0.009678020142018795, -0.021573394536972046, 0.04914091154932976, -0.045261234045028687, -0.010954361408948898, 0.004312117118388414, -0.03038596920669079, -0.011496637016534805, -0.034819621592760086, -0.013173472136259079, -0.009454970248043537, 0.007620722986757755, -0.004837461281567812, 0.02630702033638954, 0.052570246160030365, 0.026497146114706993, -0.0063392953015863895, -0.039971236139535904, 0.017098501324653625, -0.00832827016711235, 0.0202717874199152, 0.03596886619925499, 0.010752120055258274, 0.010223469696938992, -0.03459375351667404, -0.011700992472469807, 0.059153277426958084, -0.03776578977704048, -0.02364138700067997, 0.0012992711272090673, -0.030637724325060844, -0.02748212218284607, 0.012399530969560146, 0.0019928552210330963, 0.009190998040139675, 0.01852668635547161, 0.04569662734866142, 0.008238711394369602, -0.059944119304418564, 0.048407044261693954, 0.0226624496281147, -0.009734048508107662, 0.07307340204715729, -0.008826246485114098, 0.021618342027068138, -0.020415443927049637, -0.007899186573922634, -0.009143652394413948, 0.01874775066971779, -0.0511603020131588, 0.016292264685034752, -0.006692463532090187, 0.014290870167315006, -0.024363482370972633, 0.006260477937757969, -0.023302452638745308, 0.022530648857355118, 0.028138911351561546, 0.01428972277790308, -0.022010477259755135, -0.012180542573332787, -0.005402132403105497, 0.04877964407205582, -0.023825054988265038, 0.029328735545277596, -0.03369111940264702, -0.013125638477504253, 0.012979714199900627, -0.050119370222091675, 0.010430129244923592, 0.01781902089715004, -0.029450945556163788, 0.018834296613931656, 0.02523249015212059, 0.0717809870839119, 0.05229752138257027, -0.007634466048330069, 0.07595253735780716, 0.0619366355240345, -0.05431532487273216, -0.011293793097138405, -0.011766433715820312, 0.07311011850833893, 0.001444469322450459, 0.007525843568146229, 0.009271600283682346, -0.020460357889533043, 0.004337141755968332, -0.031055347993969917, -0.020081819966435432, 0.018319861963391304, -0.03796105086803436, 0.03152688220143318, -0.014889650046825409, -0.007898017764091492, -0.011408858001232147, -0.022595103830099106, 0.008884060196578503, -0.0695132315158844, -0.04630132019519806, 0.04590791091322899, -0.0312044620513916, 0.03085242584347725, 0.004779804963618517, -0.01641119457781315, 0.018451789394021034, 0.07497289776802063, -0.03216914087533951, 0.02704104408621788, 0.047966279089450836, 0.0127631900832057, -0.03261110186576843, -0.018606292083859444, 0.024388745427131653, -0.020600277930498123, -0.03161369264125824, 0.04975083842873573, 0.009579861536622047, -0.005525874439626932, 0.05132612586021423, 0.022642798721790314, 0.003148836549371481, 0.010609213262796402, 0.014349916018545628, 0.019053781405091286, 0.021523935720324516, 0.04658813774585724, 0.002634946722537279, -0.025153888389468193, -0.0026236996054649353, 0.033090703189373016, 0.01584390178322792, 0.03726949170231819, 0.037123918533325195, -0.0042783347889781, 0.03652268648147583, 0.04385179653763771, -0.03379599377512932, 0.037308938801288605, -0.017428159713745117, 0.010047340765595436, 0.05539454147219658, 0.027469929307699203, -0.0547381266951561, 0.046485912054777145, -0.028069697320461273, -0.01245936844497919, -0.02236492745578289, 0.044304292649030685, -0.002322806976735592, 0.042823050171136856, 0.03241635859012604, 0.04499625042080879, -0.04117509722709656, 0.00663683470338583, 0.05560973659157753, 0.07902814447879791, -0.029127076268196106, -0.03543390706181526, 0.02897866815328598, 0.030905835330486298, -0.00039267772808671, -0.030063876882195473, 0.011506754904985428, 0.021613916382193565, -0.023730216547846794, 0.0313335545361042, -0.017508048564195633, -0.02571883797645569, -0.01886565610766411, -0.042798109352588654, -0.06715212762355804, -0.029320145025849342, -0.04612113535404205, -0.00814540684223175, 0.027209041640162468, -0.030125733464956284, 0.008572821505367756, 0.0013152643805369735, -0.03141335770487785, -0.01900423876941204, 0.014083785004913807, 0.023469073697924614, 0.031563665717840195, 0.04351482912898064, -0.005004694685339928, 0.025348106399178505, 0.008097154088318348, 0.027485832571983337, -0.031158985570073128, -0.00945266243070364, -0.0049137212336063385, -0.012305433861911297, 0.03731630742549896, -0.018020424991846085, 0.018869677558541298, 0.021844826638698578, -0.035176124423742294, -0.05601015314459801, -0.0048344433307647705, 0.011038405820727348, -0.0462019108235836, -0.024223022162914276, -0.02027156762778759, 0.0527176670730114, 0.01586238481104374, -0.011976156383752823, 0.07293982058763504, 0.04389576613903046, -0.026026412844657898, 0.022172514349222183, 0.02327035553753376, -0.012555433437228203, -0.04710603877902031, 0.06041985750198364, 0.044082868844270706, -0.02683315984904766, 0.020157698541879654, 0.008832281455397606, -0.013921146281063557, 0.00219129491597414, 0.048683688044548035, -0.005982980597764254, -0.008394225500524044, 0.012036657892167568, 0.040067724883556366, -0.06737688183784485, 0.019973106682300568, -0.0711728185415268, -0.03169148042798042, -0.021017270162701607, -0.01597205176949501, 0.004863107111304998, 0.01784651353955269, -0.00505647249519825, 0.005772299133241177, -0.03519902378320694, -0.01862870715558529, 0.021297506988048553, 0.04567711055278778, -0.02236766368150711, 0.00952267087996006, 0.03173338994383812, -0.002015220234170556, 0.0351472906768322, 0.033326249569654465, 0.022285716608166695, 0.017321934923529625, 0.007043698336929083, -0.013924130238592625, 0.021743353456258774, 0.04670783504843712, 0.019700851291418076, -0.002329717157408595, 0.04996417835354805, -0.03395596146583557, -0.018652552738785744, -0.001423362293280661, -0.011183843947947025, 0.025706008076667786, -0.005984869319945574, 0.02862224355340004, -0.015133390203118324, -0.045476704835891724, -0.046227097511291504, 0.02592288702726364, 0.00904606282711029, 0.0636088103055954, -0.05324539542198181, 0.050781767815351486, 0.0034286268055438995, -0.04243633151054382, 0.04282373562455177, -0.03148985281586647, 0.0005051525658927858, 0.06256513297557831, 0.025913940742611885, 0.026135064661502838, -0.04433145374059677, 0.017105327919125557, -0.01435457170009613, 0.006942897103726864, 0.035079605877399445, 0.025294309481978416, 0.036094699054956436, -0.002487345365807414, -0.004045363049954176, -0.02158704772591591, -0.07902790606021881, -0.014085652306675911, -0.019527507945895195, 0.004431192297488451, -0.009994479827582836, -0.03695521876215935, -0.045291636139154434, 0.015778308734297752, 0.03766126558184624, 0.03686264902353287, 0.003663503797724843, 0.029837392270565033, 0.002018815139308572, 0.043473854660987854, 0.03010115586221218, 0.011869614012539387, -0.015281029045581818, -0.010265194810926914, 0.052987486124038696, 0.02303498424589634, -0.011034170165657997, 0.001614435575902462, -0.04401908069849014, -0.018512872979044914, 0.01299413200467825, -0.009837650693953037, -0.011364619247615337, -0.012200498022139072, -0.038532525300979614, -0.0014549605548381805, 0.024347661063075066, -0.018479224294424057, 0.003114294959232211, -0.008378211408853531, 0.03655468299984932, -0.009385473094880581, -0.035238344222307205, 0.000020226911146892235, -0.05269616097211838, 0.05323508381843567, 0.021809330210089684, -0.013447247445583344, -0.0717184916138649, -0.014783289283514023, 0.0016636652871966362, -0.011434515938162804, -0.0059182653203606606, 0.03404230624437332, -0.0034415461122989655, -0.006899810396134853, -0.07057838141918182, 0.020485447719693184, 0.022066395729780197, 0.014751710928976536, -0.008658697828650475, 0.02223632112145424, 0.031038139015436172, -0.02235138975083828, 0.020358528941869736, -0.014148526825010777, -0.02691151387989521, 0.012837727554142475, -0.03011293336749077, 0.02827150747179985, -0.01243520062416792, -0.03551478683948517, -0.007203124463558197, -0.00686224177479744, 0.002394585870206356, 0.04026969149708748, -0.02220401167869568, -0.012734533287584782, 0.0013865449000149965, 0.02636849693953991, -0.04779237136244774, -0.032644372433423996, 0.04672030359506607, 0.018601398915052414, -0.020220289006829262, 0.03390930965542793, 0.04317303001880646, -0.010892159305512905, 0.022913143038749695, 0.008391192182898521, -0.06214030086994171, 0.031776636838912964, -0.028912892565131187, 0.02158931829035282, -0.0092350197955966, -0.025253718718886375, 0.003834508592262864, -0.013958695344626904, 0.02853110060095787, 0.012091546319425106, -0.030533773824572563, -0.0060593741945922375, -0.04858601838350296, -0.012128188274800777, 0.004596403334289789, -0.01880565471947193, 0.02552458830177784, 0.012800359167158604, -0.01880335994064808, -0.00567258708178997, -0.031124459579586983, -0.0030120001174509525, -0.016339587047696114, 0.005841916427016258, 0.0029638498090207577, -0.009032045491039753, -0.0032362877391278744, -0.02409680187702179, -0.025117604061961174, -0.04620083048939705, -0.028030160814523697, -0.014040959067642689, -0.018116120249032974, -0.05707167088985443, -0.01321574579924345, -0.044634416699409485, -0.018080223351716995, -0.04645181819796562, -0.01116903591901064, -0.02754710055887699, 0.007541300263255835, 0.02859405428171158, -0.005516816396266222, 0.018247215077280998, -0.002009907504543662, -0.014717798680067062, 0.05685671046376228, 0.023073911666870117, -0.055539555847644806, -0.01081897970288992, 0.04321403428912163, -0.004512368701398373, 0.056433048099279404, -0.04368304833769798, -0.04037217050790787, -0.027829216793179512, -0.08752671629190445, -0.010200221091508865, -0.061237163841724396, -0.0356467142701149, -0.02030939795076847, -0.025231219828128815, -0.013610882684588432, 0.02946365438401699, 0.020448893308639526, -0.010821989737451077, 0.0020684991031885147, -0.02302180789411068, -0.0008099995320662856, -0.023689083755016327, -0.033267248421907425, -0.022920528426766396, -0.04781294986605644, 0.018205182626843452, 0.06115638092160225, 0.006271583493798971, 0.04130988195538521, 0.00045683406642638147, -0.023633664473891258, 0.023774199187755585, 0.016286363825201988, -0.059770915657281876, -0.06974361836910248, 0.02575039491057396, 0.022484606131911278, -0.014860562048852444, -0.023452378809452057, -0.048311199992895126, 0.07979847490787506, -0.024492254480719566, 0.0366901159286499, 0.005407782271504402, -0.009531179443001747, -0.0155642693862319, -0.011979672126471996, 0.05175172910094261, -0.033202484250068665, 0.010274919681251049, -0.01177382655441761, 0.06510273367166519, 0.06849578022956848, 0.019581731408834457, -0.011368861421942711, -0.053918249905109406, -0.04391820728778839, -0.06308914721012115, 0.030050691217184067, -0.025209488347172737, -0.013141605071723461, -0.0069484100677073, -0.004724748898297548, 0.016344407573342323, -0.006058394443243742, 0.05124857649207115, 0.05810210108757019, 0.00902887899428606, -0.002953104441985488, -0.004713746719062328, 0.03235525265336037, 0.03322289139032364, -0.017325345426797867, -0.015814678743481636, -0.005704434122890234, -0.03770143538713455, 0.0047620609402656555, -0.044184502214193344, -0.06867761164903641, -0.06623774021863937, -0.018268747255206108, 0.0839933305978775, 0.002082968130707741, 0.03515469282865524, 0.00858690869063139, -0.06564836949110031, -0.05323963984847069, 0.0317351408302784, -0.01721334084868431, 0.05493048578500748, 0.04373714700341225, 0.0008687992813065648, -0.006988896522670984, 0.05565345659852028, -0.009364704601466656, 0.014440326951444149, -0.045496150851249695, 0.055642470717430115, -0.04036187380552292, -0.07892265170812607, 0.018478401005268097, 0.05666439235210419, -0.06540068238973618, -0.046362992376089096, -0.00260133552365005, -0.021117592230439186, 0.0045618643052875996, -0.022312212735414505, 0.029714014381170273, -0.026325557380914688, -0.017684394493699074, -0.006627282127737999, 0.029612287878990173, 0.0009358873357996345, 0.032521408051252365, 0.0050376527942717075, 0.021792786195874214, -0.03680797666311264, 0.009713876061141491, 0.030035849660634995, -0.013304825872182846, -0.0021363962441682816, -0.0173969566822052, 0.0021972362883388996, 0.022887330502271652, 0.007800525985658169, 0.06566498428583145, -0.02560010924935341, 0.022849904373288155, 0.021860774606466293, -0.0029212418012320995, 0.04935463145375252, 0.005141749046742916, -0.013555653393268585, 0.032561127096414566, -0.008661476895213127, -0.051733143627643585, -0.058464132249355316, 0.022525716572999954, 0.008079738356173038, 0.05342703312635422, -0.016129426658153534, -0.009497650898993015, 0.01460652332752943, -0.010399692691862583, -0.02039284259080887, -0.05452115461230278, -0.04295935854315758, -0.04081418365240097, -0.03855093568563461, -0.05531824380159378, -0.009674303233623505, -0.036749131977558136, 0.03620730713009834, 0.019801421090960503, -0.044711705297231674, -0.009219326078891754, 0.04115670546889305, -0.026466157287359238, 0.033859048038721085, -0.03091282583773136, 0.023650798946619034, -0.017214195802807808, -0.0228266678750515, -0.04952004551887512, 0.010600500740110874, -0.018019668757915497, 0.028721459209918976, -0.00951472856104374, 0.03875812143087387, 0.0060885907150805, -0.001097379019483924, 0.014457994140684605, -0.012663614936172962, 0.01347861997783184, -0.04239547997713089, -0.009921876713633537, 0.022815503180027008, 0.02338758297264576, 0.03212330490350723, 0.023701073601841927, 0.004036653321236372, 0.005101954564452171, -0.03292940929532051, -0.01872371882200241, -0.016164245083928108, 0.00973533745855093, 0.005282244179397821, -0.014535906724631786, -0.01689295843243599, -0.032601144164800644, -0.00430301483720541, -0.03536131605505943, 0.012524040415883064, -0.0437176339328289, 0.03927537798881531, -0.013008705340325832, 0.012753468938171864, 0.01529874000698328, 0.05126718431711197, 0.0016447192756459117, 0.013976281508803368, -0.009896446950733662, 0.025715071707963943, 0.024222567677497864, -0.0028177895583212376, 0.018698548898100853, 0.02040720172226429, 0.039782971143722534, -0.04406963288784027, 0.009015488438308239, 0.02703419141471386, -0.010191895067691803, 0.0348946675658226, -0.008747177198529243, -0.047277435660362244, -0.03865659609436989, -0.01090172678232193, -0.007287911139428616, 0.06165234372019768, -0.006068594753742218, -0.016987115144729614, 0.006271395832300186, -0.01600213535130024, -0.049391087144613266, -0.010279802605509758, -0.03338608890771866, -0.0457456149160862, 0.03262942284345627, -0.009559541009366512, -0.02524412050843239, -0.000008942832209868357, -0.04207579046487808, 0.0015489145880565047, -0.029581304639577866, -0.0030475417152047157, 0.0010519068455323577, 0.022346999496221542, -0.007366579957306385, 0.053501732647418976, -0.03058660216629505, 0.010196018032729626, 0.036430589854717255, 0.051657937467098236, -0.05123301222920418, -0.061767496168613434, 0.012545580044388771, 0.010373231954872608, -0.008290154859423637, -0.02564154751598835, -0.01557623315602541, 0.013527682051062584, 0.03611842170357704, -0.0012270620791241527, 0.014913870021700859, 0.008494731970131397, 0.0032335983123630285, 0.04330815374851227, 0.015890737995505333, -0.012925841845571995, -0.03141314908862114, 0.041103802621364594, 0.02401459403336048, -0.05596848949790001, -0.033496253192424774, 0.029138395562767982, 0.05488801375031471, -0.006606648210436106, 0.017686057835817337, 0.0008491852204315364, 0.045795563608407974, -0.018238674849271774, 0.021706558763980865, -0.016231495887041092, 0.05473622307181358, 0.04541463032364845, 0.03312952443957329, 0.014356297440826893, 0.03556535765528679, 0.027504432946443558, -0.057036060839891434, -0.0319865457713604, 0.03499213606119156, 0.021185560151934624, -0.023135602474212646, -0.02329343929886818, -0.021610280498862267, 0.01208711788058281, 0.0008669175440445542, -0.04315517097711563, -0.02641497552394867, -0.043775249272584915, 0.03425084799528122, -0.02233230508863926, -0.013230616226792336, 0.05375324934720993, -0.00812206044793129, -0.010722137987613678, -0.012328997254371643, -0.0296313539147377, 0.0075514852069318295, -0.010797667317092419, -0.005696397740393877, 0.009136741980910301, 0.042670585215091705, 0.03554312139749527, 0.021266436204314232, 0.048013366758823395, 0.028353266417980194, 0.003681167960166931, -0.013775082305073738, 0.0008939576800912619, 0.014904297888278961, -0.02478565089404583, -0.018705658614635468, 0.008835462853312492, -0.012070046737790108, 0.05850647762417793, -0.025885237380862236, 0.01036148052662611, 0.031611256301403046, -0.04896222800016403, -0.0114012211561203, -0.06388897448778152, 0.040365055203437805, -0.036622222512960434, -0.013669563457369804, 0.022064069285988808, -0.005875544156879187, -0.022447986528277397, 0.050596266984939575, -0.013801214285194874, 0.009078619070351124, 0.018802978098392487, 0.0786227360367775, -0.009967914782464504, 0.05961557477712631, 0.06879980117082596, -0.015889372676610947, -0.008765079081058502, -0.005233375355601311, -0.006944500841200352, -0.004416101612150669, -0.016284262761473656, -0.025962045416235924, -0.020258978009223938, -0.027425184845924377, -0.023329170420765877, -0.010758761316537857, 0.04728393629193306, 0.008669015020132065, -0.053247421979904175, -0.016352634876966476, 0.0230479147285223, -0.01552608609199524, -0.003236217424273491, 0.019077995792031288, 0.06023755669593811, -0.024734770879149437, -0.001512959017418325, 0.01299136783927679, 0.000952308822888881, -0.00268769939430058, -0.021502995863556862, 0.023404397070407867, -0.0025888674426823854, -0.05218154564499855, -0.018569206818938255, -0.04894353449344635, -0.020008595660328865, -0.012360815890133381, -0.026154614984989166, -0.06005862355232239, 0.04975638538599014, 0.036852139979600906, 0.020662859082221985, 0.01120146457105875, -0.03846307471394539, 0.0035041985101997852, 0.027786660939455032, 0.06426621973514557, -0.0022942230571061373, 0.012928697280585766, 0.02314121089875698, -0.004450587090104818, 0.008686831220984459, -0.04319383576512337, 0.023856421932578087, -0.02864581160247326, -0.01662493124604225, -0.02418006770312786, 0.031239259988069534, -0.02355326898396015, -0.05511346831917763, -0.0006816816749051213, 0.027849921956658363, 0.012283082120120525, -0.002070686314254999, -0.05584734305739403, -0.001304197241552174, -0.08123388141393661, 0.012828152626752853, -0.029099969193339348, 0.045497309416532516, -0.03715435042977333, 0.002043662592768669, 0.0004415452713146806, -0.08232537657022476, 0.13801580667495728, 0.08373791724443436, 0.04130464047193527, 0.005547850392758846, 0.04956426844000816, 0.03567422926425934, 0.03699532523751259, -0.030434656888246536, -0.007125667296350002, -0.015727847814559937, 0.03397876396775246, 0.0005588634521700442, 0.0011450658785179257, -0.010326183401048183, 0.020782368257641792, 0.035617418587207794, -0.027218015864491463, 0.012373846024274826, 0.02204912155866623, -0.02928975038230419, -0.04837123677134514, 0.03442785516381264, 0.002463753568008542, 0.018084915354847908, 0.0008825658005662262, 0.025612037628889084, 0.029651779681444168, -0.03167515993118286, -0.027585159987211227, -0.0064268470741808414, 0.023469911888241768, -0.05711765214800835, 0.02946624532341957, 0.01106618158519268, -0.04924830049276352, 0.04093845933675766, 0.007249445654451847, -0.013118012808263302, 0.00582488439977169, 0.004397460259497166, -0.009933581575751305, -0.025256291031837463, -0.00010027808457380161, -0.049366626888513565, 0.001811425550840795, 0.06556684523820877, -0.02124585583806038, -0.0021151616238057613, 0.028133567422628403, -0.04269938915967941, 0.024824628606438637, -0.036019470542669296, 0.04833992198109627, -0.002828165190294385, -0.017432134598493576, -0.008280725218355656, 0.0019075523596256971, -0.009244786575436592, 0.004098784178495407, 0.014092343859374523, 0.03669172525405884, 0.017619796097278595, 0.008481147699058056, 0.015506849624216557, -0.04971802607178688, 0.021464897319674492, 0.0017757454188540578, -0.019444340839982033, -0.0175143051892519, 0.002359179314225912, -0.00007747623749310151, -0.021134447306394577, -0.021866492927074432, -0.006837401073426008, 0.002342312829568982, 0.036721646785736084, -0.012099250219762325, 0.014317757450044155, -0.019735591486096382, -0.03275314345955849, -0.027788512408733368, -0.03617635369300842, 0.016949282959103584, -0.023656679317355156, 0.020370831713080406, 0.05901008099317551, -0.05081912875175476, -0.032355815172195435, -0.011677874252200127, 0.06342624127864838, 0.0334959477186203, 0.04215981066226959, -0.03268222510814667, -0.04269200190901756, -0.008053004741668701 ]
Heart Disease Linked to Pollution DALLAS – Air pollution in U.S. cities is twice as likely to cause death from heart disease as respiratory ailments, say researchers who last year presented the strongest evidence yet linking pollution with fatal lung cancer. The new finding, which the researchers say surprised them, is included in a study published Tuesday in Circulation, the journal of the Dallas-based American Heart Association. "It certainly did surprise us when we first observed these results," said lead author C. Arden Pope III, an epidemiologist at Brigham Young University in Provo, Utah. "We just sort of anticipated that breathing particles into your lungs would most likely have a direct impact on your lungs." Still, Pope stressed that the lungs are intricately involved with their findings. For example, pulmonary inflammation from breathing polluted air can lead to heart disease. The study analyzed data from a survey of 500,000 adults who enrolled in an American Cancer Society survey on cancer prevention in 1982. It expands on a previous study by Pope and others published in the March 2002 issue of the Journal of the American Medical Association. In the latest analysis, researchers found that 45 percent of deaths were due to cardiovascular diseases – including heart attacks, heart failure and cardiac arrest. Respiratory diseases accounted for 8.2 percent of deaths. The researchers matched the death statistics with air pollution data for more than 150 cities kept by the Environmental Protection Agency. Even after controlling other risk factors, such as smoking, diet, weight and occupation, the scientists still found that air pollution increased the chances of heart disease, Pope said. "This link was stronger for cardiovascular disease than respiratory disease," Pope said. "Substantially more than two-thirds of deaths due to air pollution are cardiovascular deaths, or heart diseases, if you will, versus respiratory deaths." The pollution risk is from what scientists call combustion-related fine particulate matter – soot emitted by cars and trucks, coal-fired power plants and factories. Ralph Delfino, a University of California at Irvine epidemiologist, is researching how daily pollution levels affect senior citizens with existing heart disease. Delfino said the Pope study, with which he was not involved, is "quite important" because it covered cities in all 50 states. "I think it should serve not as the last word but as an encouragement to do more intensive investigations," said Delfino, who reviewed the study at the request of the Associated Press. Delfino noted that the researchers considered the effects of pollutants on current and former smokers and those who had never smoked. "And even among smokers, these air pollutants seem to have an effect," he said. "Even someone that is inhaling, in a sense, a large amount of the same kinds of pollutants still is affected by these lower levels of pollutants in the outdoor air." Air pollution is not the dominant cause of atherosclerotic heart diseases – a narrowing of the arteries caused by buildup of plaque. Still, Pope said the study's results "are consistent with findings that air pollution provokes inflammation, accelerates atherosclerosis and alters cardiac function. "We might be able to reduce the underlying processes of some cardiovascular diseases just by reducing the exposure to air pollutants," he said. "And possibly, there may be ways to mitigate the impacts of air pollution, such as anti-inflammatory medications or other interventions."
[ -0.03981738165020943, 0.025670193135738373, 0.008526891469955444, 0.012586651369929314, -0.01511489599943161, 0.02539544552564621, -0.014555905945599079, 0.016543487086892128, 0.026959329843521118, 0.023453375324606895, 0.045827798545360565, -0.036382708698511124, 0.03135456144809723, -0.045050498098134995, -0.005486448295414448, -0.010011942125856876, -0.01630767621099949, -0.024193493649363518, -0.012423228472471237, 0.011636036448180676, -0.00935812946408987, 0.025042200461030006, -0.07127391546964645, -0.04218963533639908, -0.00019147963030263782, 0.014555070549249649, 0.037278346717357635, -0.0027034336235374212, 0.04758970066905022, 0.06574136763811111, -0.011743851006031036, -0.04148256033658981, 0.04357597976922989, -0.049506060779094696, -0.029132690280675888, -0.0063331881538033485, 0.043962445110082626, -0.04009515792131424, -0.009626111015677452, -0.02384471334517002, 0.010614520870149136, -0.03292340040206909, 0.04526045173406601, -0.02966008149087429, -0.030132021754980087, -0.0024068295024335384, -0.027104279026389122, -0.006141144782304764, 0.01771659590303898, -0.012405886314809322, -0.021558798849582672, 0.011292348615825176, 0.02583160065114498, -0.0016161238308995962, 0.011361006647348404, 0.0011919841635972261, -0.018321484327316284, 0.005359232425689697, -0.005861809942871332, 0.03918566182255745, 0.034877195954322815, -0.02608557417988777, 0.01457836851477623, -0.05277995020151138, 0.04863967373967171, 0.04780038818717003, -0.00014332751743495464, -0.02430632896721363, 0.001780021353624761, 0.029649708420038223, 0.006686759181320667, -0.0069531043991446495, -0.013938253745436668, -0.0007739588618278503, 0.022320585325360298, -0.022090177983045578, 0.013762343674898148, 0.0053749182261526585, -0.02625381387770176, -0.027278872206807137, -0.008642669767141342, 0.0493575781583786, 0.023609593510627747, 0.013148212805390358, -0.07600060850381851, -0.016733715310692787, -0.007350430358201265, 0.023432832211256027, 0.02127356082201004, 0.008982710540294647, 0.007040227297693491, 0.056339915841817856, 0.02223646268248558, -0.009106837213039398, 0.031252309679985046, 0.052346453070640564, -0.06148369237780571, 0.020399844273924828, -0.015931135043501854, -0.014144943095743656, 0.03476136922836304, 0.02481686696410179, -0.025118837133049965, 0.0671638697385788, -0.03824850544333458, -0.0016507436521351337, 0.016634738072752953, 0.0005164701142348349, -0.0005359622882679105, -0.03996904194355011, 0.022663313895463943, -0.02119288593530655, 0.007550307083874941, -0.0031436432618647814, 0.022623833268880844, 0.044034890830516815, 0.007990505546331406, 0.0744684636592865, -0.033720534294843674, 0.03694649413228035, -0.007847757078707218, -0.017263565212488174, 0.019062800332903862, -0.01110932044684887, 0.025598090142011642, -0.01713094860315323, -0.03764544054865837, 0.07422436028718948, -0.03343343362212181, 0.005722797475755215, 0.023949244990944862, -0.03843534365296364, -0.02255099266767502, 0.017681188881397247, -0.031204983592033386, -0.010384459048509598, -0.0014028525911271572, 0.05884914472699165, 0.013609939254820347, -0.02707044407725334, 0.0415969081223011, 0.040764592587947845, -0.0038194344379007816, 0.10050059109926224, -0.024812566116452217, 0.05862918123602867, 0.0019480164628475904, -0.009335428476333618, -0.033810749650001526, 0.030830131843686104, -0.04790076985955238, 0.039666227996349335, 0.0015183668583631516, 0.013451864942908287, -0.015067883767187595, 0.05022500827908516, 0.0022636973299086094, 0.009779863059520721, 0.024710791185498238, 0.02465839311480522, -0.05383260175585747, 0.006600378081202507, 0.0029257594142109156, 0.029907409101724625, -0.03150687739253044, 0.043729737401008606, -0.04303678125143051, -0.006088156718760729, 0.010949520394206047, -0.04249481484293938, 0.02421567402780056, 0.008586568757891655, -0.038507573306560516, 0.006307776551693678, 0.03611042723059654, 0.0342123880982399, 0.020315537229180336, 0.014328483492136002, 0.02658090554177761, 0.06828660517930984, -0.03287830948829651, -0.0050426144152879715, 0.00014095366350375116, 0.04467841982841492, 0.02308635413646698, 0.0012333841295912862, -0.014108465053141117, -0.001920692389830947, -0.0357169583439827, -0.03319644555449486, 0.015015069395303726, 0.007158615626394749, -0.023537231609225273, 0.04547809064388275, 0.012683889828622341, 0.018673598766326904, -0.010047588497400284, 0.002141778590157628, 0.011877994053065777, -0.048954304307699203, -0.02253866195678711, 0.031209377571940422, -0.03639909625053406, 0.014692137949168682, -0.013066715560853481, 0.012289861217141151, 0.01432228647172451, 0.0792047530412674, -0.018378179520368576, 0.006669124588370323, 0.06184864044189453, 0.020320719107985497, 0.014776036143302917, -0.01909971795976162, 0.005319122690707445, 0.007085655350238085, -0.04137386754155159, 0.02889721840620041, -0.00731556536629796, -0.015165597200393677, -0.0015421893913298845, 0.003252714639529586, 0.03638022392988205, 0.018229449167847633, 0.0006509337108582258, 0.001993458950892091, 0.012914399616420269, 0.05682414397597313, -0.013905438594520092, -0.018463311716914177, 0.02280300296843052, 0.027981258928775787, 0.04071369394659996, 0.04576309770345688, 0.0563126876950264, 0.02555135451257229, 0.06853259354829788, 0.04454650357365608, 0.001667939592152834, 0.05466792359948158, -0.0221086572855711, 0.059173598885536194, 0.04058545455336571, 0.03530411794781685, -0.008942287415266037, 0.03001011349260807, -0.03787647560238838, -0.005574616137892008, -0.03154236450791359, 0.0469682402908802, 0.011975480243563652, 0.026360025629401207, 0.0422416552901268, 0.04816047102212906, -0.0393277183175087, 0.014068099670112133, 0.031924884766340256, 0.024551907554268837, -0.02854110486805439, -0.041323401033878326, 0.013291512615978718, 0.022990824654698372, -0.004450880456715822, 0.003165061119943857, 0.043700363487005234, 0.03189558908343315, -0.020879462361335754, 0.014845599420368671, 0.011429059319198132, -0.035474780946969986, -0.04541541263461113, -0.044001705944538116, -0.05282345786690712, -0.041948020458221436, -0.06542563438415527, 0.01321536023169756, 0.04252217337489128, -0.051190003752708435, -0.0036099592689424753, 0.007267802953720093, -0.026628810912370682, -0.013454844243824482, -0.019662106409668922, 0.034072745591402054, 0.04298245906829834, 0.07029023766517639, -0.04717656224966049, 0.057532843202352524, 0.0033529605716466904, 0.0012693750904873013, -0.010692170821130276, -0.0353112518787384, -0.02163694053888321, -0.018613772466778755, 0.04808611422777176, -0.03370800241827965, 0.0011009686859324574, -0.012805728241801262, -0.03409920260310173, -0.0542389415204525, 0.017119968309998512, 0.003792310133576393, -0.03162432834506035, -0.00782062765210867, -0.03662170469760895, 0.04429074376821518, -0.016150040552020073, -0.021333519369363785, 0.026430536061525345, 0.05340665951371193, -0.013039588928222656, 0.031926143914461136, 0.007154758088290691, 0.06083615869283676, -0.05289589986205101, 0.04504654183983803, 0.05602116510272026, -0.02316736988723278, -0.024012498557567596, -0.025384079664945602, -0.03923187032341957, -0.0002959014382213354, -0.019738608971238136, -0.012816662900149822, -0.027600036934018135, 0.054440587759017944, 0.013373186811804771, -0.0522092767059803, 0.036565665155649185, -0.019713185727596283, -0.034303441643714905, -0.016081562265753746, -0.017312638461589813, 0.06295714527368546, 0.011232715100049973, 0.00249963765963912, 0.004469855222851038, -0.023124225437641144, -0.002931937575340271, 0.0025964193046092987, 0.03876012936234474, -0.047290168702602386, 0.01501704566180706, 0.05520447716116905, -0.025419779121875763, -0.0006557803135365248, 0.028947552666068077, 0.01843881793320179, -0.01732076145708561, 0.004553318489342928, -0.030352123081684113, 0.011111916042864323, 0.028666114434599876, 0.0213382076472044, -0.019931089133024216, 0.04208008199930191, -0.00011592177179409191, 0.014520499855279922, 0.016818037256598473, 0.019170144572854042, 0.019111670553684235, 0.02775556780397892, -0.003305160440504551, 0.03333152085542679, -0.02954128012061119, -0.05027575045824051, 0.04392870515584946, -0.02122252620756626, 0.03237003833055496, -0.04866133630275726, 0.07385223358869553, -0.019642101600766182, -0.04454363137483597, 0.0445096455514431, -0.030765067785978317, 0.0035655819810926914, 0.06568611413240433, 0.006968214642256498, 0.04661122336983681, -0.056831035763025284, 0.01664583571255207, -0.02736707776784897, 0.0480046272277832, 0.03007744438946247, -0.003359611611813307, 0.05092322826385498, -0.013712659478187561, -0.016032595187425613, -0.04385697469115257, -0.013766305521130562, 0.01273841317743063, -0.017065279185771942, 0.0012272307649254799, -0.020492075011134148, -0.03971920534968376, -0.04027220606803894, 0.012036957778036594, 0.008756603114306927, -0.0001561150565976277, 0.011300620622932911, 0.030190125107765198, 0.009362984448671341, 0.023513460531830788, 0.04429334029555321, -0.004166102968156338, 0.011836685240268707, -0.0640246644616127, 0.003691626014187932, 0.030272120609879494, -0.035585805773735046, -0.04895070195198059, -0.030371615663170815, -0.03275426849722862, 0.0119565324857831, 0.026018723845481873, -0.041835322976112366, -0.020113419741392136, 0.006853987462818623, -0.020791660994291306, 0.039293091744184494, -0.030262887477874756, -0.015127460472285748, -0.01936492696404457, 0.041178587824106216, 0.008169173263013363, -0.06117510423064232, -0.002521656220778823, -0.04383345693349838, 0.017648328095674515, 0.07031731307506561, -0.004056225065141916, -0.04066137969493866, -0.04106318578124046, -0.01993175968527794, -0.03857428580522537, 0.011554444208741188, 0.014910099096596241, 0.001979746390134096, 0.02962302230298519, -0.04466706141829491, 0.004986400716006756, -0.008880828507244587, 0.048841673880815506, -0.01915135234594345, -0.015947673469781876, 0.022016437724232674, 0.02921322174370289, 0.045775577425956726, 0.005621121730655432, -0.01647288352251053, 0.0222256388515234, -0.05271559953689575, 0.023976879194378853, 0.0024343589320778847, -0.04573723301291466, 0.006600735243409872, 0.0029304621275514364, -0.009769869968295097, 0.0369274877011776, -0.03922419995069504, -0.0067612528800964355, -0.015056363306939602, 0.031655628234148026, -0.045358940958976746, -0.036736927926540375, 0.07313770800828934, -0.01127905584871769, -0.00698384502902627, 0.06280478090047836, 0.029157191514968872, -0.008647926151752472, -0.0004621769185177982, 0.012968375347554684, -0.07139413058757782, 0.02936079353094101, -0.05961758643388748, 0.016011962667107582, -0.020720086991786957, -0.026355139911174774, -0.008163206279277802, -0.018892887979745865, 0.02953493595123291, -0.010368101298809052, -0.03423856198787689, -0.06191491708159447, -0.0527341365814209, 0.026699362322688103, 0.010770050808787346, -0.03235287591814995, 0.0343405120074749, 0.02172105200588703, -0.0012588489335030317, -0.0070462715812027454, -0.013369882479310036, 0.02062203176319599, 0.02934173494577408, -0.03201548010110855, -0.0006627137772738934, -0.004225131589919329, 0.00040381483267992735, 0.03439987450838089, -0.046268280595541, -0.06258676946163177, 0.011853211559355259, 0.020505009219050407, -0.04709547013044357, -0.048472896218299866, 0.006122861057519913, -0.02431590110063553, -0.04884862154722214, -0.046849194914102554, 0.016946109011769295, -0.01858925260603428, 0.018951458856463432, 0.04402780532836914, -0.0034136108588427305, 0.0250069759786129, -0.000373351649614051, -0.02355261892080307, 0.024626988917589188, 0.011783200316131115, -0.03458555415272713, -0.012610807083547115, 0.02583274617791176, -0.007737304549664259, 0.031219888478517532, -0.015973735600709915, -0.043308526277542114, -0.03153197839856148, -0.053151845932006836, 0.008425063453614712, -0.05618124082684517, -0.01587309129536152, -0.036390792578458786, -0.009290157817304134, 0.0053518107160925865, 0.04177527874708176, 0.03600016236305237, -0.009994659572839737, 0.010768561623990536, -0.019753867760300636, -0.0034191934391856194, -0.014449280686676502, -0.004794213455170393, -0.023049525916576385, -0.03356520086526871, 0.005836624186486006, 0.03410105034708977, -0.0025185123085975647, 0.014717440120875835, -0.012027365155518055, 0.014016303233802319, 0.011761749163269997, -0.015347210690379143, -0.051630351692438126, -0.03326710686087608, -0.0037518686149269342, 0.010743468068540096, 0.002319802762940526, -0.008141353726387024, -0.04783477634191513, 0.06348983943462372, -0.06680771708488464, -0.007744801230728626, -0.03291340172290802, -0.003919498063623905, 0.007610509637743235, -0.020053962245583534, 0.05490820109844208, -0.029538922011852264, 0.022542664781212807, -0.03601119667291641, 0.037104636430740356, 0.010166699066758156, 0.022213082760572433, -0.01805512048304081, -0.058610204607248306, -0.03187202289700508, -0.054222770035266876, 0.028614085167646408, -0.03461872413754463, -0.024578098207712173, -0.0456610731780529, -0.005549365188926458, 0.045732297003269196, 0.003950745332986116, 0.07001782208681107, 0.04354208707809448, -0.02861587144434452, -0.03202027082443237, -0.007989553734660149, 0.029550952836871147, 0.03622761368751526, 0.01286532636731863, -0.010070713236927986, 0.006083251442760229, -0.03556973859667778, -0.00905673112720251, -0.00006185835809446871, -0.033030733466148376, -0.03692564368247986, -0.03914346173405647, 0.04663081839680672, -0.0001520622317912057, 0.02484246715903282, 0.0029703800100833178, -0.02933105081319809, -0.04922817647457123, 0.04937808960676193, -0.026706155389547348, 0.022128775715827942, 0.030873579904437065, -0.013966165482997894, -0.033769574016332626, 0.018726462498307228, -0.002291254233568907, -0.008042116649448872, -0.01502729021012783, 0.054243482649326324, -0.013625808991491795, -0.06747935712337494, 0.0360783152282238, 0.0596800222992897, -0.06564018875360489, -0.02442759834229946, 0.0017899074591696262, -0.020810170099139214, -0.008166097104549408, -0.016756711527705193, 0.01428248081356287, -0.02352350391447544, -0.01295023038983345, -0.02115887776017189, 0.021380245685577393, -0.0032584895379841328, 0.013392475433647633, 0.005636894144117832, 0.05299173295497894, -0.02981990948319435, -0.01134514156728983, 0.01482713595032692, -0.008268000558018684, -0.013234558515250683, -0.026639515534043312, -0.0010009934194386005, 0.026933882385492325, 0.03079819865524769, 0.045313622802495956, -0.02420036680996418, 0.01812569797039032, 0.012720717117190361, -0.02253440022468567, 0.026961417868733406, 0.010740906931459904, -0.00020480641978792846, 0.015347604639828205, -0.006955490447580814, -0.06352149695158005, -0.052821263670921326, 0.015461916103959084, 0.00514178304001689, 0.055656686425209045, -0.025420717895030975, -0.0014207223430275917, 0.03085450641810894, 0.011546299792826176, -0.002806518692523241, -0.03706791624426842, -0.05971178412437439, -0.02814265713095665, -0.013423183932900429, -0.009440296329557896, -0.048039019107818604, -0.0007735121180303395, 0.03355160728096962, 0.002993302885442972, -0.035770174115896225, -0.009082389064133167, 0.024789897724986076, -0.03293979540467262, 0.006422858685255051, -0.03523185849189758, 0.0212713573127985, -0.057703014463186264, -0.060847289860248566, -0.027554208412766457, -0.0001538303476991132, -0.032579340040683746, 0.0006308252341113985, -0.022304994985461235, 0.008545080199837685, 0.009272107854485512, 0.030269354581832886, 0.04462802782654762, 0.01349729299545288, -0.015176205895841122, -0.02524280734360218, -0.018918070942163467, 0.040020719170570374, -0.006044602021574974, 0.057555995881557465, 0.04249870404601097, -0.03280876204371452, 0.030325790867209435, -0.008436383679509163, -0.03371170908212662, -0.024703914299607277, -0.02048002928495407, -0.011347590945661068, -0.006079487968236208, -0.06578713655471802, -0.05554746091365814, 0.0053587378934025764, -0.05300207436084747, -0.005211500450968742, -0.005722803063690662, 0.004981853533536196, 0.0052095274440944195, -0.02206820249557495, -0.013682199642062187, 0.05789773538708687, -0.011458300054073334, 0.0072295283898711205, -0.029040316119790077, 0.0032389962580055, 0.01699155941605568, 0.020570700988173485, 0.05918864905834198, 0.0030471922364085913, 0.010927216149866581, -0.05142432451248169, -0.009799075312912464, 0.01055290549993515, -0.010234248824417591, 0.04508143663406372, -0.027905508875846863, -0.01653592474758625, -0.04238520935177803, -0.02090584859251976, 0.0035902673844248056, 0.029481150209903717, 0.008023601956665516, 0.033183615654706955, -0.0027939332649111748, -0.031940896064043045, -0.035543713718652725, 0.019452178850769997, -0.068067766726017, -0.02077227644622326, 0.02040420100092888, -0.009854921139776707, -0.00887235812842846, -0.020365646108984947, -0.06155450642108917, 0.02162284404039383, -0.010818473063409328, -0.008142107166349888, -0.05305957421660423, 0.031678248196840286, 0.016576850786805153, 0.04267444461584091, -0.0005866069695912302, 0.009540436789393425, 0.012700667604804039, 0.035067860037088394, -0.07091773301362991, -0.017629727721214294, 0.008440721780061722, 0.013044619932770729, 0.0187084823846817, 0.011262050829827785, 0.010628947988152504, 0.040373317897319794, -0.016517143696546555, -0.013820071704685688, 0.010054007172584534, 0.0006883808528073132, -0.03898036107420921, 0.02184910885989666, -0.022525489330291748, -0.00957131665199995, -0.04120013862848282, 0.05322766676545143, -0.019330188632011414, -0.0612017959356308, -0.043936263769865036, 0.02060379832983017, 0.09722604602575302, -0.02262316830456257, 0.013068542815744877, 0.004424017388373613, 0.023414989933371544, 0.026831043884158134, 0.019042136147618294, -0.013773397542536259, 0.03127602860331535, 0.01086500845849514, 0.04617218300700188, 0.010213575325906277, 0.03473680838942528, 0.06497380137443542, 0.0017363560618832707, -0.002048545517027378, 0.03836262971162796, 0.026369476690888405, -0.013266409747302532, -0.009006233885884285, -0.034215670078992844, 0.016421712934970856, 0.04828177019953728, -0.027068646624684334, -0.02222180925309658, 0.012969841249287128, 0.026156408712267876, -0.006179072894155979, -0.014572782441973686, 0.05980328097939491, -0.014335575513541698, -0.0018765972927212715, -0.02802937850356102, 0.0022957255132496357, 0.0019342077430337667, 0.044015828520059586, 0.018753118813037872, -0.007767088245600462, 0.057705357670784, 0.029054533690214157, -0.01672125607728958, 0.061783887445926666, 0.0007305392064154148, 0.004081168211996555, -0.05623367801308632, 0.005047328770160675, -0.0028243535198271275, -0.005222983658313751, -0.01496036909520626, 0.0015066941268742085, -0.0016121139051392674, 0.030280912294983864, -0.03856052830815315, 0.006196034140884876, 0.05380115285515785, -0.03011457808315754, -0.010631715878844261, -0.0744279995560646, 0.053792163729667664, -0.04610047489404678, -0.0412360355257988, 0.0486539863049984, 0.0001660077105043456, -0.020594343543052673, 0.05029016360640526, -0.0037335476372390985, 0.03948194533586502, 0.008670875802636147, 0.04871249943971634, -0.013966209255158901, 0.02286677621304989, 0.058463625609874725, -0.010479940101504326, -0.01258452795445919, 0.005325511563569307, -0.03083081729710102, -0.03909756988286972, -0.039401840418577194, -0.021912751719355583, -0.0160886999219656, 0.006029858719557524, -0.030140602961182594, -0.006492793094366789, 0.009341783821582794, 0.00017335056327283382, -0.03298689424991608, 0.006661230698227882, -0.00212132278829813, -0.020132383331656456, -0.007132271304726601, 0.00855394545942545, 0.04034911096096039, -0.029097406193614006, -0.03039691597223282, -0.04529305920004845, -0.0178577471524477, 0.015169740654528141, -0.037120744585990906, 0.0731697529554367, -0.011572510004043579, -0.02868811786174774, -0.017568958923220634, -0.029462361708283424, -0.020014304667711258, 0.009531691670417786, -0.03362378850579262, -0.036387328058481216, 0.021464254707098007, 0.044195059686899185, 0.011591264046728611, 0.02234545536339283, -0.01460941694676876, 0.011775542981922626, 0.029579853639006615, 0.03268188238143921, 0.008881568908691406, 0.04731747508049011, 0.013945783488452435, -0.009916038252413273, 0.002903969958424568, -0.04071253538131714, 0.02049419656395912, -0.016111105680465698, -0.03442246839404106, -0.03915296494960785, 0.015219996683299541, -0.02635161578655243, -0.061387404799461365, 0.0271800197660923, 0.016027024015784264, 0.0007699084235355258, -0.02904350496828556, -0.07236382365226746, 0.0018224336672574282, -0.039830226451158524, 0.015188919380307198, -0.014821911230683327, -0.009013298898935318, 0.02049132250249386, 0.005354798398911953, 0.012340042740106583, -0.065912164747715, 0.157404363155365, 0.019387779757380486, 0.010046781040728092, -0.003763034241273999, 0.023838914930820465, 0.05126558616757393, 0.004297619219869375, -0.016759684309363365, 0.006463408004492521, -0.011020630598068237, -0.01775454171001911, -0.019416024908423424, 0.017828140407800674, 0.0044860937632620335, 0.01747835986316204, 0.059063564985990524, -0.04073937609791756, 0.017566585913300514, 0.01003999263048172, -0.03884873166680336, -0.04313505440950394, 0.015816107392311096, 0.009025629609823227, -0.0011715609580278397, 0.0012455576797947288, -0.0008211585227400064, 0.01620505005121231, -0.02431291714310646, -0.010911894030869007, 0.006609252654016018, 0.012376167811453342, -0.0398939810693264, 0.022224800661206245, -0.010517214424908161, -0.03828907757997513, 0.05038745701313019, -0.0005102125578559935, -0.02311672456562519, -0.000821173656731844, -0.017670106142759323, -0.023598644882440567, 0.015316817909479141, 0.033017806708812714, -0.04644797742366791, 0.006877515930682421, 0.019489163532853127, -0.03351805731654167, 0.010418384335935116, 0.034245725721120834, -0.033686619251966476, 0.07903224229812622, -0.01808307133615017, 0.041544847190380096, -0.003235898446291685, -0.04087260365486145, 0.00186317996121943, -0.004701484460383654, -0.0006402846775017679, -0.02503478154540062, 0.005914911162108183, 0.05888327956199646, -0.0055768671445548534, -0.002305002883076668, 0.028639676049351692, -0.02372046373784542, 0.01155124045908451, 0.017982788383960724, -0.03018258512020111, -0.014269625768065453, -0.014796624891459942, -0.020905597135424614, -0.020151320844888687, -0.022628124803304672, -0.0187539029866457, 0.041667960584163666, 0.04690500348806381, -0.017500735819339752, 0.029498158022761345, -0.0009303067345172167, 0.012420921586453915, -0.016424380242824554, -0.040683407336473465, 0.012876183725893497, -0.03642302751541138, 0.02685435302555561, 0.033925484865903854, -0.030976053327322006, -0.04549979418516159, -0.03384231775999069, 0.042897555977106094, 0.021641943603754044, 0.016479594632983208, -0.004943391773849726, -0.038516126573085785, -0.02521674521267414 ]
Specializing in the Marketing and Sale of Single and Multi-Tenant NNN Retail Properties. Over $1 Billion in Exclusive Single and Multi-Tenant NNN Retail Properties.. Exclusive representation of Sellers and Buyers in Single Tenant and Multi-Tenant Retail Properties. We specialize in exclusive representation of Sellers and Buyers in Single Tenant and Multi-Tenant Retail Properties throughout the Western United States, with emphasis on the Greater Southern California Region. Our proactive and targeted marketing campaigns, combined with unparalleled relationships with private and institutional investors, enable us to close more transactions than any other source. Marcus & Millichap revolutionized the real estate brokerage industry. The firm was designed to go far beyond simply facilitating transactions. It was developed as an entire system dedicated to maximizing value for real estate investors. Leading experts in the marketing and sale of retail investment properties. Hook Retail Advisors specialize in exclusive representation of Sellers and Buyers in Single Tenant and Multi-Tenant Retail Properties throughout the Western United States, with over 600 commercial properties sold in the past 30 years. LOGOS ARE FOR IDENTIFICATION PURPOSES ONLY AND MAY BE TRADEMARKS OF THEIR RESPECTIVE COMPANIES. Marcus & Millichap, CA BRE LIC. # 00530854. Hook Retail Advisors, a Marcus & Millichap Team © 2019. All Rights Reserved. Designed by Inbound Surge.
[ -0.03685031458735466, 0.014042556285858154, -0.025359902530908585, -0.01032303273677826, 0.008964473381638527, -0.009133030660450459, 0.00453585758805275, 0.03327370807528496, 0.029041921719908714, 0.027006644755601883, 0.01253816019743681, 0.003911338746547699, 0.003025982528924942, -0.052874766290187836, 0.007683162111788988, 0.012555642984807491, -0.0014935509534552693, -0.0023807131219655275, -0.005709422752261162, 0.0033627923112362623, 0.0003061775933019817, 0.017285611480474472, -0.06704851984977722, -0.015016790479421616, -0.017608720809221268, 0.03290378674864769, 0.008504827506840229, -0.01941109262406826, 0.06661947816610336, 0.029975060373544693, -0.025433950126171112, -0.03297553211450577, 0.034358683973550797, -0.04553603753447533, -0.048478297889232635, -0.012102675624191761, 0.0214565210044384, -0.0512859970331192, -0.018660638481378555, -0.05440979078412056, 0.009915712289512157, 0.014383857138454914, 0.040429823100566864, -0.0339798778295517, 0.0008640461601316929, 0.0007971547893248498, -0.0038787329103797674, -0.056801557540893555, 0.03150526061654091, -0.05125682055950165, -0.003378242952749133, -0.01612977124750614, 0.003560952376574278, 0.01965111680328846, 0.017717622220516205, -0.021643800660967827, -0.0016789353685453534, -0.017440587282180786, -0.008568907156586647, 0.04456315562129021, 0.04056810960173607, -0.003978613764047623, 0.03860296681523323, -0.04650396108627319, 0.02765626274049282, 0.025685084983706474, -0.0017264120979234576, -0.02780815400183201, 0.04780145362019539, -0.038324180990457535, 0.013406556099653244, 0.015913354232907295, -0.027712395414710045, -0.0052283890545368195, 0.024288048967719078, -0.0008776007452979684, -0.016283217817544937, -0.009814310818910599, -0.007723298389464617, -0.0229813102632761, 0.03570806235074997, 0.04236450791358948, 0.015193954110145569, 0.01689949445426464, -0.054071154445409775, -0.005758712068200111, -0.017707977443933487, 0.016400828957557678, -0.00006426138861570507, 0.0011591139482334256, -0.002289795782417059, 0.03415079787373543, 0.018510840833187103, 0.00561474310234189, 0.039190296083688736, 0.04978214576840401, -0.0466919019818306, 0.046061836183071136, -0.002158178249374032, -0.0030121570453047752, 0.04024519398808479, 0.06484053283929825, 0.01185551006346941, 0.0423927940428257, -0.0375724695622921, -0.0034358110278844833, -0.0028489597607403994, -0.013778992928564548, -0.01057390309870243, -0.04083285108208656, 0.018239952623844147, -0.024005303159356117, -0.00459977425634861, -0.02490205690264702, -0.004761606454849243, 0.07894457131624222, 0.0020971554331481457, 0.021526668220758438, -0.05578611418604851, 0.0219863448292017, 0.02965274266898632, 0.009691639803349972, 0.018311025574803352, -0.021772537380456924, 0.03601840138435364, -0.03508208319544792, -0.016688767820596695, 0.06775211542844772, -0.04823105037212372, -0.011619939468801022, 0.008827212266623974, -0.02971038781106472, -0.02778046578168869, 0.0009547579102218151, 0.013702018186450005, 0.015353490598499775, -0.009783608838915825, 0.034092195332050323, 0.009494557045400143, -0.06113497167825699, 0.047382257878780365, 0.028471682220697403, -0.006197742186486721, 0.08077900856733322, -0.014556930400431156, 0.04293012619018555, 0.004605229943990707, -0.02210087701678276, -0.04215060919523239, 0.02307657152414322, -0.033706486225128174, 0.03422876074910164, -0.03071587160229683, 0.02576678805053234, 0.022132232785224915, -0.0076695093885064125, 0.01663701795041561, 0.028120771050453186, 0.025076119229197502, 0.04061137139797211, -0.019261082634329796, -0.0190171767026186, 0.004546049050986767, 0.028622206300497055, -0.03201116621494293, 0.04026114195585251, -0.041575245559215546, -0.0062375543639063835, -0.04085790365934372, -0.047747574746608734, 0.028065672144293785, 0.007780898362398148, -0.02424306422472, 0.0032863407395780087, 0.012049264274537563, 0.05155174806714058, 0.054379902780056, 0.002393226372078061, 0.03517866134643555, 0.02890178933739662, -0.043694689869880676, -0.0005375048494897783, -0.005208923015743494, 0.031036145985126495, 0.014468531124293804, -0.00788650568574667, 0.013292685151100159, -0.05159579589962959, -0.05332129821181297, -0.009260260500013828, 0.007084961980581284, 0.025991778820753098, -0.010003306902945042, 0.03736865147948265, -0.01999368518590927, 0.029747024178504944, 0.0068907178938388824, -0.0058024292811751366, -0.014342308975756168, -0.01876663789153099, -0.018493589013814926, 0.036633413285017014, -0.01886211894452572, 0.011217981576919556, -0.012719514779746532, -0.004362703766673803, 0.04528515040874481, 0.07801375538110733, -0.06499780714511871, -0.02404356561601162, 0.042880695313215256, 0.028372155502438545, -0.03347568213939667, -0.014406397938728333, 0.010906779207289219, 0.00567380478605628, -0.048477984964847565, 0.03690803050994873, 0.013629581779241562, -0.01325229462236166, 0.02158314175903797, 0.0006471235537901521, 0.034564658999443054, 0.041937995702028275, -0.00800322275608778, -0.01244922075420618, 0.01297741662710905, 0.054273415356874466, -0.02654111757874489, -0.017002789303660393, -0.0026564509607851505, 0.037369322031736374, 0.009821153245866299, 0.06034276261925697, 0.05577441304922104, 0.03904026001691818, 0.03168667480349541, 0.06439534574747086, -0.018323123455047607, 0.04149465635418892, 0.028132859617471695, 0.014866651967167854, 0.027662457898259163, 0.02712545171380043, -0.03173413872718811, 0.03232765570282936, 0.0127806281670928, 0.019717806950211525, -0.02574949897825718, 0.024243973195552826, -0.03186548128724098, 0.018315192312002182, 0.007870946079492569, 0.025414295494556427, -0.032497089356184006, 0.018625881522893906, 0.019855713471770287, 0.04743100702762604, -0.039105527102947235, 0.010581551119685173, 0.005611225496977568, 0.006602023728191853, -0.01298076007515192, 0.0016357937129214406, 0.011731884442269802, 0.004885345231741667, 0.025929739698767662, 0.0023270060773938894, -0.028059884905815125, -0.006714972201734781, -0.030284695327281952, -0.04182418808341026, -0.022081417962908745, -0.030833564698696136, -0.05153268203139305, -0.013579552061855793, 0.015225157141685486, -0.03227661922574043, 0.023854436352849007, -0.0365954264998436, -0.00903521291911602, -0.033594757318496704, -0.023246722295880318, 0.0061964308843016624, 0.028714776039123535, 0.035993121564388275, -0.0336470864713192, 0.040561601519584656, -0.004457446280866861, 0.050328101962804794, -0.045973483473062515, 0.0005037012742832303, 0.00029826501850038767, -0.03522208333015442, 0.031694404780864716, -0.03813507407903671, -0.011167779564857483, -0.007523572072386742, -0.0399014912545681, -0.04710601642727852, 0.00004037978214910254, -0.023859556764364243, -0.017419740557670593, 0.009475511498749256, -0.03996987268328667, 0.06096712127327919, 0.03516870364546776, -0.01317725982517004, 0.021903488785028458, 0.04347439482808113, -0.04215197265148163, 0.04323621094226837, 0.006091753952205181, -0.008846249431371689, -0.048789530992507935, 0.044017378240823746, 0.03174411505460739, -0.00440556276589632, -0.02546476013958454, -0.0443347692489624, -0.0054420726373791695, 0.018512604758143425, 0.02093970961868763, -0.003882109886035323, -0.027856340631842613, 0.02768675796687603, 0.05717438831925392, -0.08562722057104111, 0.027842972427606583, -0.06042581424117088, -0.012859431095421314, -0.03290815278887749, -0.03309456631541252, 0.004005457740277052, 0.004553359001874924, 0.05818469077348709, 0.03079582005739212, -0.0477198027074337, -0.013369644992053509, 0.0022342184092849493, 0.06773707270622253, -0.027426304295659065, 0.009163748472929, 0.032492537051439285, 0.012531742453575134, -0.0029486347921192646, 0.022013166919350624, -0.02048022300004959, -0.02542731910943985, 0.02244836837053299, 0.03314048424363136, -0.008209291845560074, 0.03631497547030449, 0.01207398995757103, 0.02262978069484234, 0.03397982195019722, -0.031153734773397446, 0.04905547946691513, 0.01709412783384323, 0.02229374274611473, 0.019379740580916405, -0.006803634576499462, -0.02223614603281021, -0.03430839255452156, -0.06404643505811691, -0.028300059959292412, 0.008387780748307705, 0.0214732326567173, 0.07978589087724686, -0.07668110728263855, 0.045572053641080856, 0.013489306904375553, -0.07196703553199768, 0.06159332022070885, -0.05285947769880295, -0.008680596016347408, 0.04149649664759636, -0.012622522190213203, 0.0441347174346447, -0.0504085049033165, 0.02554144524037838, -0.020929763093590736, 0.04578668624162674, 0.03428633511066437, 0.012641513720154762, 0.010404354892671108, -0.054170891642570496, -0.03412717208266258, -0.0010763779282569885, -0.024686478078365326, -0.006482583936303854, -0.022076865658164024, -0.0014870654558762908, 0.012254459783434868, -0.04709401726722717, -0.04850282147526741, 0.02397766336798668, 0.019338807091116905, 0.016505371779203415, -0.022249365225434303, 0.05250861868262291, 0.0031277688685804605, 0.03931426629424095, 0.016248635947704315, -0.0271685142070055, 0.02128833904862404, -0.03598994389176369, 0.03215679153800011, 0.012033717706799507, -0.015405689366161823, -0.026120483875274658, -0.030068526044487953, -0.0475694015622139, 0.0346357487142086, -0.015155145898461342, -0.027835963293910027, -0.035002488642930984, -0.0005947601748630404, -0.02003210224211216, 0.026805473491549492, -0.01627029851078987, -0.02421233057975769, -0.0065751210786402225, 0.03733425959944725, 0.03926943987607956, -0.04215776175260544, 0.00878556352108717, -0.011310124769806862, 0.028485311195254326, 0.06746406853199005, -0.04514804854989052, -0.03080015629529953, -0.012784997001290321, -0.03137768805027008, -0.029720889404416084, 0.01341776642948389, 0.034609537571668625, 0.013130022212862968, -0.01058586873114109, -0.02475026622414589, 0.026745902374386787, 0.04245806112885475, -0.00633214833214879, -0.02643929421901703, 0.018445497378706932, 0.006847662385553122, -0.010464257560670376, 0.015664124861359596, 0.022136716172099113, -0.012055542320013046, 0.0005340900970622897, -0.05421728640794754, 0.02882123365998268, 0.0060412026941776276, -0.032400790601968765, 0.011319741606712341, 0.043189384043216705, 0.01040088664740324, 0.0597158707678318, -0.00677877152338624, 0.039812445640563965, -0.011064357124269009, 0.018479883670806885, -0.054353468120098114, -0.024616900831460953, 0.02554037608206272, 0.020345725119113922, -0.059667523950338364, 0.028686190024018288, 0.01343105174601078, -0.050983406603336334, -0.005223695654422045, 0.017939668148756027, -0.04216679930686951, 0.03312884271144867, 0.006990497000515461, 0.013081262819468975, -0.008691620081663132, -0.034130942076444626, 0.006897996179759502, -0.017426764592528343, 0.024377191439270973, 0.032659415155649185, -0.0025858532171696424, -0.04197518900036812, -0.06639587879180908, -0.02965654619038105, 0.013182911090552807, -0.021316133439540863, 0.03174205869436264, 0.020018266513943672, 0.003913111984729767, 0.0213791411370039, -0.022693989798426628, -0.01104174554347992, -0.0072503346018493176, 0.008737713098526001, -0.0038348708767443895, 0.0021117671858519316, -0.013216834515333176, 0.030901813879609108, -0.043149132281541824, -0.030572252348065376, 0.016722546890378, -0.03483341634273529, -0.02996668964624405, -0.06609616428613663, 0.020558975636959076, -0.027941912412643433, 0.005685687996447086, -0.038755517452955246, -0.017764223739504814, 0.007944148033857346, 0.044529274106025696, -0.008532756939530373, 0.01599135808646679, -0.013568876311182976, 0.013706058263778687, -0.009845658205449581, 0.03499142453074455, 0.0309398602694273, -0.05579659342765808, -0.02423887699842453, 0.03979651257395744, -0.017040502279996872, 0.056685179471969604, -0.00684824213385582, 0.014499823562800884, -0.04569043219089508, -0.031694069504737854, 0.006742794532328844, -0.02383660152554512, -0.011369352228939533, -0.021672161296010017, -0.024923386052250862, -0.020335998386144638, 0.06968344748020172, -0.0069329203106462955, 0.0036824988201260567, -0.00020712529658339918, -0.03958400338888168, -0.007159090600907803, -0.03684508800506592, -0.008265898562967777, -0.031365104019641876, -0.005582812242209911, 0.025085894390940666, 0.01641971245408058, 0.01085518579930067, -0.006459509953856468, 0.000783604453317821, 0.01339696068316698, 0.025444956496357918, -0.013988661579787731, -0.06673397868871689, -0.02283583953976631, -0.008152901194989681, -0.0007462702924385667, -0.0018658774206414819, 0.01546445582062006, -0.036894917488098145, 0.04943256080150604, -0.05202638357877731, -0.009723278693854809, -0.014909228309988976, -0.030161134898662567, -0.0015527900541201234, -0.026156816631555557, 0.0313451774418354, -0.019216423854231834, -0.012533459812402725, -0.014440660364925861, 0.05334172397851944, 0.020120074972510338, 0.013706169091165066, -0.04753962904214859, -0.04596462845802307, -0.04519239440560341, -0.04519098252058029, 0.06425810605287552, -0.051507290452718735, -0.010037822648882866, -0.03935612365603447, -0.017518114298582077, 0.015231541357934475, -0.013038751669228077, 0.009112558327615261, 0.05160215124487877, -0.0302492193877697, 0.02739293873310089, -0.013325757347047329, 0.010530241765081882, 0.022459378466010094, -0.019418368116021156, 0.0013713432708755136, -0.01535625196993351, -0.022103963419795036, 0.010424208827316761, -0.07385371625423431, -0.04591609165072441, -0.050436925143003464, -0.01454660203307867, 0.06349854916334152, -0.0205122921615839, 0.024965651333332062, -0.011311445385217667, -0.06015833094716072, -0.0366680808365345, 0.04676591977477074, -0.009740710258483887, 0.03130420669913292, 0.04061460122466087, 0.006092323921620846, -0.0214314516633749, -0.0021871509961783886, -0.009650885127484798, 0.006549060344696045, -0.04461606591939926, 0.0466843917965889, 0.0026083500124514103, -0.02235553413629532, 0.02231193333864212, 0.05561419576406479, -0.032609205693006516, -0.0353885218501091, 0.015830373391509056, 0.0058478256687521935, 0.01443518977612257, -0.028869498521089554, 0.01287905778735876, -0.02597973495721817, -0.018817508593201637, 0.01566832698881626, 0.006756779737770557, -0.023860786110162735, 0.0531754232943058, -0.0050963847897946835, 0.028293529525399208, -0.054530154913663864, 0.008010339923202991, 0.0064374543726444244, -0.0005748425610363483, -0.03131851926445961, -0.028005478903651237, -0.007072187028825283, 0.013716572895646095, 0.008137999102473259, 0.009468361735343933, 0.013555791229009628, 0.015405737794935703, 0.04337216541171074, -0.010740222409367561, 0.07796291261911392, 0.006852307356894016, 0.0115743987262249, 0.00613926537334919, -0.051333535462617874, -0.03695753961801529, -0.01090855710208416, 0.009684172458946705, -0.004383105784654617, 0.04765164852142334, -0.038104116916656494, -0.02340213768184185, 0.03572135418653488, -0.012056566774845123, 0.005945401731878519, -0.045247431844472885, -0.028962651267647743, -0.04135149344801903, -0.04224801063537598, 0.0005889382446184754, 0.003057150635868311, 0.02124802954494953, 0.03541009873151779, 0.020599985495209694, -0.025616558268666267, -0.002185869263485074, 0.02640673890709877, -0.018200000748038292, -0.02027282305061817, -0.02987930364906788, 0.050788216292858124, -0.05132564157247543, -0.0227644219994545, -0.04110183194279671, 0.01056086365133524, -0.02857859805226326, 0.00986088439822197, -0.002337011508643627, 0.01061829924583435, 0.0028755110688507557, 0.00945626012980938, -0.0032289517112076283, -0.015375242568552494, -0.01897539384663105, -0.04819279536604881, -0.016917914152145386, 0.054910674691200256, -0.016158321872353554, 0.04192304611206055, 0.046361204236745834, -0.012037756852805614, 0.05857736989855766, 0.0019269093172624707, -0.04187704995274544, 0.009649188257753849, 0.008770952932536602, -0.021612223237752914, -0.0010415831347927451, -0.049731820821762085, -0.04323664307594299, 0.013217110186815262, -0.03320116177201271, 0.018428625538945198, 0.027553237974643707, 0.005178649909794331, 0.028325846418738365, -0.027793889865279198, -0.0043860687874257565, 0.05421140789985657, 0.0006203260854817927, 0.03998132795095444, -0.01613040640950203, 0.04514273628592491, 0.02287879027426243, 0.008830171078443527, 0.049761299043893814, 0.01832268387079239, 0.02867439016699791, -0.03603264316916466, 0.004401578102260828, 0.033774539828300476, -0.010453972034156322, 0.05383535474538803, 0.022326787933707237, -0.040999725461006165, -0.07231341302394867, -0.019246401265263557, -0.01634950004518032, 0.033666521310806274, -0.0047450284473598, -0.0029991515912115574, 0.04952303692698479, -0.04000009223818779, -0.032520443201065063, -0.0027329055592417717, -0.04439851641654968, -0.040616754442453384, 0.052993811666965485, 0.0003142409259453416, -0.002653113566339016, -0.016762064769864082, -0.02696351706981659, 0.00443047983571887, -0.04123181477189064, -0.012581090442836285, -0.034159597009420395, 0.006420807912945747, 0.002497221576049924, 0.025733111426234245, -0.02940942905843258, -0.022063683718442917, 0.041886188089847565, 0.07657540589570999, -0.041331514716148376, -0.06446554511785507, -0.019139597192406654, 0.0331105999648571, -0.0007049394189380109, -0.010054996237158775, -0.02090565674006939, 0.016639821231365204, 0.012634174898266792, -0.016736062243580818, -0.008915869519114494, 0.030444055795669556, 0.012803308665752411, 0.004287370014935732, 0.0029425830580294132, -0.011672991327941418, -0.028699714690446854, 0.04932587966322899, -0.002082335064187646, -0.03572054207324982, -0.025059102103114128, 0.01067396067082882, 0.034884657710790634, -0.01834242232143879, 0.018700873479247093, 0.019894076511263847, 0.019125858321785927, -0.03673022985458374, 0.014571587555110455, -0.009339489974081516, 0.06574767082929611, 0.05817320942878723, 0.049404874444007874, -0.017300108447670937, -0.008846169337630272, 0.0428943894803524, 0.0013077883049845695, -0.008463427424430847, 0.039585959166288376, 0.025476759299635887, -0.028785550966858864, -0.019319694489240646, -0.03711758926510811, 0.029591288417577744, 0.013465875759720802, -0.02471042238175869, 0.004913811571896076, -0.0323108546435833, -0.007308832369744778, 0.005506664514541626, -0.019194111227989197, 0.04090115427970886, -0.024268673732876778, -0.02201692946255207, -0.017297573387622833, -0.022189222276210785, -0.02137691155076027, 0.030156584456562996, 0.012327568605542183, -0.006791216786950827, 0.0139668183401227, 0.022431528195738792, -0.00025560962967574596, 0.03940562531352043, 0.025821033865213394, 0.026540296152234077, -0.04438963532447815, -0.00951614324003458, 0.011355637572705746, -0.03222338482737541, -0.016934402287006378, 0.017887432128190994, -0.033929865807294846, 0.013063856400549412, -0.024614538997411728, -0.0018798715900629759, 0.026371968910098076, -0.04927120357751846, -0.0008695066790096462, -0.04748915135860443, 0.04242270439863205, -0.05763036757707596, -0.0025069275870919228, 0.046707771718502045, -0.041983239352703094, -0.037042196840047836, 0.05418546870350838, -0.005382514093071222, 0.02056267485022545, 0.01790034957230091, 0.04463454335927963, 0.0113578662276268, 0.05857164040207863, 0.05253073573112488, -0.039363935589790344, 0.007190891541540623, 0.030816206708550453, -0.009362976998090744, -0.020264621824026108, -0.005601957440376282, -0.05204923078417778, -0.009446114301681519, -0.03069375827908516, -0.018199551850557327, 0.005917562171816826, 0.06498827040195465, -0.0017259869491681457, -0.06263655424118042, -0.0028089284896850586, 0.0423220619559288, -0.04368848353624344, 0.007186951581388712, 0.024954646825790405, 0.03630264848470688, 0.011579308658838272, 0.01636243239045143, -0.00895059946924448, -0.03909841552376747, 0.010068134404718876, -0.04764476791024208, 0.046888142824172974, 0.0037326335441321135, -0.021593770012259483, -0.02600470371544361, -0.06997471302747726, -0.013891874812543392, -0.022700894623994827, -0.054555099457502365, -0.04534099996089935, 0.038480956107378006, 0.039250779896974564, 0.02211003750562668, -0.009881895035505295, -0.02554490976035595, -0.012600623071193695, 0.023133069276809692, 0.040233366191387177, -0.012649847194552422, 0.03934382647275925, 0.03880336135625839, -0.0212436281144619, 0.0197642482817173, 0.0053514596074819565, 0.038362935185432434, -0.02145693264901638, -0.019242605194449425, -0.021109119057655334, 0.03714893013238907, -0.013339327648282051, -0.07391379028558731, 0.022866345942020416, 0.020242607221007347, 0.012595687992870808, -0.023247426375746727, -0.04531455412507057, 0.0010734637035056949, -0.03332226723432541, -0.021250585094094276, -0.03852006420493126, 0.03753603622317314, -0.02008655294775963, 0.02440066449344158, 0.018820377066731453, -0.053219228982925415, 0.1606944352388382, 0.01843419298529625, 0.06993751227855682, 0.012364248745143414, 0.041471824049949646, 0.04245242476463318, 0.021016187965869904, 0.025960901752114296, 0.036188073456287384, -0.0479288175702095, 0.01800248585641384, -0.009568813256919384, 0.018766097724437714, 0.024054663255810738, 0.04265664145350456, 0.040284354239702225, -0.05666734278202057, 0.020098576322197914, 0.04332289844751358, -0.024247242137789726, -0.07237714529037476, 0.0011349089909344912, 0.01266518421471119, 0.015380126424133778, -0.009350879117846489, 0.013055003248155117, 0.018674159422516823, -0.03438405692577362, -0.01940741017460823, -0.04039561003446579, 0.01679501309990883, -0.04857563599944115, 0.034936513751745224, -0.038139279931783676, -0.06311905384063721, 0.04803064465522766, 0.023776231333613396, 0.01984020136296749, -0.002238558605313301, -0.01974785327911377, -0.017370393499732018, -0.011370286345481873, 0.01179204136133194, -0.044145144522190094, 0.033325765281915665, 0.02138814702630043, -0.03091561794281006, 0.0019787077326327562, 0.029714634642004967, -0.054013244807720184, 0.07817484438419342, -0.019194910302758217, 0.030724357813596725, -0.00533632468432188, -0.03886604681611061, 0.015212622471153736, 0.010034793987870216, -0.015415526926517487, -0.02131563611328602, 0.0043314541690051556, 0.030080102384090424, 0.026684947311878204, -0.03780694305896759, 0.02337047830224037, -0.03255825489759445, -0.014474092051386833, 0.02266223542392254, 0.008295385167002678, -0.003118964610621333, -0.000269283598754555, -0.041586171835660934, -0.020351208746433258, -0.0073654004372656345, -0.014996075071394444, 0.04089405760169029, 0.027744516730308533, 0.01385121513158083, 0.05007850006222725, 0.009501554071903229, -0.02125723473727703, -0.034273412078619, -0.02724955603480339, -0.006799704860895872, -0.004623778164386749, 0.0017243655165657401, 0.06269136816263199, -0.05629051476716995, -0.04000019654631615, -0.007798996288329363, 0.0543457455933094, 0.04524347931146622, -0.0015502788592129946, -0.018726935610175133, -0.011179779656231403, -0.029765797778964043 ]
Can I buy your products if I am not a practitioner ? Pure Health Solutions range of products is for Practitioners Only and you have to fill out an application form to registered customer. However, for members of the general public, we can direct you to a practitioner in your area who is able to dispense our products after a consultation to determine the best remedies for your individual circumstances. How do I use the Test Kits ? Please contact us to resolve your query – for questions about kits we will usually get back to you within one week. Some of our products require refrigeration. When we send them to you, they are packed with ice packs to maintain a cool environment. Please refrigerate them as soon as you receive them and also advise your patients if prescribed items require refrigeration. My products haven't arrived ! My products haven't arrived !do our best to ensure that orders are delivered within our timeframes but sometimes unforseen circumstances occur with our delivery partners. You can check the progress of your order's delivery status using tracking numbers and if this is still not able to be resolved please contact us.
[ -0.007718225475400686, -0.0014000391820445657, -0.032799456268548965, 0.01659473404288292, -0.006197700276970863, -0.014213277027010918, 0.011505897156894207, 0.04516416788101196, -0.020860783755779266, 0.0520528182387352, 0.01472324039787054, 0.02833455242216587, 0.02021501585841179, -0.009051638655364513, -0.02967854216694832, 0.005056050140410662, -0.01334435399621725, -0.015157717280089855, -0.008601545356214046, -0.005082151386886835, 0.008377778343856335, 0.024676350876688957, -0.04252240061759949, -0.006493603345006704, -0.03569190204143524, 0.0046542068012058735, -0.004459604155272245, -0.010393274016678333, 0.04726773127913475, 0.05518509820103645, -0.05720910802483559, -0.019796157255768776, 0.01430172473192215, -0.029221856966614723, -0.011872407048940659, -0.01725822128355503, 0.012654357589781284, -0.00995179358869791, -0.041288673877716064, -0.041385844349861145, 0.0006889313808642328, 0.010538095608353615, 0.02209489978849888, -0.021980201825499535, -0.039830535650253296, -0.004084676969796419, -0.029626542702317238, -0.01941743865609169, 0.011150648817420006, -0.03462431579828262, 0.03499536216259003, 0.0067335027270019054, 0.015885794535279274, -0.004388718865811825, 0.008816497400403023, 0.0016956835752353072, 0.027385372668504715, -0.012339779175817966, -0.05070677027106285, 0.024175578728318214, 0.004088821355253458, 0.018845239654183388, 0.014462990686297417, -0.008717929944396019, 0.019450562074780464, 0.031004831194877625, -0.023661354556679726, -0.011624555103480816, 0.007055205292999744, 0.0037593210581690073, -0.01036673691123724, 0.0005306944949552417, -0.005415455438196659, 0.003517355304211378, 0.0145109873265028, 0.018459908664226532, -0.002945855027064681, 0.01529812440276146, 0.022585533559322357, -0.013116233050823212, 0.04880659654736519, 0.06169530376791954, 0.009492776356637478, 0.004502525087445974, -0.05785053223371506, -0.01582586020231247, -0.009174589067697525, -0.021719658747315407, 0.028932562097907066, -0.017184073105454445, 0.00908103957772255, 0.05033888667821884, -0.014459091238677502, -0.022641891613602638, 0.03774692118167877, 0.0429333858191967, -0.04056904464960098, 0.03174438700079918, 0.027063025161623955, 0.009672586806118488, 0.06930413842201233, 0.03583621233701706, 0.0033939809072762728, 0.040082719177007675, -0.054920122027397156, -0.020353490486741066, -0.01048236433416605, -0.020880378782749176, -0.02448306791484356, -0.022836213931441307, 0.010499558411538601, -0.028741654008626938, 0.006696140393614769, -0.007933580316603184, 0.002097913296893239, 0.025572873651981354, 0.008892226964235306, 0.05249368026852608, -0.05246662721037865, 0.028688203543424606, 0.03400900214910507, 0.015354915522038937, 0.06045963615179062, -0.03371218219399452, 0.033884819597005844, -0.041201431304216385, -0.0220568235963583, 0.032540250569581985, -0.012065316550433636, -0.04268096014857292, 0.01714387908577919, -0.03912462666630745, -0.0023690785747021437, 0.008667494170367718, 0.005967998411506414, 0.01716265268623829, 0.012360905297100544, 0.029677966609597206, 0.029991745948791504, -0.022674867883324623, 0.04145611822605133, 0.017636898905038834, 0.013357549905776978, 0.06139502301812172, 0.016901126131415367, 0.015644263476133347, 0.015991918742656708, -0.030353626236319542, -0.054782088845968246, 0.027501216158270836, -0.03566211834549904, 0.019860167056322098, -0.019073044881224632, 0.010611813515424728, -0.012570828199386597, -0.014663348905742168, -0.012161464430391788, 0.01644882746040821, 0.03104880079627037, 0.03702125325798988, -0.022445159032940865, 0.010791110806167126, 0.019649315625429153, 0.04149683192372322, 0.010805627331137657, 0.037933699786663055, -0.027230359613895416, 0.003195555182173848, 0.00844541471451521, -0.0426434725522995, 0.030518652871251106, -0.007510129362344742, 0.00025882263435050845, 0.04142623767256737, 0.011092951521277428, 0.03945256024599075, 0.07146305590867996, 0.005204534158110619, 0.03015816956758499, 0.04387836530804634, -0.04333842545747757, 0.007735178805887699, 0.010903246700763702, 0.06924561411142349, 0.03909096494317055, 0.03052563965320587, 0.006795159541070461, -0.022571269422769547, -0.016401853412389755, -0.014260533265769482, -0.015709921717643738, 0.0013481813948601484, -0.03785316273570061, 0.053010955452919006, -0.025556663051247597, 0.00336749036796391, -0.012174817733466625, 0.01832747831940651, 0.007613515015691519, -0.052090805023908615, 0.0017971266061067581, 0.04550279304385185, -0.04956166818737984, 0.04704386368393898, 0.014615336433053017, -0.021420905366539955, 0.01071880292147398, 0.05188150331377983, -0.010058651678264141, -0.008579552173614502, 0.009949504397809505, 0.0009944104822352529, -0.02484963834285736, -0.019983848556876183, 0.02518700808286667, -0.048386991024017334, -0.02901422791182995, 0.04641718417406082, -0.04352293163537979, -0.012009592726826668, 0.0036595752462744713, 0.009521768428385258, 0.055967528373003006, 0.03979644179344177, -0.007278491277247667, -0.0002402846293989569, 0.039548110216856, 0.036497537046670914, -0.03917940333485603, 0.0126241035759449, -0.01637522131204605, 0.07778208702802658, 0.017851674929261208, 0.0933719128370285, 0.023567959666252136, 0.015493029728531837, 0.030326837673783302, 0.04478742554783821, 0.011733824387192726, 0.02499321848154068, 0.005765258800238371, 0.027508575469255447, 0.03339332342147827, -0.010187770240008831, -0.02760554477572441, 0.023781070485711098, -0.03118971176445484, 0.0025393343530595303, -0.057426221668720245, 0.04869573190808296, 0.022938553243875504, 0.040546964854002, 0.06632637232542038, 0.034057676792144775, -0.031717076897621155, 0.00176775932777673, 0.04442892223596573, 0.04588909447193146, -0.04929092898964882, -0.010454381816089153, 0.019877780228853226, 0.030760539695620537, -0.013299435377120972, 0.002203349955379963, 0.053162600845098495, -0.0014927294105291367, 0.039444826543331146, 0.02299446612596512, -0.009695347398519516, -0.02694580890238285, -0.04362034052610397, -0.06055276468396187, -0.05053735896945, -0.050285693258047104, -0.04174937307834625, 0.010599026456475258, 0.033046722412109375, -0.045119985938072205, 0.015159162692725658, -0.02763514779508114, -0.016538696363568306, -0.032144658267498016, 0.0002649037342052907, 0.03176628798246384, 0.025787517428398132, 0.05195694789290428, -0.038264863193035126, 0.006624110043048859, -0.013914874754846096, 0.048246096819639206, -0.042106326669454575, -0.0011701654875651002, -0.010989056900143623, -0.022582270205020905, 0.03716190904378891, 0.00661188829690218, 0.012286171317100525, 0.027850857004523277, -0.04683087766170502, -0.050891272723674774, 0.011866140179336071, 0.034850429743528366, 0.024550287052989006, 0.035995304584503174, -0.020620692521333694, 0.039198264479637146, 0.005601805634796619, -0.03656728193163872, 0.04479585960507393, 0.021654533222317696, -0.01963593252003193, 0.031963832676410675, 0.019202737137675285, 0.000508442462887615, -0.060664646327495575, 0.013222078792750835, 0.06009108945727348, -0.021776288747787476, -0.036873288452625275, -0.011069625616073608, -0.03810358792543411, 0.012459364719688892, 0.010886370204389095, -0.0123637979850173, -0.042075395584106445, 0.03960898518562317, -0.014085290022194386, -0.06820103526115417, 0.03401550278067589, -0.04781906679272652, -0.025168098509311676, -0.043317705392837524, -0.058714836835861206, 0.014339504763484001, 0.005549872759729624, 0.03303893655538559, 0.012520241551101208, -0.025439942255616188, 0.009952506050467491, 0.0027996967546641827, 0.04018406197428703, -0.006802488584071398, 0.011233960278332233, 0.054364074021577835, 0.017567263916134834, 0.028210783377289772, 0.03344295918941498, -0.01986026018857956, 0.012290524318814278, 0.0008593685925006866, -0.007510122377425432, 0.019279059022665024, 0.03075656294822693, 0.036300014704465866, 0.019794050604104996, 0.06034577637910843, -0.049505993723869324, -0.008000314235687256, 0.01145661249756813, 0.022626463323831558, 0.012497822754085064, -0.0010188787709921598, 0.014145169407129288, -0.005018238443881273, -0.037904903292655945, -0.052732501178979874, 0.02356558106839657, 0.010550209321081638, 0.059444624930620193, -0.04578729718923569, 0.04240143671631813, -0.005229625850915909, -0.026860615238547325, 0.03799687698483467, -0.043272051960229874, -0.012493968941271305, 0.030197763815522194, -0.009363632649183273, 0.061488352715969086, -0.06746301054954529, -0.01143038272857666, -0.02955586649477482, 0.006445609498769045, 0.011422518640756607, -0.023844758048653603, 0.033794887363910675, -0.03825967386364937, -0.008894120343029499, 0.004295460879802704, -0.022233959287405014, 0.0014800189528614283, -0.02260040119290352, 0.0322127602994442, -0.01982676237821579, -0.05897827446460724, -0.06654002517461777, 0.006730946246534586, 0.014164666645228863, 0.04777352884411812, -0.01481933519244194, 0.031916819512844086, 0.026836687698960304, 0.008906536735594273, 0.02904936857521534, 0.012518949806690216, -0.007375017274171114, -0.029605301097035408, 0.014191072434186935, 0.026683170348405838, -0.003410640638321638, -0.04179307818412781, -0.022315138950943947, -0.01921064220368862, 0.02182195335626602, -0.012650680728256702, -0.046081431210041046, -0.04021085426211357, 0.015188002958893776, -0.02322307601571083, 0.0038267518393695354, -0.04077721759676933, -0.033026304095983505, -0.04704323038458824, 0.00953344814479351, 0.037225689738988876, -0.06315899640321732, -0.018587544560432434, -0.03338483348488808, 0.03866998851299286, 0.0513223260641098, 0.006811175961047411, -0.04572436958551407, -0.02722347155213356, -0.02285439893603325, -0.03005579113960266, 0.0040954905562102795, 0.06006493419408798, 0.002388112945482135, 0.01072150468826294, -0.05665986239910126, -0.010827677324414253, 0.0027418844401836395, -0.008633241057395935, -0.005080556962639093, -0.029605772346258163, 0.03220449015498161, 0.002198499394580722, 0.03855264559388161, 0.00122044887393713, -0.012866001576185226, 0.0022352254018187523, -0.07150810211896896, 0.0025794506072998047, -0.012650733813643456, -0.046614378690719604, 0.020775126293301582, 0.03533805534243584, 0.007962855510413647, 0.05501537770032883, 0.009260619059205055, 0.011081214062869549, -0.02278757654130459, 0.027822399511933327, -0.03478120267391205, -0.022556645795702934, 0.03934074565768242, 0.0012043117312714458, -0.03859652951359749, 0.018171707168221474, 0.023372555151581764, -0.022155562415719032, 0.02448192983865738, 0.037415776401758194, -0.046589214354753494, 0.0404992513358593, -0.022500496357679367, 0.006676898803561926, -0.00976469088345766, -0.019887248054146767, 0.008220558986067772, -0.057879768311977386, 0.025641562417149544, 0.017505887895822525, -0.027395784854888916, -0.04197631776332855, -0.0592360682785511, -0.011661408469080925, -0.00717168627306819, -0.01764749176800251, 0.05650464817881584, 0.01283214334398508, -0.02377297356724739, -0.028795886784791946, 0.020511504262685776, -0.0066713932901620865, 0.006140750367194414, 0.001047272700816393, -0.0014261926990002394, 0.008519052527844906, 0.031203618273139, 0.007608396466821432, -0.002242735819891095, -0.01901453547179699, 0.0013392036780714989, -0.004606088623404503, 0.0036207386292517185, -0.03964133560657501, 0.027264485135674477, -0.015085568651556969, -0.01591520756483078, -0.030829723924398422, 0.030631670728325844, -0.03353465721011162, 0.010772987268865108, 0.04811991751194, 0.0021047848276793957, 0.010345514863729477, 0.02925938367843628, -0.05471007153391838, 0.06568069010972977, 0.0052522923797369, -0.03772871568799019, -0.04396099969744682, 0.014811063185334206, -0.007578848861157894, 0.07144928723573685, 0.014193748123943806, -0.037441447377204895, -0.02495122328400612, -0.05215128883719444, 0.008317963220179081, -0.018921220675110817, -0.02995375543832779, -0.061825238168239594, -0.045279357582330704, -0.024108774960041046, 0.05786963552236557, -0.010756508447229862, -0.020262522622942924, 0.011364161036908627, -0.0462457612156868, 0.010134099051356316, -0.03343534842133522, -0.009331430308520794, -0.018244577571749687, -0.0079577025026083, 0.007991084828972816, 0.03495566546916962, -0.00571613060310483, 0.003289315151050687, -0.0140305170789361, 0.02956305257976055, 0.014547358267009258, -0.0075971768237650394, -0.04258231818675995, -0.05057644098997116, -0.004344064276665449, 0.00322135747410357, -0.009152381680905819, 0.0208616703748703, -0.04303267225623131, 0.06921852380037308, -0.05082590878009796, 0.036362696439027786, 0.0009047266794368625, -0.007481229957193136, -0.016929982230067253, 0.004628134425729513, 0.05690208449959755, 0.0017137418035417795, -0.0043413471430540085, -0.010634558275341988, 0.031189190223813057, 0.0777587816119194, 0.03318876773118973, -0.03442315012216568, -0.04360608011484146, -0.0110349515452981, -0.05021098628640175, 0.014355623163282871, -0.024167902767658234, -0.015318924561142921, -0.04108510911464691, -0.024587931111454964, 0.03211493790149689, -0.013047230429947376, 0.03325784578919411, 0.04241052269935608, -0.0015916391275823116, -0.019404519349336624, -0.021399201825261116, 0.05742514505982399, 0.023183584213256836, 0.0013084406964480877, -0.018432943150401115, -0.02650950290262699, -0.0173972025513649, -0.031001359224319458, -0.011335255578160286, -0.0611887201666832, -0.06364753097295761, 0.009172902442514896, 0.06179172918200493, -0.02740917168557644, 0.016912568360567093, 0.011702547781169415, -0.06543391197919846, -0.05100864917039871, 0.05200686305761337, 0.0032389264088124037, 0.007826867513358593, 0.04899001494050026, -0.010213821195065975, -0.05119604617357254, -0.007869072258472443, -0.02798834815621376, -0.009338253177702427, -0.04069434106349945, 0.07343734800815582, 0.0005949769401922822, -0.0501570962369442, 0.020415250211954117, 0.045458972454071045, -0.04602590203285217, -0.04931357130408287, 0.009198397397994995, 0.00009359588875668123, -0.001175428624264896, -0.027539780363440514, -0.012002904899418354, -0.015535424463450909, 0.003082415321841836, 0.02120834030210972, 0.04622020944952965, -0.014205430634319782, 0.03216104581952095, 0.004635944496840239, 0.042303416877985, -0.018198972567915916, -0.022503500804305077, 0.024051886051893234, -0.01465585920959711, -0.04263145476579666, -0.03593752533197403, -0.003987147938460112, -0.002222714014351368, 0.005431136582046747, 0.055321186780929565, 0.004662167746573687, 0.006900872569531202, 0.03677300736308098, -0.00611552270129323, 0.021400567144155502, -0.006306136958301067, -0.010787766426801682, -0.00035227846819907427, -0.06429818272590637, -0.04852782189846039, -0.012179167941212654, 0.05072449892759323, -0.015884915366768837, 0.006130137015134096, -0.02675304189324379, -0.016501616686582565, 0.025884579867124557, 0.04655726999044418, 0.00005666288416250609, -0.04638240113854408, -0.06000327691435814, -0.022650592029094696, -0.03403259441256523, -0.01964142732322216, -0.046002693474292755, -0.009224716573953629, 0.013714546337723732, -0.013384688645601273, -0.055442508310079575, -0.016502559185028076, -0.00873336847871542, -0.005353034008294344, -0.010118438862264156, -0.0521683506667614, 0.03563684597611427, -0.04687529429793358, -0.06570462882518768, -0.048452217131853104, -0.012626823969185352, -0.026461618021130562, 0.028809435665607452, -0.052435800433158875, 0.007246605586260557, -0.014356996864080429, 0.03851631283760071, -0.02561088651418686, 0.017511866986751556, -0.023030979558825493, -0.0665733739733696, 0.021024078130722046, 0.06771247833967209, -0.01898793689906597, 0.04215286299586296, 0.01582476496696472, -0.028195230290293694, 0.013539125211536884, 0.028057171031832695, -0.005152206402271986, -0.0149888526648283, 0.029632581397891045, 0.01692049950361252, -0.002725569996982813, -0.03955895081162453, -0.008941189385950565, -0.0013986163539811969, -0.05925476551055908, 0.03819068893790245, -0.012706791050732136, 0.005013245157897472, 0.006851295009255409, 0.029584674164652824, -0.000967370462603867, 0.03173148259520531, -0.024754734709858894, 0.027613108977675438, 0.0034874542616307735, 0.02871405892074108, 0.02014843560755253, -0.017286930233240128, 0.023444542661309242, 0.03820020705461502, 0.005338467191904783, -0.023408202454447746, 0.00733195198699832, 0.04265051707625389, -0.023189572617411613, 0.02939956821501255, -0.0302747655659914, -0.02549843303859234, -0.03507625684142113, 0.0038706164341419935, -0.008213679306209087, 0.07227479666471481, 0.04466855525970459, 0.012559385038912296, 0.00010141655366169289, -0.020514218136668205, -0.04188936948776245, 0.010738766752183437, -0.07467189431190491, -0.0421748012304306, 0.026427356526255608, 0.008789225481450558, -0.031685374677181244, -0.01173884142190218, -0.04543376713991165, -0.013147665187716484, -0.05925106629729271, -0.01847750134766102, -0.03239404782652855, 0.014027387835085392, 0.0014725883956998587, 0.02319694682955742, -0.014505892992019653, -0.01719081401824951, 0.0005572321824729443, 0.04778386652469635, -0.047990258783102036, -0.030177781358361244, 0.026173850521445274, 0.033324673771858215, 0.007258365862071514, 0.011964840814471245, -0.022348541766405106, 0.0015127481892704964, -0.013577062636613846, 0.00997836235910654, 0.020423524081707, 0.008709241636097431, -0.027809565886855125, 0.038109809160232544, -0.033527832478284836, 0.014081241562962532, -0.05873464420437813, 0.043035756796598434, -0.02194475755095482, -0.03328826278448105, -0.0404285229742527, 0.03656330332159996, 0.02873973362147808, -0.0029852809384465218, 0.020332882180809975, -0.0008510532206855714, 0.047647811472415924, -0.024456467479467392, 0.022055648267269135, 0.009508899413049221, 0.04083738103508949, 0.04158180207014084, 0.05075782537460327, 0.010993435978889465, 0.033747363835573196, 0.08173272758722305, -0.015930159017443657, 0.020879102870821953, -0.006818926427513361, 0.025896377861499786, -0.015701621770858765, 0.00349530391395092, 0.0013746231561526656, 0.01613551378250122, 0.035091713070869446, -0.004892915021628141, -0.00886620581150055, -0.01796731725335121, -0.020364688709378242, -0.024360915645956993, -0.05379847437143326, 0.03632773831486702, -0.008654172532260418, 0.03104495070874691, 0.0026294924318790436, -0.027759753167629242, -0.011645341292023659, 0.06459911167621613, 0.005687040742486715, 0.000919237791094929, 0.05387936905026436, 0.03959737345576286, -0.012517409399151802, 0.04739904776215553, 0.011735036969184875, 0.006102766841650009, -0.02987341396510601, 0.017179207876324654, 0.015482260845601559, -0.01931765303015709, -0.022279303520917892, 0.020345045253634453, -0.03971363231539726, 0.03945156931877136, -0.016457058489322662, -0.01429035421460867, 0.04139280319213867, -0.040212780237197876, -0.010877225548028946, -0.02641216665506363, 0.010581805370748043, -0.04313104599714279, -0.017430180683732033, 0.0027654971927404404, -0.011411693878471851, -0.030939966440200806, 0.02328738011419773, 0.02427331730723381, 0.03740350902080536, 0.016144543886184692, 0.0486624501645565, 0.015839958563447, 0.0017652297392487526, 0.05171485245227814, 0.004400779027491808, -0.007694050669670105, 0.031406380236148834, 0.011978913098573685, -0.029935920611023903, 0.009133031591773033, -0.05267160013318062, -0.0343758687376976, -0.012884194031357765, 0.0007136319763958454, -0.03558892756700516, 0.06770388036966324, 0.0035798451863229275, -0.05132738873362541, -0.020488983020186424, 0.03724881634116173, -0.0058082640171051025, 0.0006639471394009888, 0.007219178136438131, 0.045065511018037796, 0.001800292986445129, -0.03652629256248474, -0.03339513763785362, -0.01414397545158863, -0.019758665934205055, -0.047385748475790024, 0.01720682717859745, -0.011435052379965782, -0.02283509075641632, -0.04205503314733505, -0.05863434821367264, -0.0471118688583374, 0.02533075399696827, -0.046071939170360565, -0.024938318878412247, 0.031157150864601135, 0.02776515670120716, 0.027958689257502556, 0.015006341971457005, -0.011711450293660164, -0.005470119416713715, 0.01299701351672411, 0.057374875992536545, 0.012801146134734154, 0.05380658805370331, 0.05617595091462135, -0.025705037638545036, 0.015593812800943851, -0.004526597447693348, 0.01659959740936756, -0.00994062703102827, -0.034133244305849075, -0.023319238796830177, 0.00965234823524952, -0.03544740378856659, -0.06559526175260544, 0.006405999884009361, 0.06688260287046432, -0.022517187520861626, -0.017825745046138763, -0.04616532102227211, -0.0025083201471716166, -0.06281735748052597, -0.02694900520145893, -0.05072353035211563, 0.020950738340616226, 0.007289282977581024, -0.019780470058321953, -0.00015183925279416144, -0.04913835600018501, 0.13973504304885864, 0.04817529022693634, 0.017158830538392067, 0.010506895370781422, 0.05256256088614464, 0.047368794679641724, -0.008383828215301037, -0.012239959090948105, 0.016404984518885612, -0.03783385828137398, 0.007521939463913441, -0.015355060808360577, 0.0473811961710453, 0.01993381790816784, 0.011431653052568436, 0.06504230946302414, -0.026895200833678246, 0.012981495819985867, 0.029759488999843597, -0.03869171813130379, -0.05055907741189003, 0.025461748242378235, -0.011509797535836697, 0.03185839578509331, -0.03405866026878357, -0.019048288464546204, 0.024025266990065575, -0.03985419496893883, -0.02347639948129654, -0.041603393852710724, 0.05833199992775917, -0.023526286706328392, 0.0514339953660965, -0.01814456097781658, -0.030253905802965164, 0.046680551022291183, 0.027580153197050095, -0.01631891168653965, -0.01348153781145811, 0.02607470005750656, -0.011489931493997574, -0.009323635138571262, 0.030033890157938004, -0.03338265046477318, 0.006955644115805626, 0.009611697867512703, -0.03436696529388428, 0.009606242179870605, 0.028351949527859688, -0.005891816224902868, 0.06755853444337845, -0.04481424391269684, 0.026670025661587715, -0.019496725872159004, -0.047719527035951614, 0.012657872401177883, -0.0032807120587676764, -0.03446494787931442, -0.011529379524290562, -0.00024212307471316308, 0.016533495858311653, 0.01281808316707611, -0.02224401757121086, -0.006418171338737011, -0.029536539688706398, -0.02206430770456791, 0.02723812870681286, 0.03160632774233818, 0.0020103140268474817, 0.015153424814343452, -0.01104873139411211, -0.0012422422878444195, -0.003970198333263397, -0.06109415367245674, 0.022164035588502884, 0.04215887933969498, -0.024350566789507866, 0.016346964985132217, 0.0017744534416124225, -0.029923269525170326, -0.010203328914940357, -0.049719374626874924, 0.02526817098259926, 0.0024723843671381474, 0.028222089633345604, 0.021279221400618553, -0.044227082282304764, -0.012026813812553883, -0.04299212992191315, 0.04090467467904091, 0.05834062397480011, 0.01676158979535103, -0.023310380056500435, 0.01183696836233139, -0.02882031723856926 ]
With 35 years of coast-to-coast and international shipping experience, PGL has been the trusted Custom packaging, Crating, and Shipping Company in California, USA. Our Custom Packaging and Custom Crating processes and practices have been refined over time, utilizing our rich experience, and latest Technology improvements in the industry. Fragile, Large, Over-sized, and Valuable items need Wooden Crates or Wooden Boxes for the Best protection of items. We are the preferred vendor for Wooden Crating Services in Oakland, Hayward, Union City, Fremont and other areas in Northern California for 35 years. Our Custom Packaging solution is 'uniquely' engineered 'for your item' to protect your items against any possible damages in its journey to your destination. We understand the shipping challenges by air, ocean, and ground and our packaging and crating solutions. PGL has DELIVERED several thousands of shipments worldwide with the lowest claim-rate to commercial, industrial, and residential customers! We provide "Door-to-Door" Service from Pick up, Custom Packaging, Crating, and Shipping with full-value insurance. Our motto and practice have been "Package, Crate and Ship every client's item as if it is our own item. We do everything to Deliver your Item to your location, Worldwide, 'SAFE' and 'TIMELY'. We protect your items against any damages which may be caused in transportation". We are an established Corporation in California, with our warehouses and staff ready to serve your needs. PGL has delivered several thousands of shipments worldwide with expert Packaging, and Crating at "Industry-above" standards. We have been doing it right and 'excellent' always, for every shipment, every day. Leading Corporations and individuals look at PGL as their valuable and trusted partner to deliver shipments 'Safe' and 'Timely' consistently worldwide by Air, Ocean, and Ground. We had to ship 50 high precision glass sheets from Hayward to our overseas vendor in Austria. PGL packaged, crated these 50 glass sheets, and shipped by Air successfully. Their work was so professional that our vendor in Austria congratulated for a very safe shipment delivered across continents. I am very glad that I chose PGL to do this project for us. I hired PGL to move our 12 Servers from SFO to Dallas. They picked up, crated and got the servers delivered within 3 days. I appreciate their incredible job to pack and ship servers worth $650,000. I will be calling them again for our next move of servers. Platinum Global Logistics crated and shipped two 15 feet tall bronze sculptures from San Francisco to our HQ in Taiwan. The sculptures are rare as there are only 12 of them. They handled the sculptures carefully and got them delivered in perfect condition. They were flexible in scheduling to suit our convenience. As we decided to move our plant from San Jose to Minneapolis, several machines, tools, and equipment were to be shipped. Platinum Global Logistics came in to pack, crate, and ship everything in 3 truckloads. Remarkable job and well done guys!
[ -0.0011199943255633116, 0.002100707031786442, -0.014194011688232422, 0.016601724550127983, -0.025675339624285698, -0.015147481113672256, 0.009489640593528748, 0.0418161116540432, 0.03225666657090187, -0.0012089748634025455, 0.03732440993189812, 0.0019371509552001953, 0.005140272434800863, -0.03140150010585785, -0.03273843973875046, 0.000038415499147959054, -0.009904214181005955, -0.00699241179972887, -0.017085924744606018, 0.016236182302236557, 0.017496971413493156, 0.016388390213251114, -0.06699153780937195, -0.014662584289908409, -0.02003149501979351, 0.02023259364068508, 0.021312566474080086, -0.001388735487125814, 0.08615455776453018, 0.05010324344038963, -0.036595482379198074, -0.011914020404219627, 0.05001272261142731, -0.05850595980882645, -0.018267808482050896, -0.006679924670606852, 0.029363317415118217, -0.03948814794421196, -0.01601036824285984, -0.037469957023859024, 0.02133931592106819, -0.012261994183063507, 0.04597439244389534, -0.041556742042303085, -0.02255425974726677, 0.02145363949239254, 0.002056937664747238, -0.011900599114596844, 0.0349138006567955, -0.04409952461719513, 0.0155707448720932, -0.00343646970577538, 0.030028026551008224, -0.01035707350820303, 0.028267765417695045, 0.012499076314270496, 0.0017820206703618169, -0.01397138461470604, -0.005951414816081524, 0.03434932604432106, 0.028117509558796883, -0.048235803842544556, -0.0012476664269343019, -0.04707695543766022, 0.041686736047267914, 0.014578589238226414, 0.00229277485050261, -0.005145852919667959, 0.025189828127622604, -0.001382689457386732, -0.014752356335520744, 0.0020161462016403675, -0.02982456609606743, -0.018669821321964264, 0.013317417353391647, -0.0008100729319266975, -0.005364342126995325, 0.013473151251673698, -0.006533543113619089, -0.0002632589021231979, 0.04343833401799202, 0.03146357089281082, 0.021526414901018143, -0.005134084261953831, -0.07365930080413818, -0.013422958552837372, -0.016801750287413597, 0.03374635800719261, 0.006756242830306292, 0.02520597167313099, -0.024962782859802246, 0.04970988631248474, -0.00598430261015892, -0.0016805828781798482, 0.015117418952286243, 0.05512151122093201, -0.04373804107308388, 0.044293783605098724, 0.01229539979249239, 0.012941506691277027, 0.0364697091281414, 0.04758407175540924, -0.03027753159403801, 0.030575793236494064, -0.033798858523368835, -0.005220131482928991, 0.010401992127299309, -0.011298070661723614, -0.016110306605696678, -0.01424180157482624, -0.005326396785676479, -0.02356625534594059, -0.019324099645018578, -0.010276815854012966, 0.001835346920415759, 0.05701228603720665, -0.013063433580100536, 0.04990173503756523, -0.03804933279752731, 0.024347849190235138, 0.04836413636803627, 0.015057101845741272, 0.05145176500082016, -0.0321916900575161, 0.0018433771329000592, -0.03960354998707771, -0.010962956584990025, 0.03660927712917328, -0.02299872599542141, -0.018800530582666397, 0.003314516507089138, -0.03627217933535576, -0.024866148829460144, 0.005908433347940445, 0.017943546175956726, 0.024151647463440895, -0.0011028855806216598, 0.01848221756517887, 0.024753306061029434, -0.04526384174823761, 0.057324305176734924, 0.03302709385752678, 0.0008807101403363049, 0.07025307416915894, 0.007448957301676273, 0.00279783527366817, 0.032293256372213364, 0.023493589833378792, -0.050037093460559845, 0.033449217677116394, -0.01293338742107153, 0.011434046551585197, 0.005582830868661404, 0.03800186142325401, 0.013290461152791977, 0.03530465066432953, -0.004785540979355574, 0.031193241477012634, 0.03671667352318764, 0.02247064746916294, -0.01599705033004284, -0.009077483788132668, 0.0045959786511957645, 0.03813827037811279, -0.01111232303082943, 0.0377800352871418, -0.02326546050608158, -0.019711574539542198, -0.046466805040836334, -0.010252744890749454, 0.002934793010354042, -0.01149053405970335, -0.019056033343076706, 0.012190519832074642, 0.026904871687293053, 0.0493948720395565, 0.031518224626779556, 0.002128529129549861, 0.028268059715628624, 0.048409733921289444, -0.02457878738641739, -0.03643946722149849, 0.020996393635869026, 0.047274235635995865, 0.029893990606069565, 0.01674327626824379, -0.015663443133234978, -0.000005742271696362877, -0.017563965171575546, -0.03631628677248955, 0.009857125580310822, 0.05832693353295326, -0.02694709412753582, 0.014784898608922958, -0.03449828177690506, 0.03309135511517525, -0.002945228712633252, -0.0036168533843010664, -0.017003638669848442, -0.03352348133921623, -0.01519616600126028, 0.04040138050913811, -0.03955557197332382, 0.019338808953762054, 0.007119760848581791, -0.02783677913248539, 0.01328306831419468, 0.08862082660198212, -0.042380861937999725, -0.03682038187980652, 0.0611286424100399, -0.005849775858223438, -0.04743744805455208, -0.010219278745353222, 0.022896794602274895, -0.01148722693324089, -0.06197095289826393, 0.028236132115125656, 0.0018185016233474016, 0.013325932435691357, 0.011258748359978199, 0.024749722331762314, 0.004615867976099253, 0.03179294988512993, 0.007231452502310276, 0.020471015945076942, 0.01294462475925684, 0.03869836777448654, 0.00017768015095498413, -0.04125983268022537, -0.0009819170227274299, 0.04926005005836487, 0.005158953834325075, 0.05669674649834633, 0.07467077672481537, 0.014202737249433994, 0.05760714039206505, 0.030953677371144295, -0.003734750207513571, 0.010487795807421207, 0.034712329506874084, -0.012104183435440063, 0.014285128563642502, 0.0017701872857287526, -0.010896598920226097, 0.002278493484482169, -0.030337532982230186, -0.004390932619571686, -0.03311508148908615, 0.009912111796438694, -0.0016413580160588026, 0.042826078832149506, 0.012172314338386059, 0.03695907071232796, -0.028833502903580666, -0.005162808578461409, 0.01655561663210392, 0.05245259776711464, -0.030381174758076668, 0.016492469236254692, 0.0063842544332146645, 0.014381425455212593, -0.020191283896565437, 0.01566270925104618, 0.02611817978322506, 0.025268498808145523, 0.004314541816711426, -0.009023354388773441, -0.039502307772636414, -0.034773483872413635, -0.022528689354658127, -0.04349319264292717, -0.011238927952945232, -0.02415880188345909, -0.05242356285452843, 0.000618097314145416, 0.049602169543504715, -0.01820211112499237, 0.03135751560330391, -0.007636594586074352, -0.014229931868612766, -0.02372954599559307, -0.0000032942029974947218, 0.01566353626549244, 0.019067689776420593, 0.019905105233192444, -0.03826083242893219, 0.0072451489977538586, -0.016462095081806183, -0.012483001686632633, -0.0622781366109848, 0.02018459513783455, -0.00045752216828987, -0.012540580704808235, 0.06643179804086685, -0.008185147307813168, -0.0114301647990942, 0.004776776302605867, -0.04198645055294037, -0.06739605218172073, -0.02053612656891346, -0.004295405000448227, 0.02207230217754841, 0.005593032576143742, -0.02603207901120186, 0.05520005151629448, 0.01072401087731123, -0.014619349502027035, 0.030578218400478363, 0.034525688737630844, -0.04514749348163605, 0.01958562806248665, 0.044238701462745667, -0.0040906271897256374, -0.07048669457435608, 0.03387713059782982, 0.050356730818748474, 0.004743501543998718, -0.029639000073075294, -0.03601203113794327, -0.02474239654839039, 0.04547753930091858, 0.026599137112498283, -0.0012560546165332198, -0.006595958489924669, 0.05435004085302353, 0.015382291749119759, -0.054470740258693695, 0.035655319690704346, -0.028383396565914154, -0.027292801067233086, -0.04574502632021904, -0.05335814505815506, 0.006219597067683935, 0.005858089774847031, 0.021486733108758926, -0.005559419747442007, -0.046996332705020905, 0.01391352154314518, 0.01580328494310379, 0.04056223854422569, -0.037858642637729645, 0.008330089971423149, 0.052376024425029755, -0.02303348109126091, 0.02224116399884224, 0.03412044793367386, -0.01296016201376915, -0.0017496314831078053, -0.024100782349705696, 0.0021089285146445036, -0.008263234049081802, 0.010424599051475525, -0.0021970421075820923, 0.03077145293354988, 0.06230583041906357, -0.04053901880979538, -0.005831921007484198, 0.00939483568072319, 0.05323992297053337, 0.02607966773211956, 0.012192394584417343, 0.02506425231695175, 0.02245262823998928, -0.04946191981434822, -0.06724141538143158, -0.010034723207354546, 0.015576603822410107, 0.030496180057525635, -0.07068660855293274, 0.043502699583768845, 0.007977766916155815, -0.03295104205608368, 0.04436185956001282, -0.04795980080962181, 0.007147528231143951, 0.021577363833785057, -0.007239659782499075, 0.04079454019665718, -0.03870465233922005, 0.027616001665592194, -0.0008042127592489123, -0.0009050533990375698, 0.026474367827177048, 0.011289993301033974, 0.009120396338403225, -0.013100868090987206, 0.01182603556662798, -0.01421347912400961, -0.020859425887465477, -0.0141238272190094, -0.018702460452914238, 0.0034358943812549114, 0.020849579945206642, -0.051868539303541183, -0.044328153133392334, 0.014736571349203587, 0.03333330526947975, 0.03817623481154442, -0.022890780121088028, 0.04202752560377121, 0.02597271464765072, 0.010298269800841808, 0.023026050999760628, -0.005483043845742941, -0.005522235296666622, -0.030915625393390656, 0.023944508284330368, 0.018295446410775185, -0.04461933672428131, -0.03468332439661026, -0.015281367115676403, -0.023932626470923424, 0.0586194172501564, -0.009479233995079994, -0.01789766363799572, -0.01807892695069313, 0.016153499484062195, 0.00192501419223845, 0.022045746445655823, -0.030627219006419182, -0.026874180883169174, -0.013100477866828442, 0.047066956758499146, 0.046856142580509186, -0.07215568423271179, 0.00350298173725605, -0.06005702167749405, 0.026425903663039207, 0.040280554443597794, -0.02604602463543415, -0.04403398558497429, -0.012479977682232857, -0.03701171651482582, -0.021731030195951462, 0.00013052696886006743, 0.022753477096557617, -0.007706253323704004, 0.02540499158203602, -0.04936331510543823, 0.027428289875388145, 0.014318373054265976, -0.021631835028529167, -0.015326711349189281, 0.0011031444882974029, 0.01902192458510399, 0.010505788959562778, 0.056845393031835556, -0.007892734371125698, -0.045574989169836044, 0.018247786909341812, -0.05054405704140663, -0.011462430469691753, 0.005658647511154413, -0.02671281434595585, 0.009511183016002178, 0.02081541158258915, 0.023890754207968712, 0.0471484400331974, -0.02576378732919693, 0.009633449837565422, -0.006522691808640957, 0.04037280008196831, -0.03688817471265793, -0.023053186014294624, 0.024491507560014725, 0.01461806334555149, -0.04067011550068855, 0.032133836299180984, 0.025135528296232224, -0.035068731755018234, -0.001066109398379922, 0.03514748439192772, -0.0491943433880806, 0.02396773174405098, -0.045037247240543365, 0.019701093435287476, -0.009255380369722843, -0.045891184359788895, 0.036588750779628754, -0.057957492768764496, 0.05225590243935585, 0.005966763943433762, -0.04491053894162178, -0.04771909490227699, -0.07508011162281036, -0.0008130806963890791, 0.0037180189974606037, -0.011001153849065304, 0.025622373446822166, -0.011579189449548721, -0.0022247445303946733, 0.005283533129841089, -0.0018644781084731221, -0.005633094813674688, 0.025379618629813194, -0.016526494175195694, 0.0037484499625861645, 0.021147077903151512, 0.005673014558851719, 0.0038680287543684244, -0.014140636660158634, -0.01891138404607773, 0.010531286709010601, 0.0048063271678984165, -0.03487418591976166, -0.04033850505948067, 0.022628335282206535, -0.03158703073859215, 0.013765858486294746, -0.02174629084765911, 0.01700819656252861, -0.011902936734259129, 0.01826406829059124, 0.04672275483608246, -0.0022145300172269344, 0.0018192289862781763, -0.0033868972677737474, -0.04842231422662735, 0.06118534132838249, 0.009777754545211792, -0.043431952595710754, -0.033421218395233154, 0.026604220271110535, -0.003785521723330021, 0.03970766067504883, 0.007493593264371157, -0.015933368355035782, -0.0612855963408947, -0.05442102625966072, -0.011643903329968452, -0.0486726351082325, -0.03192078322172165, -0.03618590906262398, -0.03653768450021744, -0.009253431111574173, 0.05720676854252815, 0.02488861419260502, 0.002185914432629943, 0.013019145466387272, -0.028764991089701653, -0.0004620608233381063, -0.04023647680878639, -0.03266124054789543, -0.01705962046980858, -0.008200368843972683, -0.03446120023727417, 0.034728094935417175, 0.010401167906820774, 0.031172098591923714, -0.0004901283537037671, 0.03358696773648262, 0.013419213704764843, -0.02740321308374405, -0.03711928427219391, -0.058433737605810165, -0.027247322723269463, 0.038770642131567, -0.014549357816576958, -0.01606791839003563, -0.06545806676149368, 0.060753609985113144, -0.04645000398159027, -0.01039364468306303, -0.01418456993997097, 0.007689283695071936, -0.003079159650951624, -0.026320943608880043, 0.040935665369033813, -0.010881713591516018, 0.023220302537083626, -0.019203968346118927, 0.03471878170967102, 0.042182646691799164, -0.010172666981816292, -0.012473003938794136, -0.03398521989583969, -0.04592965915799141, -0.04753412678837776, 0.02761979214847088, -0.053485434502363205, -0.02730773389339447, -0.06402505934238434, -0.021731622517108917, 0.04023655503988266, -0.005201917141675949, 0.04019676521420479, 0.062089648097753525, -0.019397223368287086, -0.005156644620001316, -0.02183111011981964, 0.02906055375933647, 0.05256327614188194, -0.04921634867787361, -0.019461045041680336, 0.008410589769482613, -0.04330851882696152, -0.027073541656136513, -0.027446815744042397, -0.06643609702587128, -0.04030034691095352, -0.014551186934113503, 0.07756350934505463, -0.01285945437848568, 0.03584977611899376, -0.03773263841867447, -0.034132909029722214, -0.026310384273529053, 0.03666449710726738, 0.0007141664973460138, 0.015548670664429665, 0.06355391442775726, 0.004254642874002457, -0.041678134351968765, -0.0009657887858338654, 0.003966157324612141, 0.0077549759298563, -0.032589465379714966, 0.048951830714941025, 0.00555813405662775, -0.08620752394199371, 0.005965791177004576, 0.03193481266498566, -0.028512660413980484, -0.04791038855910301, -0.005285097751766443, -0.002158369403332472, -0.0004154639900662005, -0.0048230672255158424, 0.020411033183336258, -0.018251962959766388, 0.019069373607635498, -0.012813893146812916, 0.039569467306137085, -0.004136458970606327, 0.07480031996965408, 0.02553456649184227, 0.03504805266857147, -0.032164767384529114, -0.013025744818150997, 0.02313527837395668, 0.004647605121135712, -0.005569711793214083, -0.015309663489460945, -0.025163229554891586, 0.017425311729311943, -0.007954396307468414, 0.05114145949482918, -0.01053551770746708, 0.022124506533145905, 0.013850860297679901, 0.009728026576340199, 0.04896804317831993, 0.03538065403699875, -0.025665609166026115, 0.009381969459354877, -0.04103784263134003, -0.06113678216934204, -0.008228853344917297, 0.023668987676501274, -0.025483297184109688, 0.02034822478890419, -0.03894449397921562, -0.004823479801416397, 0.04110518470406532, 0.004045155365020037, 0.002954083262011409, -0.042279861867427826, -0.039816174656152725, -0.025783361867070198, -0.04761846736073494, -0.06951059401035309, -0.0473799966275692, -0.021611077710986137, 0.015233089216053486, -0.01587785966694355, -0.03711867704987526, 0.006813538260757923, 0.02561125159263611, -0.005055055487900972, 0.01023502741008997, -0.02440178208053112, 0.03090079501271248, -0.05024755001068115, -0.06293269991874695, -0.058000992983579636, -0.0053650313057005405, -0.014630488120019436, 0.026461079716682434, -0.0063017671927809715, 0.017164891585707664, -0.010724645107984543, 0.03223520144820213, 0.013800202868878841, 0.007795664481818676, 0.000010964383363898378, -0.03796377405524254, -0.04119785502552986, 0.02393842488527298, -0.038343511521816254, 0.026295941323041916, 0.04231001064181328, -0.05210607871413231, 0.029907947406172752, -0.0021577414590865374, -0.01527959480881691, -0.03857745975255966, -3.3324312198601547e-7, -0.0048405141569674015, 0.00821545161306858, -0.04855465516448021, -0.031169168651103973, -0.004334698896855116, -0.030015919357538223, -0.0019112626323476434, 0.015319278463721275, 0.014033992774784565, -0.0021869090851396322, -0.02595815621316433, -0.02909126877784729, 0.05692043900489807, -0.020862963050603867, 0.03053414821624756, 0.01988242007791996, 0.032658837735652924, 0.024927496910095215, 0.0032379920594394207, 0.03679072484374046, 0.041792742908000946, 0.03584510460495949, 0.0006743701524101198, 0.008257978595793247, 0.002038032980635762, -0.011203007772564888, 0.04211021959781647, -0.03605130687355995, -0.03183247148990631, -0.0754825696349144, -0.00752248102799058, -0.011869404464960098, 0.03912573680281639, -0.026747940108180046, -0.004790117964148521, 0.026134826242923737, -0.02959347888827324, -0.018851930275559425, -0.008657579310238361, -0.04364781826734543, -0.05488183721899986, 0.032932888716459274, 0.023023897781968117, -0.0011290875263512135, -0.0051073189824819565, -0.03838416561484337, 0.004925737623125315, -0.03812055662274361, -0.023295193910598755, -0.007676198147237301, 0.01259548868983984, 0.028257889673113823, 0.04371257126331329, -0.027857471257448196, 0.0005814401083625853, 0.016459543257951736, 0.047309476882219315, -0.020541854202747345, -0.04363589733839035, -0.0061056469567120075, 0.05237680301070213, -0.01505821943283081, -0.004972747527062893, 0.002544594230130315, 0.001520627411082387, 0.00008649891969980672, 0.007998475804924965, 0.005293666385114193, 0.04456932097673416, 0.004765298217535019, 0.029418861493468285, -0.03156428411602974, -0.00428724242374301, -0.045007143169641495, 0.041432324796915054, 0.010289845988154411, -0.035520415753126144, -0.06240307539701462, 0.06352874636650085, 0.042735178023576736, -0.023504292592406273, 0.03183716535568237, 0.01944761909544468, 0.029818164184689522, -0.003973319660872221, 0.010110619477927685, 0.0075598908588290215, 0.03496244549751282, 0.0358683243393898, 0.045972805470228195, -0.01118033193051815, 0.02795480564236641, 0.03564741834998131, -0.01033242978155613, -0.014830480329692364, 0.014804459176957607, 0.010792260989546776, -0.03736791014671326, -0.002071347087621689, -0.04889823868870735, 0.02112642116844654, 0.007939483970403671, -0.013691621832549572, 0.008586599491536617, -0.05145520716905594, -0.015249835327267647, -0.005461723543703556, -0.021818770095705986, 0.05120523273944855, -0.01815771497786045, 0.001173987053334713, 0.0487992987036705, -0.029107198119163513, -0.0017095819348469377, 0.02567436546087265, -0.017608055844902992, 0.02164410799741745, -0.004562404938042164, 0.021190272644162178, -0.01734270341694355, 0.04164936766028404, 0.030476205050945282, 0.03138243779540062, -0.05994686484336853, 0.01866888254880905, -0.008123279549181461, -0.008492272347211838, -0.011946145445108414, 0.02096828632056713, -0.0255954060703516, 0.025132179260253906, -0.005931652616709471, 0.007931998930871487, 0.038717057555913925, -0.04084478318691254, -0.021077940240502357, -0.045334868133068085, 0.008002715185284615, -0.06407996267080307, 0.0015605995431542397, 0.02646629884839058, -0.036590781062841415, -0.022055162116885185, 0.036899227648973465, 0.02197369933128357, 0.04584994167089462, 0.04194099083542824, 0.05553487315773964, 0.03037354350090027, 0.043783579021692276, 0.04438013210892677, -0.027256933972239494, -0.015363828279078007, 0.019263608381152153, -0.005934110376983881, -0.0244942307472229, -0.036843616515398026, -0.03058226965367794, -0.037011753767728806, -0.009560723789036274, -0.03142779320478439, 0.014771825633943081, 0.05898730084300041, 0.016837524250149727, -0.02118511125445366, -0.006037913728505373, 0.052304964512586594, -0.073619045317173, 0.0018332069739699364, 0.01730172149837017, 0.031586095690727234, 0.011852354742586613, -0.020188460126519203, -0.02838580124080181, -0.007454418111592531, 0.01021012756973505, -0.034206073731184006, 0.010602294467389584, -0.02587977983057499, -0.025328680872917175, -0.016068365424871445, -0.05202723667025566, -0.025956282392144203, -0.0023789454717189074, -0.03321348875761032, -0.03348920866847038, 0.059351637959480286, 0.02592436596751213, 0.007749016862362623, 0.004040075000375509, -0.011296814307570457, -0.004217077046632767, 0.014877742156386375, 0.055590592324733734, -0.013453707098960876, 0.06776788830757141, 0.05133064091205597, 0.008608869276940823, 0.011308849789202213, -0.03856717795133591, 0.021353377029299736, -0.03221092000603676, -0.002769795712083578, -0.03809601068496704, 0.03323855996131897, 0.011662043631076813, -0.06188053637742996, 0.0056802015751600266, 0.04678961634635925, 0.019177917391061783, -0.022452592849731445, -0.07029791176319122, -0.013597231358289719, -0.04399498179554939, -0.0319717638194561, -0.040110938251018524, 0.011638812720775604, 0.024989066645503044, 0.01906554214656353, -0.021677181124687195, -0.07200279831886292, 0.15614402294158936, 0.028590762987732887, 0.0037606912665069103, 0.023611126467585564, 0.046921633183956146, 0.05694425478577614, 0.008225529454648495, -0.025954412296414375, -0.010060366243124008, -0.03710586205124855, 0.03270972520112991, -0.025116030126810074, 0.04252384230494499, -0.01236247830092907, 0.012133815325796604, 0.04531368240714073, -0.05399318039417267, 0.022367144003510475, 0.022436100989580154, -0.057989683002233505, -0.05230554938316345, 0.03701477870345116, 0.03396209701895714, 0.03087743930518627, -0.018589532002806664, -0.0004913752782158554, 0.017127642408013344, -0.04888933151960373, -0.02179678902029991, -0.027705417945981026, 0.005130319390445948, -0.033089861273765564, 0.060114555060863495, -0.006718931253999472, -0.030961867421865463, 0.050306472927331924, 0.0015698722563683987, -0.012245324440300465, -0.0015015403041616082, 0.02675296738743782, -0.017954964190721512, 0.01829495094716549, 0.020256292074918747, -0.04290096461772919, 0.013555845245718956, 0.03002542443573475, -0.07232116907835007, 0.009146650321781635, 0.01447481568902731, -0.022275304421782494, 0.07286866009235382, -0.009703549556434155, 0.0347122922539711, 0.009858580306172371, -0.03827130049467087, 0.03536254167556763, -0.01827905885875225, -0.005177726037800312, -0.02740953303873539, 0.02407742291688919, 0.03966822102665901, 0.011819012463092804, -0.012265282683074474, 0.011352967470884323, -0.03137413039803505, -0.010649560019373894, 0.026484129950404167, 0.01655222289264202, -0.02652011811733246, -0.04020535200834274, 0.005154100246727467, -0.010203246027231216, -0.014685492031276226, -0.03888045996427536, 0.015147936530411243, 0.06153704598546028, -0.02260858379304409, 0.025274256244301796, -0.004723546095192432, -0.030936354771256447, -0.030278753489255905, -0.04311253875494003, 0.009624140337109566, 0.014849204570055008, 0.01037818007171154, 0.044518060982227325, -0.05208155885338783, -0.04362700879573822, 0.0010336589766666293, 0.05519961565732956, 0.037047214806079865, 0.04782410338521004, -0.043856557458639145, 0.020900113508105278, -0.012074296362698078 ]
Science has made such wonderful strides that right this moment's market is crammed with every kind of excessive tech gadgets. Click on hyperlink to go to Basic Radiotelephone Operator License (PG) COOL Snapshot web page. The Electronics Modules program is based on ETA's Associate stage certification, and is divided into five modules. They get pleasure from their projects and different people found them fascinating, so I decided to make one thing like that with electronics. Though you could suppose that investing in an digital machine may make for a costly present, the worth of some of right now's hottest devices is surprisingly low, especially for those who utilize top-of-the-line on-line tech deals websites Actually, there are various great gift ideas for only around $50. As the most popular presents these days for all the people in the holidays, the most recent devices are full of every corners of the world these days. Click on link to go to Licensed Vibration Analyst – Category II COOL Snapshot web page. Excessive temperatures on airport runways in areas just like the deserts of the Center East can compound electronics cooling by combining high outside temperatures with excessive-temperature electronics working even at idle levels. Each one prefer to used new and common cell phone, as like Blackberry, iPhones and so forth.. Now Innpu affords a new cool electronic gadget, which the primary Wired Cellular Phone on the earth ever. Now, We describe the working of this cool digital gadget, how it's work, These headphones will work with Bluetooth A2DP or nonetheless APT-X Bluetooth audio codec.
[ 0.005505896173417568, 0.01470110658556223, -0.0234250295907259, 0.014474350959062576, 0.0005868857260793447, -0.008435912430286407, 0.003110873280093074, 0.006936805322766304, 0.05037996545433998, 0.02482881210744381, 0.03802875801920891, 0.0057112546637654305, 0.036735326051712036, -0.048477575182914734, 0.011561939492821693, -0.01671472191810608, -0.02421712502837181, -0.047882307320833206, -0.0037942826747894287, -0.0038163308054208755, -0.013445611111819744, 0.028076034039258957, -0.05228318274021149, -0.060825176537036896, -0.02851097285747528, 0.052554838359355927, 0.010869774036109447, -0.007406997494399548, 0.044354673475027084, 0.06658591330051422, -0.003931733779609203, -0.028556644916534424, 0.014049640856683254, -0.05064506083726883, -0.04216126725077629, -0.02300974726676941, 0.028874369338154793, -0.013438747264444828, -0.025816235691308975, -0.015257342718541622, -0.001552243484184146, -0.021297922357916832, 0.05179119110107422, -0.02356676198542118, -0.022506507113575935, -0.009690361097455025, 0.002544152084738016, -0.02624395862221718, 0.012765544466674328, -0.05311867967247963, -0.0040562208741903305, 0.02540913224220276, 0.012296255677938461, -0.011167475022375584, 0.012002252973616123, 0.005174369551241398, -0.015813173726201057, -0.016122331842780113, -0.007502364926040173, 0.0290780421346426, -0.002582718152552843, -0.003978656139224768, 0.05513647198677063, -0.05126582458615303, 0.0337902307510376, 0.044613633304834366, -0.017692657187581062, -0.020312687382102013, -0.008872446604073048, -0.022328495979309082, 0.00343917915597558, 0.006261668633669615, -0.016710801050066948, -0.025052858516573906, 0.0067576258443295956, 0.01163427159190178, -0.0027788598090410233, 0.01225411519408226, -0.02521323412656784, -0.006461470853537321, 0.013836764730513096, 0.06224939227104187, -0.02755456604063511, 0.016100870445370674, -0.04141221195459366, -0.015919353812932968, 0.0032787497621029615, 0.006502823904156685, 0.0038395116571336985, 0.016336575150489807, -0.012697984464466572, 0.04775382578372955, 0.020877085626125336, 0.0006752758054062724, 0.035349685698747635, 0.022960105910897255, -0.005834644660353661, 0.03074457496404648, 0.013668112456798553, 0.014156881719827652, 0.02315150387585163, 0.03494719788432121, -0.003390287049114704, 0.0659937709569931, -0.021342501044273376, -0.009907801635563374, 0.00582684064283967, -0.008739504963159561, -0.02708658017218113, -0.0651257187128067, -0.010991980321705341, -0.03020521067082882, 0.011137774214148521, 0.0028012911789119244, 0.0015085522318258882, 0.04594846069812775, 0.006328776944428682, 0.046689968556165695, -0.02537798322737217, 0.02859867922961712, -0.0003460118023212999, 0.0019939388148486614, 0.03766531124711037, -0.02057049237191677, -0.005395873915404081, -0.04458676651120186, -0.0038462146185338497, 0.025505399331450462, -0.012648481875658035, -0.025516873225569725, -0.02916475012898445, -0.028478603810071945, -0.034299325197935104, 0.03510936722159386, -0.0054434011690318584, 0.009422343224287033, -0.03365868702530861, 0.03411134332418442, 0.011630794033408165, -0.04721346125006676, 0.030191775411367416, 0.018787244334816933, 0.02342742308974266, 0.0936889499425888, 0.016116762533783913, 0.024891318753361702, 0.008923595771193504, -0.014576430432498455, -0.02672913298010826, 0.021403662860393524, -0.009551568888127804, 0.006559572648257017, -0.013808648101985455, 0.017900239676237106, 0.007813669741153717, -0.0187071505934, -0.004850857891142368, 0.0192337054759264, 0.031687915325164795, 0.03930643945932388, -0.01527496613562107, 0.015297452919185162, -0.0024369647726416588, 0.03209253400564194, -0.015049357898533344, 0.020019331946969032, -0.010559093207120895, -0.010252024978399277, -0.004103302489966154, -0.014110519550740719, -0.0228646919131279, 0.008476676419377327, -0.014989037998020649, 0.024192040786147118, 0.011551172472536564, 0.03426352143287659, 0.0617571659386158, 0.016965653747320175, 0.054606787860393524, 0.03842318803071976, -0.03856756165623665, 0.004411343019455671, 0.019993672147393227, 0.06519177556037903, 0.018929224461317062, 0.018807394430041313, -0.006927907466888428, -0.00818477850407362, -0.01855285093188286, -0.03497183322906494, -0.005579744931310415, 0.03755815699696541, -0.03864925727248192, 0.006387706380337477, -0.005776349920779467, -0.004451817832887173, 0.01592129096388817, -0.006700996309518814, 0.0021907442715018988, -0.10702250897884369, -0.04405468329787254, 0.03184527903795242, -0.03942757472395897, 0.04352642223238945, -0.010055470280349255, -0.022828223183751106, 0.025804055854678154, 0.07977699488401413, -0.040301743894815445, 0.006987141445279121, 0.03071664832532406, 0.011969729326665401, -0.019508250057697296, -0.0335342213511467, 0.012257472611963749, -0.019533216953277588, -0.02273961901664734, 0.03613399714231491, -0.011276552453637123, 0.02000349573791027, 0.008127272129058838, -0.010706618428230286, 0.04665495827794075, 0.03457518666982651, -0.0005497745587490499, 0.031318120658397675, -0.017154429107904434, 0.06170298159122467, -0.0208464115858078, -0.0003742232220247388, -0.03979453071951866, 0.06702706217765808, 0.02543853037059307, 0.0680573582649231, 0.04520405828952789, -0.0018985287752002478, 0.017959309741854668, 0.026946572586894035, -0.0018422346329316497, 0.025075823068618774, -0.018391404300928116, 0.016001395881175995, 0.045744359493255615, -0.017788710072636604, -0.007139857392758131, 0.024659469723701477, -0.009314591065049171, -0.01333549339324236, -0.05856610834598541, 0.022374065592885017, -0.013398433104157448, 0.04099981486797333, 0.02539239078760147, 0.03706662729382515, -0.039278559386730194, -0.026300931349396706, 0.052055444568395615, 0.07447724789381027, -0.016544636338949203, -0.015118235722184181, -0.0072145587764680386, 0.013568482361733913, -0.007061890326440334, 0.03835635259747505, 0.030850129202008247, 0.015755051746964455, -0.0047392463311553, 0.011278468184173107, -0.021203672513365746, -0.018058400601148605, -0.0612117201089859, -0.04954765737056732, -0.06475300341844559, -0.013522266410291195, -0.06628713011741638, -0.015780791640281677, 0.0039036215748637915, -0.031185435131192207, 0.05035385116934776, -0.011779049411416054, 0.003393026767298579, -0.008404131047427654, -0.006720013450831175, 0.029820993542671204, 0.050110962241888046, 0.056876227259635925, -0.04595222696661949, 0.05911192297935486, 0.019910665228962898, 0.021763069555163383, -0.001470531104132533, -0.0006303912959992886, -0.002367898589000106, -0.00944762583822012, 0.005321851931512356, 0.01597602851688862, 0.01447577029466629, 0.01237635686993599, -0.029803704470396042, -0.022037629038095474, -0.030362216755747795, 0.008395730517804623, -0.011885321699082851, -0.03440893068909645, -0.045853883028030396, 0.0426766611635685, 0.030019519850611687, -0.0385737307369709, 0.042284563183784485, 0.06011311337351799, -0.05754255875945091, 0.04849205166101456, -0.0002795924956444651, 0.03427162021398544, -0.05549624189734459, 0.04713496193289757, 0.031009627506136894, -0.017721740528941154, -0.01300061959773302, 0.017741253599524498, -0.020258530974388123, 0.008665247820317745, -0.0024799597449600697, -0.024898715317249298, -0.038101933896541595, 0.021215014159679413, 0.023234620690345764, -0.08160810172557831, 0.039949629455804825, -0.0462956465780735, -0.05140892043709755, -0.040219638496637344, -0.04287942126393318, 0.015859095379710197, 0.022339779883623123, 0.009334455244243145, -0.007921966724097729, -0.028250666335225105, 0.0018969335360452533, 0.012351175770163536, 0.04254783317446709, -0.016908418387174606, 0.022114606574177742, 0.059681642800569534, -0.001506865257397294, 0.044611163437366486, 0.01447588112205267, -0.00827398058027029, -0.016805076971650124, 0.0072779362089931965, -0.02430516667664051, 0.01950160227715969, 0.021989064291119576, 0.016197266057133675, 0.02906166762113571, 0.05930913984775543, -0.06933443248271942, -0.01722700148820877, 0.023075059056282043, 0.020049961283802986, 0.018262216821312904, 0.033254217356443405, 0.029081929475069046, -0.015084085054695606, -0.02764006331562996, -0.04997321963310242, 0.03178942948579788, 0.019057083874940872, 0.01962907984852791, -0.06273046135902405, 0.04600720852613449, -0.011582744307816029, -0.04474097490310669, 0.05576575919985771, -0.04054662212729454, 0.013180159963667393, 0.031226158142089844, 0.02062123641371727, 0.03846314921975136, -0.03749549388885498, 0.004453476518392563, 0.00813896581530571, 0.006670993287116289, 0.03437041491270065, -0.03551921248435974, 0.025157272815704346, -0.012153714895248413, -0.006027585361152887, -0.016131537035107613, -0.04286381974816322, -0.001497870427556336, -0.023576999083161354, 0.0004352771211415529, -0.017093364149332047, -0.03165358677506447, -0.05316769331693649, 0.047668177634477615, 0.00002787436642393004, 0.03142743557691574, 0.006508217193186283, 0.026007933542132378, 0.026300493627786636, 0.02172853797674179, 0.03032594732940197, -0.007687316741794348, 0.01985190249979496, -0.031206820160150528, 0.05022289603948593, -0.017418213188648224, -0.02912645787000656, -0.033648908138275146, -0.010393129661679268, -0.02873258851468563, 0.024131711572408676, 0.007184968795627356, 0.005088912323117256, -0.04395559802651405, 0.03625906631350517, 0.0002581884036771953, 0.030452614650130272, -0.052294086664915085, -0.003194778459146619, -0.02661813050508499, 0.042749810963869095, -0.0090088015422225, -0.04246228560805321, 0.0071784271858632565, -0.05102965235710144, 0.03515563905239105, 0.04628970846533775, -0.006181942764669657, -0.03756773844361305, -0.005413406994193792, -0.0002678514283616096, -0.030683616176247597, 0.008307385258376598, 0.03129318356513977, -0.02070588804781437, -0.004058951511979103, -0.04855252802371979, 0.02191341295838356, 0.011941862292587757, -0.007712850347161293, -0.011985577642917633, -0.0015193449798971415, 0.023763863369822502, -0.005558905657380819, 0.037612948566675186, 0.00561923161149025, -0.024306971579790115, 0.04053304344415665, -0.08310086280107498, -0.0008468240848742425, 0.0015110000967979431, -0.009232757613062859, 0.011298255063593388, 0.012496277689933777, 0.002784226555377245, -0.00973767600953579, 0.006265312433242798, 0.02249625138938427, -0.0025664055719971657, 0.053963370621204376, -0.026251595467329025, -0.025711847469210625, 0.032399848103523254, -0.015824537724256516, -0.019327910616993904, 0.008467868901789188, 0.05090881884098053, 0.0014939167303964496, 0.01549734827131033, 0.012193635106086731, -0.046883318573236465, 0.013741213828325272, -0.05280538275837898, 0.011995154432952404, -0.012810118496418, -0.03047071397304535, 0.0080813467502594, -0.04073934257030487, -0.0003652429149951786, 0.019213398918509483, -0.029515372589230537, -0.02362619899213314, -0.05293508991599083, -0.037202510982751846, 0.04303004965186119, -0.004928302951157093, 0.046800196170806885, 0.010181523859500885, -0.014051937498152256, -0.007424104027450085, 0.005428359843790531, 0.024158291518688202, -0.011732441373169422, -0.043067675083875656, 0.007322381250560284, 0.030941734090447426, 0.009259318001568317, 0.014708369970321655, -0.014105452224612236, -0.03173245117068291, -0.0022644568234682083, -0.004334535449743271, -0.04189499095082283, -0.041411641985177994, 0.015649253502488136, -0.03618232160806656, -0.008789287880063057, -0.02342628501355648, 0.00937339011579752, -0.035691000521183014, 0.015843383967876434, 0.042422860860824585, 0.024263497442007065, 0.031089624390006065, -0.024226853623986244, -0.06084984913468361, 0.048859816044569016, 0.03089718520641327, -0.048588622361421585, -0.039477210491895676, 0.05060191825032234, -0.028012476861476898, 0.04060690850019455, 0.01620199717581272, -0.03415455296635628, -0.0434182733297348, -0.03204026073217392, -0.014815258793532848, -0.059187114238739014, 0.0009998774621635675, -0.0428127646446228, -0.01677734963595867, -0.026640811935067177, 0.026884514838457108, -0.0005111793871037662, -0.005930995102971792, 0.014680159278213978, -0.03704555332660675, 0.03882516175508499, -0.03568924218416214, -0.0027230645064264536, -0.01388936210423708, -0.008083301596343517, -0.022691672667860985, 0.04659247025847435, -0.008612544275820255, -0.01603243313729763, 0.004140181932598352, 0.017094558104872704, 0.04021080210804939, -0.011886520311236382, -0.04022661969065666, -0.03712309151887894, -0.007315633352845907, 0.023243790492415428, -0.012439759448170662, 0.017556320875883102, -0.05046280473470688, 0.05496866628527641, -0.06516856700181961, -0.006200575735419989, -0.008185476996004581, 0.005674277897924185, -0.034669551998376846, -0.006881255190819502, 0.05463796481490135, -0.03073829971253872, 0.014445112086832523, -0.03369332477450371, 0.06875567883253098, 0.048544902354478836, -0.019419047981500626, -0.038234807550907135, -0.05008230358362198, -0.024081634357571602, -0.06265467405319214, 0.03915293887257576, -0.04001209884881973, -0.013042829930782318, -0.02431873232126236, 0.02275480143725872, 0.027045350521802902, -0.023018058389425278, 0.016341710463166237, 0.07659954577684402, 0.02093571610748768, -0.02664714679121971, -0.016739416867494583, 0.03591994568705559, 0.03283805772662163, -0.012975998222827911, -0.0021542184986174107, -0.032680340111255646, -0.014924298971891403, -0.0007625665166415274, -0.049964290112257004, -0.0672137662768364, -0.059304967522621155, -0.015955619513988495, 0.08331333845853806, -0.030547261238098145, 0.049604110419750214, -0.007370582781732082, -0.06545351445674896, -0.023515885695815086, 0.011438536457717419, 0.014522907324135303, 0.02177092246711254, 0.05687062442302704, 0.039357010275125504, -0.03708380460739136, 0.0035623859148472548, -0.03101067990064621, -0.034159570932388306, -0.019875377416610718, 0.03214765340089798, -0.018215518444776535, -0.04407702386379242, 0.011820781975984573, 0.06789563596248627, -0.04826577752828598, -0.045481227338314056, -0.0038921236991882324, -0.023525575175881386, 0.0023934494238346815, -0.059557247906923294, 0.01661180518567562, -0.020573386922478676, -0.016304034739732742, -0.003907645586878061, 0.04461715742945671, -0.011242054402828217, 0.03642218932509422, 0.022968797013163567, -0.0034583674278110266, -0.047852255403995514, -0.011229373514652252, 0.013662123121321201, -0.01732524298131466, -0.0421760194003582, -0.05755169689655304, -0.01101518701761961, 0.007250092923641205, -0.02259548380970955, 0.07261799275875092, -0.03204476833343506, 0.012284896336495876, 0.04102335497736931, -0.0012541405158117414, 0.017236577346920967, 0.0356556735932827, -0.016468428075313568, 0.0247768834233284, -0.03933818265795708, -0.06693071871995926, -0.03801143169403076, -0.00014410146104637533, 0.0007062702206894755, 0.024525847285985947, -0.05563784018158913, 0.002519358415156603, 0.03324956074357033, -0.03262531757354736, -0.009663091972470284, -0.030632909387350082, -0.05275626480579376, -0.06210805103182793, -0.05938426032662392, -0.03569284826517105, -0.02150399051606655, -0.02570837177336216, 0.020203210413455963, 0.02514108456671238, -0.0356631875038147, -0.0027694848831743, 0.007747883442789316, -0.03150949627161026, 0.011827997863292694, -0.036416664719581604, 0.021519826725125313, -0.043677620589733124, -0.0710366889834404, -0.010646644048392773, 0.011709272861480713, -0.041678186506032944, 0.01084331888705492, -0.02635938860476017, 0.014199345372617245, -0.01779041439294815, 0.043544951826334, 0.0032265703193843365, 0.03465801849961281, -0.024838579818606377, -0.0337693989276886, 0.00033073604572564363, 0.04357483983039856, -0.006848056800663471, 0.033478863537311554, 0.0008072572527453303, -0.024258652701973915, 0.029396414756774902, -0.016154596582055092, 0.0006341266562230885, -0.027306659147143364, -0.0009081971365958452, 0.01672482118010521, 0.013545994646847248, -0.052858706563711166, -0.020506273955106735, 0.012926300056278706, -0.04184149578213692, 0.03131863474845886, -0.01814419962465763, 0.04475889727473259, 0.006590285338461399, -0.018193040043115616, -0.013486504554748535, 0.048902302980422974, 0.004553650040179491, 0.023351257666945457, -0.0059128315187990665, 0.0101607171818614, 0.01768036000430584, 0.02347300387918949, 0.020668109878897667, 0.00046427184133790433, -0.005754492245614529, -0.04263794794678688, -0.002035577315837145, -0.0009592933929525316, -0.027464762330055237, 0.01352595817297697, 0.001386041403748095, -0.03204970806837082, -0.05955362319946289, 0.00127598166000098, -0.02160215750336647, 0.02068301849067211, 0.002049084287136793, 0.027311107143759727, 0.00926131010055542, -0.013520527631044388, -0.03651976212859154, 0.012588270008563995, -0.06813322007656097, -0.017496410757303238, 0.022988708689808846, 0.0015004692832008004, -0.013551623560488224, 0.021879145875573158, -0.03326047956943512, -0.004864255432039499, -0.004124161787331104, 0.005777913611382246, -0.05180441215634346, 0.02183487080037594, -0.007710332050919533, 0.053199153393507004, 0.010105625726282597, 0.005142242182046175, 0.01742529310286045, 0.07112372666597366, -0.02369389683008194, -0.037108466029167175, 0.01731066219508648, 0.007176589220762253, 0.0018791540060192347, -0.03731783106923103, -0.012161782011389732, 0.020443947985768318, 0.014345003291964531, -0.008412580005824566, -0.004368318244814873, 0.00036786196869798005, -0.002291243989020586, 0.023058919236063957, 0.0009480791632086039, 0.02840891107916832, -0.05930473655462265, 0.021869821473956108, -0.0011448260629549623, -0.015448717400431633, -0.0296101626008749, 0.039067693054676056, 0.02852962352335453, -0.017335545271635056, 0.03630201518535614, 0.012318535707890987, 0.046123284846544266, 0.005087723024189472, 0.01094181090593338, -0.01576795056462288, 0.007660319097340107, 0.02468283474445343, 0.04775099456310272, 0.011695211753249168, -0.00578588480129838, 0.054929543286561966, -0.01524308230727911, -0.0016218689270317554, 0.023596325889229774, 0.0020988783799111843, -0.03094078227877617, 0.008968845941126347, -0.02755180560052395, 0.01602545939385891, 0.003029755549505353, -0.009673675522208214, 0.020435679703950882, -0.03407663106918335, -0.003621841548010707, -0.0035727955400943756, -0.01893620565533638, 0.06923205405473709, -0.04978933185338974, 0.013216094113886356, 0.015311331488192081, -0.00960407592356205, -0.008894574828445911, 0.01816602423787117, 0.016223713755607605, 0.008940969593822956, 0.058662429451942444, 0.060341861099004745, -0.026524553075432777, 0.021985111758112907, 0.02422661893069744, 0.013119693845510483, -0.012898367829620838, 0.03329165279865265, 0.012336833402514458, 0.003232945455238223, -0.01304061058908701, -0.005824894178658724, -0.06079299375414848, 0.052580125629901886, -0.002778267487883568, -0.02225348725914955, 0.03981029614806175, -0.036520831286907196, -0.000018520546291256323, -0.06339219212532043, 0.037101615220308304, -0.038357872515916824, -0.024891702458262444, 0.023184884339571, 0.0007227472378872335, -0.0458846241235733, 0.045715492218732834, -0.009654009714722633, 0.04486960917711258, 0.04092022776603699, 0.04879811033606529, -0.022152487188577652, 0.08091957867145538, 0.05036009103059769, -0.003197320271283388, 0.003596968250349164, 0.036230891942977905, -0.006879181135445833, -0.030762391164898872, -0.011875352822244167, -0.04619000852108002, 0.007300167344510555, -0.0011910031316801906, -0.005473321303725243, 0.0015017347177490592, 0.06743554770946503, 0.031862158328294754, -0.010914932005107403, -0.025990283116698265, 0.029380615800619125, -0.03382325917482376, 0.012256719172000885, -0.0013645919971168041, 0.02769332192838192, 0.000014101710803515743, 0.01384611427783966, -0.046758443117141724, -0.025890585035085678, -0.015193908475339413, -0.04258070886135101, 0.06320475786924362, -0.027438029646873474, -0.035552747547626495, -0.01558886468410492, -0.03776766359806061, -0.032584741711616516, 0.011931679211556911, -0.04174397885799408, -0.03825235366821289, 0.05074547231197357, 0.04439422860741615, 0.015931427478790283, 0.00511942757293582, -0.010376019403338432, -0.0033991928212344646, 0.020139193162322044, 0.0792141929268837, -0.00120799639262259, 0.04059308022260666, 0.022802362218499184, 0.03076334111392498, 0.004799090791493654, -0.04523420333862305, 0.03653036430478096, -0.007105199154466391, 0.008296134881675243, -0.0343482531607151, -0.0021711131557822227, -0.01844138279557228, -0.04611961916089058, 0.013635142706334591, 0.04214916378259659, 0.014395524747669697, -0.01024836115539074, -0.055945493280887604, -0.004546636715531349, -0.06390882283449173, 0.003819103352725506, -0.023747101426124573, 0.030088402330875397, -0.0038610808551311493, -0.005804363172501326, -0.008499282412230968, -0.07119221985340118, 0.16375142335891724, 0.04269023984670639, 0.025299862027168274, 0.022050796076655388, 0.017462795600295067, 0.04594894126057625, 0.02653246931731701, -0.04843601584434509, 0.0069197192788124084, -0.026439068838953972, 0.022843176499009132, -0.02349933795630932, 0.02099991776049137, 0.030139287933707237, 0.03582262992858887, 0.06159232556819916, 0.006446544546633959, 0.0012526602949947119, -0.0036412954796105623, -0.04527084156870842, -0.06771908700466156, 0.014897122979164124, 0.01100088655948639, 0.02886868640780449, -0.019836781546473503, 0.018401043489575386, 0.0038952529430389404, -0.034377921372652054, -0.027286874130368233, -0.022363580763339996, 0.05428750440478325, -0.05122096836566925, 0.05599876120686531, 0.0013738138368353248, -0.041491277515888214, 0.04969562962651253, 0.004874110221862793, -0.006434258073568344, 0.014087858609855175, 0.008521480485796928, -0.015782874077558517, 0.0002710669650696218, 0.02691679634153843, -0.03768230602145195, -0.013753778301179409, 0.04207916930317879, -0.00515701062977314, 0.03179502487182617, 0.016999147832393646, -0.05902911722660065, 0.05049210041761398, -0.051154520362615585, 0.03990885987877846, 0.012857707217335701, -0.05185527727007866, 0.016565008088946342, 0.04366225376725197, -0.02205509878695011, -0.002317926147952676, 0.01870512217283249, 0.04407646507024765, -0.0051557887345552444, -0.0033275331370532513, -0.00337394280359149, -0.021880289539694786, -0.0017457427456974983, 0.015761271119117737, 0.030172161757946014, 0.005756680388003588, -0.018476812168955803, -0.02725072205066681, 0.0017536802915856242, -0.033951885998249054, -0.046443793922662735, 0.020849481225013733, 0.007458302658051252, -0.009174828417599201, 0.010242750868201256, -0.022483710199594498, -0.03864232450723648, -0.014394783414900303, -0.03283773735165596, -0.00523796072229743, 0.0030127742793411016, 0.018227171152830124, 0.0181021336466074, -0.044844381511211395, -0.033336881548166275, -0.03261632099747658, 0.0666806697845459, 0.03581828624010086, 0.036017369478940964, 0.01250753179192543, -0.01114181149750948, 0.003265236970037222 ]
Q: Reuse variable name to point at different data So I am getting tripped up by what appears to be a variable in Python behaving like a pointer in C i.e. For example: foo = ['item1', 'item2', 'item3'] now if I assign that list to the value of a dictionary whose key is 'bar': my_dict['bar'] = foo all is fine, but now if I do: foo.clear() then my_dict['bar'] is now empty implying that foo and my_dict['bar'] are just two different names pointing at the same data. How can I get around this so I can dump foo into my_dict['bar'] and then reuse foo for the next item in the dictionary please? How can I get around this so that I can reuse 'foo'? A: You're correct in that it's like a pointer. Collections of data, such as lists, dictionaries, objects etc are passed by reference. Therefore when you set mydict["bar"] = foo you were setting it equal to the reference of foo. To get around this you would need to make a copy of foo. You should get by with a shallow copy mydict["bar"] = foo[:] I this case the slice operator will create a new list of all elements in foo, with a new reference value. You could also consider the copy python module, which would have a similar effect but supports deep copy operations. i.e. it create copies of the object itself, and all objects contained within it. Please also read jasonharper's comment on this. If you don't need a copy of the elements it's more efficient to just create a new empty list
[ 0.006935118697583675, -0.012956053949892521, 0.0071067786775529385, -0.00565887289121747, -0.03318345919251442, -0.0019962075166404247, 0.006607316434383392, 0.01270277239382267, 0.007667746860533953, 0.03543538600206375, 0.027935966849327087, -0.013936733826994896, 0.009184994734823704, -0.040380336344242096, -0.02211928926408291, -0.00827095564454794, -0.023544643074274063, -0.03796029090881348, -0.035054877400398254, -0.015477941371500492, 0.015154538676142693, 0.03864622861146927, -0.054656606167554855, -0.0190451480448246, -0.014366425573825836, 0.007648492231965065, 0.039331525564193726, -0.029232637956738472, 0.053284015506505966, 0.049963366240262985, -0.011554587632417679, -0.01874171756207943, 0.04274313896894455, -0.04727600887417793, 0.011235030367970467, -0.04157285392284393, 0.04302125796675682, -0.02415245957672596, -0.045861780643463135, -0.060284413397312164, 0.02618095837533474, -0.004247813951224089, 0.03542650118470192, -0.03946048766374588, -0.027263525873422623, 0.022136809304356575, 0.021818581968545914, 0.013969285413622856, 0.004916145000606775, -0.05576012656092644, 0.019589832052588463, 0.005679327994585037, 0.009443193674087524, 0.021766383200883865, -0.026539606973528862, 0.001128491247072816, 0.014878777787089348, -0.036242593079805374, -0.02418646588921547, 0.019437046721577644, 0.017291927710175514, 0.022967824712395668, -0.025811318308115005, -0.05200673267245293, 0.022319139912724495, 0.004318183287978172, -0.004863515496253967, -0.040828920900821686, -0.002023970242589712, -0.0336013026535511, -0.041309893131256104, -0.006880492903292179, -0.017862815409898758, -0.04354633390903473, -0.0009011566289700568, 0.003717937273904681, -0.010916156694293022, 0.009012863971292973, -0.00686925882473588, 0.02262737788259983, 0.01697366312146187, 0.07338433712720871, -0.011841770261526108, 0.04970604181289673, -0.06260249018669128, -0.019394485279917717, 0.012858524918556213, -0.037464700639247894, 0.004850322846323252, 0.0005530246999114752, -0.03108849935233593, 0.03066953457891941, 0.009271759539842606, -0.004869227297604084, 0.041933346539735794, 0.05643119663000107, -0.02624570205807686, 0.035040441900491714, -0.0013964625541120768, -0.007942324504256248, 0.05728588253259659, 0.07136725634336472, 0.007029965985566378, 0.05267992615699768, -0.014396438375115395, 0.02757932059466839, 0.022288015112280846, 0.020723532885313034, -0.05224958434700966, -0.03909913823008537, 0.0034087307285517454, 0.035509612411260605, 0.027925726026296616, 0.009153102524578571, 0.0048605091869831085, 0.06425044685602188, -0.004156582988798618, 0.016303904354572296, -0.03922677040100098, 0.014809499494731426, 0.005659779068082571, 0.010658924467861652, 0.040761880576610565, -0.027152827009558678, 0.04627222567796707, -0.021408969536423683, -0.03183027356863022, 0.03630202263593674, -0.041527003049850464, -0.019879285246133804, -0.003512031864374876, -0.01639719307422638, -0.018679384142160416, 0.002870683092623949, -0.03535883501172066, -0.0042907604947686195, -0.02852301485836506, 0.043207235634326935, 0.004349397961050272, -0.04401527717709541, 0.03826645389199257, -0.012478910386562347, -0.003219552803784609, 0.08699017018079758, -0.0014432475436478853, 0.026302145794034004, 0.03083588182926178, -0.002442454919219017, 0.0013138622744008899, 0.018402788788080215, -0.01802641525864601, 0.02119365893304348, 0.011202221736311913, 0.003372084116563201, 0.011111535131931305, -0.011979625560343266, -0.002485956996679306, -0.004228808917105198, 0.00924927182495594, 0.03620731830596924, -0.042858511209487915, -0.009865299798548222, 0.017217135056853294, 0.050614506006240845, -0.004743974655866623, 0.06720156967639923, -0.04623602330684662, -0.02987360768020153, -0.021763727068901062, 0.007357859518378973, 0.014442537911236286, 0.0005915748770348728, -0.01890486851334572, 0.024061866104602814, 0.03809937462210655, 0.046612247824668884, 0.013303844258189201, -0.006152687594294548, 0.02193387784063816, 0.044423818588256836, -0.022448033094406128, 0.01905698888003826, 0.004830808844417334, 0.04447779059410095, 0.03629347309470177, -0.009137987159192562, -0.004781748633831739, 0.0019299929263070226, -0.04298929497599602, -0.033603597432374954, 0.012395263649523258, 0.026946639642119408, -0.04285644367337227, 0.020505372434854507, -0.0014888991136103868, 0.028466442599892616, -0.027882738038897514, 0.02292720228433609, -0.043789539486169815, -0.05392396077513695, -0.02355557307600975, 0.030630802735686302, -0.04055306315422058, 0.00976659171283245, -0.018985750153660774, -0.016771500930190086, 0.04325443133711815, 0.0555262491106987, -0.028522422537207603, 0.04033137485384941, 0.03127775341272354, -0.020684724673628807, -0.0551057830452919, -0.005624450743198395, -0.0061309789307415485, -0.014487646520137787, -0.026061780750751495, 0.03559889271855354, -0.021491724997758865, -0.0177574772387743, 0.02683331072330475, 0.04895215854048729, 0.029415762051939964, 0.01695316843688488, -0.0004179852257948369, 0.015554402954876423, 0.0004122162936255336, 0.05638713762164116, 0.007137991487979889, 0.03398257866501808, 0.007652908097952604, 0.057491470128297806, -0.009767166338860989, 0.03059917502105236, 0.01224557962268591, 0.021181682124733925, 0.06579960882663727, 0.055786289274692535, -0.015503324568271637, 0.009159310720860958, -0.02421991527080536, 0.034868400543928146, 0.0007608822779729962, 0.0069455173797905445, -0.01205791998654604, 0.009368161670863628, 0.02369462512433529, 0.03112128935754299, -0.030142541974782944, 0.05396581441164017, -0.014287209138274193, 0.05484050512313843, 0.018234919756650925, 0.04091300442814827, -0.034334905445575714, -0.03777412697672844, 0.020023072138428688, 0.030753862112760544, -0.047569822520017624, -0.018514368683099747, -0.005107869394123554, 0.016340337693691254, -0.00810605101287365, -0.015445159748196602, 0.021598543971776962, 0.003596709342673421, 0.015735100954771042, 0.03391663730144501, 0.010766785591840744, -0.04377664625644684, -0.028955526649951935, -0.04616860672831535, -0.01872197911143303, -0.03446047380566597, -0.03825083747506142, -0.010205973871052265, 0.038373880088329315, -0.03437468782067299, 0.0213021207600832, 0.01831883378326893, 0.00000790991816757014, -0.01130752544850111, -0.013672655448317528, 0.028530389070510864, 0.03019247017800808, 0.011264322325587273, -0.05737452208995819, 0.048027846962213516, 0.03089798055589199, 0.0532476007938385, -0.027956310659646988, -0.019985143095254898, 0.01961936242878437, -0.039314351975917816, 0.017263993620872498, 0.006833092775195837, 0.012939736247062683, -0.032452333718538284, -0.014496993273496628, -0.04617627337574959, -0.04799968749284744, -0.008728548884391785, -0.028167186304926872, 0.01875525526702404, -0.04629454016685486, 0.0634031891822815, 0.047675423324108124, -0.051463011652231216, 0.047315776348114014, 0.055071473121643066, -0.04424884542822838, 0.04369672015309334, 0.010146127082407475, -0.015042443759739399, -0.03402756154537201, 0.0547785758972168, 0.03682616353034973, 0.024533050134778023, -0.026887061074376106, -0.040429167449474335, -0.03850752115249634, -0.009516194462776184, -0.013959795236587524, -0.024075860157608986, -0.03593781217932701, 0.043192848563194275, 0.010933615267276764, -0.046902742236852646, 0.039224524050951004, -0.045032717287540436, -0.01051212940365076, -0.028105856850743294, -0.02745990641415119, -0.00009492792014498264, 0.03701755777001381, 0.018462909385561943, 0.005882682744413614, -0.027021532878279686, 0.013807603158056736, 0.05386284366250038, 0.06442712247371674, -0.034832313656806946, 0.00999142974615097, -0.007534549571573734, 0.031829699873924255, -0.0003427717601880431, 0.007812474854290485, -0.0523061640560627, 0.004354548174887896, 0.0023279250599443913, 0.013790689408779144, 0.020203419029712677, 0.04795225337147713, 0.04611645266413689, 0.016421835869550705, 0.024311330169439316, -0.02201179414987564, 0.02480723150074482, 0.03538501635193825, 0.03625763580203056, 0.015279886312782764, 0.03131876513361931, 0.002341029467061162, -0.013484765775501728, -0.023651879280805588, -0.04290017858147621, -0.007523517590016127, 0.026547972112894058, 0.03923431411385536, -0.041896041482686996, 0.07564444839954376, -0.014746718108654022, -0.013765229843556881, 0.028123026713728905, -0.040735237300395966, 0.013892635703086853, 0.031208379194140434, -0.012988545931875706, 0.0649334043264389, -0.040969107300043106, -0.034731581807136536, -0.012364285066723824, 0.011393100023269653, -0.0044723511673510075, 0.026740264147520065, 0.056718096137046814, -0.025644967332482338, 0.00001514846553618554, -0.015562444925308228, 0.00669341953471303, 0.009712710976600647, -0.01773051917552948, 0.003265643958002329, -0.03442192077636719, -0.022035349160432816, -0.0022023129276931286, 0.022803695872426033, 0.02759670279920101, 0.0317879393696785, -0.02899104356765747, 0.016647322103381157, 0.004791674669831991, 0.014878359623253345, 0.04115598276257515, -0.009938517585396767, -0.00029510652530007064, -0.025400763377547264, 0.042059339582920074, 0.021642979234457016, 0.000513819046318531, -0.024715233594179153, -0.0016908865654841065, -0.008636372163891792, 0.02461235038936138, 0.01863100752234459, -0.0013276219833642244, -0.05021784082055092, 0.0023638110142201185, -0.0005841535748913884, 0.0016621192917227745, -0.03789110854268074, -0.02449883706867695, -0.028755607083439827, 0.036690086126327515, 0.029584495350718498, -0.04849272593855858, 0.018342388793826103, -0.015534586273133755, 0.01808149553835392, 0.014742888510227203, -0.010413633659482002, -0.045566532760858536, -0.03379259631037712, -0.034683022648096085, -0.03719621151685715, 0.025842636823654175, 0.06650242954492569, -0.022929800674319267, 0.03727234899997711, -0.07135205715894699, -0.010604234412312508, 0.025320539250969887, 0.003203001106157899, 0.015932517126202583, -0.00007463812653440982, 0.028983350843191147, -0.008520145900547504, 0.0047036889009177685, -0.02784625254571438, -0.028658142313361168, 0.01014616433531046, -0.059136081486940384, -0.006438520736992359, -0.01672069914638996, 0.00023161743592936546, -0.00006514963024528697, 0.005524667911231518, -0.006874979007989168, 0.023834701627492905, -0.02138596959412098, 0.02511812001466751, -0.01106221228837967, 0.033887747675180435, -0.06626497209072113, -0.03327038139104843, 0.04016542062163353, -0.0032852566801011562, -0.01728859730064869, 0.04448922351002693, 0.04549507424235344, -0.030951043590903282, 0.007921612821519375, 0.020223747938871384, -0.042646169662475586, 0.01629035174846649, -0.06051229313015938, 0.005677991081029177, -0.007845133543014526, -0.022614283487200737, 0.009049709886312485, -0.03625064343214035, 0.049315907061100006, 0.01575014367699623, -0.020925721153616905, -0.016276227310299873, -0.07685624063014984, -0.024965781718492508, 0.00900089368224144, -0.0004150643653701991, -0.0014056077925488353, -0.01853281445801258, -0.004389489069581032, 0.011049416847527027, 0.0063813598826527596, 0.009082920849323273, -0.00335336453281343, -0.009096615016460419, -0.016610443592071533, 0.021211137995123863, 0.010165054351091385, 0.03987869247794151, -0.009987710043787956, -0.052970629185438156, 0.004677488934248686, -0.006356996018439531, -0.01667790301144123, -0.02977798879146576, -0.01675313338637352, 0.014670712873339653, -0.014881574548780918, -0.045635320246219635, 0.02722364291548729, -0.019376451149582863, 0.012042754329741001, -0.005351851228624582, 0.014950208365917206, 0.0419314019382, 0.01762734353542328, -0.01856215111911297, 0.014813718385994434, 0.025514915585517883, -0.06085748225450516, 0.016641395166516304, 0.030415000393986702, -0.036684878170490265, 0.026730455458164215, 0.0166823361068964, -0.018619095906615257, -0.04088609665632248, -0.05475841462612152, 0.024150090292096138, -0.04497034102678299, -0.020852770656347275, -0.06569628417491913, -0.03443695232272148, -0.014239010401070118, 0.021769113838672638, -0.00105007691308856, -0.036687735468149185, 0.0010085246758535504, -0.021033093333244324, 0.009202924557030201, -0.051424216479063034, -0.0011561228893697262, -0.02097778394818306, -0.02863815240561962, -0.014812574721872807, 0.05681198090314865, -0.023605389520525932, 0.029081175103783607, -0.011818623170256615, 0.007129560224711895, 0.01797434128820896, -0.002315829275175929, -0.043379105627536774, -0.005341516807675362, -0.003390371799468994, 0.01563175395131111, -0.007845496758818626, 0.01952247880399227, -0.031214900314807892, 0.023106882348656654, -0.03967437893152237, -0.013511184602975845, 0.002723866142332554, 0.0016206703148782253, -0.01570938527584076, -0.015254569239914417, 0.06646715849637985, -0.007000674493610859, 0.005791278090327978, -0.04986786097288132, 0.06757423281669617, 0.03624272719025612, -0.007615646813064814, 0.0013887595850974321, -0.0182512104511261, -0.06756377965211868, -0.07266252487897873, 0.02776515670120716, -0.034612707793712616, 0.01041029766201973, -0.04056288301944733, 0.013576601631939411, 0.05588294938206673, -0.03918670490384102, 0.04751679301261902, 0.06384724378585815, 0.028649162501096725, 0.020043622702360153, -0.01639755629003048, 0.027378959581255913, 0.022168226540088654, -0.04889994487166405, 0.0017979417461901903, 0.02018974907696247, -0.05916648358106613, 0.016436966136097908, -0.013157522305846214, -0.05067618191242218, -0.03474317491054535, 0.0020387021359056234, 0.08048321306705475, 0.007332456298172474, 0.044375017285346985, -0.015168939717113972, -0.062313683331012726, -0.018652113154530525, 0.04077811539173126, 0.005131217185407877, 0.018873540684580803, 0.03845560923218727, 0.0059502036310732365, -0.01272551342844963, 0.007623143959790468, -0.009572331793606281, -0.00810463447123766, -0.0061135306023061275, 0.04908750578761101, -0.020771505311131477, -0.050996679812669754, 0.055522747337818146, 0.032001350075006485, -0.07511571794748306, -0.04100135341286659, -0.011758597567677498, -0.020030176267027855, -0.002825614530593157, -0.02889125607907772, -0.01563669741153717, 0.00694055762141943, -0.021635327488183975, 0.015101560391485691, 0.011794260703027248, -0.006392895709723234, 0.01273657288402319, 0.016938315704464912, 0.0012793136993423104, -0.05505071207880974, 0.018054237589240074, 0.03740523383021355, -0.04929080232977867, -0.02326061576604843, -0.030971670523285866, -0.007809820119291544, 0.004752527456730604, -0.03378264605998993, 0.04883810877799988, -0.03467930108308792, -0.0020480079110711813, 0.0033623920753598213, 0.005795855540782213, 0.03329664096236229, 0.010508897714316845, 0.0006308400188572705, -0.00098420528229326, -0.05061373487114906, -0.0640292838215828, -0.010508059523999691, 0.020800990983843803, -0.0011917904485017061, 0.007400216534733772, -0.03348859027028084, -0.01790645904839039, 0.04744338244199753, 0.022823039442300797, -0.025011489167809486, -0.07856791466474533, -0.019572000950574875, -0.06142406538128853, -0.05359508842229843, -0.009538451209664345, -0.02230258285999298, 0.012059423141181469, 0.02211015671491623, -0.021027468144893646, -0.04796025902032852, -0.0315154492855072, 0.02295340783894062, -0.016822436824440956, 0.021827446296811104, -0.06524670869112015, 0.022257080301642418, -0.04109806567430496, -0.03627937659621239, -0.03556007519364357, 0.014082721434533596, -0.034436069428920746, -0.01424604095518589, -0.009327959269285202, 0.004902449902147055, -0.015138273127377033, -0.006522897630929947, 0.007879617623984814, 0.007263239938765764, -0.023854753002524376, -0.02016947790980339, 0.022113598883152008, 0.03931581228971481, 0.006038406398147345, 0.06025976687669754, 0.035515256226062775, 0.01213744468986988, 0.02701345644891262, -0.023026341572403908, -0.018501829355955124, -0.011024406179785728, 0.021414343267679214, 0.002021550666540861, -0.0009622366633266211, 0.007141514215618372, -0.004404555540531874, -0.00613727793097496, -0.07077351957559586, -0.012469804845750332, 0.0043054684065282345, 0.015554238110780716, 0.02760220505297184, -0.013228696770966053, 0.009979317896068096, 0.0692545548081398, 0.003920882008969784, 0.04845854267477989, 0.009293354116380215, 0.02149469219148159, 0.02979789674282074, 0.002095307456329465, 0.0014837727649137378, 0.02238216996192932, -0.02935550920665264, -0.01776932179927826, 0.01047542691230774, 0.0003794293152168393, -0.03385452553629875, 0.05436502397060394, -0.004070995841175318, -0.03649383783340454, -0.057652805000543594, 0.04556535929441452, 0.00190420588478446, 0.027675623074173927, 0.05338139086961746, -0.027463069185614586, -0.01056203618645668, -0.056628841906785965, -0.0414617545902729, 0.011880512349307537, -0.06945004314184189, -0.06193509325385094, 0.05620458349585533, -0.039594270288944244, -0.0021478652488440275, -0.01731755957007408, -0.050398483872413635, -0.027444399893283844, -0.024414103478193283, 0.00119805580470711, -0.01615763269364834, -0.013534368015825748, -0.024508100003004074, 0.02185521461069584, -0.018992524594068527, 0.00798727199435234, 0.013052997179329395, 0.01546495221555233, -0.0518808513879776, -0.02092514932155609, -0.022889377549290657, 0.031101137399673462, 0.025258269160985947, -0.034736040979623795, -0.02614535018801689, 0.014827047474682331, 0.019491391256451607, -0.017298143357038498, 0.003071405226364732, 0.010798225179314613, 0.006447778549045324, 0.0053693754598498344, -0.035211917012929916, -0.011665374040603638, -0.0404660589993, 0.04079845920205116, 0.028955236077308655, 0.015197903849184513, -0.015922648832201958, 0.05345788970589638, 0.025590835139155388, -0.0030726834665983915, 0.03086979128420353, 0.030855843797326088, 0.03574873134493828, -0.014497880823910236, 0.003742470173165202, -0.006978070363402367, 0.012844858691096306, 0.05094105377793312, 0.05283557251095772, 0.016422167420387268, 0.023865044116973877, 0.02364032156765461, 0.011068448424339294, -0.026740998029708862, 0.011587399058043957, 0.05519435554742813, -0.01787734404206276, 0.0030959690921008587, -0.027298156172037125, -0.025356346741318703, -0.007777324877679348, -0.02159152366220951, 0.019006798043847084, -0.0467032715678215, 0.02045575901865959, -0.03316136449575424, -0.01713600754737854, 0.028624635189771652, 0.020597143098711967, -0.02294386923313141, -0.007016655057668686, -0.007335636764764786, 0.0212127435952425, 0.035252053290605545, -0.015526145696640015, -0.005581376608461142, 0.0325445719063282, 0.020555980503559113, 0.014632207341492176, 0.04746028780937195, 0.030477100983262062, 0.031030617654323578, -0.03830369934439659, -0.017767684534192085, 0.0025041094049811363, 0.044072821736335754, -0.021651189774274826, -0.038737840950489044, -0.03812452033162117, 0.03285256028175354, -0.012259041890501976, 0.017250891774892807, 0.010577470064163208, -0.04812566936016083, 0.011539049446582794, -0.07774297147989273, 0.06008175387978554, -0.03198976442217827, 0.010257109068334103, 0.025234710425138474, -0.011529950425028801, -0.04291239753365517, 0.046881962567567825, 0.012517094612121582, 0.04612045735120773, 0.012573889456689358, 0.06432086229324341, 0.003690095152705908, 0.05096450820565224, 0.03461321070790291, -0.019064350053668022, -0.0045263138599693775, 0.05847274512052536, -0.001759338891133666, -0.04927379637956619, -0.02977575734257698, -0.015053104609251022, 0.01658371277153492, -0.00979497842490673, -0.01050557941198349, 0.00045072054490447044, 0.025645965710282326, 0.025981314480304718, -0.05329641327261925, -0.0018853229703381658, 0.044508643448352814, -0.055050287395715714, 0.036521680653095245, 0.01778613030910492, 0.02296239696443081, 0.030750306323170662, -0.012897530570626259, -0.0022655546199530363, -0.0535280816257, 0.030813466757535934, -0.051121145486831665, 0.0334022231400013, -0.020907890051603317, -0.028172239661216736, -0.0028838133439421654, -0.03966192528605461, 0.010912122204899788, 0.027392707765102386, -0.02434949390590191, -0.04417694732546806, 0.04467111825942993, 0.02934802509844303, 0.02989783324301243, 0.026045430451631546, -0.03916437551379204, -0.0146465003490448, 0.03557559847831726, 0.05180603638291359, -0.008431305177509785, 0.037452638149261475, 0.011129344813525677, -0.032449983060359955, 0.016177421435713768, -0.04952501505613327, 0.04271836206316948, 0.01871493272483349, -0.011279336176812649, -0.011896849609911442, 0.010050129145383835, -0.005653624888509512, -0.0568767786026001, -0.024542275816202164, 0.029968421906232834, -0.017934676259756088, 0.004777947440743446, -0.07772310823202133, -0.037470899522304535, -0.05520253628492355, -0.0020168626215308905, -0.05027318373322487, 0.014492137357592583, -0.04635098576545715, -0.0022745628375560045, -0.02371872216463089, -0.06974446028470993, 0.16127072274684906, 0.06158924475312233, 0.04125877469778061, -0.0061522433534264565, 0.03373738378286362, 0.06871818751096725, 0.0225202776491642, -0.0021476272959262133, -0.0017160730203613639, -0.05953555554151535, 0.022826941683888435, -0.007296992000192404, 0.00947127677500248, 0.04739588871598244, 0.034883223474025726, 0.03218652680516243, -0.06397824734449387, -0.007638855371624231, 0.005918002221733332, -0.009878073818981647, -0.02756984904408455, 0.019356757402420044, -0.008142396807670593, 0.024404874071478844, 0.015563741326332092, 0.005945971235632896, 0.036301109939813614, -0.07227075099945068, 0.00915577169507742, -0.0411628782749176, 0.012248130515217781, -0.005391491577029228, 0.06085128337144852, 0.006011096760630608, -0.014376815408468246, 0.03315087780356407, 0.00676508666947484, -0.03940984606742859, -0.019141564145684242, 0.03297310322523117, -0.0074628619477152824, -0.03351546451449394, -0.007748879492282867, -0.03400920704007149, 0.010131185874342918, 0.04066897928714752, -0.02998577430844307, 0.04973987489938736, 0.023066841065883636, -0.06061750277876854, 0.0628916472196579, -0.026378966867923737, 0.012378591112792492, -0.02811002917587757, -0.03544391691684723, 0.02222442626953125, 0.031715989112854004, -0.04402582347393036, -0.03148730844259262, 0.011631489731371403, 0.01654507778584957, -0.0012965697096660733, -0.00841431226581335, 0.03281458839774132, -0.014264820143580437, -0.010911088436841965, 0.01521108578890562, 0.020786380395293236, -0.026364758610725403, -0.015321307815611362, -0.012943172827363014, -0.002786382334306836, -0.000020661507733166218, -0.021976234391331673, 0.034643787890672684, 0.020368114113807678, -0.016036929562687874, 0.055292464792728424, 0.03327859938144684, -0.04831501096487045, -0.028106562793254852, -0.03518912196159363, -0.01997535675764084, -0.04307980835437775, 0.024620315060019493, 0.0417233407497406, -0.037966616451740265, -0.009086019359529018, -0.014237924478948116, 0.0038371174596250057, 0.04436033219099045, 0.015430708415806293, 0.004914156626909971, 0.01889328472316265, -0.0028911572881042957 ]
So you've stocked up on all the electronics your tech-savvy family and friends have placed at the top of their holiday wish lists this year. But we're thinking you could use a little upgrade yourself. Enter to win a top-of-the-line HP Stream 7 Tablet from P.C. Richard & Son and fully integrate work and play in one super sleek device. The HP Stream 7 Tablet's gorgeous HD display is perfect for your favorite kind of down time, whether it's Netflix binging or online gaming. Shop for kitchen appliances, TVs, laptops, and more at P.C. Richard & Son. With a large selection of discount appliances to match your home, plus free shipping offers, and affordable repair services, you'll get over 100 years of reliable experience backed with Cash Back at Ebates. Tablets are great devices for on-the-go tasks, and P.C. Richard & Son want to give away the HP Stream 7 Tablet to one lucky winner. 2. After you enter your Ebates email, you can earn extra entries for each type of entry. Comment, tweet, pin, follow us, like us, circle us — the more you do, the more entries you get! This sweepstakes ends on Tuesday, December 09, 2014 at 11:59 PM PST. The winner will be randomly picked through Rafflecopter, and will be posted on Facebook and this blog. Please be aware of the Giveaway Rules. Take advantage of P.C. Richard & Son sales and deals!
[ -0.007749655283987522, -0.003546499414369464, -0.011685583740472794, 0.024855291470885277, -0.0023954082280397415, 0.002940549748018384, 0.0028121299110352993, 0.033913321793079376, 0.03895021229982376, 0.006287470925599337, 0.03619398549199104, 0.01551085151731968, -0.003999229986220598, 0.003061991650611162, -0.01824614591896534, -0.028819650411605835, -0.03381255641579628, -0.028614459559321404, -0.00916924700140953, -0.008642039261758327, -0.029202843084931374, 0.01877044141292572, -0.05127837136387825, -0.05640161409974098, 0.002369900234043598, 0.031356941908597946, 0.0018431986682116985, -0.012142027728259563, 0.05166628211736679, 0.05736355111002922, -0.036555953323841095, -0.033553846180438995, 0.03274167329072952, -0.05367786064743996, -0.02100396156311035, -0.0035400092601776123, 0.040294528007507324, -0.019521493464708328, -0.04243005812168121, -0.03826111555099487, 0.006015195045620203, -0.017947915941476822, 0.04716886579990387, -0.008813022635877132, -0.03159463033080101, -0.020677395164966583, 0.009395591914653778, -0.027179140597581863, 0.026186741888523102, -0.04327692463994026, 0.006487663369625807, -0.018520399928092957, 0.003353409469127655, -0.03574545308947563, -0.00447600893676281, 0.02259291149675846, -0.0072584813460707664, -0.01573984883725643, -0.016639750450849533, 0.03133148327469826, 0.0329388752579689, -0.006500317715108395, 0.019852230325341225, -0.05262211337685585, 0.025868544355034828, 0.007272128015756607, -0.001653410610742867, -0.015640392899513245, 0.03701985254883766, -0.002975699258968234, -0.012591022998094559, 0.019022712484002113, -0.014927219599485397, -0.02277119643986225, 0.008479495532810688, -0.0012790386099368334, -0.0342496857047081, 0.017390500754117966, -0.005912052001804113, 0.004032770171761513, 0.016972925513982773, 0.042967408895492554, 0.009162369184195995, -0.006286247633397579, -0.06731679290533066, -0.017484178766608238, 0.0403822623193264, 0.003970068879425526, 0.004463867284357548, 0.009491018950939178, 0.018697598949074745, 0.044389303773641586, 0.05314582213759422, -0.020403923466801643, 0.017843810841441154, 0.028612639755010605, -0.040072306990623474, -0.0008066992159001529, 0.00491716992110014, 0.02916373312473297, 0.022598665207624435, -0.01968815177679062, -0.0027813047636300325, 0.05968541279435158, -0.03146742284297943, 0.00480360072106123, 0.02243034355342388, 0.0005055199144408107, -0.02461146004498005, -0.037086840718984604, 0.016802173107862473, -0.039467159658670425, 0.016400661319494247, 0.010521874763071537, -0.024685241281986237, 0.01155673898756504, -0.008066541515290737, 0.0076836817897856236, -0.027076872065663338, 0.019539566710591316, 0.014350787736475468, 0.023288702592253685, 0.05077923461794853, -0.01922404021024704, 0.011306983418762684, -0.037293318659067154, -0.036081817001104355, 0.028368903324007988, -0.033338047564029694, -0.03389543667435646, 0.010326188057661057, -0.035411279648542404, -0.02819538675248623, 0.030397366732358932, 0.013420512899756432, 0.051829781383275986, -0.006359760649502277, 0.04375607147812843, 0.030010879039764404, -0.052614714950323105, 0.03864003345370293, 0.006685767788439989, 0.007638752460479736, 0.07147057354450226, 0.032577041536569595, 0.03172876313328743, 0.004059322644025087, 0.006993223447352648, -0.044480931013822556, 0.026779580861330032, -0.010884054936468601, 0.056900754570961, -0.03551682084798813, 0.047118332237005234, -0.023026373237371445, 0.007855018600821495, 0.0010793929686769843, -0.005189542658627033, 0.00625989306718111, 0.05347443372011185, -0.017493780702352524, 0.02440185658633709, -0.03239449858665466, 0.036482591181993484, 0.0012055132538080215, 0.04954320192337036, -0.02982737123966217, -0.004333659075200558, -0.03048439510166645, -0.005609726533293724, -0.005600898526608944, -0.0149235175922513, -0.016193373128771782, 0.010614155791699886, 0.05020337924361229, 0.04930566996335983, 0.050023529678583145, -0.03393038362264633, 0.02773544378578663, 0.03728794306516647, -0.04192177578806877, 0.020390791818499565, -0.007680021692067385, 0.05851195380091667, -0.009123962372541428, 0.019839424639940262, 0.004946794826537371, 0.012253937311470509, -0.04634816572070122, -0.025670044124126434, -0.0005408469587564468, 0.011186733841896057, -0.02462327852845192, 0.06443239748477936, 0.0027537222485989332, -0.00575060723349452, -0.028025396168231964, -0.040633656084537506, -0.010769087821245193, -0.048857830464839935, -0.03553638234734535, 0.02756068855524063, -0.035888925194740295, 0.008558795787394047, -0.01663292571902275, -0.05599815398454666, 0.01829785853624344, 0.0682649239897728, -0.0454057939350605, -0.037348002195358276, 0.03390924632549286, 0.0469195656478405, -0.019791876897215843, -0.034360434859991074, 0.0002895108482334763, -0.0025326935574412346, 0.009921679273247719, 0.04407862573862076, -0.0047767735086381435, -0.001302167191170156, 0.015173370949923992, 0.02222873456776142, 0.03400028869509697, 0.044979263097047806, -0.02454160712659359, 0.024197444319725037, 0.012296712957322598, 0.019985392689704895, -0.029425345361232758, 0.013466177508234978, -0.031226400285959244, 0.05408463254570961, -0.007992812432348728, 0.05367835611104965, 0.040714625269174576, 0.021545570343732834, 0.02061460353434086, 0.005178853869438171, -0.0008296543383039534, 0.01705210655927658, 0.0031641433015465736, -0.03133276849985123, 0.023191159591078758, -0.010596358217298985, -0.0060006678104400635, 0.03231117129325867, -0.019021622836589813, 0.010772846639156342, -0.0348249115049839, 0.04793909564614296, 0.005550083704292774, 0.01425835769623518, 0.020449625328183174, 0.019739961251616478, -0.010256429202854633, -0.007645332254469395, 0.035699740052223206, 0.06867026537656784, -0.006562254391610622, 0.014696861617267132, -0.00788795668631792, 0.018705347552895546, -0.009316123090684414, 0.012292122468352318, 0.03159908577799797, 0.011506037786602974, 0.006328856572508812, 0.007292282767593861, -0.040107231587171555, -0.04004818946123123, -0.03970453515648842, -0.06651798635721207, -0.0597837008535862, -0.044704895466566086, -0.060809314250946045, -0.020194636657834053, 0.03366418927907944, -0.0426962748169899, 0.031527403742074966, -0.012730898335576057, -0.002205463359132409, -0.00609312579035759, 0.0012352103367447853, 0.048411473631858826, 0.02949126437306404, 0.03838982433080673, -0.04010787978768349, 0.034065138548612595, 0.01826784573495388, 0.04186416044831276, -0.03951375186443329, 0.018530774861574173, 0.0049001313745975494, -0.0016506651882082224, 0.00552034517750144, -0.027990907430648804, -0.021776750683784485, 0.000019184197299182415, -0.06676635891199112, -0.0600685179233551, -0.010943316854536533, 0.005542896222323179, 0.016836119815707207, -0.011232607066631317, -0.04778246954083443, 0.007852442562580109, 0.026837676763534546, -0.06157102808356285, 0.034766871482133865, 0.032473787665367126, -0.03716357424855232, 0.02719215117394924, 0.018799826502799988, 0.005505578592419624, -0.05433869734406471, 0.03450699523091316, 0.0237252339720726, 0.017206009477376938, -0.030003322288393974, 0.019196342676877975, -0.018843699246644974, -0.02612197771668434, -0.0011805944377556443, 0.0022361082956194878, -0.032531678676605225, 0.018771877512335777, 0.009394455701112747, -0.07238952815532684, 0.02968454733490944, -0.01799018122255802, -0.012342941015958786, -0.04965176060795784, -0.05000472441315651, 0.025357292965054512, 0.03599691018462181, 0.02739829570055008, 0.04940471053123474, -0.027592025697231293, 0.026079224422574043, 0.021469969302415848, 0.04295868054032326, -0.03890674188733101, -0.001913300366140902, 0.05989819020032883, 0.013967014849185944, 0.003519346471875906, 0.050295691937208176, -0.0197789017111063, -0.04419293627142906, 0.012949401512742043, -0.006673519499599934, 0.01860766112804413, 0.027844063937664032, -0.006365328095853329, 0.04484078288078308, 0.044447146356105804, -0.05789770931005478, -0.015618875622749329, -0.003954011481255293, 0.024154921993613243, 0.007548144552856684, 0.05181889981031418, 0.05612459033727646, 0.016142016276717186, -0.021570706740021706, -0.056742336601018906, 0.05982988327741623, 0.024564262479543686, 0.03678377717733383, -0.07556144148111343, 0.053804878145456314, -0.012990426272153854, -0.012386512942612171, 0.0394618920981884, -0.0645563006401062, 0.013207530602812767, 0.017128396779298782, -0.013538752682507038, 0.04315284267067909, -0.04616059735417366, 0.010073157958686352, -0.025689540430903435, 0.003980762325227261, 0.0255585964769125, -0.013873796910047531, 0.032784245908260345, -0.00658123753964901, 0.010361570864915848, -0.016552533954381943, -0.0023025688715279102, -0.005804008338600397, -0.027887912467122078, 0.011836747638881207, -0.009235730394721031, -0.07314279675483704, -0.03585124760866165, 0.04295453429222107, 0.017454080283641815, 0.03786087408661842, -0.003941804636269808, 0.07453756779432297, -0.007964551448822021, 0.020998312160372734, 0.03398415446281433, -0.0031372387893497944, 0.003649774007499218, -0.04419640824198723, 0.06404725462198257, 0.015322198159992695, -0.04099351540207863, -0.03724559769034386, 0.011084827594459057, -0.0332193449139595, 0.025687959045171738, 0.010726351290941238, -0.045003633946180344, -0.042932674288749695, 0.011148572899401188, 0.0052154166623950005, 0.053127389401197433, -0.021361112594604492, 0.009946064092218876, -0.04714752361178398, 0.0243802722543478, 0.014194934628903866, -0.05341196805238724, 0.004026096314191818, -0.026774533092975616, 0.034236107021570206, 0.07065770030021667, -0.006327576003968716, -0.05638718605041504, 0.011054926551878452, -0.0322122685611248, -0.04557487368583679, 0.05832904204726219, 0.043698541820049286, -0.0051978640258312225, 0.015421051532030106, -0.03583547845482826, 0.012033437378704548, 0.052424415946006775, 0.007176611572504044, -0.040970854461193085, 0.009092249907553196, 0.048985593020915985, 0.013688329607248306, 0.030514348298311234, -0.021656503900885582, -0.051694951951503754, -0.0036124149337410927, -0.05602939426898956, 0.011248117312788963, 0.0031058380845934153, -0.024717940017580986, -0.026851817965507507, 0.01726016029715538, 0.03139938414096832, 0.023156335577368736, -0.04431803151965141, 0.015774700790643692, -0.004456188064068556, 0.045111216604709625, -0.03413601592183113, -0.047814615070819855, 0.03854846581816673, -0.013528839685022831, -0.019221922382712364, 0.00865093618631363, 0.04455955699086189, -0.02549792267382145, 0.035420507192611694, 0.03735928609967232, -0.06539223343133926, 0.028386110439896584, -0.010609070770442486, 0.03106304071843624, -0.03483261540532112, -0.022575823590159416, -0.0036646276712417603, -0.002215679967775941, 0.030985306948423386, -0.008761076256632805, 0.013341616839170456, -0.034990888088941574, -0.03517700731754303, -0.02745111845433712, 0.01636471413075924, -0.017870767042040825, 0.015535091049969196, 0.014541215263307095, -0.014447301626205444, -0.003557441057637334, -0.029462773352861404, 0.03238191083073616, 0.02419857494533062, -0.02267265133559704, 0.01626764051616192, 0.030386485159397125, 0.02279714122414589, 0.007436337415128946, -0.02317662537097931, -0.036833230406045914, 0.003025080543011427, -0.0032435774337500334, -0.029497157782316208, -0.062114324420690536, 0.008431400172412395, -0.04354090243577957, -0.008420574478805065, -0.010333098471164703, 0.013181242160499096, -0.005105737596750259, 0.01638990081846714, 0.013106671161949635, 0.02447606809437275, 0.03341875970363617, 0.022593524307012558, -0.02400662563741207, 0.08306243270635605, 0.015451014041900635, -0.054309386759996414, -0.06579670310020447, 0.04563487321138382, -0.023029165342450142, 0.04736289009451866, -0.000056603097618790343, -0.018747910857200623, -0.06309521198272705, -0.040388621389865875, -0.024307817220687866, -0.039948467165231705, -0.01453332044184208, -0.04894830659031868, -0.03126130998134613, -0.06327390670776367, 0.014989052899181843, -0.006633910350501537, -0.004651322960853577, 0.015534251928329468, -0.038845229893922806, -0.0013200058601796627, -0.027750927954912186, -0.01907419040799141, -0.04764954745769501, 0.015280483290553093, -0.0020072581246495247, 0.03260529413819313, 0.00680462084710598, 0.005517876241356134, -0.021607520058751106, 0.03140580281615257, 0.019490528851747513, 0.0230251457542181, -0.047410570085048676, -0.014758981764316559, 0.006076410878449678, 0.004604988731443882, 0.013001528568565845, 0.0026137784589082003, -0.0273494441062212, 0.03741390258073807, -0.03099077008664608, -0.012214023619890213, -0.028266403824090958, -0.013385131023824215, -0.005402390379458666, -0.02120967023074627, 0.019546888768672943, 0.010976511985063553, 0.006106388755142689, -0.026003090664744377, 0.07338885962963104, 0.054861366748809814, -0.009947746060788631, -0.0456463024020195, -0.00466463528573513, -0.029724150896072388, -0.05727820843458176, 0.008850052952766418, -0.022948220372200012, -0.022219281643629074, -0.02726396545767784, -0.018813936039805412, 0.0489916056394577, 0.001414236263372004, 0.048128318041563034, 0.07494908571243286, 0.017208652570843697, -0.03463752940297127, -0.028821909800171852, 0.015055968426167965, 0.05801674723625183, -0.014351115562021732, 0.002035637153312564, -0.033745355904102325, -0.011645738035440445, -0.02828795835375786, -0.07148337364196777, -0.038560330867767334, -0.050470981746912, 0.007290948182344437, 0.08229079097509384, -0.027610480785369873, 0.044129688292741776, -0.002565128728747368, -0.057588450610637665, -0.022758016362786293, 0.025545326992869377, -0.03619353100657463, 0.03386478126049042, 0.03959561511874199, 0.007422157563269138, -0.05329320207238197, 0.018212469294667244, -0.0347919799387455, -0.01218908466398716, -0.02576305717229843, 0.027099721133708954, 0.002726510399952531, -0.03152821585536003, 0.025542501360177994, 0.05886435881257057, -0.060548823326826096, -0.04521876201033592, 0.010639563202857971, 0.009421136230230331, 0.009143942035734653, -0.049633562564849854, -0.001562565565109253, 0.0012756079668179154, 0.02130809985101223, 0.009979612194001675, 0.03730636090040207, -0.022378867492079735, 0.03541688248515129, 0.0011887550354003906, 0.04764018952846527, -0.05745662748813629, -0.00899689644575119, 0.019905008375644684, -0.0034332708455622196, -0.0020396339241415262, -0.03163781017065048, -0.01064114086329937, -0.007986310869455338, 0.006618813145905733, 0.031351134181022644, -0.0014265190111473203, 0.00814690999686718, 0.029064703732728958, -0.006079256068915129, 0.04239906743168831, 0.023626329377293587, -0.025824543088674545, 0.011985339224338531, -0.02070777490735054, -0.042655203491449356, -0.02788352221250534, 0.004284676164388657, 0.017125993967056274, 0.007649688515812159, -0.051660455763339996, 0.030818402767181396, 0.036938730627298355, 0.022900184616446495, -0.0017938773380592465, -0.02833082154393196, -0.05361117422580719, -0.029068097472190857, -0.060931600630283356, -0.020351193845272064, -0.01821739599108696, 0.005266913212835789, 0.0013256269739940763, -0.008712954819202423, -0.01823562942445278, 0.01318029873073101, 0.006601025816053152, -0.033402930945158005, -0.008596007712185383, -0.046898797154426575, 0.034968141466379166, -0.028955964371562004, -0.07109826803207397, -0.0662524402141571, 0.024104062467813492, -0.036098554730415344, -0.00004479898416320793, -0.012781641446053982, 0.011153016239404678, 0.0055287061259150505, 0.015149061568081379, 0.016794554889202118, 0.025929056107997894, -0.023324552923440933, -0.043675247579813004, -0.0015824221773073077, 0.05388932302594185, 0.009406844154000282, 0.015973204746842384, 0.03738535940647125, -0.01959679089486599, 0.04265112429857254, -0.026932204142212868, 0.01822211593389511, -0.03288079425692558, 0.020744595676660538, 0.0016102390363812447, -0.0059441556222736835, -0.045327309519052505, -0.0413210503757, -0.026860803365707397, -0.03165488317608833, 0.014085103757679462, -0.00529170036315918, 0.020141927525401115, -0.02050286903977394, 0.0025324150919914246, -0.009921858087182045, 0.029869230464100838, -0.015303903259336948, 0.04445924982428551, -0.025735843926668167, 0.03141748532652855, 0.032214436680078506, 0.008867313154041767, 0.004033681936562061, 0.016731763258576393, 0.04626014828681946, -0.048808567225933075, -0.0011259810999035835, -0.006885453127324581, 0.0018047475023195148, 0.038983892649412155, -0.033881645649671555, -0.02537699230015278, -0.047103606164455414, 0.00813800748437643, 0.004752248991280794, 0.020437952131032944, 0.009148653596639633, 0.02431325986981392, 0.020690737292170525, -0.01865893416106701, -0.0170990489423275, 0.010427203960716724, -0.041212256997823715, -0.014820894226431847, 0.03482918068766594, -0.032263584434986115, -0.02274833805859089, 0.020383251830935478, -0.035591721534729004, 0.0011970233172178268, 0.017255499958992004, 0.004132433328777552, -0.017380451783537865, 0.054963842034339905, 0.0030167526565492153, 0.04416776821017265, -0.00520814023911953, 0.033288344740867615, 0.007324478588998318, 0.0797010138630867, -0.028571730479598045, -0.05014599487185478, 0.03204857558012009, 0.03432122617959976, 0.007608065847307444, -0.010116200894117355, -0.017063535749912262, 0.011693923734128475, -0.0018720249645411968, -0.015295193530619144, -0.0017823814414441586, 0.0111727025359869, -0.008648714981973171, 0.04088136926293373, -0.0006282047834247351, 0.001578262890689075, -0.04147457703948021, 0.05008446052670479, 0.014434839598834515, -0.012263160198926926, -0.016079476103186607, 0.04357558861374855, 0.05662919953465462, -0.011867585591971874, 0.023526521399617195, 0.001372305559925735, 0.026635508984327316, -0.03837728500366211, 0.019445054233074188, -0.015226833522319794, 0.03110434301197529, 0.027374569326639175, 0.03163384273648262, -0.006498341448605061, 0.02604490891098976, 0.05341615900397301, 0.016996964812278748, 0.04500534012913704, 0.030501339584589005, 0.007412247825413942, -0.03277956321835518, 0.010486939921975136, -0.029632631689310074, 0.008431199006736279, -0.0026951695326715708, -0.016816070303320885, -0.004314304795116186, -0.02193317748606205, 0.000076926669862587, -0.02212352678179741, -0.024675961583852768, 0.05629564821720123, -0.020602082833647728, 0.01683208905160427, 0.011558609083294868, -0.010108119808137417, -0.029399603605270386, 0.03688226267695427, -0.0008590843062847853, 0.01657223515212536, 0.041397396475076675, 0.026141216978430748, 0.006247702054679394, 0.02166839689016342, 0.02060389518737793, -0.006767806597054005, -0.04833570867776871, 0.008770102635025978, 0.04123624414205551, -0.009341539815068245, -0.03035476990044117, 0.02776428684592247, -0.054049812257289886, 0.06115850433707237, 0.0035051212180405855, -0.03174808993935585, 0.030749961733818054, -0.0481797531247139, -0.03272216394543648, -0.06116313487291336, 0.03789956122636795, -0.03513029217720032, -0.0065721007995307446, 0.027367204427719116, -0.001919746515341103, -0.0348375104367733, 0.020440207794308662, 0.012268521822988987, 0.05863570049405098, 0.02299608290195465, 0.05377801135182381, -0.011634274385869503, 0.04358259215950966, 0.07434090226888657, -0.03399862349033356, -0.011175571009516716, 0.01687057502567768, -0.01282692700624466, -0.010255599394440651, 0.016822492703795433, -0.04392183944582939, 0.0017102191923186183, 0.0076162125915288925, -0.011833484284579754, -0.009944676421582699, 0.049148112535476685, -0.004005005117505789, -0.029065972194075584, -0.0164247564971447, 0.0034803207963705063, -0.0492885448038578, -0.0026527016889303923, 0.03279353678226471, 0.04407647252082825, -0.0036937601398676634, -0.01661604270339012, -0.03022439405322075, -0.03579289838671684, 0.004264458082616329, -0.013422692194581032, 0.05026720464229584, -0.04078176990151405, -0.04598023369908333, -0.07325809448957443, -0.03006983920931816, -0.04712928086519241, -0.01071806252002716, -0.02296706661581993, -0.013012469746172428, 0.04018283635377884, 0.028122950345277786, -0.02530745603144169, 0.016998790204524994, -0.012757767923176289, -0.03215121477842331, 0.045822300016880035, 0.057263992726802826, -0.0050040604546666145, 0.012196818366646767, 0.028279637917876244, 0.010077117942273617, 0.039309870451688766, -0.07200176268815994, 0.03414906561374664, -0.01145875733345747, -0.00853499211370945, -0.0424485057592392, -0.004053309094160795, -0.02639843337237835, -0.036865297704935074, -0.016744090244174004, 0.016778716817498207, 0.010732478462159634, -0.00430284021422267, -0.08133261650800705, 0.007973595522344112, -0.04423822835087776, -0.017272422090172768, -0.052337292581796646, 0.043834563344717026, 0.0032484380062669516, 0.0058575281873345375, -0.026289254426956177, -0.08272247761487961, 0.12647132575511932, 0.06559555977582932, 0.039794862270355225, 0.015446316450834274, 0.01647334173321724, 0.058197133243083954, 0.02476387284696102, -0.02926250919699669, -0.017857549712061882, -0.017556404694914818, 0.018451612442731857, 0.017243169248104095, 0.013175911270081997, 0.022128865122795105, 0.022785698994994164, 0.0404248870909214, -0.048291198909282684, -0.005005829501897097, 0.009692829102277756, -0.07137390226125717, -0.061137329787015915, 0.01034263614565134, -0.001672021229751408, 0.029004642739892006, -0.01821623370051384, 0.03826971352100372, 0.02025436982512474, -0.035996485501527786, -0.013964477926492691, -0.03232501074671745, 0.049280084669589996, -0.03682435676455498, 0.02553398720920086, 0.0031887132208794355, -0.03509676083922386, 0.056193381547927856, 0.007970469072461128, -0.03546275198459625, -0.01671210490167141, 0.00668883603066206, -0.02431589551270008, -0.009547860361635685, 0.020646382123231888, -0.0346134677529335, -0.0118452999740839, 0.026735620573163033, -0.04323346167802811, 0.04829065874218941, -0.0027993537951260805, -0.054152924567461014, 0.0605742372572422, -0.030469242483377457, -0.0014532505301758647, 0.002766373800113797, -0.04095795005559921, 0.005242019891738892, 0.014702088199555874, -0.009251640178263187, 0.017907975241541862, 0.016910741105675697, 0.011860312893986702, 0.0199909508228302, -0.01363607868552208, 0.019446711987257004, -0.03456638753414154, 0.01479754876345396, 0.012995490804314613, 0.022991739213466644, 0.005720631219446659, -0.004451197572052479, -0.019800595939159393, 0.018888602033257484, -0.03923618793487549, -0.012531778775155544, 0.010979235172271729, 0.043715909123420715, 0.007977286353707314, 0.018681636080145836, 0.0005143370945006609, -0.014431999996304512, -0.0035133238416165113, -0.02295849286019802, -0.02234186977148056, 0.0060990434139966965, 0.02243911661207676, 0.0339101180434227, -0.046424202620983124, -0.05013077333569527, -0.02720402553677559, 0.06319791078567505, 0.05739519000053406, 0.02904587797820568, -0.013596252538263798, 0.0068569243885576725, 0.0014890801394358277 ]
Other Worlds of Wonder April Fools Day Bazaar SunFest XXXIII Columbia-Willamette Pagan Pride Day Yule Bazaar Board Houses Donate to OWOW Adultsshow details +hide details - $75.00 (USD) Quantity 0 1 2 3 4 5 6 7 8 9 10 Adults $75.00 (USD) Total $75.00 (USD) Sale Dates - The dates when this option is available for purchase. Goes On Sale: December 4, 2022 11:25 am Sales End: February 2, 2023 12:00 am - This option allows access to the following dates and times. June 22, 2023 to June 25, 2023 2:00 pm 6 154 12 208 13-17 years oldshow details +hide details - $25.00 (USD) Quantity 0 1 2 3 4 5 6 7 8 9 10 13-17 years old $25.00 (USD) June 22, 2023 to June 25, 2023 2:00 pm 0 20 12 208 3-12 years oldshow details +hide details - $10.00 (USD) Quantity 0 1 2 3 4 5 6 7 8 9 10 3-12 years old $10.00 (USD) 0-2 years oldshow details +hide details - $0.00 (USD) Quantity 0 1 2 3 4 5 6 7 8 9 10 0-2 years old $0.00 (USD) Total $0.00 (USD) Sales End: February 2, 2023 11:55 pm Vendor Feeshow details +hide details - $25.00 (USD) Quantity 0 1 2 3 4 Vendor Fee $25.00 (USD) June 22, 2023 to June 25, 2023 2:00 pm 3 4 12 208 RV Feeshow details +hide details - $30.00 (USD) Quantity 0 1 2 3 4 5 6 7 8 9 10 RV Fee $30.00 (USD) Venue: Ffynnon Oregon Ffynnon, Oregon, 97064, United States Published by owow. ← Sunfest XXXIII Sponsorship Sunfest Volunteers →
[ -0.00850052572786808, 0.009399864822626114, -0.025485245510935783, -0.012497217394411564, -0.005839079152792692, -0.002238286193460226, -0.010858853347599506, 0.06235358119010925, -0.0010726917535066605, 0.017450114712119102, 0.03354375436902046, -0.008910787291824818, 0.01968500204384327, -0.04683590680360794, -0.019288979470729828, 0.0031642622780054808, -0.04185396805405617, -0.02029580995440483, 0.015370532870292664, -0.013126878067851067, 0.002343318425118923, 0.002385516185313463, -0.0906677171587944, -0.02710293047130108, -0.01038095448166132, 0.028369294479489326, -0.00272867432795465, 0.012557522393763065, 0.05368812382221222, 0.05181782320141792, -0.017145954072475433, -0.06069240719079971, 0.03002714179456234, -0.06956347078084946, -0.022255659103393555, 0.00514178304001689, 0.023686112836003304, -0.03606521710753441, -0.008543103002011776, -0.06928323209285736, -0.0007150454330258071, -0.001964711584150791, 0.013264594599604607, -0.02629491128027439, -0.029730750247836113, -0.014100858941674232, 0.00488031841814518, -0.04474518448114395, 0.037573687732219696, -0.02335791289806366, -0.00254588364623487, -0.0327615924179554, 0.025441264733672142, -0.015765272080898285, 0.020305730402469635, 0.03158912435173988, 0.006312779150903225, -0.03036215715110302, -0.021457213908433914, 0.017519542947411537, 0.018531639128923416, 0.012789838016033173, 0.034708406776189804, -0.03995738551020622, 0.025600716471672058, 0.014282763004302979, -0.0347859263420105, -0.0034808737691491842, 0.014998682774603367, -0.016158893704414368, 0.016652299091219902, 0.016803903505206108, -0.037243057042360306, -0.025262467563152313, -0.0036685813684016466, -0.00738995335996151, -0.03166303411126137, 0.021066969260573387, -0.009554648771882057, 0.01319776102900505, 0.03722941502928734, 0.025420138612389565, -0.003444805508479476, 0.009995092637836933, -0.051577720791101456, -0.020868249237537384, 0.004417605698108673, 0.0011251183459535241, 0.0354011245071888, -0.00802529975771904, -0.00016935665917117149, 0.04893350973725319, 0.022511210292577744, -0.018808307126164436, 0.0533968061208725, 0.03984174132347107, -0.031998056918382645, 0.038437195122241974, -0.016788091510534286, -0.016089584678411484, 0.028698738664388657, -0.022649133577942848, -0.02846819907426834, 0.04340938478708267, -0.03628142923116684, -0.010193136520683765, -0.02328876592218876, -0.004787665791809559, -0.0055436985567212105, -0.033920079469680786, -0.0005052558262832463, -0.03342936187982559, 0.030687233433127403, 0.018758149817585945, 0.011408706195652485, 0.045338381081819534, -0.021280454471707344, 0.017525488510727882, -0.0514640174806118, -0.02203254960477352, 0.03585175797343254, -0.004524060990661383, 0.025128314271569252, -0.004052868578583002, 0.021811963990330696, -0.05330798402428627, -0.013413872569799423, 0.03591214865446091, -0.03652326390147209, -0.02598678506910801, 0.0363483726978302, -0.044685106724500656, -0.017373934388160706, 0.02159818261861801, 0.02742476388812065, 0.038814976811409, -0.007258886005729437, 0.005580545868724585, -0.002052139490842819, -0.07919539511203766, 0.04612211138010025, 0.03205921873450279, -0.00023957923986017704, 0.09260628372430801, 0.017490878701210022, 0.024352919310331345, 0.02447517216205597, -0.0021766021382063627, -0.056994687765836716, 0.008375518955290318, -0.021986115723848343, 0.012391247786581516, 0.0008958420949056745, 0.028971340507268906, -0.0022778762504458427, 0.003679873188957572, 0.011754999868571758, -0.005243701860308647, 0.029537195339798927, 0.02303774282336235, -0.04051406309008598, 0.035587433725595474, -0.032671596854925156, 0.033029090613126755, -0.020322436466813087, 0.013833141885697842, -0.0024259721394628286, -0.03071964904665947, 0.005239414516836405, -0.03804802522063255, 0.007547658868134022, -0.018921080976724625, -0.031392574310302734, 0.025607848539948463, 0.0537668839097023, 0.06724215298891068, 0.0451790951192379, -0.028026927262544632, 0.04146589711308479, 0.0437907837331295, -0.06786245852708817, -0.007320810109376907, -0.00506821321323514, 0.07583614438772202, 0.019373713061213493, -0.014646884053945541, -0.03714527189731598, -0.04536386579275131, -0.03691299632191658, -0.0387197770178318, 0.009842955507338047, 0.013337819837033749, -0.015786878764629364, 0.03140662983059883, 0.028433391824364662, 0.019988544285297394, -0.0009687880519777536, -0.018914643675088882, -0.019035054370760918, -0.05398721620440483, -0.004362647421658039, 0.04857167229056358, -0.03710322827100754, 0.05444483831524849, 0.021115100011229515, -0.030852962285280228, 0.04251337796449661, 0.055555135011672974, -0.05496932938694954, 0.00038906445843167603, 0.02803707867860794, 0.008449302054941654, -0.010701448656618595, -0.012516328133642673, 0.022942280396819115, 0.004190939944237471, -0.028324568644165993, 0.05254962667822838, -0.01956494338810444, -0.02551998756825924, 0.008287732489407063, 0.028337642550468445, 0.056617122143507004, 0.05360036343336105, 0.0004517743655014783, -0.01633855514228344, 0.03184683248400688, 0.04691781848669052, -0.006557400804013014, 0.008382926695048809, -0.038751084357500076, 0.049830060452222824, 0.04757347330451012, 0.061651505529880524, 0.0429736003279686, -0.012927400879561901, 0.05696551129221916, 0.03275739774107933, -0.020779745653271675, 0.0009475138504058123, -0.006408304907381535, -0.016030367463827133, 0.04180857166647911, 0.010975372977554798, -0.025289693847298622, 0.0518607422709465, 0.007542314473539591, -0.024865413084626198, -0.008548736572265625, 0.044781073927879333, -0.0021230352576822042, 0.03539629280567169, 0.003330507315695286, 0.03149574249982834, -0.025607142597436905, 0.005793027579784393, 0.012776907533407211, 0.056946150958538055, -0.04375714808702469, -0.010603402741253376, 0.005856594070792198, 0.011521806009113789, 0.009748527780175209, 0.010300511494278908, -0.0010858038440346718, 0.022507740184664726, -0.009436143562197685, 0.012643471360206604, -0.005787066649645567, -0.048221249133348465, -0.050544314086437225, -0.02256135642528534, -0.03160309046506882, -0.025885196402668953, -0.03344527631998062, 0.006701825652271509, 0.04753977805376053, -0.022014429792761803, 0.012391366995871067, -0.002225663047283888, 0.004734615329653025, -0.029082106426358223, -0.006265819072723389, 0.052526604384183884, 0.05054562911391258, 0.019759761169552803, -0.012126896530389786, 0.05172459036111832, 0.0019483743235468864, 0.030301319435238838, -0.038548000156879425, 0.01524854265153408, -0.01754710078239441, -0.03956185281276703, 0.01742130145430565, 0.009111403487622738, -0.03978373482823372, 0.018022028729319572, -0.012738026678562164, -0.05247953161597252, 0.0031667472794651985, 0.0034756609238684177, 0.004753498360514641, 0.0100899338722229, -0.06099222972989082, 0.05511792376637459, 0.05568665638566017, -0.048499610275030136, 0.041991543024778366, 0.033591896295547485, -0.04672284051775932, 0.04751778766512871, 0.014154651202261448, -0.00451722601428628, -0.05888408049941063, 0.04805150628089905, 0.010118450038135052, 0.019521236419677734, 0.00511525571346283, -0.0036644909996539354, -0.023372285068035126, 0.022772982716560364, 0.02028961107134819, -0.01117874588817358, -0.04275238886475563, 0.03496304899454117, 0.01160415168851614, -0.08265821635723114, 0.02940886840224266, -0.046403128653764725, -0.027988404035568237, -0.037052370607852936, -0.05345448479056358, -0.01408266369253397, 0.0493929423391819, 0.02627759985625744, -0.005289004184305668, -0.03856847435235977, -0.03189626336097717, 0.047433383762836456, 0.07264115661382675, -0.005237576551735401, 0.018693143501877785, 0.0547453798353672, -0.02025584690272808, 0.01852065697312355, 0.007563304156064987, -0.002470962470397353, 0.0018485545879229903, -0.013299123384058475, -0.029040353372693062, 0.023221222683787346, 0.015084336511790752, -0.0007452325662598014, 0.020469633862376213, 0.04126027226448059, -0.04755161330103874, 0.011500687338411808, -0.008648646995425224, 0.05923064053058624, 0.012132101692259312, 0.019378574565052986, 0.03674256056547165, -0.03603334352374077, -0.03276647627353668, -0.03681109473109245, 0.02685798518359661, 0.016855889931321144, 0.07015452533960342, -0.06825005263090134, 0.0351710245013237, 0.0063595157116651535, -0.02091238833963871, 0.02840045839548111, -0.03952007740736008, 0.001792755676433444, 0.03936139494180679, 0.0001417163439327851, 0.040191736072301865, -0.023092005401849747, 0.016635634005069733, -0.02491995319724083, 0.02331591211259365, 0.016175543889403343, -0.009748398326337337, 0.027616912499070168, -0.010305091738700867, -0.03200168535113335, -0.009101790376007557, -0.038189392536878586, -0.0066115171648561954, -0.018484164029359818, 0.018482770770788193, -0.012584594078361988, -0.030061235651373863, -0.02600693702697754, 0.03697274252772331, -0.01203287672251463, 0.02150912582874298, -0.01585478149354458, 0.02312290109694004, 0.010860093869268894, 0.026992039754986763, 0.019035616889595985, -0.019423728808760643, 0.008037373423576355, -0.036792878061532974, 0.06414610147476196, 0.008122943341732025, -0.04844683036208153, -0.022880829870700836, -0.013601398095488548, -0.05084169656038284, 0.02853512018918991, 0.030202243477106094, -0.04614946246147156, -0.0184423066675663, 0.014276815578341484, -0.008041070774197578, 0.013768061064183712, -0.008093402720987797, -0.02616703137755394, -0.02445988543331623, 0.05188922956585884, 0.02162921242415905, -0.05529085546731949, 0.0190019179135561, -0.04828380048274994, 0.03376594930887222, 0.05528433993458748, -0.02117215096950531, -0.03971903771162033, -0.03814783692359924, -0.01184924878180027, -0.02291514165699482, 0.01474152784794569, 0.02877718210220337, 0.02351990155875683, -0.01229175366461277, -0.039239123463630676, 0.06740199029445648, 0.025287315249443054, 0.0007280180579982698, -0.018196169286966324, 0.023553408682346344, -0.003879579482600093, 0.008350002579391003, 0.017794793471693993, 0.0008368788985535502, -0.02749466523528099, 0.014803407713770866, -0.049192704260349274, 0.004614327102899551, -0.015153058804571629, 0.011357233859598637, 0.003963820170611143, 0.0025912406854331493, 0.03981563076376915, 0.033002015203237534, -0.03510841354727745, -0.001598728820681572, 0.00812991801649332, 0.0383627712726593, -0.07342484593391418, -0.025441572070121765, 0.05194035917520523, -0.006786774843931198, -0.004031475633382797, 0.02547500655055046, 0.03376977518200874, -0.0087360804900527, 0.046440523117780685, 0.029800258576869965, -0.0349980928003788, -0.00815375056117773, -0.046495527029037476, -0.00843828171491623, -0.04106398671865463, -0.02358262985944748, 0.040227752178907394, 0.0038867525290697813, 0.04037174955010414, -0.02351161651313305, -0.01982880011200905, -0.03748243302106857, -0.06275118142366409, -0.0210659671574831, 0.02597622387111187, -0.010897000320255756, -0.00696718180552125, 0.007377801928669214, -0.007720489986240864, -0.017190350219607353, -0.02123098261654377, 0.03226731717586517, -0.021634096279740334, -0.04709609970450401, 0.0006357643869705498, 0.03940461203455925, 0.009186365641653538, 0.002567223273217678, -0.018870174884796143, -0.04882390797138214, -0.005215106066316366, 0.013025270774960518, -0.030200272798538208, -0.04649992287158966, 0.016937363892793655, -0.011010837741196156, -0.03553805127739906, -0.005830544512718916, 0.008853839710354805, -0.022389980033040047, 0.0029978640377521515, 0.01737157069146633, -0.007755013182759285, 0.023383814841508865, -0.004603994078934193, -0.021631017327308655, 0.05595555156469345, 0.019412020221352577, -0.05384108051657677, -0.03408583253622055, 0.035342734307050705, -0.01049331296235323, 0.04512998089194298, 0.013915960676968098, -0.01984649896621704, -0.06021955609321594, -0.061871472746133804, -0.030847979709506035, -0.0634678304195404, -0.006289951968938112, -0.04393041506409645, -0.01969618909060955, -0.029125722125172615, 0.021419458091259003, -0.012576141394674778, -0.01242652628570795, 0.020740194246172905, -0.03544501215219498, 0.004331081174314022, -0.022358674556016922, -0.033667463809251785, -0.006658150348812342, -0.023192105814814568, -0.0019880379550158978, 0.03739676624536514, 0.009420309215784073, 0.004642071668058634, -0.011517236940562725, 0.034344032406806946, 0.008722890168428421, -0.027082355692982674, -0.05845428258180618, -0.019338296726346016, 0.008833707310259342, -0.028583407402038574, -0.006472676992416382, 0.005545282270759344, -0.039856187999248505, 0.058404527604579926, -0.03980622440576553, -0.0127229830250144, -0.0027942946180701256, -0.02884233370423317, 0.016728084534406662, -0.01560300588607788, 0.04400928318500519, 0.016439184546470642, 0.0017330814152956009, -0.0121345529332757, 0.0527225062251091, 0.031648311764001846, -0.008588459342718124, -0.024842947721481323, -0.03404677286744118, -0.04608866199851036, -0.031570274382829666, 0.031456250697374344, -0.026749692857265472, -0.027759717777371407, -0.015480386093258858, -0.02651260234415531, 0.027793992310762405, 0.0021891866344958544, 0.042817372828722, 0.03663370758295059, 0.004819969180971384, 0.0007463656947948039, -0.028377998620271683, 0.04161182418465614, 0.026324983686208725, 0.02878352627158165, -0.007649881299585104, -0.003976734820753336, -0.0231863372027874, -0.0037353544030338526, -0.028905941173434258, -0.030872436240315437, -0.07065979391336441, -0.013130443170666695, 0.05916991084814072, -0.02667938359081745, 0.035571031272411346, -0.020960116758942604, -0.06167524307966232, -0.024422600865364075, 0.044349223375320435, 0.017872167751193047, 0.02253069169819355, 0.08056546747684479, 0.021104207262396812, -0.030063863843679428, 0.014854121953248978, 0.015760209411382675, -0.001913798158057034, -0.050278350710868835, 0.04906721040606499, -0.011019441299140453, -0.042753007262945175, 0.03441793471574783, 0.06736741214990616, -0.03259056806564331, -0.026741553097963333, 0.01600884459912777, -0.025159046053886414, 0.016448574140667915, -0.0413859561085701, 0.014932774007320404, -0.02237393520772457, -0.015223920345306396, 0.019897015765309334, 0.01974652335047722, 0.019641395658254623, 0.045854490250349045, 0.0003910990199074149, 0.04284057393670082, -0.048912689089775085, 0.013521727174520493, 0.02311183139681816, -0.027294661849737167, -0.05433620885014534, -0.030093003064393997, -0.010244756937026978, 0.0025050302501767874, -0.00605458440259099, 0.032573942095041275, -0.0180059801787138, 0.024854911491274834, 0.03606273606419563, 0.012216802686452866, 0.03368701413273811, -0.010006115771830082, -0.028475726023316383, 0.028936563059687614, -0.03544040024280548, -0.04418988898396492, -0.030541598796844482, 0.014432881958782673, 0.005713658407330513, 0.031315844506025314, -0.020346535369753838, -0.005657178349792957, 0.026380956172943115, -0.0028309982735663652, 0.010904030874371529, -0.0381951741874218, -0.036269377917051315, -0.05419202148914337, -0.030303770676255226, -0.03392154350876808, -0.008106321096420288, -0.0034764569718390703, 0.03549494594335556, -0.014371892437338829, -0.04853005334734917, 0.033471714705228806, 0.007541113533079624, -0.020509202033281326, 0.011049298569560051, -0.027997802942991257, 0.030270453542470932, -0.05695638060569763, -0.0539335198700428, -0.019901545718312263, -0.02602449059486389, -0.006475273985415697, 0.011961184442043304, -0.043760087341070175, 0.011173653416335583, -0.0018657272448763251, 0.04074830189347267, 0.005258253775537014, 0.011854715645313263, -0.02201985940337181, -0.04023445397615433, -0.013313856907188892, 0.02995211072266102, 0.008172357454895973, 0.027808990329504013, 0.05640123784542084, 0.018047120422124863, 0.04323809593915939, -0.014316663146018982, -0.02768760919570923, 0.004393582232296467, 0.012126918882131577, 0.020225465297698975, 0.02093077078461647, -0.05944505333900452, 0.0016402715118601918, -0.005362967494875193, -0.04979153349995613, 0.029269063845276833, -0.027336690574884415, 0.02112460508942604, 0.0310211144387722, -0.029160672798752785, -0.01148621179163456, 0.08690198510885239, 0.0013819511514157057, 0.04600531607866287, 0.01230565458536148, 0.05897592008113861, -0.00654425797984004, 0.020770737901329994, 0.0007713160011917353, 0.0325675830245018, 0.03872912749648094, -0.021912051364779472, 0.04419590160250664, -0.003999367356300354, -0.0423821397125721, 0.04155883565545082, -0.0029178978875279427, -0.05623704940080643, -0.03655243664979935, -0.0048421951942145824, -0.006680223625153303, 0.04729890823364258, 0.034395113587379456, 0.0022211112082004547, 0.03560450300574303, -0.021351823583245277, -0.04366520792245865, 0.0056287795305252075, -0.05554452911019325, -0.04688692092895508, 0.02091282047331333, -0.05096736550331116, -0.0006530314567498863, -0.01376042515039444, -0.03592810779809952, 0.011544497683644295, -0.014328093267977238, 0.002239260356873274, 0.0007928499835543334, 0.0366094708442688, -0.02578626200556755, 0.05187506601214409, -0.03196994215250015, 0.01052865944802761, 0.021656149998307228, 0.04735954478383064, -0.03675762936472893, -0.0544186607003212, 0.001949848374351859, 0.04383964464068413, 0.01052344311028719, 0.0043756053782999516, 0.015893658623099327, 0.01735808327794075, -0.00694608548656106, 0.02607227861881256, -0.022350097075104713, 0.010731849819421768, -0.012475616298615932, 0.017476143315434456, -0.00300778285600245, -0.006135689560323954, -0.027852799743413925, 0.021944357082247734, 0.0029629417695105076, -0.0513315387070179, -0.07111707329750061, 0.05753031745553017, 0.02075466699898243, -0.01900313049554825, 0.034643564373254776, 0.01733308844268322, 0.026553746312856674, 0.01072403509169817, -0.0009121486800722778, -0.033900052309036255, 0.044386085122823715, 0.028012918308377266, 0.02457283064723015, -0.000963888072874397, 0.009689675644040108, 0.036768220365047455, 0.003773523960262537, -0.002383967861533165, 0.06880204379558563, 0.011732134968042374, -0.03404469043016434, -0.01768926903605461, -0.03425239771604538, 0.01896127127110958, 0.017532378435134888, 0.0012420123675838113, 0.03225422278046608, -0.04418042302131653, 0.002051380230113864, -0.03260225057601929, -0.038112517446279526, 0.03982274979352951, -0.03917369991540909, 0.01643868163228035, 0.013139750808477402, 0.0002118476841133088, -0.009529962204396725, 0.04152530059218407, 0.00925307348370552, 0.03013749048113823, 0.0357043519616127, 0.01238968875259161, -0.014819161966443062, 0.042061299085617065, -0.004339377395808697, 0.020349597558379173, -0.019275197759270668, 0.003964650444686413, 0.0013075777096673846, -0.005213662050664425, -0.029855845496058464, -0.00038295111153274775, -0.03813842311501503, 0.021746065467596054, -0.04259395971894264, -0.01850372552871704, 0.02705245465040207, -0.049009058624506, 0.006922959815710783, -0.04792303219437599, 0.042914923280477524, -0.02800481580197811, -0.013904293067753315, 0.04046742245554924, -0.004928598180413246, -0.01600329764187336, 0.028413189575076103, -0.0046137357130646706, 0.032659754157066345, 0.012013837695121765, 0.03908059746026993, -0.044331930577754974, 0.02741817943751812, 0.044404931366443634, -0.049904026091098785, -0.02256881259381771, 0.009720904752612114, -0.008043832145631313, -0.02611488290131092, -0.019547125324606895, -0.019674500450491905, -0.024329891428351402, -0.01826077327132225, -0.020398223772644997, -0.007262513041496277, 0.05070697143673897, -0.0036559475120157003, -0.059884823858737946, 0.016129519790410995, 0.03929566964507103, -0.04679161310195923, 0.013889618217945099, 0.022916140034794807, 0.032663747668266296, -0.00872410461306572, 0.015728356316685677, -0.025025418028235435, -0.03170369565486908, 0.0036420433316379786, -0.03460729867219925, 0.022145802155137062, -0.029083991423249245, -0.006182155571877956, -0.0408613383769989, -0.03700324892997742, -0.01692832075059414, -0.026154490187764168, -0.01234824676066637, -0.03730536252260208, 0.027544105425477028, 0.06036242097616196, -0.008027388714253902, 0.019061075523495674, -0.025092532858252525, -0.023058177903294563, 0.045830849558115005, 0.06685792654752731, -0.010524092242121696, 0.027634460479021072, 0.016284063458442688, -0.0013391704997047782, 0.024921776726841927, -0.02458328939974308, 0.03024951182305813, -0.021412869915366173, -0.014532946050167084, -0.03652733191847801, 0.008675526827573776, -0.024638494476675987, -0.04506359621882439, -0.015160396695137024, 0.02535582147538662, 0.011789479292929173, -0.06598631292581558, -0.06561904400587082, 0.0033627538941800594, -0.025455467402935028, -0.019123924896121025, -0.05533065274357796, 0.008178153075277805, 0.024663185700774193, -0.005531683564186096, -0.027153467759490013, -0.054108310490846634, 0.14844632148742676, 0.01868642494082451, 0.051160652190446854, 0.01930028200149536, 0.03694261983036995, 0.06778112053871155, 0.03793736547231674, -0.020635174587368965, -0.008102909661829472, -0.03711017966270447, 0.03408978134393692, 0.0272479597479105, 0.03567468374967575, 0.038078270852565765, 0.029422253370285034, 0.06857968866825104, -0.05544537305831909, -0.017085140570998192, 0.05170084536075592, -0.032840367406606674, -0.07451959699392319, 0.008752408437430859, 0.02993187867105007, 0.03208975866436958, -0.0004916558391414583, 0.019506754353642464, -0.005990265402942896, -0.01741609163582325, -0.03445615991950035, -0.011556711047887802, 0.026251336559653282, -0.011199114844202995, 0.03709354251623154, -0.003616977483034134, -0.05689883232116699, 0.07376234233379364, 0.017367476597428322, -0.010050288401544094, 0.03926181048154831, 0.024736300110816956, -0.012063619680702686, -0.012990315444767475, 0.04630660638213158, -0.03492806851863861, 0.028374718502163887, 0.03660003840923309, -0.003920138347893953, -0.0008473387570120394, -0.004793040454387665, -0.03917909413576126, 0.04867548495531082, -0.01917104423046112, 0.0384976863861084, 0.005641291383653879, -0.02794594131410122, 0.016582639887928963, 0.01728728599846363, -0.04040226340293884, -0.014225486665964127, 0.016042985022068024, 0.031045125797390938, -0.003950389102101326, -0.027077337726950645, 0.02094711922109127, -0.053503748029470444, 0.015747662633657455, -0.005140282213687897, 0.004770476836711168, -0.01949908398091793, -0.02863447368144989, -0.013376601971685886, -0.023949040099978447, -0.020787255838513374, -0.027355996891856194, 0.009554051794111729, 0.025642966851592064, -0.022670842707157135, 0.06891874223947525, -0.011335541494190693, -0.01912090741097927, -0.021728739142417908, -0.04912218078970909, -0.018415290862321854, 0.002481598174199462, 0.014451287686824799, 0.012335948646068573, -0.027838464826345444, -0.016692567616701126, -0.011211875826120377, 0.05558175593614578, 0.03255531191825867, 0.03948979452252388, -0.025720851495862007, -0.0015998849412426353, 0.008163709193468094 ]
Nike's New Interactive NBA Jerseys Are Genius On Multiple Levels By Brendan Menapace Interactive, technology-influenced athleisure has been making waves in the apparel world for the last few years, as athletic-minded people want something that they can wear comfortably while they exercise or compete, but also something that helps them track their progress and health. With the NBA's switch to Nike uniforms, the league is trying out a new program where fans can immerse themselves in an interactive experience with their favorite teams and players. ESPN's Darren Rovell broke down how the whole process works: In order to connect, fans with an iPhone 7 and Android device with [near-field communication] capability have to download the app and connect it to a NikePlus account, which identifies who they are. Fans can then scan in at any time. The app counts down until the team's next tipoff, updates that specific player's stats within a game if it's in progress and refreshes new highlights 30 minutes after a game's end. The feature also has benefits for video game fans, too. Let's say we buy a Joel Embiid jersey (because we trust the process). When we scan in, we'd get a "boost" code that helps Embiid's stats increase in NBA 2k18. This is a smart move by Nike. It combines the hype around the NBA season in general, as fans always want to buy gear representing their favorite teams and players, but it adds a connection to app-based advertising and content, and even overflows into video gaming, which typically has no connection to broadcast or internet content. Brad Rowland of Uproxx summed it up nicely: Fans were already going to buy the new Nike jerseys in bulk, but with this bit of innovation, it is a safe bet to assume there will be a new level of interest in picking them up sooner rather than later. Nike has already been unveiling several special edition "statement" jerseys that will be available this season, including the Warriors' "The Town" jersey and a uniform honoring the Cavs' games 5 and 7 of the 2016 Finals. We can also see how this could work in other sports. You could track your favorite NFL players' fantasy point total in real time. You can see the amount of ground your favorite soccer player has covered in a single game. Heck, you could even see how many bubbles Bryce Harper has blown with his bubble gum in a single inning. Most of all, this signals the fact that technology and athleisure products are now joined at the hip, and that trend is only going to increase as we see more technological advancements. E Brendan Menapace Author's page Brendan Menapace is the senior digital editor for Promo Marketing. While writing and editing stories come naturally to him, writing his own bio does not. 'Bulletproof' T-shirt Finds Tesla Poking Fun at Its Own Cybertruck Mishap 2020 Vision: Looking Into the (Near) Future of Promo Apparel Trends and Styles SanMar Introduces District Re-Tee Made From 100% Recycled Fabric Trimark Announces Launch of 2020 Spring Collection
[ -0.007032121531665325, 0.009030589833855629, -0.0250607468187809, 0.03308907896280289, 0.0037072929553687572, -0.005144086200743914, 0.01709176041185856, 0.012643718160688877, 0.047128964215517044, 0.03424254432320595, 0.020424524322152138, 0.00945403054356575, 0.019639333710074425, -0.02317090705037117, -0.00914457906037569, -0.0025272793136537075, -0.025827085599303246, -0.045507825911045074, -0.01261841133236885, -0.011691315099596977, 0.0049539548344910145, 0.0471046008169651, -0.07057419419288635, -0.05539735034108162, -0.017974453046917915, 0.04490070044994354, -0.006224614568054676, -0.014096892438828945, 0.05334887653589249, 0.04027056321501732, -0.006528547499328852, -0.023911811411380768, 0.04241910204291344, -0.07149064540863037, -0.030532311648130417, -0.021593276411294937, 0.03631827235221863, -0.004056063946336508, -0.05357487499713898, -0.029384415596723557, 0.036650996655225754, -0.009351866319775581, 0.021667324006557465, -0.031890977174043655, -0.05205598473548889, -0.007114797830581665, -0.0035938136279582977, -0.04113011434674263, 0.025119327008724213, -0.041898004710674286, -0.006047388538718224, -0.013280144892632961, 0.020181650295853615, -0.0013573014875873923, -0.009950803592801094, 0.011064841412007809, 0.01714327745139599, -0.007718823384493589, -0.052289966493844986, 0.035537660121917725, 0.014811602421104908, -0.022788146510720253, 0.03513336926698685, -0.04250817000865936, 0.019564731046557426, -0.017792006954550743, 0.0009592527057975531, -0.02869122289121151, 0.01791808381676674, -0.01571282185614109, 0.018460389226675034, 0.019793067127466202, -0.022951453924179077, -0.0379800945520401, 0.025436395779252052, 0.013459011912345886, -0.04157418757677078, -0.01535895187407732, -0.0293608158826828, -0.004060822539031506, 0.026427054777741432, 0.06199387088418007, -0.016446184366941452, 0.0024891637731343508, -0.036415357142686844, -0.0024471059441566467, -0.017475251108407974, -0.015199095010757446, 0.0009203904774039984, -0.002004383597522974, 0.006602332927286625, 0.06172424554824829, 0.018596934154629707, -0.02577238529920578, 0.03329043835401535, 0.04517877846956253, -0.021935176104307175, 0.0322749987244606, -0.01171794906258583, 0.028769884258508682, 0.012190812267363071, 0.018470734357833862, 0.024380039423704147, 0.056248441338539124, -0.011454787105321884, 0.0034122751094400883, 0.00888378731906414, -0.04263681545853615, -0.0059470827691257, -0.020678449422121048, 0.025553882122039795, -0.030037054792046547, 0.016535822302103043, -0.0000017802162801672239, -0.029799489304423332, 0.03658994659781456, -0.0031728274188935757, 0.02506231889128685, -0.04411932826042175, 0.02170201763510704, 0.012115482240915298, 0.0012646125396713614, 0.01775200106203556, -0.010477370582520962, 0.01761992834508419, -0.0334782712161541, -0.018558064475655556, 0.025358203798532486, -0.050099268555641174, -0.016466062515974045, -0.008887119591236115, -0.022830093279480934, -0.0050885616801679134, 0.026498161256313324, -0.04230126738548279, 0.048917755484580994, 0.010907523334026337, 0.026529304683208466, 0.017873620614409447, -0.05907497555017471, 0.017955536022782326, 0.015874341130256653, 0.011043286882340908, 0.0884062796831131, 0.015976721420884132, 0.03476111963391304, 0.012750876136124134, 0.00005151612640474923, -0.05595342442393303, 0.030295204371213913, -0.027221346274018288, 0.019437585026025772, -0.006877027917653322, 0.018643883988261223, 0.0015278855571523309, 0.004027061630040407, -0.0098526356741786, 0.02358742244541645, 0.024901555851101875, 0.04871867597103119, -0.014589687809348106, 0.022419743239879608, 0.00442666606977582, 0.043170616030693054, -0.006349561735987663, 0.0645851120352745, -0.07299021631479263, -0.030232520774006844, -0.020673422142863274, -0.022598523646593094, 0.0004321248270571232, 0.000975282397121191, 0.017882592976093292, 0.01165665965527296, 0.020528962835669518, 0.06103255972266197, 0.024065261706709862, 0.01639474555850029, 0.0395551398396492, 0.045674391090869904, -0.015361463651061058, 0.0034837049897760153, -0.022681357339024544, 0.0771564394235611, -0.0327187143266201, 0.02821970544755459, 0.0015782674308866262, -0.027760900557041168, -0.055422838777303696, -0.02208746038377285, -0.01895293965935707, 0.023827046155929565, -0.02607523836195469, 0.029221991077065468, -0.0147852236405015, -0.00237469095736742, -0.0006071769748814404, -0.008756298571825027, 0.00399177148938179, -0.09506875276565552, -0.015103600919246674, 0.01253508310765028, -0.04232651740312576, 0.024581924080848694, -0.008379879407584667, -0.011537200771272182, -0.00871249008923769, 0.05964450165629387, -0.06284650415182114, 0.001194923184812069, 0.034782979637384415, 0.016916027292609215, -0.008317394182085991, -0.021424267441034317, 0.0004213793727103621, -0.0396750345826149, -0.004288799595087767, 0.06952806562185287, 0.0036273710429668427, 0.016200117766857147, 0.02284904569387436, 0.006717494688928127, 0.08222165703773499, 0.0429309606552124, -0.014087270013988018, -0.002285726135596633, 0.037192873656749725, 0.04530414193868637, -0.0400700643658638, -0.020112324506044388, 0.0063912272453308105, 0.04257407784461975, 0.024392373859882355, 0.06919217854738235, 0.05019443854689598, 0.020050421357154846, 0.006561609450727701, 0.040199581533670425, -0.0017885080305859447, 0.028626730665564537, 0.007991970516741276, 0.0035249353386461735, 0.011636745184659958, 0.004493227228522301, -0.024076802656054497, 0.0168627742677927, 0.0036763609386980534, 0.007534402888268232, -0.02848944067955017, 0.0041687022894620895, -0.008671972900629044, 0.043867819011211395, 0.041292957961559296, 0.01696118526160717, -0.04813355952501297, -0.011692281812429428, 0.04383835941553116, 0.03160589188337326, 0.0004953690804541111, 0.01663997210562229, 0.004580636043101549, 0.041241806000471115, 0.01644092984497547, 0.014245867729187012, 0.025900736451148987, -0.009706927463412285, -0.010546918027102947, 0.042181652039289474, -0.02185961790382862, -0.012238278053700924, -0.05218840390443802, -0.06706342846155167, -0.04090282693505287, -0.0354386642575264, -0.055790551006793976, -0.008790812455117702, 0.035022005438804626, -0.04134532809257507, 0.02439850941300392, 0.0008677405421622097, -0.014534593559801579, -0.05205187201499939, 0.01436070166528225, 0.04519718512892723, 0.02799806371331215, 0.06624913960695267, -0.05378681793808937, 0.02512446790933609, -0.003075671847909689, 0.05464388430118561, -0.013891906477510929, 0.0320315882563591, 0.017410308122634888, -0.002656918251886964, 0.03786568343639374, -0.04353358596563339, 0.01023191586136818, -0.005174895748496056, -0.03810672461986542, -0.04438318312168121, -0.0014077125815674663, 0.021248359233140945, -0.005780832376331091, 0.008445455692708492, -0.03953709453344345, 0.057536568492650986, 0.03145064413547516, -0.02210986614227295, 0.056783076375722885, 0.042017288506031036, -0.045375756919384, 0.03842916339635849, 0.031887684017419815, 0.006216838955879211, -0.0518353246152401, 0.0450432263314724, 0.04920480027794838, 0.011283098720014095, -0.023904968053102493, -0.021678678691387177, -0.04343651980161667, 0.002039554063230753, 0.03296224772930145, 0.0015315554337576032, -0.024160487577319145, -0.00042018404928967357, 0.024383941665291786, -0.08602185547351837, 0.022148514166474342, -0.05968032777309418, -0.027527961879968643, -0.06132154166698456, -0.03818221017718315, 0.0388140007853508, 0.023496031761169434, 0.008106869645416737, 0.056627146899700165, -0.01639428362250328, 0.014105068519711494, 0.03089640662074089, 0.039928730577230453, -0.005560131277889013, 0.038107048720121384, 0.06281907856464386, 0.003666623728349805, 0.02184555120766163, 0.0028618297073990107, 0.010771841742098331, -0.012009293772280216, 0.03257061913609505, -0.022432437166571617, -0.01614590547978878, 0.01230983342975378, 0.018152693286538124, 0.004051204305142164, 0.01928582973778248, -0.0477827750146389, -0.01096187811344862, 0.0219675675034523, 0.024423856288194656, 0.0714862048625946, 0.014907860197126865, 0.011955561116337776, -0.0024131317622959614, -0.04167413339018822, -0.041925691068172455, 0.001108182012103498, 0.06301437318325043, 0.05562927573919296, -0.05209040269255638, 0.03894221782684326, 0.021870777010917664, -0.04825294390320778, 0.08486484736204147, -0.05104835331439972, -0.015608318150043488, 0.05581789091229439, -0.016798367723822594, 0.03592783957719803, -0.03226805105805397, -0.011685878038406372, 0.005834249313920736, 0.004778957925736904, -0.00452130101621151, 0.029234444722533226, 0.009161370806396008, -0.022243347018957138, -0.007233082316815853, -0.008433526381850243, -0.030223704874515533, -0.015400608070194721, -0.011524082161486149, -0.011902072466909885, -0.02433912456035614, -0.056795090436935425, -0.021668439731001854, -0.006458707619458437, 0.04317415878176689, 0.060090985149145126, 0.00432764133438468, 0.039786651730537415, -0.008029856719076633, -0.013109453022480011, 0.025000128895044327, -0.020334986969828606, -0.010657336562871933, -0.012244513258337975, 0.04034527763724327, 0.015529877506196499, -0.03282478079199791, -0.028295960277318954, -0.02269122190773487, -0.04306730255484581, 0.003044652519747615, 0.004400564823299646, -0.010880102403461933, -0.022847069427371025, 0.006433490663766861, -0.015627792105078697, 0.04038950800895691, -0.05093291029334068, -0.012724503874778748, -0.020390016958117485, 0.030206816270947456, 0.02954931929707527, -0.036765340715646744, -0.0027279432397335768, -0.03981901332736015, 0.03355133533477783, 0.05617913231253624, -0.00856055598706007, -0.03363087400794029, -0.026491351425647736, -0.05867275595664978, -0.029011117294430733, 0.022079478949308395, 0.04740588366985321, -0.029522474855184555, 0.02459646202623844, -0.04601023346185684, -0.002588046481832862, 0.021464094519615173, -0.005254420451819897, 0.005300617776811123, 0.006188410334289074, 0.01609751023352146, 0.006343494635075331, 0.035600073635578156, -0.02674774080514908, 0.00029952512704767287, 0.008474024012684822, -0.07054639607667923, 0.02886226959526539, 0.000302240950986743, -0.026902392506599426, -0.016582218930125237, 0.029035812243819237, 0.007164000999182463, 0.045318204909563065, -0.01886977069079876, 0.02278904616832733, -0.012013168074190617, 0.04402894526720047, -0.014133675023913383, -0.018925918266177177, 0.052912093698978424, -0.013726837001740932, -0.021317826583981514, 0.02332310378551483, 0.030533328652381897, -0.007928594015538692, -0.000627827481366694, 0.012830720283091068, -0.04344353824853897, 0.051691554486751556, -0.05875816196203232, 0.016127606853842735, -0.02488456480205059, -0.012407967820763588, 0.00020113011123612523, -0.051775310188531876, 0.016198744997382164, -0.00416363263502717, 0.0029290132224559784, -0.054574090987443924, -0.035319071263074875, 0.0027877390384674072, 0.015519973821938038, -0.003918755799531937, 0.05148785561323166, -0.031599704176187515, -0.024416422471404076, 0.01904682256281376, -0.023082252591848373, 0.015304437838494778, 0.01428217813372612, -0.03158280998468399, 0.004407975822687149, -0.0002580413711257279, -0.008944499306380749, -0.012923130765557289, 0.002954543801024556, -0.04921286925673485, 0.020145684480667114, -0.031622111797332764, -0.012810125946998596, -0.04733050614595413, 0.00208772299811244, -0.029651261866092682, 0.004851451609283686, -0.029241561889648438, 0.03287040814757347, -0.037050262093544006, 0.044527601450681686, 0.05277843773365021, 0.034478526562452316, -0.0009439345449209213, 0.009847617708146572, -0.051949694752693176, 0.042627964168787, -0.0038035062607377768, -0.03269466385245323, -0.05600760132074356, 0.037586651742458344, 0.010364512912929058, 0.0535823330283165, -0.009296916425228119, -0.015509013086557388, -0.0450296625494957, -0.01562255248427391, 0.024332253262400627, -0.005253884941339493, -0.008320173248648643, -0.06812413781881332, -0.03049696795642376, -0.02175646834075451, 0.05902035906910896, -0.009441179223358631, 0.001305067795328796, -0.015311923809349537, -0.0271514393389225, -0.010659479536116123, -0.03865570202469826, -0.008992517367005348, -0.0144647853448987, -0.013857724145054817, -0.0021228983532637358, 0.02826532907783985, 0.011467727832496166, 0.023882808163762093, 0.006749192718416452, 0.021617867052555084, 0.020928408950567245, -0.02180708386003971, -0.029226137325167656, -0.04648113250732422, -0.026351764798164368, -0.019234800711274147, 0.004089150112122297, -0.016794513911008835, -0.03720638528466225, 0.04304977506399155, -0.030450651422142982, -0.003190139774233103, -0.025602374225854874, 0.01955932006239891, -0.006907157599925995, -0.016529442742466927, 0.034731607884168625, -0.04673414304852486, -0.004084682557731867, -0.034606557339429855, 0.06066431850194931, 0.044732216745615005, 0.029971228912472725, -0.026261834427714348, -0.018848437815904617, -0.04466266185045242, -0.05795744061470032, 0.024855226278305054, -0.01748756505548954, -0.008763661608099937, -0.0479142963886261, -0.015916645526885986, 0.06593243032693863, -0.002540987217798829, 0.05135960131883621, 0.059519995003938675, 0.011127108708024025, -0.00836510956287384, -0.004458126146346331, -0.015780184417963028, 0.028032120317220688, 0.016255129128694534, 0.02037600614130497, -0.03479781746864319, -0.03334729000926018, -0.001290409592911601, -0.06501588225364685, -0.03224731236696243, -0.05108878016471863, -0.003293906804174185, 0.06280232220888138, -0.06262660026550293, 0.054191261529922485, -0.012312880717217922, -0.07184398919343948, -0.05191628262400627, 0.03316847234964371, 0.01404520869255066, 0.006147174630314112, 0.04183536022901535, 0.024660220369696617, -0.020404083654284477, -0.007380974013358355, 0.02343013882637024, -0.022092187777161598, -0.038017380982637405, 0.05216069146990776, -0.0072158509865403175, -0.029136547818779945, 0.042835135012865067, 0.04003039002418518, -0.07895137369632721, -0.03935549035668373, 0.02010956220328808, -0.015333862043917179, 0.02100032940506935, -0.029998404905200005, 0.005629270803183317, -0.01217284332960844, -0.0038409866392612457, 0.0009813166689127684, 0.02343031018972397, -6.465434125857428e-7, 0.03458691015839577, -0.005624400917440653, 0.026565441861748695, -0.05180883780121803, -0.005866301711648703, 0.006815667264163494, -0.010159698314964771, -0.01604570634663105, -0.05357472598552704, -0.0002841016976162791, -0.009823167696595192, -0.018038306385278702, 0.06483513861894608, 0.024533573538064957, -0.010976185090839863, 0.034370288252830505, -0.0026596980169415474, 0.021849680691957474, 0.005663307383656502, -0.02550029754638672, -0.00717399874702096, 0.0023355393204838037, -0.03607737272977829, -0.03897574543952942, 0.02072538249194622, 0.009648610837757587, 0.030659144744277, -0.05160635709762573, -0.005508334841579199, 0.052053894847631454, -0.00013316812692210078, -0.010946094058454037, -0.041568487882614136, -0.04905771091580391, -0.0252494178712368, -0.058775972574949265, -0.017213482409715652, -0.01696588657796383, -0.01197913195937872, 0.03176485002040863, 0.04196036979556084, -0.02110569179058075, 0.0032092398032546043, 0.018461506813764572, -0.024526052176952362, -0.010371929034590721, -0.033686377108097076, 0.02406500279903412, -0.03983164578676224, -0.02645082212984562, -0.04312378913164139, -0.0032751557882875204, -0.04662885516881943, -0.012454125098884106, -0.014971361495554447, 0.020181473344564438, -0.003473361488431692, 0.017223946750164032, -0.013158016838133335, 0.030455393716692924, 0.00030277768382802606, -0.04285188019275665, -0.02188197150826454, 0.05184786021709442, -0.03357848897576332, 0.013755838386714458, 0.05465767905116081, -0.02834790013730526, 0.03674796596169472, -0.018459614366292953, -0.025529077276587486, -0.04170510917901993, 0.040909409523010254, -0.012199164368212223, -0.002027490409091115, -0.04088640585541725, -0.04506615921854973, -0.019695106893777847, -0.022775927558541298, 0.03471682220697403, 0.028061382472515106, -0.01585252955555916, 0.0044359732419252396, -0.026378903537988663, -0.014674805104732513, 0.06668658554553986, 0.015308619476854801, 0.026581548154354095, -0.02227342128753662, 0.024641120806336403, 0.03274715691804886, -0.011214051395654678, 0.0458020381629467, 0.04794963821768761, 0.01221286877989769, -0.06409306079149246, 0.021764911711215973, -0.010896338149905205, -0.01386992447078228, 0.02564189024269581, 0.01395235862582922, -0.04673320800065994, -0.0606362409889698, -0.02136230282485485, 0.007390918675810099, 0.02135339006781578, 0.01795990578830242, 0.04154777526855469, 0.041192326694726944, -0.018898529931902885, -0.024596069008111954, 0.0015389282489195466, -0.07862864434719086, -0.015970639884471893, 0.04598814621567726, -0.01783040724694729, -0.026069315150380135, -0.010909396223723888, -0.013540765270590782, 0.02573143132030964, 0.006511349231004715, -0.024007340893149376, -0.04443012923002243, 0.030831901356577873, 0.0011569969356060028, 0.013318408280611038, -0.009342973120510578, -0.032315921038389206, 0.038951754570007324, 0.047932881861925125, -0.03889164328575134, -0.05173873528838158, 0.020166441798210144, 0.01784645952284336, 0.004131220281124115, -0.01635034941136837, -0.03912978246808052, 0.021545158699154854, 0.026755524799227715, -0.009271913208067417, -0.010516040027141571, 0.013826587237417698, -0.040884848684072495, 0.039003629237413406, -0.023874010890722275, 0.004335982725024223, -0.010187193751335144, 0.022610517218708992, 0.022357197478413582, -0.008473377674818039, 0.005181213840842247, 0.039301589131355286, 0.045250654220581055, -0.02608562260866165, 0.0548681765794754, 0.015080083161592484, 0.015685537829995155, -0.029512295499444008, 0.006838879082351923, 0.005780789535492659, 0.02556009031832218, 0.045002199709415436, 0.036396000534296036, 0.008260471746325493, 0.014263922348618507, 0.045121341943740845, 0.0013866914669051766, 0.029800081625580788, 0.030000824481248856, 0.027281684800982475, -0.042593758553266525, 0.010447267442941666, -0.03356656804680824, 0.0325622484087944, -0.017232900485396385, -0.0023782928474247456, -0.03197956830263138, -0.003802109509706497, -0.0006182417273521423, 0.03071259707212448, -0.006286371033638716, 0.021934913471341133, -0.02914559282362461, 0.017556315287947655, 0.002344819949939847, -0.0074065369553864, -0.039985835552215576, 0.03498835489153862, 0.017443399876356125, 0.00008157168485922739, 0.008841506205499172, 0.017211060971021652, -0.016939202323555946, 0.06210479885339737, 0.025916675105690956, 0.01691620424389839, -0.011764352209866047, 0.013985658064484596, 0.03757527098059654, -0.01710023544728756, -0.024977214634418488, 0.006336177699267864, -0.03828251361846924, 0.039210863411426544, -0.008193734101951122, -0.015202638693153858, 0.03470271825790405, -0.031248534098267555, -0.03281044214963913, -0.056412871927022934, 0.038078561425209045, -0.02696964144706726, -0.018756980076432228, 0.006518429610878229, -0.015580980107188225, -0.02449178509414196, 0.0544416569173336, -0.02448495849967003, 0.0590912364423275, -0.0027947358321398497, 0.031020697206258774, 0.0059230998158454895, 0.06311153620481491, 0.05108122155070305, -0.03564327582716942, 0.002553092548623681, 0.02710745483636856, 0.007824898697435856, -0.030255893245339394, -0.006707226391881704, -0.048487208783626556, 0.02071978524327278, -0.01009122934192419, -0.014501797035336494, -0.003107602009549737, 0.05676063522696495, -0.00205378420650959, -0.047673340886831284, -0.015504992567002773, 0.04839427396655083, -0.02640487439930439, 0.027374139055609703, -0.0038723936304450035, -0.00010270336497342214, 0.0023759366013109684, -0.02146252617239952, -0.02384236454963684, -0.03887574002146721, -0.007078041322529316, -0.05451751500368118, 0.03938288986682892, -0.03153371065855026, -0.018410759046673775, 0.0093527315184474, -0.04349709674715996, -0.035549528896808624, 0.015792647376656532, -0.045035604387521744, -0.04666108265519142, 0.025201404467225075, 0.030109267681837082, 0.0322391614317894, 0.014785431325435638, -0.0009246594272553921, -0.015633828938007355, 0.04387883469462395, 0.06059897691011429, 0.015968693420290947, 0.047992363572120667, 0.050398509949445724, 0.002789183519780636, 0.010958828032016754, -0.033819779753685, 0.02519846148788929, -0.04102420434355736, -0.005581309553235769, -0.0316014438867569, 0.013568980619311333, -0.017172744497656822, -0.06757214665412903, -0.013490255922079086, 0.006976834032684565, 0.0070115807466208935, -0.006471030414104462, -0.04874933883547783, 0.0006090860115364194, -0.015264366753399372, -0.02474990300834179, -0.035503089427948, 0.027626823633909225, 0.026309022679924965, 0.017806516960263252, 0.013933650217950344, -0.0821317508816719, 0.15393511950969696, 0.02773531712591648, 0.027782924473285675, 0.0022612097673118114, 0.005384001415222883, 0.0752638727426529, 0.017957644537091255, 0.03354630619287491, -0.011755147017538548, -0.006810413673520088, -0.003079625777900219, -0.001782540581189096, 0.027058875188231468, 0.03199315443634987, 0.005808842368423939, 0.04217007756233215, -0.029324719682335854, 0.00013221627159509808, -0.005011232104152441, -0.04318945109844208, -0.053884994238615036, 0.009306811727583408, 0.020515868440270424, -0.004451056942343712, 0.0014000155497342348, 0.02392398566007614, -0.015184801071882248, -0.03340289369225502, -0.010900977067649364, -0.009397158399224281, 0.035316649824380875, -0.010625526309013367, 0.00736261298879981, -0.002761314157396555, -0.03586600348353386, 0.048154715448617935, 0.017326289787888527, -0.027613701298832893, -0.027799254283308983, 0.03102112002670765, -0.005584963131695986, -0.03445127606391907, -0.006234376225620508, -0.04444508254528046, 0.004670682363212109, 0.01304281409829855, -0.04924635961651802, 0.0033981851302087307, -0.0012826196616515517, -0.04439079761505127, 0.045068658888339996, -0.041389159858226776, 0.050643403083086014, -0.024753980338573456, -0.009968400001525879, 0.01568855531513691, -0.02042359858751297, -0.023777851834893227, 0.010816801339387894, 0.011096321977674961, 0.03232455998659134, -0.017517024651169777, -0.02056003361940384, -0.0017529006581753492, -0.03446367383003235, 0.004692641086876392, 0.0143205551430583, 0.01937803067266941, 0.015279165469110012, -0.02925010584294796, -0.021967053413391113, -0.0016249530017375946, 0.0033928505145013332, -0.031148113310337067, 0.02522372640669346, -0.028198540210723877, -0.015352453105151653, 0.03998986631631851, -0.024719005450606346, -0.05207756906747818, -0.023533619940280914, -0.011127296835184097, 0.014374581165611744, -0.035850659012794495, 0.023627588525414467, 0.041890524327754974, -0.05408291891217232, -0.04036031290888786, 0.00876612775027752, 0.04604214057326317, 0.050966762006282806, 0.02823200263082981, -0.026583900675177574, -0.018773922696709633, -0.014628824777901173 ]
Who's Your One: His Story, Our Hope - Duration: 24 minutes. Rescued By Grace! - Duration: 34 minutes. "The Countdown Is On" - Duration: 22 minutes. "Parenting: The Ordained Means of Influence" - Duration: 28 minutes. "The DNA Of A Disciple: Standing Strong" - Duration: 28 minutes. "The DNA Of A Disciple: Giving Our Best" - Duration: 30 minutes. "The DNA Of A Disciple: Walking Worthy At Home" - Duration: 26 minutes. "The Greatest Shining Moment" - Duration: 30 minutes. "What Do You Believe About Jesus" - Duration: 40 minutes. "The DNA Of A Disciple: Doing What Pleases Christ" - Duration: 29 minutes. "The DNA Of A Disciple: A Henceforth Life" - Duration: 29 minutes. "The DNA Of A Disciple: Gifted To Serve" - Duration: 34 minutes.
[ 0.02634325996041298, -0.0019051074050366879, -0.015994226559996605, 0.018040403723716736, -0.010015495121479034, 0.003202998312190175, -0.033519309014081955, 0.03764708340167999, 0.0314943753182888, -0.016321169212460518, 0.02173304557800293, 0.011194664984941483, 0.0258451160043478, -0.020679185166954994, -0.01771075837314129, -0.043563053011894226, -0.013250406831502914, -0.02705460973083973, -0.02909676916897297, -0.014290508814156055, -0.005826417822390795, 0.013496214523911476, -0.051889657974243164, -0.009585007093846798, -0.016919095069169998, 0.007529969792813063, -0.008357170969247818, -0.002056171651929617, 0.05322276055812836, 0.057445116341114044, -0.044525645673274994, -0.04299766570329666, 0.0208747461438179, -0.07097884267568588, -0.02477867528796196, -0.018763218075037003, 0.04056325927376747, -0.018316684290766716, -0.02544351853430271, -0.056493889540433884, 0.008349922485649586, -0.01685611717402935, 0.04847271740436554, -0.010838602669537067, -0.06806746870279312, -0.021588068455457687, -0.008313904516398907, -0.004525506868958473, -0.01837596856057644, -0.014192628674209118, 0.031761135905981064, -0.010487626306712627, 0.00484461197629571, -0.02070981077849865, 0.05036234110593796, 0.024045255035161972, -0.0021156829316169024, 0.0036794778425246477, -0.015708744525909424, 0.03770794719457626, 0.0015043789753690362, 0.010664943605661392, 0.025169184431433678, -0.05131888389587402, 0.01152259111404419, 0.03134875372052193, -0.01963164284825325, -0.015173339284956455, 0.014131213538348675, -0.015398680232465267, -0.0007856929441913962, 0.007425539195537567, -0.0008012153557501733, -0.01654445193707943, 0.014266985468566418, -0.015197104774415493, 0.02468809112906456, 0.005379305686801672, 0.003626621328294277, 0.0006670334259979427, 0.013033559545874596, 0.0720423087477684, 0.028760714456439018, 0.017315182834863663, -0.07561308145523071, -0.040628381073474884, -0.017908498644828796, 0.008199607022106647, -0.0018877101829275489, 0.013523795641958714, -0.02111012116074562, 0.06686258316040039, -0.0005893197376281023, -0.027014805004000664, 0.04103301092982292, 0.025930723175406456, -0.036431919783353806, 0.01587040349841118, -0.004248328972607851, -0.021143393591046333, 0.037464119493961334, 0.03335229307413101, -0.015924276784062386, 0.03956364467740059, -0.0625593513250351, -0.019498063251376152, 0.006406959146261215, -0.036082860082387924, -0.0385456383228302, -0.05901592597365379, 0.006105766166001558, -0.036449581384658813, 0.043214328587055206, 0.021756714209914207, -0.0015989948296919465, 0.06590180844068527, -0.019587978720664978, 0.047645583748817444, -0.038706544786691666, 0.028953328728675842, 0.03789110481739044, -0.0017072060145437717, 0.04273470863699913, -0.03467164933681488, 0.02088056690990925, -0.028432998806238174, -0.05288401246070862, 0.0074516707099974155, -0.024728143587708473, -0.0048744394443929195, -0.005175668280571699, -0.043517839163541794, 0.015299424529075623, 0.020937807857990265, -0.01496550627052784, 0.016262700781226158, 0.014459804631769657, 0.021991578862071037, 0.04755910858511925, -0.07411179691553116, 0.046203065663576126, 0.026570238173007965, -0.021445181220769882, 0.0931096076965332, 0.0088052311912179, 0.02905713953077793, -0.01901608519256115, -0.007985670119524002, -0.0373210646212101, 0.04460855945944786, -0.007085778750479221, 0.04883474111557007, -0.014283772557973862, 0.008510435000061989, -0.007716430351138115, -0.007145528681576252, 0.0032547274604439735, 0.005454729311168194, 0.018549028784036636, 0.01601880043745041, 0.008991207927465439, 0.01015433855354786, -0.013604183681309223, 0.05366624519228935, -0.020035473629832268, 0.04629343003034592, -0.009426421485841274, -0.006490969564765692, -0.004020082298666239, -0.029626742005348206, 0.03219868615269661, -0.020488176494836807, -0.019999057054519653, 0.01297054998576641, 0.02333177998661995, 0.03204742446541786, 0.0370318703353405, -0.019599391147494316, 0.04238056391477585, 0.025904014706611633, -0.02749193273484707, 0.017471464350819588, 0.01703362911939621, 0.06445258855819702, -0.001323821721598506, -0.0029096687212586403, -0.0019838844891637564, -0.009429634548723698, -0.06404534727334976, -0.0287900622934103, -0.03503965958952904, 0.04461036995053291, -0.019399894401431084, 0.030879613012075424, 0.025522269308567047, -0.00988022144883871, -0.002762043848633766, -0.01879333145916462, -0.02619432657957077, -0.0583028681576252, -0.02041187323629856, 0.034334566444158554, -0.020360194146633148, 0.04932558536529541, -0.022875593975186348, -0.012619268149137497, 0.016742398962378502, 0.05805647745728493, -0.014487414620816708, -0.012216715142130852, 0.059012316167354584, 0.012524457648396492, -0.009566877037286758, -0.004900405183434486, 0.0017724087228998542, -0.03686206787824631, -0.020166611298918724, 0.0499999113380909, -0.017199985682964325, -0.015364889986813068, 0.015923015773296356, 0.0029939732048660517, 0.047404736280441284, 0.029071856290102005, 0.018679026514291763, -0.01555088721215725, 0.020139960572123528, 0.05492078885436058, -0.05144433677196503, -0.01805761270225048, -0.006497712805867195, 0.053601160645484924, 0.03130596876144409, 0.05106855928897858, 0.030482057482004166, 0.06354313343763351, -0.006196514703333378, 0.0336751788854599, -0.0257559921592474, 0.029646512120962143, 0.021864239126443863, -0.02702486515045166, 0.049892403185367584, 0.021031362935900688, -0.008885667659342289, 0.03260369598865509, -0.00242502149194479, -0.005180657375603914, -0.02478102408349514, 0.03588651120662689, 0.0043337224051356316, 0.03707462549209595, 0.0489603616297245, 0.026697004213929176, -0.016706446185708046, -0.02177688479423523, 0.07067534327507019, 0.06291482597589493, -0.012396151199936867, 0.0032526664435863495, 0.011060237884521484, 0.02591916359961033, -0.020801963284611702, 0.012853902764618397, 0.028184372931718826, 0.011562531813979149, 0.0148160420358181, 0.040608491748571396, 0.015277236700057983, -0.04536323621869087, -0.02297409623861313, -0.08299263566732407, -0.04407778009772301, -0.037743207067251205, -0.0457393117249012, 0.006759163923561573, 0.03723078593611717, -0.04326489940285683, 0.029715079814195633, -0.01999850757420063, -0.0009961177129298449, -0.031065808609128, -0.014580284245312214, 0.04342378303408623, 0.008622152730822563, 0.024540800601243973, -0.03263353928923607, 0.046470001339912415, 0.014791803434491158, 0.04950600862503052, -0.017645690590143204, -0.0034042545594274998, 0.021414393559098244, -0.04128611087799072, 0.04573890194296837, -0.03484230861067772, -0.0015159574104472995, -0.0022743241861462593, -0.0336722806096077, -0.053987301886081696, 0.018954241648316383, 0.01170201413333416, -0.025098159909248352, 0.0348876416683197, -0.0322234146296978, 0.04207451269030571, 0.03633832558989525, -0.038076478987932205, 0.013314810581505299, 0.05037274584174156, -0.030225977301597595, 0.04819078743457794, 0.0443088561296463, 0.02856217510998249, -0.04937582463026047, 0.04315189644694328, 0.043620940297842026, 0.02280402183532715, -0.022813420742750168, 0.0008105355082079768, -0.057044580578804016, -0.0066913277842104435, 0.009846570901572704, -0.015436843037605286, -0.04655895009636879, 0.02766929753124714, 0.03624721243977547, -0.0687156394124031, 0.025938332080841064, -0.043934013694524765, -0.05823555588722229, -0.04533093050122261, -0.015096893534064293, -0.020558303222060204, 0.035346802324056625, 0.030142849311232567, 0.0037539030890911818, 0.0020752884447574615, 0.013919413089752197, -0.0017585717141628265, 0.034458424896001816, -0.003616028930991888, -0.0020079927053302526, 0.03983389958739281, -0.0004052224976476282, -0.011168799363076687, 0.027742397040128708, -0.025619234889745712, 0.013402881100773811, 0.01766417734324932, 0.005536561366170645, -0.006841918453574181, 0.03984001278877258, -0.006863228511065245, 0.03419717028737068, 0.03565182164311409, -0.026894038543105125, -0.016178904101252556, -0.002576882252469659, 0.02092629484832287, 0.013169556856155396, 0.02193666622042656, 0.022711308673024178, -0.01521668303757906, -0.009278866462409496, -0.03917373716831207, 0.04281146079301834, 0.011708708480000496, 0.039663948118686676, -0.06796997040510178, 0.06722641736268997, 0.0032809993717819452, -0.02982926368713379, 0.06411202251911163, -0.045316435396671295, 0.017319880425930023, 0.05305267497897148, -0.032895419746637344, 0.010195021517574787, -0.02394658885896206, -0.012438753619790077, -0.007538633421063423, 0.022619305178523064, 0.04121827706694603, 0.03107769414782524, 0.0249008946120739, -0.03440312668681145, -0.009783974848687649, -0.010318049229681492, 0.005392380524426699, -0.020720500499010086, -0.027246184647083282, -0.0017608879134058952, -0.025868874043226242, -0.03818320855498314, -0.05959217622876167, 0.022740855813026428, 0.017404066398739815, 0.030316952615976334, -0.009879079647362232, 0.012712058611214161, 0.011933716014027596, 0.018526580184698105, 0.02655705250799656, -0.013476994819939137, 0.026757661253213882, -0.043961647897958755, 0.021654723212122917, 0.010285173542797565, -0.04021972790360451, -0.03619878739118576, -0.008941978216171265, -0.026100683957338333, 0.03568049520254135, 0.03010774776339531, -0.03939221426844597, -0.037894099950790405, 0.02869635634124279, -0.038988787680864334, 0.019852643832564354, -0.0205379705876112, -0.012855344451963902, -0.009856192395091057, 0.02168961800634861, 0.031612228602170944, -0.024622729048132896, -0.0009884289465844631, -0.0312703475356102, 0.03887137398123741, 0.002792333485558629, -0.0066809821873903275, -0.0229865163564682, -0.023899123072624207, -0.01529534813016653, -0.0037410797085613012, 0.008181699551641941, 0.030337616801261902, -0.011500190012156963, -0.01744663529098034, -0.04173217713832855, 0.028750240802764893, 0.03873622417449951, -0.014678972773253918, -0.02338371053338051, -0.0016774017130956054, 0.020399456843733788, 0.012743529863655567, 0.01818629540503025, -0.006133542396128178, -0.03275424987077713, 0.03915204480290413, -0.06168656051158905, 0.031396135687828064, -0.009004014544188976, 0.0004245785530656576, 0.04385536536574364, -0.012564831413328648, 0.023294225335121155, 0.03734956309199333, -0.0061743068508803844, -0.006283009424805641, -0.008985615335404873, 0.03750094398856163, -0.0422310009598732, -0.04939567670226097, 0.029703274369239807, 0.0005409698933362961, -0.049349136650562286, 0.02660561352968216, 0.031079355627298355, 0.004059299360960722, 0.01719222404062748, 0.02440485917031765, -0.05496395751833916, 0.040413327515125275, -0.03377596288919449, 0.022460974752902985, -0.011624259874224663, -0.029006851837038994, 0.0022458303719758987, -0.028175974264740944, 0.030239060521125793, -0.023732705041766167, -0.025158334523439407, -0.03863644599914551, -0.03365641459822655, -0.0426211953163147, -0.001958161126822233, -0.026437055319547653, -0.006971215829253197, 0.0272002425044775, -0.005660939496010542, -0.0052558002062141895, -0.031039969995617867, -0.029495712369680405, -0.025265930220484734, -0.012159292586147785, 0.038775041699409485, -0.030663542449474335, 0.001950869569554925, 0.010750917717814445, -0.007646573707461357, -0.025603601709008217, 0.027357026934623718, -0.019059395417571068, -0.010872215032577515, -0.031227143481373787, -0.002071614610031247, -0.025058645755052567, -0.024596797302365303, -0.0035134905483573675, 0.024252241477370262, -0.02537209913134575, 0.03145764395594597, 0.014247600920498371, 0.0020316371228545904, -0.006487228907644749, 0.017922472208738327, -0.013853758573532104, 0.04309287294745445, 0.04769428074359894, -0.04464861378073692, -0.03290577232837677, 0.04091154411435127, -0.006079752463847399, 0.02901068702340126, -0.001723140012472868, -0.021296733990311623, -0.05518277361989021, -0.044271573424339294, -0.009269168600440025, -0.03621003031730652, -0.00910868402570486, -0.02408922091126442, -0.043573010712862015, 0.011547512374818325, 0.03637821599841118, 0.01947423815727234, 0.007248306646943092, -0.015861133113503456, -0.07229194045066833, 0.022766130045056343, -0.05771701782941818, -0.0023945120628923178, -0.029770029708743095, -0.01587541401386261, -0.006428676191717386, 0.03750651702284813, -0.009221989661455154, -0.011791769415140152, 0.004591300152242184, 0.02817593701183796, 0.013382362201809883, -0.0019002408953383565, -0.02186349779367447, -0.057175345718860626, 0.000244292983552441, 0.0008989023626782, -0.014652536250650883, 0.0023815236054360867, -0.008596491068601608, 0.03309077396988869, -0.033810000866651535, -0.04600910842418671, -0.024163654074072838, -0.0317152664065361, 0.0038660760037600994, -0.001626266515813768, 0.049368929117918015, -0.023660555481910706, 0.013085676357150078, 0.0012151839910075068, 0.03819108381867409, 0.05851251631975174, -0.011692849919199944, -0.022486718371510506, -0.002974898088723421, -0.040956057608127594, -0.048255883157253265, 0.015867916867136955, -0.0025922406930476427, -0.015646161511540413, -0.027599947527050972, 0.025054872035980225, 0.007887565530836582, -0.014132753014564514, 0.05013967677950859, 0.054251622408628464, -0.01255823578685522, -0.032701276242733, -0.015711037442088127, 0.005127455573529005, 0.026348453015089035, -0.011958597227931023, -0.004904880188405514, -0.027889641001820564, -0.03480500355362892, 0.013315912336111069, -0.021821515634655952, -0.03304585814476013, -0.03792530298233032, -0.021144211292266846, 0.045184340327978134, 0.011008446104824543, 0.04342395067214966, -0.0138475326821208, -0.05411769077181816, -0.062010493129491806, 0.04545990005135536, 0.002299509709700942, 0.014411804266273975, 0.04132191464304924, -0.018809733912348747, -0.013245993293821812, -0.002925409935414791, -0.005902460776269436, -0.03625703975558281, -0.04276970028877258, 0.04669059440493584, 0.008118013851344585, -0.03802471607923508, 0.015454353764653206, 0.07101364433765411, -0.06195292994379997, -0.04533805325627327, -0.004861274268478155, 0.005548133514821529, -0.030129868537187576, -0.029018953442573547, -0.023306187242269516, 0.0029634463135153055, 0.0029381762724369764, -0.004522071685642004, 0.03619927167892456, -0.00465066684409976, 0.03492354601621628, 0.0036663806531578302, 0.028150366619229317, -0.05743125453591347, 0.028707098215818405, 0.034816015511751175, 0.017462359741330147, -0.011742648668587208, -0.030258536338806152, -0.02663220278918743, -0.016477355733513832, -0.012979643419384956, 0.02928958088159561, -0.013298840261995792, -0.013661128468811512, 0.02617671899497509, -0.004169079940766096, 0.04397904500365257, 0.01974000222980976, 0.011412205174565315, 0.03327677398920059, -0.01464063674211502, -0.04775982350111008, -0.025276370346546173, 0.03454823046922684, -0.011781131848692894, 0.031544480472803116, -0.04839305952191353, 0.008836212567985058, 0.0495825931429863, -0.010720030404627323, 0.017775248736143112, -0.0540785938501358, -0.05157410353422165, -0.04209914058446884, -0.024418145418167114, -0.03318233788013458, -0.017511438578367233, 0.0172306876629591, 0.04013529047369957, 0.027386652305722237, -0.03670983761548996, -0.02597837522625923, 0.010143928229808807, -0.02374502830207348, 0.000742779637221247, -0.049720872193574905, 0.04588776454329491, -0.03265466168522835, -0.06578929722309113, -0.04201160743832588, -0.006472514010965824, -0.03463243320584297, 0.00891906674951315, -0.00347217358648777, 0.01780061051249504, 0.005404477473348379, 0.0434446856379509, 0.009945753030478954, 0.02824229933321476, -0.046513184905052185, -0.04291849955916405, 0.00019098410848528147, 0.06336145848035812, 0.013032855466008186, 0.021607939153909683, 0.06407026946544647, -0.03971979767084122, 0.009234345518052578, 0.01649678498506546, -0.0365283265709877, -0.030709601938724518, 0.04198163375258446, 0.013667834922671318, -0.007449285127222538, -0.049214739352464676, -0.01536479964852333, -0.00201077526435256, -0.033373016864061356, -0.018821392208337784, 0.01415190938860178, 0.009815671481192112, -0.0009600952616892755, 0.008398064412176609, 0.0029006695840507746, 0.047693535685539246, 0.0251251719892025, 0.0364757776260376, 0.018183711916208267, 0.027402399107813835, 0.030817745253443718, 0.0017411200096830726, 0.001449183328077197, 0.02723049558699131, 0.0292356014251709, -0.007799108047038317, -0.00933741219341755, 0.017734186723828316, -0.022721033543348312, 0.04865390062332153, -0.03497766703367233, -0.014788667671382427, -0.023754294961690903, -0.0035750484094023705, 0.018045391887426376, 0.019528573378920555, 0.018284881487488747, -0.0058039105497300625, 0.009866752661764622, -0.013714808039367199, -0.04844255372881889, -0.016793448477983475, -0.05178854614496231, -0.016565216705203056, 0.03672420233488083, -0.011017960496246815, 0.012301522307097912, -0.01721224933862686, -0.03065088391304016, -0.009607519023120403, -0.002891607815399766, 0.00357924890704453, -0.04147399589419365, 0.026439152657985687, -0.014290513470768929, 0.07364719361066818, -0.016612790524959564, 0.027282631024718285, -0.023103265091776848, 0.06850211322307587, -0.05700923874974251, -0.03391174226999283, -0.0046321633271873, 0.01053118146955967, 0.0012596320593729615, -0.006316331215202808, -0.007821489125490189, -0.0017040329985320568, 0.035523030906915665, -0.021891819313168526, 0.01116014365106821, 0.033276550471782684, 0.03466753661632538, -0.002123592421412468, -0.012012635357677937, 0.005306441802531481, 0.01889306865632534, 0.0367039255797863, 0.01018789317458868, -0.020006561651825905, -0.03616849333047867, 0.06444516777992249, 0.026270590722560883, -0.014264730736613274, 0.041727446019649506, 0.021834464743733406, 0.03648415207862854, -0.010618448257446289, 0.017579887062311172, 0.03209923952817917, 0.04525971785187721, 0.05494781956076622, 0.020004039630293846, -0.013387429527938366, 0.004649390000849962, 0.032049957662820816, 0.011750221252441406, 0.0060486565344035625, 0.027905119583010674, 0.03832825645804405, -0.030957885086536407, -0.005499350372701883, -0.01746274344623089, -0.03701304644346237, 0.019154468551278114, -0.010617204010486603, 0.00443410174921155, -0.059173908084630966, -0.00006142414349596947, -0.0015443755546584725, -0.00639342050999403, 0.07209299504756927, -0.02941064164042473, 0.011517446488142014, 0.014906410127878189, -0.018686918541789055, -0.017573365941643715, 0.05614853277802467, -0.03771818056702614, 0.012807615101337433, 0.0590527169406414, 0.02996770851314068, 0.013537200167775154, 0.03594116121530533, 0.010610416531562805, 0.0002716149319894612, -0.06357409805059433, 0.0052139912731945515, 0.035850245505571365, -0.0038605742156505585, -0.03792745992541313, -0.00044164815335534513, -0.03095925785601139, 0.027220675721764565, -0.045692529529333115, -0.02049052156507969, 0.05055949464440346, -0.04431618005037308, -0.017960458993911743, -0.04269237443804741, 0.023604242131114006, -0.03917397931218147, -0.01347487885504961, 0.022589590400457382, -0.02801772952079773, 0.005351267289370298, 0.04357805475592613, 0.0038194586522877216, 0.04112866520881653, -0.016429413110017776, 0.0464792437851429, -0.01665234938263893, 0.04470982402563095, 0.0547620989382267, -0.02165631204843521, -0.024700725451111794, 0.01981448568403721, -0.007366673089563847, -0.06051188334822655, 0.005618462339043617, -0.04140006750822067, -0.021094126626849174, -0.033214882016181946, -0.023973260074853897, 0.008344057947397232, 0.060308706015348434, -0.01493838056921959, -0.05502716451883316, -0.027914617210626602, 0.028514064848423004, -0.05807141959667206, 0.018540197983384132, -0.010163390077650547, 0.06345377117395401, -0.002229649806395173, 0.0002293029538122937, -0.02039787918329239, -0.03547534719109535, 0.000270549557171762, -0.0382213294506073, 0.036997850984334946, 0.0041944244876503944, -0.022190634161233902, -0.05112346634268761, -0.0660410076379776, -0.04178709536790848, -0.022271839901804924, -0.020736213773489, -0.05212046205997467, 0.012131400406360626, 0.03703751787543297, 0.012750457972288132, 0.01964501105248928, -0.043000876903533936, -0.01615767739713192, 0.0308818481862545, 0.06259401142597198, -0.019485563039779663, 0.056509148329496384, 0.027421437203884125, 0.011429175734519958, 0.003247116692364216, -0.01577381230890751, 0.015701716765761375, -0.011472650803625584, 0.0029868900310248137, -0.06307309865951538, 0.04364929348230362, -0.023793112486600876, -0.053961191326379776, 0.012969757430255413, 0.03928879275918007, -0.027353115379810333, -0.0241745226085186, -0.07862258702516556, 0.00037731530028395355, -0.04725132882595062, -0.027061747387051582, -0.05944141745567322, 0.03249833360314369, 0.0006409157067537308, 0.005251288879662752, -0.004270988050848246, -0.07589826732873917, 0.14652171730995178, 0.047026798129081726, 0.04636073112487793, -0.0074997092597186565, 0.013178767636418343, 0.04138533025979996, 0.02283359318971634, -0.01891295425593853, 0.005749238654971123, -0.04506197199225426, 0.04330440238118172, -0.024190066382288933, 0.025633974000811577, -0.02277485840022564, 0.03117525763809681, 0.0658225491642952, -0.04863426089286804, 0.007800208404660225, 0.04403181001543999, -0.07513511180877686, -0.09389062970876694, 0.009320870973169804, -0.006947625894099474, 0.004872207995504141, -0.015548501163721085, 0.046511460095644, 0.01658235862851143, -0.01780557632446289, 0.009141022339463234, -0.01460975594818592, 0.007618756499141455, -0.02003888413310051, 0.04273344576358795, -0.014945904724299908, -0.03613431379199028, 0.06364133208990097, 0.011561661027371883, -0.003686649492010474, 0.010387522168457508, 0.02630874142050743, -0.029016444459557533, 0.023968594148755074, 0.0036970949731767178, -0.03380017355084419, -0.0036100095603615046, 0.037597354501485825, -0.044342655688524246, 0.007795644924044609, -0.0006315269856713712, -0.047603730112314224, 0.07602175325155258, -0.03255020081996918, 0.026187704876065254, -0.019637124612927437, -0.03541848808526993, 0.007978537119925022, 0.019773924723267555, -0.003311275038868189, -0.006628730800002813, 0.0022693516220897436, 0.02795960195362568, -0.0022468266543000937, 0.008410670794546604, -0.006827790755778551, -0.039123278111219406, 0.00956655666232109, 0.031941577792167664, 0.04400744289159775, -0.007655412890017033, 0.0013872301205992699, -0.011174386367201805, -0.017273975536227226, 0.006235557142645121, -0.04191101714968681, 0.043201547116041183, 0.033221084624528885, 0.0068269758485257626, 0.0073478939011693, 0.016947468742728233, -0.0379311740398407, -0.024022476747632027, -0.04834519326686859, 0.005862745922058821, -0.03112344816327095, 0.021045375615358353, 0.06595884263515472, -0.044194865971803665, -0.028687795624136925, -0.015581216663122177, 0.055314432829618454, 0.042008399963378906, 0.026166334748268127, -0.011100884526968002, -0.01214204914867878, -0.002860848093405366 ]