generated from extratone/latte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html@p=706.html
504 lines (448 loc) · 39.4 KB
/
index.html@p=706.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" sizes="192x192" href="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/icons/apple-touch-icon.png?x65095">
<link rel="shortcut icon" href="https://d38jnz52bk9bao.cloudfront.net/favicon.ico?x65095">
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
let showMoreLink = document.getElementById('showMoreLink');
if (showMoreLink) {
document.getElementById('showMoreLink').addEventListener('click', fetchMoreBlogPosts);
}
});
function fetchMoreBlogPosts (e) {
e.preventDefault();
e.currentTarget.classList.add('disabled');
e.currentTarget.disabled = true;
setTimeout(function(){
let button = document.getElementById("showMoreLink");
if( button !== null ) {
button.classList.remove("disabled");
button.disabled = false;
}
}, 1000);
let timesFetched = parseInt(e.target.dataset.timesFetched);
let postID = '706';
targetURL = '';
let showMoreLink = document.getElementById('showMoreLink');
if (showMoreLink.classList.contains('single-more')) {
targetURL = 'https://lemansvirtual.com/wp-admin/admin-ajax.php?action=fetch_single_blog_posts';
} else {
targetURL = 'https://lemansvirtual.com/wp-admin/admin-ajax.php?action=fetch_blog_posts';
}
targetURL += `&requestedFrom=${postID}`;
if ( timesFetched > 0 ) targetURL += `×Fetched=${timesFetched}`;
let xhr = new XMLHttpRequest();
xhr.onload = function(a){
if(this.status === 200) {
let data = JSON.parse(this.responseText);
if(data.length > 0) {
buildNewBlogPostsRow(data);
}
let button = document.getElementById('showMoreLink');
button.dataset.timesFetched = parseInt(button.dataset.timesFetched) + 1;
let $postLength;
if (showMoreLink.classList.contains('single-more')) {
$postLength = 2;
} else {
$postLength = 7;
}
if (data.length < $postLength) {
document.getElementById('showMoreLink').remove();
}
} else {
console.log("AJAX error when fetching Case Studies: " + this.status);
}
};
xhr.open("POST", targetURL);
xhr.send();
}
function buildNewBlogPostsRow (data) {
data.forEach(function(post){
// Build the elements
let article = document.createElement('article');
article.classList.add('post');
let row = document.createElement('div');
row.classList.add('inner-row');
// Thumbnail
let column1 = document.createElement('div');
column1.classList.add('column-2');
let imagePermalink = document.createElement('a');
imagePermalink.classList.add('post-thumbnail');
imagePermalink.href = post.permalink;
let image = document.createElement('img');
image.className = 'attachment-post-thumbnail size-post-thumbnail wp-post-image';
image.src = post.thumbnail;
// Content
let column2 = document.createElement('div');
column2.classList.add('column-2');
let header = document.createElement('header');
header.classList.add('entry-header');
let entryMeta = document.createElement('div');
entryMeta.classList.add('entry-meta');
let author = document.createElement('div');
author.classList.add('post-author');
author.textContent = post.author;
let date = document.createElement('div');
date.textContent = post.date;
let title = document.createElement('h3');
title.classList.add('entry-title');
title.textContent = post.title;
let titlePermalink = document.createElement('a');
titlePermalink.href = post.permalink;
let content = document.createElement('div');
content.classList.add('entry-content');
let contentExcerpt = post.content;
let Excerpt = contentExcerpt.substr(0, 104);
content.textContent = Excerpt + '...';
let readmore = document.createElement('a');
readmore.classList.add('readmore');
readmore.href = post.permalink;
readmore.textContent = 'Read more...';
// Arrange into a single element
article.appendChild(row);
row.appendChild(column1);
column1.appendChild(imagePermalink);
imagePermalink.appendChild(image);
row.appendChild(column2);
column2.appendChild(header);
header.appendChild(entryMeta);
entryMeta.appendChild(author);
entryMeta.appendChild(date);
header.appendChild(titlePermalink);
titlePermalink.appendChild(title);
column2.appendChild(content);
column2.appendChild(readmore);
document.querySelector('.blog-container').appendChild(article);
});
}
</script>
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO plugin v17.6 - https://yoast.com/wordpress/plugins/seo/ -->
<title>How to Follow the Third Round of the Le Mans Virtual Series - Le Mans Virtual Series</title>
<link rel="canonical" href="index.html@p=706.html" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="article" />
<meta property="og:title" content="How to Follow the Third Round of the Le Mans Virtual Series - Le Mans Virtual Series" />
<meta property="og:description" content="MIAMI, FL – November 12, 2021 – The 8 Hours of Nürburgring takes place this weekend, which will be the […]" />
<meta property="og:url" content="https://lemansvirtual.com/how-to-follow-the-third-round-of-the-le-mans-virtual-series/" />
<meta property="og:site_name" content="Le Mans Virtual Series" />
<meta property="article:publisher" content="https://www.facebook.com/lemansvirtual" />
<meta property="article:published_time" content="2021-11-12T14:00:09+00:00" />
<meta property="article:modified_time" content="2021-11-12T14:02:03+00:00" />
<meta property="og:image" content="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/MicrosoftTeams-image-7.jpg?x65095" />
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="1080" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@lemansvirtual" />
<meta name="twitter:site" content="@lemansvirtual" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="John Ratcliff" />
<meta name="twitter:label2" content="Estimated reading time" />
<meta name="twitter:data2" content="7 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://lemansvirtual.com/#organization","name":"Le Mans Virtual","url":"https://lemansvirtual.com/","sameAs":["https://www.facebook.com/lemansvirtual","https://www.instagram.com/lemansvirtual/","https://www.youtube.com/traxiongg","https://twitter.com/lemansvirtual"],"logo":{"@type":"ImageObject","@id":"https://lemansvirtual.com/#logo","inLanguage":"en-GB","url":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/08/cover-1.png?x65095","contentUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/08/cover-1.png?x65095","width":1920,"height":1080,"caption":"Le Mans Virtual"},"image":{"@id":"https://lemansvirtual.com/#logo"}},{"@type":"WebSite","@id":"https://lemansvirtual.com/#website","url":"https://lemansvirtual.com/","name":"Le Mans Virtual Series","description":"","publisher":{"@id":"https://lemansvirtual.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://lemansvirtual.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"ImageObject","@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#primaryimage","inLanguage":"en-GB","url":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/MicrosoftTeams-image-7.jpg?x65095","contentUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/MicrosoftTeams-image-7.jpg?x65095","width":1920,"height":1080},{"@type":"WebPage","@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#webpage","url":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/","name":"How to Follow the Third Round of the Le Mans Virtual Series - Le Mans Virtual Series","isPartOf":{"@id":"https://lemansvirtual.com/#website"},"primaryImageOfPage":{"@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#primaryimage"},"datePublished":"2021-11-12T14:00:09+00:00","dateModified":"2021-11-12T14:02:03+00:00","breadcrumb":{"@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/"]}]},{"@type":"BreadcrumbList","@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://lemansvirtual.com/"},{"@type":"ListItem","position":2,"name":"How to Follow the Third Round of the Le Mans Virtual Series"}]},{"@type":"Article","@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#article","isPartOf":{"@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#webpage"},"author":{"@id":"https://lemansvirtual.com/#/schema/person/cc740b46ba6ff4eaea9d2b00a29699c8"},"headline":"How to Follow the Third Round of the Le Mans Virtual Series","datePublished":"2021-11-12T14:00:09+00:00","dateModified":"2021-11-12T14:02:03+00:00","mainEntityOfPage":{"@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#webpage"},"wordCount":1456,"publisher":{"@id":"https://lemansvirtual.com/#organization"},"image":{"@id":"https://lemansvirtual.com/fr/how-to-follow-the-third-round-of-the-le-mans-virtual-series/#primaryimage"},"thumbnailUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/MicrosoftTeams-image-7.jpg?x65095","inLanguage":"en-GB"},{"@type":"Person","@id":"https://lemansvirtual.com/#/schema/person/cc740b46ba6ff4eaea9d2b00a29699c8","name":"John Ratcliff","image":{"@type":"ImageObject","@id":"https://lemansvirtual.com/#personlogo","inLanguage":"en-GB","url":"https://secure.gravatar.com/avatar/cb159a370e01d90b7262cb4dbe64319e?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/cb159a370e01d90b7262cb4dbe64319e?s=96&d=mm&r=g","caption":"John Ratcliff"},"url":"https://lemansvirtual.com/author/johnratcliff/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='stylesheet' id='lemans-leaderboard-css' href='wp-content/plugins/nn-lemans-leaderboard/assets/leaderboard.css@x65095&22_11&ver=5.8.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-includes/css/dist/block-library/style.min.css?x65095&ver=5.8.3' type='text/css' media='all' />
<link rel='stylesheet' id='trp-floater-language-switcher-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/css/trp-floater-language-switcher.css?x65095&ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='trp-language-switcher-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher.css?x65095&ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='le-mans-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/css/style.min.css?x65095&ver=07122021' type='text/css' media='all' />
<link rel="https://api.w.org/" href="wp-json/index.html" /><link rel="alternate" type="application/json" href="wp-json/wp/v2/posts/706" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc.php@rsd" />
<meta name="generator" content="WordPress 5.8.3" />
<link rel='shortlink' href='index.html@p=706.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Fhow-to-follow-the-third-round-of-the-le-mans-virtual-series%252F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Fhow-to-follow-the-third-round-of-the-le-mans-virtual-series%252F&format=xml" />
<script type="text/javascript" src="https://app.termly.io/embed.min.js" data-auto-block="on" data-website-uuid="509f7268-6328-417d-b978-40f9beeebc1a" ></script>
<meta name="facebook-domain-verification" content="k6puvy7nt0ccweh9zm328mzle3svra" /><link rel="alternate" hreflang="en-GB" href="index.html@p=706.html"/>
<link rel="alternate" hreflang="en" href="index.html@p=706.html"/>
<link rel="alternate" hreflang="fr-FR" href="fr/index.html@p=706.html"/>
<link rel="alternate" hreflang="fr" href="fr/index.html@p=706.html"/>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5FC3B4F');</script>
<!-- End Google Tag Manager -->
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style></head>
<body class="post-template-default single single-post postid-706 single-format-standard translatepress-en_GB lemans-yellow">
<div class="background">
<picture>
<source srcset="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern@2x.png?x65095" media="(min-width: 1921px)" />
<source srcset="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern.png?x65095" media="(max-width: 1920px)" />
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern.png?x65095" />
</picture>
</div>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="index.html@p=706.html#primary">Skip to content</a>
<header id="masthead" class="site-header">
<div class="header-container container">
<div class="row">
<div class="column">
<a class="primary-logo" href="../www.lemansvirtual.com/index.html"><img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/yellow/lmvs.svg?x65095" alt="Le Mans Home"></a>
<div class="next-race" role="complementary">
<div><div class="widget-title">Next Race:</div><div class="textwidget custom-html-widget">15 January 2022</div></div> </div><!-- .next-race -->
<div id="countdown" class="countdown">
<div id="countdown-timer" class="countdown-timer"></div>
</div>
</div>
<div class="column header-buttons">
<a href="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact" target="_blank" rel="noopener noreferrer"
id="signup-data"
class="custom-button header-contact header-contact-desktop"
data-modal-enabled="1"
data-cta-url="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact"
data-modal-heading="Join the Le Mans Virtual mailing list"
data-modal-text-paragraph="Subscribe to the Le Mans newsletter to receive the latest news and reminders for every live event in the calendar"
data-modal-signup-text="Sign up here"
>
<span>JOIN MAILING LIST</span>
</a>
</div>
</div>
</div>
<div class="header-navigation">
<div class="container">
<button class="menu-toggle" id="menu-toggle" aria-controls="primary-menu" aria-expanded="false"></button>
</div>
<nav id="site-navigation" class="main-navigation">
<div class="container">
<div class="row">
<div class="column">
<div class="menu-navigation-container"><ul id="primary-menu" class="menu"><li id="menu-item-356" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-356"><a href="index.html@p=337.html">Meet the Teams</a></li>
<li id="menu-item-357" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-357"><a href="index.html@p=335.html">News</a></li>
<li id="menu-item-703" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-703"><a href="index.html@p=680.html">Videos</a></li>
<li id="menu-item-487" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-487"><a href="index.html@p=472.html">FAQs</a></li>
<li id="menu-item-509" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-509"><a href="index.html@p=447.html">Race Calendar</a></li>
<li id="menu-item-799" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-799"><a href="index.html@p=435.html">Results</a></li>
</ul></div> </div>
<div class="column social-navigation">
<span>Follow Us</span>
<div class="menu-social-media-container"><ul id="social-menu" class="menu"><li id="menu-item-16" class="menu-twitter menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/lemansvirtual">Twitter</a></li>
<li id="menu-item-17" class="menu-facebook menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/lemansvirtual">Facebook</a></li>
<li id="menu-item-18" class="menu-instagram menu-item menu-item-type-custom menu-item-object-custom menu-item-18"><a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/lemansvirtual/">Instagram</a></li>
<li id="menu-item-19" class="menu-youtube menu-item menu-item-type-custom menu-item-object-custom menu-item-19"><a target="_blank" rel="noopener noreferrer" href="https://www.youtube.com/traxiongg">YouTube</a></li>
<li id="menu-item-20" class="menu-twitch menu-item menu-item-type-custom menu-item-object-custom menu-item-20"><a target="_blank" rel="noopener noreferrer" href="https://www.twitch.tv/traxiongg">Twitch</a></li>
</ul></div> </div>
</div>
<a id="signup-cta" href="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact" target="_blank" rel="noopener noreferrer" class="custom-button"><span>JOIN MAILING LIST</span></a>
</div>
</nav><!-- .desktop-navigation -->
</div>
</header><!-- #masthead -->
<section class="blog-post leaderboard">
<div class="container">
<div class="inner-row">
<h1 class="large-heading" id="">How to Follow the Third Round of the Le Mans Virtual Series</h1>
<h2 class="small-heading"><span class="posted-on">Posted on <time class="entry-date published" datetime="2021-11-12T14:00:09+00:00">12 November 2021</time><time class="updated" datetime="2021-11-12T14:02:03+00:00">12 November 2021</time></span></h2>
</div><!-- .inner-row -->
</div><!-- .container -->
</section><!-- .meet-the-teams -->
<main id="primary" class="site-main">
<div class="container">
<div class="inner-row">
<article id="post-706" class="post-706 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorised">
<div class="post-thumbnail">
<img width="1920" height="1080" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/MicrosoftTeams-image-7.jpg?x65095" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" /> </div><!-- .post-thumbnail -->
<div class="entry-content">
<p><strong>MIAMI, FL</strong> <strong>– November 12, 2021</strong> – The 8 Hours of Nürburgring takes place this weekend, which will be the longest race of the Le Mans Virtual Series to date. Le Mans Virtual Series is a joint venture between Motorsport Games and the Automobile Club de l’Ouest. The third of five rounds for the 2021-22 season, which will come to an end with the 24 Hours of Le Mans Virtual in January of 2022, will be the biggest challenge yet for the 114 professional and sim racing drivers participating across the 38 prototype and GTE entries (<a href="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/11/LeMansVirtualSeries_Round-3_entry-list.pdf?x65095">entry list HERE</a>) on the famously difficult 21 km/13 mile Nordschleife circuit in Germany. With over 100 corners, dramatic climbs and drops, blind crests and little run-off area, the circuit can easily catch out even the most experienced drivers, so viewers can expect plenty of action.</p>
<p>The live broadcast will feature lead commentary by the voice of the FIA World Endurance Championship, Martin Haven, together with Chris McCarthy and Lewis McGlade. Coverage will begin at 07:30 am ET on November 13. Full details of how to follow and tune in to the broadcast and all the action is detailed in the visual above and information below.</p>
<p>The first two rounds of the esports world’s top endurance racing championship were action-packed, with close and unpredictable racing in both the LMP and GTE categories. The No.4 Floyd ByKolles Burst entry currently holds a narrow two-point lead at the top of the LMP standings. However, Spa winner No.123 Team Redline and its star driver line up, including Felix Rosenqvist (INDYCAR) and Bono Huis (2021 rFactor2 Formula Pro Series champion) will be pushing hard for a second consecutive victory. Chasing them close behind is the No.22 GPX Rebellion Williams, which this weekend sees Williams F1 reserve driver Jack Aitken in its line-up. In the GTE category, it is even closer, with the No.91 Porsche Esports Team and the No.71 BMW Team Redline both tied at the head of the standings following one win and one second place finish each. The Aston Martin, Corvette and Ferrari entries will all be battling for more points this weekend and this class is likely to be as fiercely contested as ever.</p>
<p>The Le Mans Virtual Series brings together top-level real-life drivers, such as Jenson Button, Alex Palou, Stoffel Vandoorne and Louis Deletraz and some of the world’s best sim racers to compete together in five endurance races. Each race lasts between four and 24 hours in duration, concluding with the 24 Hours of Le Mans Virtual, which will take place live at the Autosport International show in Birmingham, UK in January 2022.</p>
<p> </p>
<p>The races may be followed, live and uninterrupted, on the following schedule:</p>
<p><strong>Friday, November 12: (all times ET)</strong></p>
<p>1:00PM Qualifying show live (<strong>not available on WEC or 24 Heures du Mans channels</strong>)</p>
<p>1:10 – 1:30PM Qualifying GTE</p>
<p>1:40 – 2:00PM Qualifying LMP</p>
<p><strong>Saturday, November 13:</strong></p>
<p>4:00 – 6:00AM Warm up</p>
<p>7:30AM Le Mans Virtual Series show live</p>
<p><strong>8:00AM 8 Hours of Nürburgring – RACE</strong></p>
<p> </p>
<p><strong><u>About Le Mans Virtual Series</u></strong></p>
<p>Le Mans Virtual Series is a global, elite esports series made up of five rounds which bring together endurance racing and sim racing’ top teams to compete on some of the world’s most famous racetracks. International FIA-licensed real-world drivers are teamed up with leading esports protagonists to take on endurance classics for a total prize fund of US$250,000, culminating in the prestigious 24 Hours of Le Mans Virtual which will take place live and televised at the Autosport Show International at the Birmingham NEC (UK). The Le Mans Virtual Series is a joint venture between leading racing game developer, publisher and esports ecosystem provider of official motorsport racing series throughout the world, Motorsport Games, and the Automobile Club de l’Ouest (ACO) – the creator and organizer of the world-famous 24 Hours of Le Mans and promoter of the FIA World Endurance Championship (FIA WEC). <a href="../www.lemansvirtual.com/index.html">www.lemansvirtual.com</a></p>
<p>Round 1 4 Hours of Monza, Italy September 25, 2021 Online only</p>
<p>Round 2 6 Hours of Spa, Belgium October 16, 2021 Online only</p>
<p>Round 3 8 Hours of Nürburgring, Germany November 13, 2021 Online only</p>
<p>Round 4 6 Hours of Sebring, USA December 18, 2021 Online only</p>
<p>Round 5 24 Hours of Le Mans Virtual January 15/16, 2022 ASI, Birmingham, UK</p>
<p> </p>
<p><strong><u>About Motorsport Games </u></strong></p>
<p>Motorsport Games, a Motorsport Network company, combines innovative and engaging video games with exciting esports competitions and content for racing fans and gamers around the globe. The Company is the officially licensed video game developer and publisher for iconic motorsport racing series, including NASCAR, INDYCAR, 24 Hours of Le Mans and the British Touring Car Championship (“BTCC”), across PC, PlayStation, Xbox, Nintendo Switch and mobile. Motorsport Games is an award-winning esports partner of choice for 24 Hours of Le Mans, Formula E, BTCC, the FIA World Rallycross Championship and the eNASCAR Heat Pro League, among others. For more information about Motorsport Games, visit <a href="http://www.motorsportgames.com">www.motorsportgames.com</a></p>
<p> </p>
<p><strong>Forward-Looking Statements: </strong></p>
<p>Certain statements in this press release which are not historical facts are forward-looking statements within the meaning of Section 27A of the Securities Act of 1933, as amended, and Section 21E of the Securities Exchange Act of 1934, as amended, and are provided pursuant to the safe harbor provisions of the Private Securities Litigation Reform Act of 1995. Any statements in this press release that are not statements of historical fact may be deemed forward-looking statements. Words such as “continue,” “will,” “may,” “could,” “should,” “expect,” “expected,” “plans,” “intend,” “anticipate,” “believe,” “estimate,” “predict,” “potential,” and similar expressions are intended to identify such forward-looking statements. These forward-looking statements include, but are not limited to, statements concerning the expected future impact of new or planned products, features, offerings or events, including, without limitation the Le Mans Virtual Series events, and the timing of launching such products, features, offerings or events. All forward-looking statements involve significant risks and uncertainties that could cause actual results to differ materially from those expressed or implied in the forward-looking statements, many of which are generally outside the control of Motorsport Games and are difficult to predict. Examples of such risks and uncertainties include, but are not limited to difficulties, delays in or unanticipated events that may impact the timing and scope of new product launches, such as due to delays and higher than anticipated expenses related to the ongoing and prolonged COVID-19 pandemic. Factors other than those referred to above could also cause Motorsport Games’ results to differ materially from expected results. Additional factors that could cause actual results to differ materially from those expressed or implied in the forward-looking statements can be found in Motorsport Games’ filings with the SEC, which may be found at www.sec.gov and at ir.motorsportgames.com, including its Annual Report on Form 10-K for the fiscal year ended December 31, 2020, its Quarterly Reports on Form 10-Q filed with the SEC during 2021, as well as in its subsequent filings with the SEC. Motorsport Games anticipates that subsequent events and developments may cause its plans, intentions and expectations to change. Motorsport Games assumes no obligation, and it specifically disclaims any intention or obligation, to update any forward-looking statements, whether as a result of new information, future events or otherwise, except as expressly required by law. Forward-looking statements speak only as of the date they are made and should not be relied upon as representing Motorsport Games’ plans and expectations as of any subsequent date. Additionally, the business and financial materials and any other statement or disclosure on, or made available through, Motorsport Games’ website or other websites referenced or linked to this press release shall not be incorporated by reference into this press release.</p>
<p> </p>
<p><strong>Website and Social Media Disclosure:</strong></p>
<p>Investors and others should note that we announce material financial information to our investors using our investor relations website (ir.motorsportgames.com), SEC filings, press releases, public conference calls and webcasts. We use these channels, as well as social media and blogs, to communicate with our investors and the public about our company and our products. It is possible that the information we post on our websites, social media and blogs could be deemed to be material information. Therefore, we encourage investors, the media and others interested in our company to review the information we post on these websites, social media channels and blogs, including the following (which list we will update from time to time on our investor relations website):</p>
<table width="594">
<tbody>
<tr>
<td width="288">Websites</td>
<td width="306">Social Media</td>
</tr>
<tr>
<td width="288"><a href="http://motorsportgames.com">motorsportgames.com</a></td>
<td width="306">Twitter: <a href="https://twitter.com/MSportgames?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor">@msportgames</a> & @<a href="https://twitter.com/TraxionGG">traxiongg</a></td>
</tr>
<tr>
<td width="288"><a href="http://traxion.gg">traxion.gg</a></td>
<td width="306">Instagram: <a href="https://www.instagram.com/msportgames/?hl=en">msportgames</a> & <a href="https://www.instagram.com/traxiongg/?hl=en">traxiongg</a></td>
</tr>
<tr>
<td width="288"><a href="http://motorsport.com">motorsport.com</a></td>
<td width="306">Facebook: <a href="https://www.facebook.com/msportgames/">Motorsport Games</a> & <a href="https://www.facebook.com/TraxionGG/">traxiongg</a></td>
</tr>
<tr>
<td width="288"> </td>
<td width="306">LinkedIn: <a href="https://www.linkedin.com/company/msportgames/">Motorsport Games</a></td>
</tr>
<tr>
<td width="288"> </td>
<td width="306">Twitch: <a href="https://www.twitch.tv/traxiongg">traxiongg</a></td>
</tr>
<tr>
<td width="288"> </td>
<td width="306">Reddit: traxiongg</td>
</tr>
</tbody>
</table>
<p>The contents of these websites and social media channels are not part of, nor will they be incorporated by reference into, this press release.</p>
<p>Investors:</p>
<p>Ashley DeSimone</p>
<p><a href="mailto:Ashley.Desimone@icrinc.com">Ashley.Desimone@icrinc.com</a></p>
<p>US Press:</p>
<p>ASTRSK PR</p>
<p><a href="mailto:motorsportgames@astrskpr.com">motorsortgames@astrskpr.com</a></p>
<p>EU / UK Press:</p>
<p>Swipe Right PR</p>
<p><a href="mailto:motorsport@swipterightpr.com">motorsport@swipterightpr.com</a></p>
</div><!-- .entry-content -->
</article><!-- #post-706 -->
</div>
</div>
</main><!-- #main -->
<!-- Partners -->
<div class="partners">
<div class="container">
<h2 class="large-heading">Our Partners</h2>
<div class="partner-logos">
<div class="inner-row">
<div class="column-row">
<div class="partner-logo">
<a href="https://www.goodyear.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/Goodyear_Logo-3.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Tyre Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.thrustmaster.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/Thrustmaster-logo-4.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Hardware Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.algorand.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/algorand_full_logo_white.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Blockchain Partner</div>
</div>
<div class="partner-logo">
<a href="https://totalenergies.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/TotalEnergies_Logo_RGB-2.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Energy Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.lego.com/en-gb/themes/technic" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/lego_technic_logo.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Engineering Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.rolex.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/ROLEX_2012_CMYK_WHITE-GOLD.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Timepiece Partner</div>
</div>
</div><!-- .column-row -->
</div><!-- .inner-row -->
</div><!-- .partner-logos -->
</div><!-- .container -->
</div><!-- .partners -->
<footer id="colophon" class="site-footer">
<div class="container">
<div class="footer-logos">
<a href="https://motorsportgames.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/MotorsportGames.svg?x65095" alt="Motorsport Games" loading="lazy">
</a>
<a href="https://www.fiawec.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/WEC.svg?x65095" alt="WEC" loading="lazy">
</a>
<a href="https://www.24h-lemans.com/en" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/LeMans.svg?x65095" alt="LeMans" loading="lazy">
</a>
</div>
<div class="footer-links">
<a href="https://motorsportgames.com/privacy-policy/" target="_blank" rel="noopener noreferrer">Privacy Policy</a>
<a href="https://motorsportgames.com/terms-conditions/" target="_blank" rel="noopener noreferrer">Terms & Conditions</a>
<a href="https://motorsportgames.com/cookie-policy/" target="_blank" rel="noopener noreferrer">Cookie Policy</a>
<a href="https://app.termly.io/notify/f80da7c5-3b23-41a1-af0c-abb631d54209" target="_blank" rel="noopener noreferrer">Do Not Sell My Info</a>
</div>
</div><!-- .container -->
</footer><!-- #colophon -->
</div><!-- #page -->
<div id="trp-floater-ls" onclick="" data-no-translation class="trp-language-switcher-container trp-floater-ls-names trp-bottom-right trp-color-dark" >
<div id="trp-floater-ls-current-language" class="trp-with-flags">
<a href="index.html@p=706.html#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()">
<img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_GB.png?x65095" width="18" height="12" alt="en_GB" title="English">English </a>
</div>
<div id="trp-floater-ls-language-list" class="trp-with-flags" >
<div class="trp-language-wrap"> <a href="fr/index.html@p=706.html"
title="French">
<img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/fr_FR.png?x65095" width="18" height="12" alt="fr_FR" title="French">French </a>
<a href="index.html@p=706.html#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_GB.png?x65095" width="18" height="12" alt="en_GB" title="English">English</a></div> </div>
</div>
<script>
window.addEventListener('load', function () {
let language = document.body.classList.contains('translatepress-fr_FR') ? 'FR' : 'en'; // Other EN configurations require uppercase
let iframe = '';
if (window.innerWidth > 900) {
iframe = `<iframe src="https://static.rolex.com/clocks/2021/lemans_virtual_desk_${language}_HTML_320x100/rolex.html" ` +
`style="min-width:340px;height:100px;border:0;margin:0;padding:0;overflow:hidden;scroll:none" SCROLLING=NO frameborder="NO"></iframe>`;
} else {
language = language.toUpperCase();
iframe = `<iframe src="https://static.rolex.com/clocks/2021/lemans_virtual_mobile_${language}_HTML_320x70/rolex.html"` +
`style="min-width: 320px;width:100%;height:70px;border:0;margin:0;padding:0;overflow:hidden;scroll:none" SCROLLING=NO frameborder="NO"></iframe>`;
}
document.getElementById("countdown").innerHTML = iframe;
});
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5FC3B4F"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<script type='text/javascript' src='wp-content/plugins/nn-lemans-leaderboard/assets/leaderboard.js@x65095&22_11&ver=5.8.3' id='lemans-leaderboard-js'></script>
<script type='text/javascript' src='https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/js/script.min.js?x65095&ver=11112021' id='project-n-script-js'></script>
</body>
</html>
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/
Object Caching 100/100 objects using redis
Content Delivery Network via Amazon Web Services: CloudFront: d38jnz52bk9bao.cloudfront.net
Database Caching 11/11 queries in 0.002 seconds using redis
Served from: lemansvirtual.com @ 2022-01-13 05:17:10 by W3 Total Cache
-->