Britanec je svojega tekmeca v boju za naslov, Maxa Verstappna, prehitel po desni v 59. krogu, dirko pa je nadzoroval do konca. Vodilni v skupnem seštevku, Verstappen (Red Bull) je končal na drugem mestu, Valteri Bottas (Mercedes) pa na tretjem.
Pred brazilsko dirko je imel Hamilton, ki si je konec tedna prislužil dve kazni in je današnjo dirko začel šele kot deseti, s pet mest slabšega štartnega izhodišča, kot ga je dosegel na sobotni kvalifikacijski dirki, 21 točk zaostanka za Nizozemcem. Zdaj je zaostanek manjši, le še 14 točk; Verstappen ima po novem 332,5 točke, Hamilton je drugi z 218,5.
Do konca sezone so še tri dirke, naslednja bo že čez en teden v Katarju.
VN BRAZILIJE, Sao Paulo Končni vrstni red (71/71): 1. L. HAMILTON Mercedes 1:32:22,851 2. M. VERSTAPPEN Red Bull +10,496 3. V. BOTTAS Mercedes 13,576 4. S. PEREZ Red Bull 39,940 5. C. LECLERC Ferrari 49,517 6. C. SAINZ Ferrari 51,820 7. P. GASLY AlphaTauri 1 krog 8. E. OCON Alpine 1 krog 9. M. ALONSO Alpine 1 krog 10. L. NORRIS McLaren 1 krog Odstop: Ricciardo, Stroll ...
SKUPNI VRSTNI RED Dirkači (19/22): 1. M. VERSTAPPEN Red Bull 332,5 2. L. HAMILTON Mercedes 318,5 3. V. BOTTAS Mercedes 203 4. S. PEREZ Red Bull 178 5. L. NORRIS McLaren 151 7. C. LECLERC Ferrari 148 6. C. SAINZ Ferrari 139,5 8. D. RICCIARDO McLaren 105 9. P. GASLY AlphaTauri 92 10. F. ALONSO Alpine 64 ... Konstruktorji (19/22): 1. MERCEDES 521,5 5. ALPINE 112 2. RED BULL 510,5 6. ALPHATAURI 112 3. FERRARI 287,5 7. ASTON MARTIN 68 4. MCLAREN 256 8. WILLIAMS 23
// Production steps of ECMA-262, Edition 6, 22.1.2.1
Array.from||(Array.from=function(){var r;try{r=Symbol.iterator?Symbol.iterator:"Symbol(Symbol.iterator)"}catch(t){r="Symbol(Symbol.iterator)"}var t=Object.prototype.toString,n=function(r){return"function"==typeof r||"[object Function]"===t.call(r)},o=Math.pow(2,53)-1,e=function(r){var t=function(r){var t=Number(r);return isNaN(t)?0:0!==t&&isFinite(t)?(t>0?1:-1)*Math.floor(Math.abs(t)):t}(r);return Math.min(Math.max(t,0),o)};return function(t){var o=Object(t),a=n(o[r]);if(null==t&&!a)throw new TypeError("Array.from requires an array-like object or iterator - not null or undefined");var i,u=arguments.length>1?arguments[1]:void 0;if(void 0!==u){if(!n(u))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(i=arguments[2])}var f=e(o.length);return function(r,t,n,o,e,a){for(var i=0;i
// Dark mode, Comments & Login if (document.cookie.indexOf('darkModeEnabled=true') != -1) document.body.classList.add('dark-mode'); if (document.cookie.indexOf('showComments=true') != -1) document.body.classList.add('show-comments-enabled'); if (document.cookie.indexOf('APISESSION_USER_ID') != -1) { document.body.classList.add('user-logged-in'); } else { document.body.classList.add('user-logged-out'); }
// Mobile check var mobile = false; var mobile_xs = false;
var checkIfMobile = function checkIfMobile() { var w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
w < 992 ? (mobile = true) : (mobile = false); // 992px = lg breakpoint w < 576 ? (mobile_xs = true) : (mobile_xs = false); // 576px = sm breakpoint }; checkIfMobile(); window.addEventListener("resize", checkIfMobile); // iOS standalone var isIos = function isIos() { var userAgent = window.navigator.userAgent.toLowerCase(); return /iphone|ipad|ipod/.test(userAgent); }; // Detects if device is on iOS var isInStandaloneMode = function isInStandaloneMode() { return "standalone" in window.navigator && window.navigator.standalone; }; // Detects if device is in iOS standalone mode var showIosNative = false; if (window.location.href.indexOf("show-ios-native") !== -1) document.cookie = "showIosNative=true"; if (document.cookie && document.cookie.indexOf("showIosNative=true") != -1) showIosNative = true; if ((isIos() && isInStandaloneMode() && mobile) || showIosNative) document.body.classList.add("ios-standalone"); // Facebook if(document.cookie && document.cookie.indexOf("cc_social=yes") > -1){ (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src="https://connect.facebook.net/sl_SI/sdk.js#xfbml=1&autoLogAppEvents=1&version=v3.1&appId=142347525793254"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); }